/* ============================================================
   AIPools — Luxury Landing Page
   ============================================================ */

:root {
  --gold:          #C9A84C;
  --gold-bright:   #D9B85C;
  --gold-dim:      rgba(201, 168, 76, 0.25);
  --gold-glow:     rgba(201, 168, 76, 0.08);
  --teal:          #00B4D8;
  --teal-dim:      rgba(0, 180, 216, 0.35);
  --dark:          #090909;
  --dark-900:      #0E0E0E;
  --dark-800:      #131313;
  --dark-700:      #1A1A1A;
  --dark-600:      #222222;
  --text:          #EAE6DE;
  --text-mid:      #9A9690;
  --text-dim:      #5A5652;
  --border:        rgba(201, 168, 76, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius:        4px;
}

/* ---- Skip link (accessibility + SEO) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #080808;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h2 em, h1 em { font-style: italic; color: var(--gold); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 128px 0; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--text);
  margin-bottom: 18px;
}
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: #080808;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-subtle);
}
.btn-outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}
.btn-lg { padding: 16px 36px; font-size: 14.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---- Inputs ---- */
.input {
  width: 100%;
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.input::placeholder { color: var(--text-dim); }
.input:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}
.input-lg { font-size: 15px; padding: 16px 20px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow-left {
  position: absolute;
  left: -20%;
  top: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  right: -10%;
  bottom: 10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
}

.hero-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-form .input { flex: 1; }

.hero-note {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-slider {
  height: 440px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--border),
    0 0 60px rgba(201, 168, 76, 0.04);
}

.hero-visual-caption {
  text-align: center;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 18px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.9); }
  50%       { opacity: 0.8;  transform: scaleY(1.1); }
}

/* ============================================================
   BEFORE/AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* "Before" is the clipped top layer */
.ba-before {
  will-change: clip-path;
}

/* "After" is always the full base layer */
.ba-after {
  /* always visible */
}

/* Sat image divs fill their layer */
.ba-before > div,
.ba-after > div {
  position: absolute;
  inset: 0;
}

/* Real images inside ba layers */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
  width: 2px;
}
.ba-handle-line--top,
.ba-handle-line--bottom {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%);
}
.ba-handle-line--bottom {
  background: linear-gradient(to top, transparent, var(--gold) 20%);
}
.ba-handle-grip {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  flex-shrink: 0;
  pointer-events: all;
  cursor: ew-resize;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45), 0 0 0 3px rgba(201, 168, 76, 0.15);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.ba-handle-grip:hover,
.ba-handle-grip:active {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.6), 0 0 0 5px rgba(201, 168, 76, 0.12);
}
.ba-handle-grip--sm {
  width: 34px;
  height: 34px;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(8px);
  z-index: 5;
}
.ba-label--before { left: 16px;  color: var(--text-mid); }
.ba-label--after  { right: 16px; color: var(--teal); }

/* Hero grip pulse */
.hero-slider .ba-handle-grip {
  animation: gripPulse 2.5s ease-in-out infinite;
}
@keyframes gripPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45), 0 0 0 3px rgba(201, 168, 76, 0.15); }
  50%       { box-shadow: 0 6px 32px rgba(201, 168, 76, 0.65), 0 0 0 8px rgba(201, 168, 76, 0.08); }
}
.hero-slider .ba-handle-grip:hover,
.hero-slider .ba-handle-grip:active {
  animation: none;
}

/* ============================================================
   SATELLITE GRADIENTS (CSS-only aerial imagery)
   ============================================================ */

/* Hero variants */
.sat-before {
  background:
    radial-gradient(ellipse 28% 16% at 62% 38%, #6b7a56 0%, transparent 100%),
    radial-gradient(ellipse 18% 22% at 28% 68%, #5e5240 0%, transparent 100%),
    radial-gradient(ellipse 36% 26% at 74% 62%, #7a6c4e 0%, transparent 80%),
    radial-gradient(ellipse 14% 10% at 45% 22%, #4a5838 0%, transparent 100%),
    linear-gradient(148deg, #3c4830 0%, #4c5540 22%, #5a5242 50%, #4a5638 72%, #3e4c30 100%);
}
.sat-after {
  background:
    radial-gradient(ellipse 26% 17% at 49% 50%, #00c8e8 0%, #009abf 42%, #007898 72%, transparent 88%),
    radial-gradient(ellipse 18% 12% at 45% 47%, rgba(255, 255, 255, 0.24) 0%, transparent 60%),
    radial-gradient(ellipse 38% 27% at 49% 50%, rgba(218, 208, 192, 0.36) 0%, transparent 100%),
    radial-gradient(ellipse 28% 16% at 62% 38%, #6b7a56 0%, transparent 100%),
    radial-gradient(ellipse 18% 22% at 28% 68%, #5e5240 0%, transparent 100%),
    radial-gradient(ellipse 36% 26% at 74% 62%, #7a6c4e 0%, transparent 80%),
    radial-gradient(ellipse 14% 10% at 45% 22%, #4a5838 0%, transparent 100%),
    linear-gradient(148deg, #3c4830 0%, #4c5540 22%, #5a5242 50%, #4a5638 72%, #3e4c30 100%);
}

/* Gallery variant 1 — Austin */
.sat-v1 {
  background:
    radial-gradient(ellipse 34% 22% at 44% 54%, #7c6e54 0%, transparent 100%),
    radial-gradient(ellipse 22% 30% at 22% 28%, #576248 0%, transparent 100%),
    radial-gradient(ellipse 18% 14% at 82% 20%, #4c5e3c 0%, transparent 100%),
    radial-gradient(ellipse 26% 18% at 66% 76%, #6a5e44 0%, transparent 100%),
    linear-gradient(162deg, #4c5538 0%, #5c5240 36%, #50603c 66%, #404e2e 100%);
}
.sat-v1-after {
  background:
    radial-gradient(ellipse 30% 21% at 46% 52%, #00c2da 0%, #0096b8 46%, transparent 80%),
    radial-gradient(ellipse 20% 13% at 42% 48%, rgba(255,255,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 44% 31% at 46% 52%, rgba(218, 208, 188, 0.34) 0%, transparent 100%),
    radial-gradient(ellipse 34% 22% at 44% 54%, #7c6e54 0%, transparent 100%),
    radial-gradient(ellipse 22% 30% at 22% 28%, #576248 0%, transparent 100%),
    radial-gradient(ellipse 18% 14% at 82% 20%, #4c5e3c 0%, transparent 100%),
    radial-gradient(ellipse 26% 18% at 66% 76%, #6a5e44 0%, transparent 100%),
    linear-gradient(162deg, #4c5538 0%, #5c5240 36%, #50603c 66%, #404e2e 100%);
}

/* Gallery variant 2 — Scottsdale (desert) */
.sat-v2 {
  background:
    radial-gradient(ellipse 28% 24% at 58% 42%, #8c7858 0%, transparent 100%),
    radial-gradient(ellipse 22% 16% at 24% 64%, #6c7c5c 0%, transparent 100%),
    radial-gradient(ellipse 38% 20% at 42% 78%, #7e6848 0%, transparent 100%),
    radial-gradient(ellipse 20% 28% at 78% 28%, #8a7a5a 0%, transparent 100%),
    linear-gradient(138deg, #6e5e3c 0%, #7e6e4e 28%, #5e6842 58%, #6c6040 100%);
}
.sat-v2-after {
  background:
    radial-gradient(ellipse 25% 19% at 50% 46%, #00c4de 0%, #0098b8 52%, transparent 82%),
    radial-gradient(ellipse 17% 12% at 46% 42%, rgba(255,255,255,0.24) 0%, transparent 60%),
    radial-gradient(ellipse 38% 28% at 50% 46%, rgba(232, 220, 202, 0.38) 0%, transparent 100%),
    radial-gradient(ellipse 28% 24% at 58% 42%, #8c7858 0%, transparent 100%),
    radial-gradient(ellipse 22% 16% at 24% 64%, #6c7c5c 0%, transparent 100%),
    radial-gradient(ellipse 38% 20% at 42% 78%, #7e6848 0%, transparent 100%),
    radial-gradient(ellipse 20% 28% at 78% 28%, #8a7a5a 0%, transparent 100%),
    linear-gradient(138deg, #6e5e3c 0%, #7e6e4e 28%, #5e6842 58%, #6c6040 100%);
}

/* Gallery variant 3 — Miami (tropical lush) */
.sat-v3 {
  background:
    radial-gradient(ellipse 24% 34% at 68% 28%, #3e6232 0%, transparent 100%),
    radial-gradient(ellipse 32% 22% at 20% 58%, #5c7242 0%, transparent 100%),
    radial-gradient(ellipse 18% 26% at 52% 78%, #4c5e36 0%, transparent 100%),
    radial-gradient(ellipse 22% 14% at 38% 20%, #507040 0%, transparent 100%),
    linear-gradient(124deg, #32472a 0%, #4c622e 30%, #3c5230 60%, #445836 100%);
}
.sat-v3-after {
  background:
    radial-gradient(ellipse 28% 21% at 47% 47%, #00cce4 0%, #009ebe 44%, transparent 80%),
    radial-gradient(ellipse 19% 13% at 43% 43%, rgba(255,255,255,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 42% 30% at 47% 47%, rgba(210, 224, 202, 0.3) 0%, transparent 100%),
    radial-gradient(ellipse 24% 34% at 68% 28%, #3e6232 0%, transparent 100%),
    radial-gradient(ellipse 32% 22% at 20% 58%, #5c7242 0%, transparent 100%),
    radial-gradient(ellipse 18% 26% at 52% 78%, #4c5e36 0%, transparent 100%),
    radial-gradient(ellipse 22% 14% at 38% 20%, #507040 0%, transparent 100%),
    linear-gradient(124deg, #32472a 0%, #4c622e 30%, #3c5230 60%, #445836 100%);
}

/* ============================================================
   INPUT MODES
   ============================================================ */
.modes { background: var(--dark); }

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ── Mode card ── */
.mode-card {
  background: var(--dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.mode-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.mode-card--highlight {
  border-color: var(--gold-dim);
}
.mode-card--highlight:hover {
  border-color: rgba(201,168,76,0.4);
}

/* ── Preview panel ── */
.mode-preview {
  position: relative;
  height: 240px;
  overflow: hidden;
}

/* Real-image before/after slider inside mode card */
.mode-preview-slider {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  height: 100%;
}
.mode-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-mid);
  z-index: 5;
}
.mode-badge--teal { color: var(--teal); border-color: var(--teal-dim); }

/* ── Aerial mock ── */
.mode-aerial-mock {
  position: absolute;
  inset: 0;
}
.mode-aerial-mock > .sat-after {
  position: absolute;
  inset: 0;
}
.mode-compass {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  letter-spacing: 0;
  z-index: 5;
}
.mode-scale {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  z-index: 5;
}
.mode-scale span {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ── Street View mock ── */
.mode-street-mock {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sv-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom,
    #0d1a28 0%,
    #142436 40%,
    #1a3040 70%,
    #1e3a4a 100%);
}
.sv-treeline {
  position: absolute;
  top: 28%;
  left: 0; right: 0;
  height: 30%;
  background:
    radial-gradient(ellipse 18% 60% at 8%  100%, #1e3a1e 0%, transparent 100%),
    radial-gradient(ellipse 14% 55% at 18% 100%, #243c24 0%, transparent 100%),
    radial-gradient(ellipse 20% 65% at 30% 100%, #1a341a 0%, transparent 100%),
    radial-gradient(ellipse 12% 50% at 52% 100%, #22381a 0%, transparent 100%),
    radial-gradient(ellipse 18% 60% at 70% 100%, #1e3a1e 0%, transparent 100%),
    radial-gradient(ellipse 14% 55% at 85% 100%, #243c24 0%, transparent 100%),
    radial-gradient(ellipse 16% 58% at 96% 100%, #1a341a 0%, transparent 100%);
}
.sv-house {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sv-roof {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 44px solid #2a2a2e;
  position: relative;
}
.sv-wall {
  width: 136px;
  height: 68px;
  background: #252530;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.sv-door {
  width: 22px;
  height: 38px;
  background: #1a1a22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px 2px 0 0;
  margin-bottom: 0;
}
.sv-window {
  position: absolute;
  top: 14px;
  width: 20px;
  height: 18px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 1px;
}
.sv-window--l { left: 14px; }
.sv-window--r { right: 14px; }
.sv-garage {
  width: 56px;
  height: 34px;
  background: #1e1e28;
  border: 1px solid rgba(255,255,255,0.06);
  align-self: flex-end;
  margin-left: 4px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  position: absolute;
  right: -64px;
  bottom: 0;
}
.sv-lawn {
  position: absolute;
  bottom: 20%;
  left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to bottom, #1e3a1e 0%, #243024 100%);
}
.sv-road {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to bottom, #1a1a1e 0%, #141418 100%);
}
.sv-road::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201,168,76,0.25) 0px,
    rgba(201,168,76,0.25) 24px,
    transparent 24px,
    transparent 48px
  );
}
.sv-pool-badge {
  position: absolute;
  bottom: 24%;
  right: 10px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--teal-dim);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 5;
}

/* ── Upload mock ── */
.mode-upload-mock {
  position: absolute;
  inset: 0;
  background: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
}

/* Photo source (left) — real image clipped to left panel */
.upload-photo-bg {
  position: absolute;
  inset: 0;
  clip-path: inset(0 55% 0 0);
  overflow: hidden;
}
/* Phone widget */
.upload-phone {
  flex-shrink: 0;
  width: 64px;
  height: 100px;
  background: #1a1a20;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.upload-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  width: 24px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.upload-phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.upload-phone-screen span {
  font-size: 6px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Arrow */
.upload-arrow {
  flex-shrink: 0;
  z-index: 4;
  opacity: 0.7;
}

/* Result preview (right) */
.upload-result {
  flex-shrink: 0;
  width: 100px;
  height: 130px;
  border-radius: 4px;
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  position: relative;
  z-index: 4;
  box-shadow: 0 8px 28px rgba(201,168,76,0.15);
}
.upload-result > .sat-after {
  position: absolute;
  inset: 0;
}
.upload-result-label {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(10,10,10,0.8);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ── Mode card body ── */
.mode-body {
  padding: 28px 28px 32px;
}
.mode-icon {
  margin-bottom: 16px;
}
.mode-body h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 12px;
}
.mode-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.mode-body p em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.mode-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode-features li {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mode-features li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .modes-grid { grid-template-columns: 1fr; }
  .mode-preview { height: 200px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: var(--dark-900); }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}

.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  gap: 6px;
}
.hiw-connector-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.hiw-step { padding: 0 32px; }

.hiw-num {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.hiw-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 14px;
}
.hiw-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   USE CASES
   ============================================================ */
.uc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.uc-card {
  position: relative;
  background: var(--dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 52px 48px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.uc-card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
}
.uc-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.uc-card:hover .uc-card-accent {
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
}

.uc-card-icon { margin-bottom: 28px; }

.uc-card h3 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 12px;
}
.uc-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 22px;
  line-height: 1.5;
}
.uc-body {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.uc-list { list-style: none; }
.uc-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}
.uc-list li:last-child { border-bottom: none; }
.uc-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--dark-900); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-card:hover {
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.gallery-card .ba-slider {
  height: 270px;
  border-radius: 0;
  border: none;
}

.gallery-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--dark-800);
  border-top: 1px solid var(--border-subtle);
}
.gallery-addr {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.gallery-time {
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   DEMO
   ============================================================ */
.demo-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--dark-800);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.demo-form {
  padding: 48px 52px;
  border-bottom: 1px solid var(--border-subtle);
}
.demo-input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.demo-input-row .input { flex: 1; }
.demo-note {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Demo result slider */
.demo-ba-slider {
  height: 420px;
  border-radius: 0;
  border: none;
}
.demo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Waitlist fallback */
.demo-waitlist {
  padding: 64px 52px;
  text-align: center;
}
.demo-waitlist-icon { margin: 0 auto 24px; }
.demo-waitlist-inner h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}
.demo-waitlist-inner p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.btn-spinner svg { animation: spin 0.75s linear infinite; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 52px 48px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, var(--dark-700) 0%, var(--dark-800) 100%);
}
.pricing-card--featured:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -1px; right: 36px;
  background: var(--gold);
  color: #080808;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 5px 5px;
}

.pricing-tier {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}
.pricing-currency {
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--text-mid);
}
.pricing-period {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  align-self: flex-end;
  margin-bottom: 6px;
}

.pricing-desc {
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 11px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--dark-900); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { width: 8px; height: 1px; }
.faq-icon::after  { width: 1px; height: 8px; }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--gold-glow);
  border-color: var(--gold-dim);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 48px 24px 0;
  overflow: hidden;
}
.faq-a[hidden] { display: none; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 112px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 110%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    var(--dark-800);
}
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.cta-band-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 12px;
}
.cta-form .input { flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-logo {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.footer-nav { display: flex; gap: 36px; }
.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* ============================================================
   TOAST
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--dark-700);
  border: 1px solid var(--gold-dim);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 64px 48px 80px;
  }
  .hero-slider { height: 340px; }
  .hero-sub { max-width: 100%; }
  .hero-scroll-hint { display: none; }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hiw-connector { display: none; }
  .hiw-step {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .hiw-step:last-child { border-bottom: none; }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cta-form { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-inner { padding: 0 24px; }

  .uc-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }

  .hero-form { flex-direction: column; }
  .demo-form { padding: 32px 28px; }
  .demo-input-row { flex-direction: column; }
  .waitlist-form { flex-direction: column; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-nav { justify-content: center; }

  .uc-card { padding: 36px 28px; }
  .pricing-card { padding: 40px 32px; }

  .demo-waitlist { padding: 40px 28px; }
  .hero-slider { height: 280px; }
}

/* ============================================================
   CTA BAND — Get Started variant
   ============================================================ */
.cta-band-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.cta-band-note {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
  .cta-band-action { align-items: center; }
}

/* ============================================================
   ASSESSMENT MODAL
   ============================================================ */
#assessment-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#assessment-modal:not([open]) { display: none; }
#assessment-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.assessment-modal {
  position: relative;
  background: var(--dark-800);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 52px 44px;
  max-width: 520px;
  width: calc(100vw - 48px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 0 0 0 1px var(--border-subtle);
}

.assessment-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 0;
}
.assessment-close:hover {
  color: var(--text);
  background: var(--dark-700);
}

/* Progress bar */
.assessment-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}
.assessment-dot {
  height: 3px;
  flex: 1;
  background: var(--dark-600);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.assessment-dot.active { background: var(--gold); }
.assessment-dot.done   { background: rgba(201, 168, 76, 0.4); }

.assessment-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.25;
}

/* Options grid */
.assessment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.assessment-options--col {
  grid-template-columns: 1fr;
}

.assessment-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 16px 18px;
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s;
}
.assessment-option:hover {
  border-color: var(--gold-dim);
  background: var(--dark-600);
}
.assessment-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.opt-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}
.opt-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Nav row */
.assessment-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

/* Step 4 extras */
.assessment-sub {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.assessment-textarea {
  display: block;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 12px;
  height: auto;
  line-height: 1.55;
  padding-top: 12px;
  padding-bottom: 12px;
}
#assessment-email { margin-bottom: 10px; }
.assessment-hint {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .assessment-modal { padding: 36px 24px 32px; }
  .assessment-options { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
#contact-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#contact-modal:not([open]) { display: none; }
#contact-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.contact-modal {
  position: relative;
  background: var(--dark-800);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 48px 40px;
  width: min(520px, 92vw);
  max-height: 90dvh;
  overflow-y: auto;
}

.contact-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-modal h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-modal-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-field { display: flex; flex-direction: column; gap: 6px; }

.contact-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.contact-form-footer { margin-top: 8px; }

.footer-contact-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
  padding: 0;
}
.footer-contact-btn:hover { color: var(--gold); }

@media (max-width: 600px) {
  .contact-modal { padding: 36px 24px 32px; }
}
