/* ============================================================================
   LUXICLEAN — design system
   Rebrand palette lives in :root. Component classes are documented in
   BUILD_PLAN.md §2–3. Font: Open Sans only (300–800).
   ============================================================================ */

:root {
  /* Brand */
  --teal: #55a6dd;          /* Luxiclean logo blue — primary accent (buttons, tags, checks, hovers) */
  --teal-dark: #3f88bd;     /* logo blue — primary hover */
  --brand-blue: #55a6dd;      /* logo sky blue — the "C" / "clean" */
  --brand-blue-dark: #3f88bd; /* logo blue hover */
  --brand-blue-tint: #eaf4fb; /* pale blue — nav hover background */
  --brand-ink: #17191d;       /* logo black — the "L" / "luxi" */
  --navy: #0a2540;          /* dark sections, headings, footer, overlays */
  --navy-light: #10395f;    /* navy hover */
  --tint: #eef5fb;          /* pale blue — alternating section background */
  --accent-light: #a9d7f5;  /* light logo blue — accents on navy */
  --star: #facc15;          /* rating stars */
  --star-strip: #fde047;    /* stars on teal strip */

  /* Neutrals */
  --ink: #1f2937;           /* body text */
  --ink-soft: #4b5563;      /* subtitles */
  --ink-mute: #9ca3af;      /* fine print */
  --line: #f3f4f6;          /* card borders */
  --line-2: #e5e7eb;        /* input borders */
  --bg-soft: #f9fafb;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Shadows (Tailwind-equivalent) */
  --sh-sm: 0 1px 2px rgba(0,0,0,.05);
  --sh-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --sh-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --sh-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --sh-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
}

*, *::before, *::after { box-sizing: border-box; }
/* The HTML `hidden` attribute (toggled via el.hidden in main.js) must win over
   component display rules like .form-alert/.form-success { display:flex }.
   Author CSS overrides the browser's default [hidden]{display:none}, so without
   this the success/error panels could never actually hide. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 80px; /* fixed 80px header */
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1rem; line-height: 1.625; color: var(--ink); background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: inherit; color: var(--navy); line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* ---------------- Sections ---------------- */
.section-padding { padding-block: 4rem; }

@media (min-width: 768px)  { .section-padding { padding-block: 5rem; } }
@media (min-width: 1024px) { .section-padding { padding-block: 6rem; } }

.bg-white { background: #fff; }
.bg-tint  { background: var(--tint); }
.bg-navy  { background: var(--navy); color: #e5e7eb; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy-grad {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #e5e7eb; position: relative; overflow: hidden;
}
.bg-navy-grad h2 { color: #fff; }

.section-tag {
  display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--teal); margin-bottom: .75rem;
}
.bg-navy .section-tag, .bg-navy-grad .section-tag { color: var(--accent-light); }
.section-title { font-size: 1.875rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { font-size: 1.125rem; line-height: 1.75rem; color: var(--ink-soft); max-width: 42rem; margin-top: 1rem; }
.bg-navy .section-subtitle, .bg-navy-grad .section-subtitle { color: #d1d5db; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin-inline: auto; }

/* ---------------- Buttons (rounded-lg, NOT pills) ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: .5rem; font-weight: 700; font-size: 1rem;
  white-space: nowrap; transition: all .2s var(--ease); border: 0; line-height: 1.4;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--sh-md); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--sh-lg); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--sh-md); }
.btn-navy:hover { background: var(--navy-light); box-shadow: var(--sh-lg); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: calc(.75rem - 2px) calc(1.5rem - 2px); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--brand-blue); box-shadow: var(--sh-md); }
.btn-white:hover { background: var(--tint); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-outline.btn-lg { padding: calc(1rem - 2px) calc(2rem - 2px); }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-outline.btn-sm { padding: calc(.625rem - 2px) calc(1.25rem - 2px); }
.btn-block { width: 100%; }
.btn .ic { flex: 0 0 auto; }

/* Arrow text links: gap grows on hover */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem;
  font-weight: 700; color: var(--teal); transition: all .2s var(--ease);
}
.arrow-link:hover { gap: .625rem; color: var(--teal-dark); }

/* ---------------- Cards ---------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 1rem;
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: box-shadow .15s var(--ease); /* shadow only — no lift */
}
.card:hover { box-shadow: var(--sh-md); }
/* Bottom "Get a Quote" CTA — All Services page: no background/border, tight top spacing, floats on the white page */
.services-quote-cta { background: transparent; padding: 2rem 2.5rem; text-align: center; }  /* no bg, no border/shadow, py-8 */
.card-body { padding: 1.5rem; }
.card-photo { position: relative; height: 13rem; overflow: hidden; }
.card-photo .ph-photo { transition: transform .5s var(--ease); }
/* Real photos inside a card's top section: fill without distortion; the card's
   border-radius + overflow:hidden clip the top corners. Same hover zoom as placeholders. */
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
a.card:hover .card-photo .ph-photo, .card:hover > .card-photo .ph-photo,
a.card:hover .card-photo img, .card:hover > .card-photo img { transform: scale(1.05); }

/* Free-Quote split card: image LEFT / form RIGHT on desktop, stacked on mobile.
   Outer .card keeps its border/shadow/radius; overflow:hidden clips the image corners. */
.quote-split { display: flex; flex-direction: column; padding: 0; }
.quote-split-media { width: 100%; }
.quote-split-media img { display: block; width: 100%; height: auto; object-fit: cover; }
.quote-split-body { flex: 1; }
@media (min-width: 768px) {
  .quote-split { flex-direction: row; align-items: stretch; }
  .quote-split-media { flex: 0 0 42%; }
  .quote-split-media img { height: 100%; } /* fill the column height beside the form */
}

/* ---- Quote page: two-column hero-split (image | navy form panel) ---- */
.quote-hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; max-width: 68rem; margin-inline: auto; }
@media (min-width: 1024px) { .quote-hero-grid { grid-template-columns: 1fr 1fr; } } /* lg:grid-cols-2 */
.quote-hero-media { position: relative; min-height: 500px; border-radius: 1rem; overflow: hidden; box-shadow: var(--sh-lg); } /* rounded-2xl */
.quote-hero-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; filter: brightness(.9); } /* h-full min-h-[500px] object-cover + subtle darken */
.quote-hero-form { background: var(--navy); color: #fff; padding: 3rem; border-radius: 1rem; box-shadow: var(--sh-lg); } /* p-12 */
@media (max-width: 640px) { .quote-hero-form { padding: 2rem; } }
.quote-hero-form h2 { color: #fff; font-size: 1.6rem; margin: 0 0 .4rem; }
.quote-hero-sub { color: #cbd5e1; font-size: .95rem; margin: 0 0 1.75rem; }
/* Modern form polish, scoped to the navy panel */
.quote-hero-form .field { margin-bottom: 1.5rem; }          /* gap-6 */
.quote-hero-form .field-row { gap: 1.5rem; }                 /* gap-6 */
.quote-hero-form .field label { color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: .5rem; } /* larger labels */
.quote-hero-form .field label .optional { color: #94a3b8; }
.quote-hero-form .field label .req { color: #93c5fd; }
.quote-hero-form .field input, .quote-hero-form .field select, .quote-hero-form .field textarea {
  border: 1px solid #e2e8f0; border-radius: .6rem; padding: .7rem .9rem; font-size: .95rem;  /* clean, light-border inputs */
}
.quote-hero-form .field input:focus, .quote-hero-form .field select:focus, .quote-hero-form .field textarea:focus {
  border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.3); outline: none;             /* focus:border-blue-500 */
}
.quote-hero-form .micro { color: #94a3b8; }

/* High-contrast blue CTA */
.btn-blue { background: #2563eb; color: #fff; box-shadow: var(--sh-md); }  /* bg-blue-600 */
.btn-blue:hover { background: #1d4ed8; box-shadow: var(--sh-lg); }

/* ---- Quote page: centered white "portal" card on a soft page background ---- */
.bg-slate-50 { background: #f8fafc; }                                     /* very light page bg */
.quote-portal { max-width: 42rem; margin-inline: auto; background: #fff;  /* max-w-2xl mx-auto, white */
  border-radius: 1.5rem; box-shadow: var(--sh-xl); padding: 2.5rem; }     /* rounded-3xl, shadow-xl, p-10 */
@media (min-width: 768px) { .quote-portal { padding: 4rem; } }            /* md:p-16 */
.quote-portal-title { color: var(--navy); font-size: 1.75rem; margin: 0 0 .4rem; text-align: center; }
.quote-portal-sub { color: var(--ink-soft); font-size: .95rem; margin: 0 0 2rem; text-align: center; }
/* form: space-y-6, larger labels, soft borders */
.quote-portal .field { margin-bottom: 1.5rem; }        .quote-portal .field-row { gap: 1.5rem; }
.quote-portal .field label { font-size: .95rem; font-weight: 600; color: #334155; margin-bottom: .5rem; }
.quote-portal .field input, .quote-portal .field select, .quote-portal .field textarea {
  border: 1px solid #e2e8f0; border-radius: .6rem; padding: .7rem .9rem; font-size: .95rem;  /* border-slate-200 */
}
.quote-portal .field input:focus, .quote-portal .field select:focus, .quote-portal .field textarea:focus {
  border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.3); outline: none;             /* focus:border-blue-500 */
}
/* Soft "Luxiclean blue" glow background + decorative circles + trust row */
.quote-bg { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 55%); }                    /* from-blue-50 to-white */
.quote-glow-circle { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(64px); z-index: 0; pointer-events: none; } /* w-96 rounded-full blur-3xl */
.quote-glow-circle.a { background: rgba(219,234,254,.5); top: -5rem; left: -5rem; }             /* bg-blue-100/50 -top-20 -left-20 */
.quote-glow-circle.b { background: rgba(191,219,254,.35); bottom: -6rem; right: -4rem; width: 22rem; height: 22rem; } /* balancing accent */
.quote-portal { position: relative; z-index: 1; }                                              /* keep card above the glow */
.quote-trust-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 42rem; margin: 2.5rem auto 0; }
@media (min-width: 640px) { .quote-trust-row { grid-template-columns: repeat(3, 1fr); } }
.quote-trust-item { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; color: var(--navy); font-weight: 600; font-size: .9rem; }
.quote-trust-item .ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #dbeafe; color: #2563eb; }

/* "How It Works" 3-step row on the quote page */
.how-step { text-align: center; padding: 0 1rem; }
.how-step-ic { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #dbeafe; color: #2563eb; margin-bottom: 1rem; }
.how-step h3 { font-size: 1.15rem; color: var(--navy); margin: 0 0 .45rem; }
.how-step p { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; margin: 0 auto; max-width: 22rem; }

/* Solid branded intro card (top of the quote page) — matches the bordered cards below */
/* Dark navy hero header — Quote page ONLY; keeps the site's rounded-3xl + border-slate-200 hero framing, white text */
/* Background exactly reproduces the "Our Story" hero grading: 60% black overlay layered over the blue→navy gradient */
.quote-intro-card { background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), linear-gradient(135deg, #3f88bd 0%, #0a2540 70%); border: 1px solid #e2e8f0; border-radius: 1.5rem; box-shadow: var(--sh-sm); padding: 2.5rem; text-align: center; color: #fff; }  /* deep navy grading, border-slate-200, rounded-3xl, shadow-sm, p-10 */
.quote-intro-card .section-title { color: #fff; }
.quote-intro-card .section-subtitle { color: #e5e7eb; }
.quote-intro-card .badge-soft { background: rgba(85,166,221,.92); color: #fff; }
.quote-intro-card .pill-tab { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; }
.quote-intro-card .pill-tab:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45); color: #fff; }

/* Quote page two-column layout: form card (left) + How It Works stacked (right) */
.quote-two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }  /* grid-cols-1 lg:grid-cols-2 gap-12 */
@media (min-width: 1024px) { .quote-two-col { grid-template-columns: 1fr 1fr; } }
.quote-two-col .quote-portal { max-width: none; margin: 0; padding: 2rem; background: #fff; border: 2px solid var(--navy); box-shadow: var(--sh-lg); }  /* form card: p-8, bg-white, border-2 border-blue-100, shadow-lg */
.quote-two-col .quote-portal-title, .quote-two-col .quote-portal-sub { text-align: left; }
/* How It Works: a matching bordered white card, steps stacked with consistent spacing */
/* Right column: How It Works card + Prefer-to-talk card, stacked with gap-y-8 */
.quote-right-col { display: grid; gap: 2rem; align-content: start; }
.quote-talk { background: #fff; border: 2px solid var(--navy); border-radius: 1.5rem; padding: 2rem; text-align: center; }
.quote-how { display: grid; gap: 1.5rem; align-content: start; background: #fff; border: 2px solid var(--navy); border-radius: 1.5rem; padding: 2rem; }
.how-step-v { display: flex; gap: 1rem; align-items: flex-start; }
.how-step-v .how-step-ic { flex: 0 0 auto; margin: 0; width: 52px; height: 52px; }
.how-step-v h3 { font-size: 1.1rem; color: var(--navy); margin: 0 0 .3rem; }
.how-step-v p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; margin: 0; }
.photo-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--teal); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem .625rem; border-radius: 999px;
}
.photo-overlay-title {
  position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end;
  padding: 1rem; transition: background .2s var(--ease);
  /* Dark gradient over the BOTTOM of the image only — keeps bright photos vivid
     up top while keeping the white title crisp and legible below. */
  background: linear-gradient(to top, rgba(15,23,42,.8) 0%, rgba(15,23,42,0) 55%);
}
a.card:hover .photo-overlay-title { background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,0) 60%); }
.photo-overlay-title h3 { color: #fff; margin: 0; font-size: 1.25rem; }

/* Glassmorphism cards on navy */
.glass-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 1.5rem;
}
.glass-card blockquote { margin: .75rem 0 1rem; font-style: italic; color: #e5e7eb; font-size: .95rem; }

/* ---------------- Photo placeholders (swap for real photos later) -------- */
.ph-photo {
  width: 100%; height: 100%; min-height: 100%; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.85); font-size: .8rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  background: linear-gradient(135deg, #55a6dd 0%, #3f88bd 55%, #0a2540 130%);
}
.ph-photo.alt-1 { background: linear-gradient(150deg, #10395f 0%, #0a2540 60%, #55a6dd 145%); }
.ph-photo.alt-2 { background: linear-gradient(120deg, #3f88bd 0%, #55a6dd 50%, #a9d7f5 130%); }
.ph-photo.alt-3 { background: linear-gradient(160deg, #0a2540 0%, #10395f 55%, #3f88bd 130%); }
.ph-photo::after { content: attr(data-label); }
.img-frame { border-radius: 1rem; overflow: hidden; box-shadow: var(--sh-lg); }
.img-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.aspect-4x3 { aspect-ratio: 4 / 3; }
.aspect-4x5 { aspect-ratio: 4 / 5; }
.aspect-16x9 { aspect-ratio: 16 / 9; }

/* ---------------- Grids ---------------- */
.grid { display: grid; gap: 1.5rem; }
.grid.gap-sm { gap: 1.25rem; }
.grid.gap-lg { gap: 2.5rem; }
@media (min-width: 768px) {
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3.md-2 { grid-template-columns: repeat(2, 1fr); }
}
.grid.cols-2-fixed { grid-template-columns: repeat(2, 1fr); }

/* ---------------- Check lists ---------------- */
.check-list li {
  position: relative; padding-left: 1.75rem; margin-bottom: .625rem; color: var(--ink-soft);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.125rem; height: 1.125rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355a6dd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.bg-navy .check-list li { color: #d1d5db; }
.bg-navy .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9d7f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.check-list .qualifier { color: var(--ink-mute); font-style: italic; font-size: .875rem; }

/* ---------------- Stars ---------------- */
.stars { color: var(--star); letter-spacing: .08em; font-size: 1rem; }
.stars.on-strip { color: var(--star-strip); }

/* ---------------- Heroes ---------------- */
.hero-photo {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #3f88bd 0%, #0a2540 70%);
}
.hero-photo .hero-scrim { position: absolute; inset: 0; background: rgba(10,37,64,.65); }
.hero-photo .container { position: relative; z-index: 1; }
.hero-photo h1 { color: #fff; }
.hero-home { min-height: 92vh; display: flex; align-items: center; background: none; }
.hero-home .container { padding-block: 6rem; }
/* Homepage hero video background — no overlay/tint; the dark is baked into the video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-sub { padding-block: 5rem; }
.hero-sub.compact { padding-block: 4rem; }
.hero-navy { background: var(--navy); color: #e5e7eb; padding-block: 3.5rem; }
/* Rounded image "banner" hero (Who We Serve pages): image + dark overlay + overlaid text */
.hero-banner { position: relative; display: flex; align-items: center; min-height: 20rem; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--sh-lg); color: #fff; }
.hero-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.hero-banner-content { position: relative; z-index: 1; padding: 2.5rem; max-width: 46rem; }
.hero-banner .hero-title { color: #fff; }
/* Contained rounded hero card for Why Luxiclean + Resources subpages — Homeowners-style container + subtle slate border + light shadow */
.hero-banner-sub { background: linear-gradient(135deg, #3f88bd 0%, #0a2540 70%); border: 1px solid #e2e8f0; box-shadow: var(--sh-sm); }
.hero-navy h1 { color: #fff; }
.hero-eyebrow {
  display: inline-block; background: rgba(85,166,221,.92); color: #fff;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: .375rem .875rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-title { font-size: 2.25rem; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 768px)  { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title .accent { color: var(--brand-blue); }
.hero-lede { font-size: 1.125rem; color: #e5e7eb; max-width: 40rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-lede { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.hero-trust li { display: flex; align-items: center; gap: .4rem; color: #e5e7eb; font-size: .875rem; }
.hero-trust li::before {
  content: ""; width: .875rem; height: .875rem; flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.55));
}

/* Homepage hero readability over the video background — pure-white text with a
   subtle dark shadow so it stays legible over the lighter frames of the video */
.hero-home h1,
.hero-home .hero-eyebrow,
.hero-home .hero-lede,
.hero-home .hero-trust li { text-shadow: 0 2px 5px rgba(0,0,0,.6); }
.hero-home .hero-lede,
.hero-home .hero-trust li { color: #ffffff; }
.breadcrumb { font-size: .875rem; color: #d1d5db; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .4rem; }
.breadcrumb a:hover { color: #fff; }

/* Trust strip under hero */
.trust-strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem; }
.trust-strip .grid { gap: 1rem 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .trust-strip .grid { grid-template-columns: repeat(4, 1fr); } }
.trust-strip .item { display: flex; align-items: center; gap: .625rem; color: #fff; font-weight: 700; font-size: .875rem; }
.trust-strip .item svg { color: var(--accent-light); flex: 0 0 auto; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 80px;
  background: #fff; box-shadow: var(--sh-sm); transition: all .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .5rem; }
.brand-logo { height: 42px; width: auto; display: block; }
.site-footer .brand-logo { height: 40px; background: #fff; border-radius: .5rem; padding: 5px 6px; box-shadow: var(--sh-sm); }
.brand-name { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; line-height: 1; }
.brand-name .lx { color: var(--brand-ink); }
.brand-name .cl { color: var(--brand-blue); }
.site-footer .brand-name .lx { color: #fff; }
@media (max-width: 400px) { .brand-name { font-size: 1rem; letter-spacing: .02em; } .brand-logo { height: 38px; } }

.main-nav { display: none; align-items: center; gap: .25rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.nav-drop { position: relative; }
.nav-drop > button, .main-nav > a {
  display: inline-flex; align-items: center; gap: .3rem; padding: .5rem .75rem;
  font-size: .875rem; font-weight: 600; color: var(--brand-ink); border-radius: .375rem;
  transition: color .15s var(--ease);
}
.nav-drop > button:hover, .main-nav > a:hover, .nav-drop.active > button, .main-nav > a.active { color: var(--brand-blue); }
.nav-drop .chev { transition: transform .15s var(--ease); }
.nav-drop.open .chev { transform: rotate(180deg); }
.drop-panel {
  display: none; position: absolute; top: 100%; left: 0; margin-top: .5rem; width: 16rem;
  background: #fff; border: 1px solid var(--line); border-radius: .75rem;
  box-shadow: var(--sh-xl); padding: .5rem; z-index: 60;
}
.nav-drop.open .drop-panel { display: block; }
.drop-item { display: block; padding: .625rem .75rem; border-radius: .5rem; transition: background .15s var(--ease); }
.drop-item:hover { background: var(--brand-blue-tint); }
.drop-item b { display: block; font-size: .875rem; color: var(--brand-ink); transition: color .15s var(--ease); }
.drop-item:hover b { color: var(--brand-blue); }
.drop-item span { display: block; font-size: .75rem; color: var(--ink-mute); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-phone { display: none; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; color: var(--brand-ink); transition: color .15s var(--ease); }
.header-phone:hover { color: var(--brand-blue); }
@media (min-width: 1024px) { .header-phone { display: inline-flex; } }
.header-book { display: none; }
@media (min-width: 1024px) { .header-book { display: inline-flex; } }
.mobile-call {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--teal); color: #fff;
  font-weight: 700; font-size: .8rem; padding: .5rem .875rem; border-radius: 999px;
}
.nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy); }
@media (min-width: 1024px) { .mobile-call, .nav-toggle { display: none; } }

/* Mobile menu (instant mount, body locked) */
.mobile-overlay { position: fixed; inset: 80px 0 0 0; background: rgba(0,0,0,.4); z-index: 40; display: none; }
.mobile-menu { position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 50; overflow-y: auto; display: none; padding: .5rem 1rem 2rem; }
body.menu-open .mobile-overlay, body.menu-open .mobile-menu { display: block; }
body.menu-open { overflow: hidden; }
.macc > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: .875rem .25rem; font-weight: 700; font-size: .95rem; color: var(--brand-ink);
  border-bottom: 1px solid var(--line);
}
.macc .chev { transition: transform .15s var(--ease); color: var(--ink-mute); }
.macc.open .chev { transform: rotate(180deg); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; }
.macc .acc-panel a { display: block; padding: .625rem 1rem; font-size: .875rem; color: var(--brand-ink); border-radius: .5rem; }
.macc .acc-panel a:hover { background: var(--brand-blue-tint); color: var(--brand-blue); }
.mobile-menu > a.flat { display: block; padding: .875rem .25rem; font-weight: 700; font-size: .95rem; color: var(--brand-ink); border-bottom: 1px solid var(--line); }
.mobile-menu .menu-ctas { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-2); display: grid; gap: .75rem; }

/* Mobile fixed bottom bar */
.mobile-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: flex;
  border-top: 1px solid var(--line-2); background: #fff; box-shadow: var(--sh-2xl);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottom-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem; font-weight: 700; font-size: .875rem; color: #fff;
}
.mobile-bottom-bar a.call { background: var(--navy); }
.mobile-bottom-bar a.book { background: var(--teal); }
@media (min-width: 1024px) { .mobile-bottom-bar { display: none; } }
@media (max-width: 1023.98px) { body { padding-bottom: 56px; } }

/* ---------------- Pre-footer CTA strip + footer ---------------- */
.prefooter-strip { background: var(--teal); color: #fff; padding-block: 1.25rem; }
.prefooter-strip .inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .prefooter-strip .inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.prefooter-strip .rating { display: flex; align-items: center; gap: .625rem; font-weight: 700; }
.prefooter-strip .actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.prefooter-strip .phone-btn {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--teal-dark);
  font-weight: 700; padding: .625rem 1.25rem; border-radius: .5rem; font-size: .9rem;
}
.prefooter-strip .phone-btn:hover { background: var(--tint); }

.site-footer { background: var(--navy); color: #d1d5db; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: .9rem; margin: .875rem 0 1rem; max-width: 36ch; }
.footer-contact { display: grid; gap: .5rem; margin-bottom: 1.125rem; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: #d1d5db; }
.footer-contact svg { color: var(--accent-light); flex: 0 0 auto; margin-top: .2rem; }
.footer-contact a:hover { color: #fff; }
.social-row { display: flex; gap: .625rem; }
.social-row a {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: .5rem;
  background: rgba(255,255,255,.1); color: #fff; transition: background .15s var(--ease);
}
.social-row a:hover { background: rgba(255,255,255,.2); }
.footer-col h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .875rem; color: #d1d5db; padding-block: .25rem; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.25rem; font-size: .75rem; color: var(--ink-mute);
}
.footer-bottom a:hover { color: #fff; }

/* ---------------- Zigzag process rows ---------------- */
.step-row { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 768px) {
  .step-row { flex-direction: row; gap: 3rem; }
  .step-row.reverse { flex-direction: row-reverse; }
  .step-row > * { flex: 1; }
}
.ghost-num { font-size: 4.5rem; font-weight: 800; line-height: 1; color: rgba(159,240,230,.5); display: block; margin-bottom: .25rem; }
.step-stack { display: grid; gap: 4rem; }

/* "Mirror" section — high-contrast image | black text panel (50/50 on desktop) */
.mirror-section {
  position: relative; display: grid; grid-template-columns: 1fr;   /* grid-cols-1 */
  background: #000; overflow: hidden;                               /* bg-black overflow-hidden */
  border-radius: 1rem; box-shadow: var(--sh-lg);                   /* keeps site's rounded/premium look */
}
.mirror-media img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 340px; } /* w-full h-full object-cover */
.mirror-text { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; padding: 2.5rem; } /* flex flex-col gap-6 justify-center (p-24 on desktop) */
.mirror-badge { color: #fff; font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; } /* text-white text-sm uppercase tracking-widest font-medium */
.mirror-heading { color: #fff; font-weight: 900; font-size: 2.5rem; letter-spacing: -.025em; line-height: 1; margin: 0; } /* text-white font-black text-6xl tracking-tight leading-none */
.mirror-desc { color: #cbd5e1; font-size: 1.125rem; line-height: 1.625; margin: 0; } /* text-slate-300 text-lg leading-relaxed */
@media (min-width: 768px) {
  .mirror-section { grid-template-columns: 1fr 1fr; }  /* md:grid-cols-2 */
  .mirror-text { padding: 6rem; }                       /* p-24 */
  .mirror-heading { font-size: 3.75rem; }               /* text-6xl */
}

/* ---------------- Testimonials ---------------- */
.review-card { display: flex; flex-direction: column; }
.review-card .avatar {
  width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center;
  background: var(--tint); color: var(--teal-dark); font-weight: 700; font-size: .75rem; flex: 0 0 auto;
}
.bg-navy .review-card .avatar { background: rgba(255,255,255,.15); color: var(--accent-light); }
.review-meta { display: flex; align-items: center; gap: .625rem; margin-top: auto; font-size: .875rem; }
.review-meta .who b { display: block; color: inherit; }
.review-meta .who span { font-size: .75rem; color: var(--ink-mute); }
.bg-navy .review-meta .who span { color: #9ca3af; }
.quote-tile { background: var(--tint); border-radius: .75rem; padding: 1.25rem; }
.quote-tile blockquote { margin: .5rem 0 .75rem; font-style: italic; color: var(--ink-soft); font-size: .875rem; }
.quote-tile .who { font-size: .75rem; font-weight: 600; color: var(--navy); }

/* ---------------- Chips / pills ---------------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; }
.chip {
  display: inline-block; background: var(--navy); color: #fff; font-size: .875rem;
  font-weight: 600; padding: .625rem 1rem; border-radius: 999px; transition: background .15s var(--ease);
}
.chip:hover { background: var(--navy-light); }
.chip-tint {
  display: block; background: var(--tint); color: var(--navy); font-weight: 600; font-size: .9rem;
  padding: .875rem 1rem; border-radius: .75rem; text-align: center; transition: all .15s var(--ease);
}
.chip-tint:hover { background: #dcebf9; color: var(--teal-dark); }
.pill-tab {
  display: inline-flex; align-items: center; gap: .4rem; padding: .625rem 1rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2); font-size: .875rem; font-weight: 600;
  color: var(--ink-soft); transition: all .15s var(--ease);
}
.pill-tab:hover { border-color: var(--navy); background: var(--tint); }
.pill-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.tab-row { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; margin-bottom: 2.5rem; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---------------- Accordions (FAQ) ---------------- */
.acc-item { border: 1px solid var(--line); border-radius: .75rem; background: #fff; margin-bottom: .75rem; overflow: hidden; }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
  text-align: left; padding: 1rem 1.25rem; font-weight: 700; font-size: .95rem; color: var(--navy);
}
.acc-btn .chev { color: var(--teal); transition: transform .15s var(--ease); flex: 0 0 auto; }
.acc-item.open .acc-btn .chev { transform: rotate(180deg); }
.acc-item .acc-panel > div { padding: 0 1.25rem 1.125rem; color: var(--ink-soft); font-size: .9rem; }

/* ---------------- Article / sidebar layouts ---------------- */
.split-main { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .split-main { grid-template-columns: 2fr 1fr; align-items: start; } }
/* Service pages: single full-width content column (sidebar removed) + relocated info-cards row */
.service-body { max-width: 62rem; margin-inline: auto; }
.service-info-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-block: 2rem; }
@media (min-width: 720px) { .service-info-row { grid-template-columns: 1fr 1fr; align-items: start; } }
.sticky-side { display: grid; gap: 1.25rem; }
@media (min-width: 1024px) { .sticky-side.stick { position: sticky; top: 7rem; } }
.sidebar-card { border-radius: 1rem; padding: 1.25rem; }
.sidebar-card.navy { background: var(--navy); color: #fff; }
.sidebar-card.navy h3 { color: #fff; }
.sidebar-card.navy .sub { color: #d1d5db; font-size: .875rem; margin-bottom: 1rem; }
.sidebar-card.navy .tel-line { display: flex; justify-content: center; gap: .4rem; color: #d1d5db; font-size: .8rem; margin-top: .75rem; transition: color .15s var(--ease); }
.sidebar-card.navy .tel-line:hover { color: #fff; }

.price-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin-bottom: .75rem; }
.price-table td { padding: .5rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.sidebar-card.navy .price-table td { border-color: rgba(255,255,255,.12); color: #d1d5db; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.sidebar-card.navy .price-table td:last-child { color: #fff; }
.micro { font-size: .75rem; color: var(--ink-mute); }

/* Inline callouts */
.callout { border-radius: .75rem; padding: 1.125rem 1.25rem; margin-block: 1.5rem; font-size: .95rem; }
.callout.info { background: var(--tint); border: 1px solid #cfe4f7; }
.callout.warn { background: #fffbeb; border: 1px solid #fde68a; }
.callout h3, .callout h4 { margin-bottom: .375rem; font-size: 1rem; }

/* ---------------- Prose (blog + legal) ---------------- */
.prose { color: #374151; }
.prose h2 { font-size: 1.5em; margin: 1.6em 0 .6em; }
.prose h3 { font-size: 1.25em; font-weight: 600; margin: 1.4em 0 .5em; }
.prose p { margin-bottom: 1.1em; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1em; }
.prose ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: 1.1em; }
.prose li { margin-bottom: .4em; }
.prose hr { border: 0; border-top: 1px solid var(--line-2); margin: 2.5em 0; }
.prose a { color: var(--teal-dark); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--teal); padding-left: 1rem; font-style: italic; color: var(--ink-soft); margin: 1.5em 0; }
.toc-card { background: var(--tint); border-radius: 1rem; padding: 1.5rem; margin-bottom: 2.5rem; }
.toc-card .label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); margin-bottom: .75rem; }
.toc-card ol { list-style: decimal; list-style-position: inside; display: grid; gap: .375rem; }
@media (min-width: 640px) { .toc-card ol { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; } }
.toc-card a { font-size: .875rem; color: var(--teal-dark); }
.toc-card a:hover { text-decoration: underline; }
.tag-pill { display: inline-block; background: var(--tint); color: var(--navy); font-size: .75rem; font-weight: 500; padding: .25rem .75rem; border-radius: 999px; }

/* ---------------- Forms ---------------- */
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: #374151; margin-bottom: .375rem; }
.field label .req { color: var(--teal-dark); }
.field label .optional { color: var(--ink-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .875rem; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: .5rem; padding: .625rem 1rem; background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal);
}
.field input:disabled, .field select:disabled, .field textarea:disabled { background: var(--bg-soft); color: var(--ink-mute); }
.field textarea { resize: none; }
.field .err { color: var(--teal-dark); color: #dc2626; font-size: .75rem; margin-top: .25rem; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #dc2626; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp-wrap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-alert {
  display: flex; align-items: flex-start; gap: .5rem; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: .5rem; padding: .75rem 1rem; font-size: .875rem; color: #b91c1c; margin-bottom: 1rem;
}
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 4rem 1.5rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 1rem;
}
.form-success h3 { color: #14532d; font-size: 1.25rem; margin: .75rem 0 .5rem; }
.form-success p { color: #15803d; font-size: .875rem; margin-bottom: 1.5rem; }
@keyframes spin { to { transform: rotate(1turn); } }
.spin { animation: spin 1s linear infinite; }

/* ---------------- Before/After slider ---------------- */
.ba-slider {
  position: relative; overflow: hidden; border-radius: 1rem; aspect-ratio: 3 / 2;
  cursor: ew-resize; user-select: none; touch-action: none; box-shadow: var(--sh-lg);
}
.ba-slider .ba-before, .ba-slider .ba-after { position: absolute; inset: 0; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 3; }
.ba-handle::after {
  content: "⇔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; background: #fff; color: var(--teal); font-size: 1.25rem;
  border-radius: 999px; display: grid; place-items: center; box-shadow: var(--sh-xl);
}
.ba-label {
  position: absolute; bottom: .75rem; z-index: 2; font-size: .75rem; font-weight: 700;
  color: #fff; background: rgba(10,37,64,.75); padding: .25rem .625rem; border-radius: 999px;
}
.ba-label.before { left: .75rem; } .ba-label.after { right: .75rem; }
.ba-room { position: absolute; top: .75rem; left: .75rem; z-index: 2; background: var(--teal); color: #fff; font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.ba-hint { text-align: center; font-size: .8rem; color: var(--ink-mute); margin-top: .625rem; }

/* ---------------- Promo popup ---------------- */
.promo-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.8);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
body.promo-open .promo-overlay { display: flex; }
body.promo-open { overflow: hidden; }
.promo-card {
  position: relative; width: 90vw; max-width: 520px; border-radius: .75rem; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 80%); color: #fff;
  padding: 2.5rem 2rem; text-align: center;
}
.promo-card::before {
  content: ""; position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 14px 14px;
}
.promo-card h3 { color: #fff; font-size: 1.5rem; position: relative; }
.promo-card p { color: #d1d5db; font-size: .9rem; position: relative; }
.promo-cta {
  position: relative; display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  background: linear-gradient(90deg, var(--teal), var(--accent-light)); color: var(--navy);
  font-weight: 800; padding: .875rem 2rem; border-radius: .5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.promo-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-xl); }
.promo-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 2; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 999px; background: rgba(0,0,0,.3);
  color: #fff; transition: background .15s var(--ease);
}
.promo-close:hover { background: rgba(0,0,0,.5); }

/* ---------------- Misc utilities ---------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.center-ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.icon-tile {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: .5rem;
  background: var(--tint); color: var(--teal-dark); margin-bottom: 1rem;
}
.bg-underlay { position: absolute; inset: 0; opacity: .1; pointer-events: none; }
.stat-big { font-size: 2rem; font-weight: 800; color: var(--teal); }
.badge-soft { display: inline-block; background: var(--tint); color: var(--teal-dark); font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
