/* ==========================================================================
   Aureus ENT & Hearing Institute — Luxury Design System
   ========================================================================== */

:root {
  /* Brand palette — medical luxury */
  --teal-900: #06302f;
  --teal-800: #0a4744;
  --teal-700: #0e5b57;
  --teal-600: #137a74;
  --teal-500: #1a9b93;
  --teal-300: #7fd1ca;
  --teal-50:  #eef7f6;

  --gold-600: #a17a2e;
  --gold-500: #c69a4a;
  --gold-400: #d8b46b;
  --gold-300: #e7cd9a;

  --ivory:    #fbf8f3;
  --cream:    #f5efe4;
  --surface:  #ffffff;

  --ink:      #11201f;
  --slate:    #46555a;
  --muted:    #6b7a7e;
  --line:     #e7e1d6;

  /* Type scale */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing & shape */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(6, 48, 47, 0.06);
  --shadow: 0 18px 50px rgba(6, 48, 47, 0.10);
  --shadow-lg: 0 40px 90px rgba(6, 48, 47, 0.16);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--slate); }

::selection { background: var(--gold-300); color: var(--teal-900); }

/* Layout helpers ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold-500);
}
.eyebrow.center-line { justify-content: center; }

.h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); }
.h2 { font-size: clamp(2rem, 3.6vw, 2.95rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.lead { font-size: 1.18rem; color: var(--slate); max-width: 60ch; }

.section-head { max-width: 720px; margin: 0 auto 64px; }
.section-head.left { margin-inline: 0; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 600;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s var(--ease);
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--teal-900); box-shadow: 0 12px 30px rgba(161, 122, 46, 0.28);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(161, 122, 46, 0.4); transform: translateY(-2px); }
.btn-dark { background: var(--teal-800); color: #fff; }
.btn-dark:hover { background: var(--teal-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--teal-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal-600); color: var(--teal-700); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.2); }

/* Header / Nav ------------------------------------------------------------ */
.topbar {
  background: var(--teal-900); color: rgba(255,255,255,0.82);
  font-size: 0.84rem; letter-spacing: 0.02em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: 10px; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-400); }
.topbar-meta { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar-meta span, .topbar-meta a { display: inline-flex; align-items: center; gap: 8px; }
.topbar-meta svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar-social { display: flex; gap: 16px; }
.topbar-social svg { width: 16px; height: 16px; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--teal-700), var(--teal-900));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 26px; height: 26px; color: var(--gold-400); }
.brand-text { line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; color: var(--teal-900); }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--slate);
  padding: 10px 16px; border-radius: 100px; transition: all 0.2s; position: relative;
}
.nav-links a:hover { color: var(--teal-800); background: var(--teal-50); }
.nav-links a.active { color: var(--teal-800); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--teal-900); }
.nav-toggle svg { width: 28px; height: 28px; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--teal-900); padding: 30px 24px;
  flex-direction: column; transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-top .brand-name, .mobile-menu-top .brand-sub { color: #fff; }
.mobile-menu-close { background: none; border: none; color: #fff; cursor: pointer; }
.mobile-menu-close svg { width: 30px; height: 30px; }
.mobile-menu a { color: rgba(255,255,255,0.9); font-family: var(--font-display); font-size: 1.7rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-menu a:hover { color: var(--gold-400); }
.mobile-menu .btn { margin-top: 30px; }

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--teal-900); color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--teal-900) 18%, rgba(6,48,47,0.78) 55%, rgba(6,48,47,0.45) 100%);
}
.hero .container { position: relative; z-index: 1; padding-block: 130px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero-lead { color: rgba(255,255,255,0.82); font-size: 1.2rem; max-width: 52ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-trust .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-400); line-height: 1; }
.hero-trust .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(10px);
}
.hero-card h3 { color: #fff; font-size: 1.25rem; }
.hero-card .badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--gold-400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.hero-card .badge svg { width: 16px; height: 16px; }
.hero-hours { list-style: none; margin: 0; padding: 0; }
.hero-hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.hero-hours li:last-child { border: none; }
.hero-hours .day { color: rgba(255,255,255,0.7); }
.hero-hours .open { color: var(--teal-300); font-weight: 600; }

/* Marquee / trust strip --------------------------------------------------- */
.trust-strip { background: var(--teal-800); padding: 22px 0; }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; }

/* Cards ------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card.hover-lift { cursor: pointer; }
.card.hover-lift:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--teal-300); }

.svc-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-700); margin-bottom: 22px;
  transition: all 0.35s var(--ease);
}
.svc-icon svg { width: 30px; height: 30px; }
.card.hover-lift:hover .svc-icon { background: var(--teal-800); color: var(--gold-400); }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card p { font-size: 0.97rem; margin-bottom: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-700); font-weight: 600; font-size: 0.92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.card.hover-lift:hover .card-link svg { transform: translateX(4px); }

/* Feature media ----------------------------------------------------------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.media-split.reverse .media-text { order: 2; }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.media-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 22px 26px; display: flex; gap: 18px; align-items: center;
  box-shadow: var(--shadow);
}
.media-badge .mb-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-800); display: grid; place-items: center; flex-shrink: 0; }
.media-badge .mb-icon svg { width: 26px; height: 26px; color: var(--gold-400); }
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.media-badge span { font-size: 0.86rem; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--slate); font-size: 1rem; }
.check-list svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* Stats ------------------------------------------------------------------- */
.stats-band { background: var(--teal-900); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold-400); line-height: 1; }
.stat .lbl { color: rgba(255,255,255,0.78); margin-top: 10px; font-size: 0.95rem; }

/* Testimonials ------------------------------------------------------------ */
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; position: relative;
}
.testimonial .stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold-500); }
.testimonial .stars svg { width: 18px; height: 18px; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; color: var(--ink); margin: 0 0 24px; font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial .author strong { display: block; font-size: 0.98rem; color: var(--ink); }
.testimonial .author span { font-size: 0.86rem; color: var(--muted); }

/* FAQ / Accordion --------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
}
.acc-q .icon { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s; }
.acc-q .icon svg { width: 16px; height: 16px; color: var(--teal-700); transition: transform 0.3s; }
.acc-item.open .acc-q .icon { background: var(--teal-800); border-color: var(--teal-800); }
.acc-item.open .acc-q .icon svg { color: var(--gold-400); transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-a-inner { padding: 0 4px 28px; color: var(--slate); }

/* CTA band ---------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal-800), var(--teal-900)); color: #fff; border-radius: var(--radius-lg); padding: 70px 60px; text-align: center; }
.cta-band::before { content: ""; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(214,180,107,0.22), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 56ch; margin-inline: auto; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; margin-bottom: 0; margin-top: 30px; }

/* Footer ------------------------------------------------------------------ */
.footer { background: var(--teal-900); color: rgba(255,255,255,0.72); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 50px; padding-bottom: 56px; }
.footer .brand-name { color: #fff; }
.footer p { color: rgba(255,255,255,0.66); font-size: 0.95rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: all 0.25s; }
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--teal-900); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.86rem; }
.footer-bottom a:hover { color: var(--gold-400); }

/* Page hero (interior) ---------------------------------------------------- */
.page-hero { background: var(--teal-900); color: #fff; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--teal-900) 30%, rgba(6,48,47,0.7)); }
.page-hero .container { position: relative; z-index: 1; padding-block: 96px; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 60ch; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 14px; height: 14px; }

/* Forms ------------------------------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.97rem; color: var(--ink); background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(26,155,147,0.15); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }

.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: none; }
.info-row .ir-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ir-icon svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.info-row p { margin: 0; color: var(--ink); font-weight: 500; font-size: 1.02rem; }

/* Pills / tags ------------------------------------------------------------ */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 100px; background: var(--teal-50); color: var(--teal-700); font-size: 0.82rem; font-weight: 600; }
.pill svg { width: 15px; height: 15px; }

/* Doctor profile ---------------------------------------------------------- */
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.cred { display: flex; gap: 13px; align-items: flex-start; padding: 18px; background: var(--cream); border-radius: var(--radius-sm); }
.cred svg { width: 24px; height: 24px; color: var(--gold-600); flex-shrink: 0; }
.cred strong { display: block; font-size: 0.97rem; color: var(--ink); }
.cred span { font-size: 0.85rem; color: var(--muted); }

/* Condition list ---------------------------------------------------------- */
.cond-card { display: flex; gap: 18px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: all 0.3s var(--ease); cursor: pointer; }
.cond-card:hover { border-color: var(--teal-300); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.cond-card .c-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.cond-card .c-icon svg { width: 26px; height: 26px; }
.cond-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.cond-card p { font-size: 0.92rem; margin: 0; }

/* Reveal animation -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .media-split { grid-template-columns: 1fr; gap: 40px; }
  .media-split.reverse .media-text { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
  .topbar-meta .hide-sm { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
  .hero .container { padding-block: 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
  .trust-strip .container { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
