/* ==========================================================================
   AHVAAN — Design tokens
   ========================================================================== */
:root {
  --charcoal: #14171c;
  --charcoal-2: #1b1f26;
  --charcoal-3: #242932;
  --ink: #0e1116;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --paper: #fbfbfc;
  --slate-900: #1f2937;
  --slate-700: #3f4757;
  --slate-600: #4b5566;
  --slate-500: #667085;
  --slate-400: #8a94a6;
  --slate-300: #b7bfcc;
  --slate-100: #e7eaef;
  --steel: #5b6b82;
  --blue-600: #3462b8;
  --blue-500: #4a7fd6;
  --blue-100: #eaf1fc;
  --blue-50: #f4f8fe;
  --brand-red: #c1272d;
  --line: #e6e8ec;
  --line-dark: rgba(255, 255, 255, 0.09);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Iowan Old Style", "Times New Roman", serif;

  --container: 1240px;
  --container-narrow: 860px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.25rem;
  --space-6: 3.25rem;
  --space-7: 4.75rem;

  --shadow-sm: 0 1px 2px rgba(15, 18, 24, 0.06), 0 1px 1px rgba(15, 18, 24, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 18, 24, 0.08), 0 2px 6px rgba(15, 18, 24, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 18, 24, 0.14), 0 4px 12px rgba(15, 18, 24, 0.06);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; }
:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--charcoal); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(2.5rem, 5.5vw, var(--space-7)); }
.section--tight { padding-block: clamp(1.75rem, 3.5vw, var(--space-6)); }
.section--dark { background: var(--charcoal); color: var(--slate-100); }
.section--alt { background: var(--off-white); }
.section-head {
  max-width: 720px;
  margin-bottom: clamp(1.5rem, 3.5vw, var(--space-5));
}
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: #9dc0f5; }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
h2.h-lg {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--slate-900);
}
.section--dark h2.h-lg { color: var(--white); }
.sub {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--slate-500);
  line-height: 1.7;
}
.section--dark .sub { color: var(--slate-300); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--slate-300);
  color: var(--slate-900);
}
.btn-outline-dark:hover { border-color: var(--slate-900); background: var(--off-white); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  padding-block: 0.65rem;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand img { height: 26px; width: auto; }
.brand-suffix {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  border-left: 1px solid var(--slate-300);
  padding-left: 0.6rem;
  line-height: 1.2;
}
.nav.is-scrolled .brand-suffix { color: var(--slate-500); }
.nav:not(.is-scrolled) .brand-suffix { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.nav:not(.is-scrolled) .nav-link { color: rgba(255,255,255,0.92); }
.nav:not(.is-scrolled) .nav-icon-btn { color: #fff; border-color: rgba(255,255,255,0.4); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.9rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
  padding-block: 0.25rem;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}
.nav-link:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--slate-300); color: var(--slate-700);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-icon-btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.nav-icon-btn svg { width: 18px; height: 18px; }

.menu-toggle {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--slate-300);
  background: transparent;
  color: var(--slate-900);
}
.nav:not(.is-scrolled) .menu-toggle { color: #fff; border-color: rgba(255,255,255,0.4); }
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  padding: 6rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 1.05rem 0.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--slate-900);
}
.mobile-menu .btn { margin-top: 1.5rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 92svh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,22,0.55) 0%, rgba(14,17,22,0.35) 30%, rgba(14,17,22,0.55) 68%, rgba(14,17,22,0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5rem, 11vw, 6.5rem) clamp(2rem, 4vw, 3rem);
}
.hero-gst-badge {
  position: absolute;
  top: clamp(5.5rem, 13vw, 7.5rem);
  right: clamp(1.25rem, 4vw, 2.75rem);
  z-index: 5;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--brand-red);
  font-weight: 800;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.1em;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(14, 17, 22, 0.22), 0 2px 10px rgba(193, 39, 45, 0.18);
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.06;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: #cfe0fb;
}
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.86);
  max-width: 52ch;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-stats {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 720px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}
@media (min-width: 700px) {
  .hero-stats { grid-template-columns: repeat(4, auto); gap: 2.5rem; }
}

/* ==========================================================================
   Site visit CTA
   ========================================================================== */
.visit-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 42vw, 440px);
  padding-block: clamp(3rem, 6vw, 4rem);
}
.visit-cta-media { position: absolute; inset: 0; z-index: -2; }
.visit-cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.visit-cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,17,22,0.93) 0%, rgba(14,17,22,0.8) 42%, rgba(14,17,22,0.45) 100%);
}
.visit-cta-inner { position: relative; z-index: 1; max-width: 640px; }
.visit-cta-inner .eyebrow { color: #9dc0f5; }
.visit-cta-inner h2 { color: #fff; }
.visit-cta-inner .sub { color: rgba(255, 255, 255, 0.85); }
.visit-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--line); padding-block: 1.1rem; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.5rem;
}
.trust-sep { width: 1px; height: 20px; background: var(--line); display: inline-block; }
.trust-bar-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.1rem; }
.trust-bar-badges span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; color: var(--slate-600); white-space: nowrap; }
.trust-bar-badges svg { width: 15px; height: 15px; color: var(--blue-600); flex-shrink: 0; }
.trust-bar-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 700; color: var(--slate-900); white-space: nowrap; }
.trust-bar-phone svg { width: 16px; height: 16px; color: var(--blue-600); }
@media (max-width: 640px) { span.hide-mobile { display: none; } }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   Overview
   ========================================================================== */
.overview-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .overview-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
}
.overview-copy p + p { margin-top: 1.1rem; }
.overview-copy { color: var(--slate-600); font-size: 1.02rem; }
.overview-facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.overview-fact { background: var(--white); padding: 1.1rem 1.3rem; }
.overview-fact .k { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-500); }
.overview-fact .v { font-weight: 650; color: var(--slate-900); margin-top: 0.25rem; font-size: 1.02rem; }
.overview-fact--logo { padding-block: 1.3rem 1.5rem; }
.v-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; margin-top: 0.5rem; }
.fact-logo { height: 72px; width: 136px; object-fit: contain; object-position: left center; flex-shrink: 0; }
.v-logo span { font-weight: 650; color: var(--slate-900); font-size: 0.94rem; line-height: 1.35; }

.overview-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.overview-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.overview-visual-tag {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  background: rgba(20,23,28,0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  max-width: 78%;
}

/* ==========================================================================
   Cards grid (generic)
   ========================================================================== */
.grid {
  display: grid;
  gap: 1rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 0.85rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.08rem; font-weight: 650; color: var(--slate-900); }
.card p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--slate-500); line-height: 1.6; }

/* dark variant cards (own vs rent, comparison) */
.card--dark {
  background: var(--charcoal-2);
  border-color: var(--line-dark);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--slate-300); }
.card--dark .card-icon { background: rgba(74,127,214,0.18); color: #9dc0f5; }

/* ==========================================================================
   Own vs rent comparison
   ========================================================================== */
.compare {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.compare-col.is-rent { background: var(--charcoal-3); color: var(--slate-300); border: 1px solid var(--line-dark); }
.compare-col.is-own { background: linear-gradient(160deg, #21406e, #1a2f52); color: #fff; border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow-lg); }
.compare-col h3 { font-size: 1.3rem; font-weight: 650; }
.compare-col .tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.65; margin-bottom: 0.5rem; display:block; }
.compare-list { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.compare-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.compare-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.1rem; }
.is-rent .compare-item svg { color: #8a94a6; }
.is-own .compare-item svg { color: #7cc4ff; }

/* ==========================================================================
   Location / connectivity
   ========================================================================== */
.location-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .location-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.location-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: zoom-in;
}
.location-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.destinations-grid {
  display: grid; gap: 2rem 1.75rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .destinations-grid { grid-template-columns: repeat(4, 1fr); } }
.dest-group h4 {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--blue-600); font-weight: 700; margin-bottom: 1rem;
}
.dest-list { display: flex; flex-direction: column; }
.dest-item {
  display: grid; grid-template-columns: 30px 1fr auto; align-items: center;
  column-gap: 0.65rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line);
}
.dest-list .dest-item:last-child { border-bottom: none; }
.dest-item .ic {
  width: 30px; height: 30px; border-radius: 50%; background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dest-item .ic svg { width: 15px; height: 15px; }
.dest-item .name { font-size: 0.85rem; font-weight: 600; color: var(--slate-900); line-height: 1.3; }
.dest-item .time { font-size: 0.74rem; font-weight: 600; color: var(--slate-500); white-space: nowrap; text-align: right; }

/* map */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Configurations (office units)
   ========================================================================== */
.tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.tab-btn {
  padding: 0.65rem 1.25rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  border: 1px solid var(--line); background: var(--white); color: var(--slate-600);
  transition: all 0.25s var(--ease); cursor: pointer;
}
.tab-btn:hover { border-color: var(--slate-400); }
.tab-btn.is-active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-panel .table-wrap { margin-top: 1.5rem; }
.config-stat-card {
  border-radius: var(--radius-lg);
  padding: 1.85rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  background: var(--off-white);
}
.config-stat-card .area { font-size: clamp(1.9rem, 3.5vw, 2.4rem); }
.config-stat-card .area span { color: var(--slate-500); font-size: 0.78rem; }
.config-stat-card p { margin-top: 0.75rem; font-size: 0.95rem; color: var(--slate-600); max-width: 62ch; line-height: 1.65; }
.config-stat-card--dark { background: linear-gradient(160deg, #21406e, #1a2f52); border: none; color: #fff; }
.config-stat-card--dark .area { color: #fff; }
.config-stat-card--dark .area span { color: rgba(255, 255, 255, 0.65); }
.config-stat-card--dark p { color: rgba(255, 255, 255, 0.85); }

.unit-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; background: var(--white);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.unit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.unit-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.unit-card h4 { font-size: 1.05rem; font-weight: 650; }
.unit-card .area { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-600); font-weight: 600; white-space: nowrap; }
.unit-card .area span { font-family: var(--font-sans); font-size: 0.7rem; color: var(--slate-500); display: block; font-weight: 500; }
.unit-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.unit-meta .m { font-size: 0.78rem; background: var(--off-white); border: 1px solid var(--line); border-radius: 6px; padding: 0.3rem 0.6rem; color: var(--slate-600); }
.unit-fit { font-size: 0.88rem; color: var(--slate-500); border-top: 1px solid var(--line); padding-top: 0.85rem; }
.unit-fit strong { color: var(--slate-700); }

/* ==========================================================================
   Floor plans
   ========================================================================== */
.floor-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; margin-bottom: 1.25rem; scrollbar-width: thin; }
.floor-viewer {
  display: grid; gap: 1.5rem;
}
@media (min-width: 960px) { .floor-viewer { grid-template-columns: 0.85fr 1.15fr; align-items: center; } }
.floor-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--off-white);
  cursor: zoom-in;
  position: relative;
  max-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-image-wrap img { width: 100%; height: 100%; max-height: 380px; object-fit: contain; display: block; transition: transform .4s var(--ease); }
.floor-image-wrap:hover img { transform: scale(1.04); }
.floor-zoom-hint {
  position: absolute; right: 0.7rem; bottom: 0.7rem;
  background: rgba(20,23,28,0.75); color: #fff; font-size: 0.7rem;
  padding: 0.35rem 0.65rem; border-radius: 999px; display: flex; align-items: center; gap: 0.35rem;
  backdrop-filter: blur(4px);
}
.floor-zoom-hint svg { width: 13px; height: 13px; }
.floor-info h3 { font-size: 1.2rem; font-weight: 650; }
.floor-info-list { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.6rem; }
.floor-info-item { display: flex; gap: 0.65rem; font-size: 0.88rem; color: var(--slate-600); }
.floor-info-item svg { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; margin-top: 0.15rem; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,12,16,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg);
  cursor: zoom-in; touch-action: none; user-select: none;
  transition: transform 0.15s ease-out;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-hint {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75); font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.08); padding: 0.5rem 1rem; border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 640px) { .lightbox-hint { font-size: 0.7rem; white-space: normal; text-align: center; max-width: 80vw; } }

/* ==========================================================================
   Architecture
   ========================================================================== */
.arch-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .arch-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.arch-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; }
.arch-image img { width: 100%; height: 100%; object-fit: cover; }
.arch-points { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.arch-point { display: flex; gap: 1rem; }
.arch-point .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue-600); font-weight: 600; width: 2.2rem; flex-shrink: 0; }
.arch-point h4 { font-size: 1rem; font-weight: 650; }
.arch-point p { font-size: 0.92rem; color: var(--slate-500); margin-top: 0.25rem; }

/* ==========================================================================
   Investment / stats band
   ========================================================================== */
.stat-band {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  padding-block: 1.75rem; margin-block: 1.75rem;
}
@media (min-width: 800px) { .stat-band { grid-template-columns: repeat(4,1fr); } }
.stat-band .n { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 600; color: #fff; }
.stat-band .l { font-size: 0.82rem; color: var(--slate-400); margin-top: 0.35rem; }

/* ==========================================================================
   Who should buy
   ========================================================================== */
.audience-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .audience-grid { grid-template-columns: repeat(3,1fr); } }
.audience-card {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1.15rem; border-radius: var(--radius); border: 1px solid var(--line);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.audience-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.audience-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-100); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.audience-card .ic svg { width: 21px; height: 21px; }
.audience-card h4 { font-size: 0.98rem; font-weight: 650; }
.audience-card p { font-size: 0.86rem; color: var(--slate-500); margin-top: 0.3rem; }

/* ==========================================================================
   Developer / trust band
   ========================================================================== */
.mini-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.mini-stat-n { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--slate-900); text-align: center; }
.mini-stat-l { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.25rem; text-align: center; max-width: 18ch; }
.mini-stats--single { padding-bottom: 1.75rem; }
.mini-stats--single .mini-stat-n { font-size: clamp(2.1rem, 4.5vw, 2.9rem); }
.mini-stats--single .mini-stat-l { max-width: none; font-size: 0.85rem; }
.profile-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .profile-grid { grid-template-columns: 1fr 1fr; } }
.profile-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; background: var(--white);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.profile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.profile-logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; margin-bottom: 1.1rem; }
.profile-card--featured { background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 45%); border-color: var(--blue-100); }
.profile-logo--lg { height: 78px; max-width: 280px; margin-bottom: 1.4rem; }
.profile-meta a { color: var(--slate-500); }
.profile-meta a:hover { color: var(--blue-600); }
.profile-role { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-600); margin-bottom: 0.4rem; }
.profile-card h3 { font-size: 1.2rem; font-weight: 650; color: var(--slate-900); }
.profile-card p { margin-top: 0.75rem; font-size: 0.92rem; color: var(--slate-500); line-height: 1.7; }
.profile-meta { margin-top: 0.9rem; font-size: 0.8rem; color: var(--slate-400); padding-top: 0.75rem; border-top: 1px solid var(--line); }
.profile-meta + .profile-meta { border-top: none; padding-top: 0; margin-top: 0.35rem; }
.dev-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.dev-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--slate-700);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1rem;
}
.dev-badge svg { width: 16px; height: 16px; color: var(--blue-600); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; background: none; border: 0; text-align: left; cursor: pointer;
  font-size: 0.98rem; font-weight: 600; color: var(--slate-900);
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--slate-700); top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .plus::before { width: 11px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 11px; transition: opacity .25s ease; }
.faq-item.is-open .plus { background: var(--charcoal); border-color: var(--charcoal); transform: rotate(180deg); }
.faq-item.is-open .plus::before, .faq-item.is-open .plus::after { background: #fff; }
.faq-item.is-open .plus::after { opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding .4s var(--ease);
}
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 1.1rem; }
.faq-a p { color: var(--slate-500); font-size: 0.95rem; line-height: 1.7; max-width: 68ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #9dc0f5; }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 0.95rem; font-weight: 650; color: #fff; }
.contact-row p, .contact-row a { font-size: 0.92rem; color: var(--slate-300); margin-top: 0.15rem; }
.contact-row a:hover { color: #fff; }

.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  color: var(--slate-900);
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--slate-600); display: block; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--slate-300); background: var(--off-white);
  color: var(--slate-900); transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.8rem; color: var(--slate-500); margin-bottom: 1.25rem; }
.form-consent input { margin-top: 0.2rem; }
.form-note { font-size: 0.78rem; color: var(--slate-500); margin-top: 0.9rem; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.is-visible { display: block; }
.form-success .ic-ok { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-100); color: var(--blue-600); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success .ic-ok svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 1.2rem; font-weight: 650; }
.form-success p { color: var(--slate-500); margin-top: 0.5rem; font-size: 0.92rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: var(--slate-400); padding-block: var(--space-6) var(--space-4); }
.footer-top { display: grid; gap: 2rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { height: 24px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 32ch; }
.footer-col h5 { color: #fff; font-size: 0.85rem; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.8rem;
}
.footer-legal { max-width: 900px; font-size: 0.76rem; line-height: 1.7; color: var(--slate-400); margin-top: 1.1rem; }

/* ==========================================================================
   Sticky CTAs
   ========================================================================== */
.sticky-ctas {
  position: fixed; right: 1.25rem; bottom: calc(1.25rem + env(safe-area-inset-bottom, 0)); z-index: 90;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
}
.sticky-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s var(--ease);
  position: relative;
}
.sticky-btn:hover { transform: scale(1.07); }
.sticky-btn svg { width: 24px; height: 24px; }
.sticky-btn.whatsapp { background: #25D366; color: #fff; }
.sticky-btn.call { background: var(--charcoal); color: #fff; }
.back-to-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--slate-700); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 20px; height: 20px; }
.sticky-btn .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0.6;
  animation: pulse 2.4s infinite var(--ease);
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 89;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem; font-weight: 650; font-size: 0.92rem;
}
.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar .call { background: var(--charcoal); color: #fff; }
.mobile-bar .whatsapp { background: #25D366; color: #fff; }

@media (min-width: 960px) { .mobile-bar { display: none; } }
@media (max-width: 959px) { .sticky-ctas { bottom: calc(5.5rem + env(safe-area-inset-bottom, 0)); } }

/* ==========================================================================
   Inline section CTA
   ========================================================================== */
.section-cta {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.section-cta p { font-weight: 650; color: var(--slate-900); font-size: 0.98rem; }
.section-cta .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.overflow-x-auto { overflow-x: auto; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.spec-table { width: 100%; border-collapse: collapse; min-width: 560px; }
table.spec-table th, table.spec-table td { text-align: left; padding: 0.9rem 1.1rem; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
table.spec-table th { background: var(--off-white); color: var(--slate-600); font-weight: 650; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
table.spec-table td { color: var(--slate-700); }

/* ==========================================================================
   Brochure modal
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  background: rgba(14, 17, 22, 0.55);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: min(90vh, 780px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .modal-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--slate-300); background: rgba(255,255,255,0.6);
  color: var(--slate-700); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.modal-close svg { width: 18px; height: 18px; }

.modal-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.modal-icon svg { width: 26px; height: 26px; }
.modal-title { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; color: var(--slate-900); }
.modal-sub { margin-top: 0.5rem; font-size: 0.94rem; line-height: 1.6; color: var(--slate-500); }

#brochureForm { margin-top: 1.5rem; }
#brochureForm .field { margin-bottom: 1rem; }
#brochureForm .field label { font-size: 0.82rem; font-weight: 600; color: var(--slate-600); display: block; margin-bottom: 0.4rem; }
#brochureForm .field input {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--slate-300); background: rgba(255,255,255,0.7);
  color: var(--slate-900); transition: border-color .2s ease, background .2s ease;
}
#brochureForm .field input:focus { border-color: var(--blue-500); background: #fff; }
#brochureForm .field input.is-invalid { border-color: var(--brand-red); }
.field-error {
  display: block; min-height: 1.1em; font-size: 0.78rem; color: var(--brand-red);
  margin-top: 0.3rem;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field-group { border: 0; padding: 0; margin: 0 0 1rem; }
.field-group-label { font-size: 0.82rem; font-weight: 600; color: var(--slate-600); display: block; margin-bottom: 0.5rem; padding: 0; }
.pill-choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-choice {
  position: relative; cursor: pointer;
}
.pill-choice input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.pill-choice span {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--slate-300); background: rgba(255,255,255,0.6);
  font-size: 0.85rem; font-weight: 600; color: var(--slate-700);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pill-choice input:checked + span {
  background: var(--charcoal); border-color: var(--charcoal); color: #fff;
}
.pill-choice input:focus-visible + span {
  outline: 2px solid var(--blue-500); outline-offset: 2px;
}

.modal-error {
  font-size: 0.85rem; color: var(--brand-red);
  background: #fdecec; border: 1px solid #f6c6c8;
  border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
}
.modal-error[hidden] { display: none; }

.form-error {
  font-size: 0.85rem; color: var(--brand-red);
  background: #fdecec; border: 1px solid #f6c6c8;
  border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
}
.form-error[hidden] { display: none; }

#brochureSubmitBtn { margin-top: 0.25rem; }
#brochureSubmitBtn:disabled { opacity: 0.5; cursor: not-allowed; }

.modal-panel[hidden] { display: none; }
#brochurePanelLoading, #brochurePanelSuccess { text-align: center; padding-block: 2rem; }
.modal-spinner {
  width: 46px; height: 46px; margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 3px solid var(--blue-100);
  border-top-color: var(--blue-600);
  animation: modal-spin 0.8s linear infinite;
}
@keyframes modal-spin { to { transform: rotate(360deg); } }
.modal-loading-text { font-size: 0.95rem; color: var(--slate-500); }

.modal-success-check { width: 64px; height: 64px; margin: 0 auto 1.25rem; }
.modal-success-check svg { width: 100%; height: 100%; }
.check-circle {
  stroke: var(--blue-600); stroke-width: 2.5;
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: check-circle 0.5s var(--ease) forwards;
}
.check-mark {
  stroke: var(--blue-600); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: check-mark 0.35s var(--ease) 0.45s forwards;
}
@keyframes check-circle { to { stroke-dashoffset: 0; } }
@keyframes check-mark { to { stroke-dashoffset: 0; } }
#brochurePanelSuccess .modal-title { margin-top: 0.25rem; }
#brochureDoneBtn { margin-top: 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  .modal-spinner { animation-duration: 1.4s; }
}
table.spec-table tr:last-child td { border-bottom: none; }
