/* ==========================================================================
   Instituto do Ouvido — Architecture-driven clinical redesign
   IA: each section answers a specific patient question
   Components: bento grid, audiogram, product comparison, process timeline,
   sticky CTA, insurance grid, doctor card, content cards
   ========================================================================== */

:root {
  /* Brand */
  --c-navy:        #03298F;
  --c-navy-deep:   #021D6B;
  --c-navy-2:      #1F2278;
  --c-blue:        #2962FF;
  --c-blue-soft:   #4D7CFF;
  --c-blue-tint:   #E8EEFF;

  --c-ink:         #0F1A36;
  --c-charcoal:    #1A2540;
  --c-graphite:    #2E3855;
  --c-text:        #545E75;
  --c-text-soft:   #7B8499;
  --c-line:        #E5E9F2;
  --c-line-2:      #D6DCE9;

  --c-cream:       #F7F9FC;
  --c-cream-2:     #EEF2F8;
  --c-bone:        #F2F5FB;
  --c-white:       #FFFFFF;
  --c-paper:       #E9EEF7;

  /* Yellow accent — original brand */
  --c-yellow:      #FDD36B;
  --c-yellow-warm: #F5BD3D;
  --c-yellow-tint: #FFF4D6;
  --c-yellow-deep: #C99311;

  /* Status */
  --c-success:     #16A34A;
  --c-success-tint:#DCFCE7;

  /* Compat aliases */
  --c-secondary:   var(--c-navy);
  --c-primary:     var(--c-charcoal);
  --c-accent:      var(--c-navy);
  --c-gold:        var(--c-yellow);
  --c-gold-deep:   var(--c-yellow-warm);

  /* Type */
  --f-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body:    'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 36px;

  /* Easings */
  --ease-out:    cubic-bezier(.2,.8,.2,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  /* Shadows — refined elevation */
  --shadow-xs:  0 1px 2px rgba(15, 26, 54, .04);
  --shadow-sm:  0 2px 6px rgba(15, 26, 54, .05), 0 1px 2px rgba(15, 26, 54, .03);
  --shadow-md:  0 6px 18px rgba(15, 26, 54, .08), 0 2px 6px rgba(15, 26, 54, .04);
  --shadow-lg:  0 18px 50px rgba(15, 26, 54, .12), 0 6px 16px rgba(15, 26, 54, .06);
  --shadow-xl:  0 32px 80px rgba(15, 26, 54, .18), 0 10px 24px rgba(15, 26, 54, .08);
  --shadow-navy:0 14px 40px rgba(3, 41, 143, .25);

  /* Glass */
  --glass-bg:        rgba(255, 255, 255, .82);
  --glass-bg-strong: rgba(255, 255, 255, .94);
  --glass-blur:      saturate(160%) blur(14px);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color .25s var(--ease-out); }
a:hover { color: var(--c-navy-deep); }
::selection { background: var(--c-yellow); color: var(--c-charcoal); }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  color: var(--c-charcoal);
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -.012em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.06; letter-spacing: -.025em; }
h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.14; letter-spacing: -.018em; }
h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }
h6 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-text-soft); }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
ul.clean { list-style: none; padding: 0; margin: 0; }

.container       { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide  { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-yellow-warm);
  border-radius: 2px;
}
.eyebrow.is-light { color: rgba(255,255,255,.85); }
.eyebrow.is-light::before { background: var(--c-yellow); }
.eyebrow.is-center { justify-content: center; }

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
  background: var(--c-ink);
  color: rgba(255, 255, 255, .85);
  font-family: var(--f-body);
  font-size: 13px;
  position: relative;
  z-index: 101;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar-info { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-info span, .topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
}
.topbar-info svg { color: var(--c-yellow); width: 14px; height: 14px; flex-shrink: 0; }
.topbar-info a { transition: color .25s var(--ease-out); }
.topbar-info a:hover { color: var(--c-yellow); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.topbar-cta::before {
  content: "";
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: dotPulse 2.4s var(--ease-in-out) infinite;
}
.topbar-cta:hover { background: rgba(255, 255, 255, .16); color: #fff; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  50%      { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}
@media (max-width: 760px) {
  .topbar { font-size: 12px; }
  .topbar-info .topbar-hide-sm { display: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out), padding .3s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 20px rgba(15, 26, 54, .04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding .3s var(--ease-out);
}
.site-header.is-scrolled .container { padding-top: 12px; padding-bottom: 12px; }
.site-logo img { height: 56px; width: auto; transition: height .3s var(--ease-out); }
.site-header.is-scrolled .site-logo img { height: 44px; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  position: relative;
  color: var(--c-charcoal);
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color .25s var(--ease-out);
}
.site-nav a:not(.cta-link)::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--c-yellow-warm);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.site-nav a:hover:not(.cta-link)::after,
.site-nav a.active:not(.cta-link)::after { transform: scaleX(1); }
.site-nav a:hover, .site-nav a.active { color: var(--c-navy); }
.site-nav .cta-link {
  margin-left: 12px;
  background: var(--c-charcoal);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
}
.site-nav .cta-link::after { display: none !important; }
.site-nav .cta-link:hover { background: var(--c-navy); color: #fff; }

.nav-toggle {
  display: none;
  background: var(--c-cream-2);
  border: 1px solid var(--c-line);
  color: var(--c-charcoal);
  font-size: 18px;
  cursor: pointer;
  padding: 9px 13px;
  border-radius: 10px;
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    padding: 16px 24px 22px;
    border-top: 1px solid var(--c-line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .35s var(--ease-out);
  }
  .site-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .site-nav a { padding: 14px 8px; border-radius: 0; border-bottom: 1px solid var(--c-line); }
  .site-nav a:not(.cta-link)::after { display: none; }
  .site-nav .cta-link { margin: 14px 0 4px; justify-content: center; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--c-charcoal);
  color: #fff;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .25s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--c-navy);
  color: #fff;
  box-shadow: var(--shadow-navy);
}
.btn:active { transform: translateY(0); transition-duration: .1s; }
.btn .arrow { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-yellow {
  background: var(--c-yellow);
  color: var(--c-charcoal);
  box-shadow: 0 8px 22px rgba(253, 211, 107, .4);
}
.btn-yellow:hover {
  background: var(--c-yellow-warm);
  color: var(--c-charcoal);
  box-shadow: 0 14px 32px rgba(245, 189, 61, .45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-line-2);
  color: var(--c-charcoal);
  padding: 13.5px 26px;
}
.btn-outline:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--c-navy);
  border: 1px solid #fff;
}
.btn-light:hover { background: var(--c-cream); color: var(--c-navy-deep); }

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ==========================================================================
   Sections base
   ========================================================================== */
section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 0; max-width: 14ch; color: var(--c-charcoal); }
.section-head .lead {
  color: var(--c-text);
  font-size: 17px;
  max-width: 50ch;
  margin: 0;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

.section-title { margin-bottom: 56px; max-width: 720px; }
.section-title.is-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.is-center .eyebrow { justify-content: center; }
.section-title h2 { color: var(--c-charcoal); margin-bottom: 14px; }
.section-title p { color: var(--c-text); font-size: 17px; line-height: 1.6; margin: 0; }

.bg-soft   { background: var(--c-cream); }
.bg-bone   { background: var(--c-bone); }
.bg-paper  { background: var(--c-paper); }
.bg-white  { background: #fff; }
.bg-ink    { background: var(--c-ink); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,.85); }
.bg-navy { background: var(--c-navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ==========================================================================
   BENTO HERO — asymmetric tile grid
   ========================================================================== */
.hero-bento {
  padding: 32px 0 100px;
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.hero-bento::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60vmax 40vmax at 100% 0%, rgba(3, 41, 143, .07), transparent 60%),
    radial-gradient(50vmax 30vmax at 0% 100%, rgba(253, 211, 107, .14), transparent 60%);
  pointer-events: none;
}
.hero-bento > .container-wide { position: relative; z-index: 1; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: minmax(360px, auto) minmax(190px, auto);
  gap: 16px;
}
.bento-tile {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Tile 1 — Headline (top, spans 2 rows on left) */
.bento-headline {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--c-charcoal);
  color: #fff;
  border-color: var(--c-charcoal);
}
.bento-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40vmax 30vmax at 100% 0%, rgba(253, 211, 107, .12), transparent 60%),
    radial-gradient(30vmax 25vmax at 0% 100%, rgba(77, 124, 255, .14), transparent 60%);
  pointer-events: none;
}
.bento-headline > * { position: relative; }
.bento-headline h1 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 18px 0 22px;
  font-weight: 700;
}
.bento-headline h1 .accent {
  color: var(--c-yellow);
  font-style: italic;
}
.bento-headline .hero-lead {
  font-family: var(--f-body);
  color: rgba(255, 255, 255, .82);
  font-size: 17.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 50ch;
}
.bento-headline .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bento-headline .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.bento-headline .btn-outline:hover {
  background: #fff;
  color: var(--c-charcoal);
  border-color: #fff;
}
.bento-headline .signal-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--f-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
}
.bento-headline .signal-row .sig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bento-headline .signal-row svg { color: var(--c-yellow); width: 16px; height: 16px; }

/* Tile 2 — Photo (top right, spans 2 cols) */
.bento-photo {
  grid-column: 2 / span 2;
  grid-row: 1;
  background: var(--c-cream-2);
  padding: 0;
  border: 0;
}
.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out);
}
.bento-photo:hover img { transform: scale(1.04); }
.bento-photo .photo-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(15, 26, 54, .75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bento-photo .photo-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
}

/* Tile 3 — Stat */
.bento-stat {
  grid-column: 2;
  grid-row: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: var(--c-charcoal);
}
.bento-stat .label {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-charcoal);
}
.bento-stat .num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--c-charcoal);
}
.bento-stat .desc {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--c-charcoal);
  opacity: .8;
  line-height: 1.4;
}
.bento-stat .num-mini {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--c-navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bento-stat .num-mini .suffix { font-size: .55em; color: var(--c-navy-deep); font-weight: 600; }

/* Tile 4 — Rating */
.bento-rating {
  grid-column: 3;
  grid-row: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.bento-rating .stars {
  display: inline-flex;
  gap: 3px;
  color: var(--c-yellow-warm);
}
.bento-rating .stars svg { width: 18px; height: 18px; }
.bento-rating .rating-num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.022em;
  color: var(--c-charcoal);
  line-height: 1;
}
.bento-rating .rating-meta {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.4;
}
.bento-rating .google-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-text-soft);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .bento-headline { grid-column: 1 / span 2; grid-row: 1; }
  .bento-photo { grid-column: 1 / span 2; grid-row: 2; aspect-ratio: 16 / 9; }
  .bento-stat { grid-column: 1; grid-row: 3; }
  .bento-rating { grid-column: 2; grid-row: 3; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-headline { grid-column: 1; padding: 40px 28px; }
  .bento-photo { grid-column: 1; }
  .bento-stat { grid-column: 1; }
  .bento-rating { grid-column: 1; }
}

/* ==========================================================================
   STICKY CTA BAR (appears post-hero)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: 0 auto;
  z-index: 95;
  background: var(--c-charcoal);
  color: #fff;
  padding: 14px 18px 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(15, 26, 54, .25);
  opacity: 0;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 32px);
}
.sticky-cta.is-active { opacity: 1; pointer-events: auto; }
.sticky-cta .text {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
}
.sticky-cta .text strong { color: #fff; font-weight: 700; }
.sticky-cta .btn {
  padding: 10px 18px;
  font-size: 14px;
  background: var(--c-yellow);
  color: var(--c-charcoal);
  border-radius: 999px;
  white-space: nowrap;
}
.sticky-cta .btn:hover { background: #fff; color: var(--c-charcoal); transform: none; }
@media (max-width: 720px) {
  .sticky-cta { bottom: 96px; padding: 10px 12px 10px 16px; gap: 10px; }
  .sticky-cta .text { font-size: 13px; }
  .sticky-cta .text .text-hide-sm { display: none; }
  .sticky-cta .btn { padding: 8px 14px; font-size: 13px; }
}

/* ==========================================================================
   TRUST STRIP (counter band)
   ========================================================================== */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 36px 0;
}
.trust-strip .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item { display: flex; flex-direction: column; text-align: center; position: relative; }
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--c-line);
}
.trust-item .num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -.022em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .num .suffix { color: var(--c-yellow-warm); }
.trust-item .label {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--c-text);
  letter-spacing: .02em;
  line-height: 1.35;
}
@media (max-width: 800px) {
  .trust-strip .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .trust-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .trust-strip .trust-grid { grid-template-columns: 1fr; }
  .trust-item::after { display: none; }
}

/* ==========================================================================
   SERVICES BENTO GRID — asymmetric, content-first
   ========================================================================== */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(220px, auto);
}
.svc-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .45s var(--ease-out);
}
.svc-tile:hover {
  transform: translateY(-4px);
  border-color: var(--c-yellow);
  box-shadow: var(--shadow-md);
}
.svc-tile .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-yellow-tint);
  display: grid;
  place-items: center;
  color: var(--c-navy);
  margin-bottom: 22px;
  transition: transform .4s var(--ease-out);
}
.svc-tile:hover .icon { transform: rotate(-4deg) scale(1.05); }
.svc-tile .icon svg { width: 26px; height: 26px; }
.svc-tile h3 {
  color: var(--c-charcoal);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-tile p {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.svc-tile .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-navy);
  align-self: flex-start;
  transition: gap .35s var(--ease-out);
}
.svc-tile .more svg { width: 14px; height: 14px; transition: transform .35s var(--ease-out); }
.svc-tile:hover .more { gap: 12px; }
.svc-tile:hover .more svg { transform: translateX(3px); }

/* Featured tile (large) */
.svc-tile.is-featured {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--c-charcoal) 0%, var(--c-navy) 100%);
  color: #fff;
  border-color: var(--c-charcoal);
  padding: 40px 36px 36px;
  position: relative;
  isolation: isolate;
}
.svc-tile.is-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40vmax 30vmax at 100% 0%, rgba(253, 211, 107, .18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.svc-tile.is-featured .icon {
  background: rgba(255, 255, 255, .12);
  color: var(--c-yellow);
}
.svc-tile.is-featured h3 { color: #fff; font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
.svc-tile.is-featured p { color: rgba(255, 255, 255, .82); font-size: 16px; }
.svc-tile.is-featured .more { color: var(--c-yellow); }
.svc-tile.is-featured .feat-img {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255, 255, 255, .14);
}
.svc-tile.is-featured .feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 1.2s var(--ease-out);
}
.svc-tile.is-featured:hover .feat-img img { transform: scale(1.03); }

/* Standard tiles span 3 cols (two per row when no featured) or 3 each (with featured) */
.svc-tile { grid-column: span 3; }
.services-bento.layout-mixed .svc-tile.is-standard { grid-column: span 3; }

@media (max-width: 1024px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-tile, .svc-tile.is-featured { grid-column: span 1; grid-row: auto; }
  .svc-tile.is-featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .svc-tile, .svc-tile.is-featured { grid-column: span 1; }
}

/* ==========================================================================
   AUDIOGRAM SECTION — unique to audiology
   ========================================================================== */
.audiogram-section {
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-bone) 100%);
}
.audiogram-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.audiogram-content { max-width: 520px; }
.audiogram-content h2 { color: var(--c-charcoal); margin-bottom: 22px; }
.audiogram-content p {
  color: var(--c-text);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.audiogram-content .audiogram-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.audiogram-content .audiogram-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  font-family: var(--f-body);
}
.audiogram-content .audiogram-list .lvl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
  letter-spacing: .04em;
}
.audiogram-content .audiogram-list .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.audiogram-content .audiogram-list .dot-mild   { background: #16A34A; }
.audiogram-content .audiogram-list .dot-mod    { background: var(--c-yellow-warm); }
.audiogram-content .audiogram-list .dot-severe { background: #DC2626; }
.audiogram-content .audiogram-list strong {
  color: var(--c-charcoal);
  font-weight: 600;
  font-size: 15px;
}
.audiogram-content .audiogram-list .range {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--c-text-soft);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.audiogram-graph {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.audiogram-graph-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text-soft);
  letter-spacing: .04em;
}
.audiogram-graph-head .title {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--c-charcoal);
}
.audiogram-graph svg { width: 100%; height: auto; display: block; }
.audiogram-graph .ag-grid line { stroke: var(--c-line); stroke-width: 1; }
.audiogram-graph .ag-axis text {
  font-family: var(--f-body);
  font-size: 11px;
  fill: var(--c-text-soft);
  font-weight: 500;
}
.audiogram-graph .ag-zone-mild   { fill: rgba(22, 163, 74, .08); }
.audiogram-graph .ag-zone-mod    { fill: rgba(245, 189, 61, .12); }
.audiogram-graph .ag-zone-severe { fill: rgba(220, 38, 38, .08); }
.audiogram-graph .ag-line {
  fill: none;
  stroke: var(--c-navy);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s var(--ease-out) .3s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.audiogram-graph .ag-point {
  fill: #fff;
  stroke: var(--c-navy);
  stroke-width: 2.5;
  opacity: 0;
  animation: popIn .4s var(--ease-out) forwards;
}
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
.audiogram-graph-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  gap: 14px;
  flex-wrap: wrap;
}
.audiogram-graph-foot .legend {
  display: flex;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-text-soft);
  flex-wrap: wrap;
}
.audiogram-graph-foot .legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audiogram-graph-foot .legend i {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 900px) {
  .audiogram-grid { grid-template-columns: 1fr; gap: 56px; }
  .audiogram-graph { padding: 24px; }
}

/* ==========================================================================
   HEARING-AID COMPARISON
   ========================================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .35s var(--ease-out);
}
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-line-2);
}
.compare-card.is-popular {
  border: 2px solid var(--c-charcoal);
  position: relative;
}
.compare-card.is-popular::before {
  content: "Mais procurado";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-charcoal);
  color: var(--c-yellow);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.compare-card .compare-image {
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-paper));
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 24px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.compare-card .compare-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 30% 30%, rgba(255, 255, 255, .55), transparent 70%);
}
.compare-card .compare-image img {
  position: relative;
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(15, 26, 54, .18));
  transition: transform .8s var(--ease-out);
}
.compare-card:hover .compare-image img { transform: scale(1.04) rotate(-2deg); }
.compare-card .compare-tag {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.compare-card h3 {
  color: var(--c-charcoal);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.012em;
}
.compare-card .desc {
  color: var(--c-text);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-charcoal);
  line-height: 1.5;
}
.compare-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-yellow-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2303298F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  margin-top: 1px;
}
.compare-card .ideal {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.5;
  margin-bottom: 18px;
}
.compare-card .ideal strong { color: var(--c-charcoal); display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.compare-card .btn { width: 100%; }
@media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ==========================================================================
   PROCESS TIMELINE — visual with imagery
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--c-yellow) 0%,
    var(--c-yellow) 25%,
    var(--c-line) 25%,
    var(--c-line) 100%);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
}
.timeline-step .step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-line);
  color: var(--c-charcoal);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  transition: all .4s var(--ease-out);
}
.timeline-step:hover .step-num {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  transform: scale(1.06);
}
.timeline-step .step-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color .35s var(--ease-out), box-shadow .4s var(--ease-out);
}
.timeline-step:hover .step-card {
  border-color: var(--c-yellow);
  box-shadow: var(--shadow-md);
}
.timeline-step h4 {
  color: var(--c-charcoal);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-step p {
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.timeline-step .step-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-text-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.timeline-step .step-meta strong { color: var(--c-navy); }
@media (max-width: 900px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .process-timeline::before { display: none; }
}
@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DOCTOR SHOWCASE
   ========================================================================== */
.doctor-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.doctor-image {
  position: relative;
}
.doctor-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}
.doctor-image .credentials-card {
  position: absolute;
  left: -28px;
  bottom: 32px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  max-width: 280px;
}
.doctor-image .credentials-card .cred-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-charcoal);
  color: var(--c-yellow);
  display: grid;
  place-items: center;
  grid-row: span 2;
}
.doctor-image .credentials-card .cred-name {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-charcoal);
  line-height: 1.2;
}
.doctor-image .credentials-card .cred-role {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
}
.doctor-image .credentials-card .cred-reg {
  grid-column: 2;
  font-family: var(--f-body);
  font-size: 11.5px;
  color: var(--c-text-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px solid var(--c-line);
  margin-top: 4px;
}

.doctor-content { max-width: 540px; }
.doctor-content h2 { color: var(--c-charcoal); margin-bottom: 22px; }
.doctor-content p {
  color: var(--c-text);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.doctor-content .quote {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-navy);
  padding-left: 22px;
  border-left: 3px solid var(--c-yellow);
  margin: 28px 0;
  line-height: 1.4;
}
.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.doctor-stats .ds {
  text-align: left;
  position: relative;
}
.doctor-stats .ds:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 16px; top: 0; bottom: 0;
  width: 1px;
  background: var(--c-line);
}
.doctor-stats .ds .num {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -.018em;
  line-height: 1;
  margin-bottom: 6px;
}
.doctor-stats .ds .label {
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--c-text);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .doctor-block { grid-template-columns: 1fr; gap: 56px; }
  .doctor-image .credentials-card { left: 12px; bottom: -12px; }
}

/* ==========================================================================
   PILLARS
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.pillar {
  position: relative;
  text-align: left;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease-out), border-color .35s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--c-yellow);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--c-charcoal);
  color: var(--c-yellow);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform .4s var(--ease-out);
}
.pillar:hover .pillar-icon { transform: rotate(-6deg); }
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h4 { color: var(--c-charcoal); font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.pillar p { font-size: 14.5px; line-height: 1.6; color: var(--c-text); margin: 0; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  position: relative;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .35s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--c-yellow); box-shadow: var(--shadow-md); }
.testimonial-stars { display: inline-flex; gap: 3px; color: var(--c-yellow-warm); margin-bottom: 18px; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--c-charcoal);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
}
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.testimonial-card .who .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-yellow), var(--c-yellow-warm));
  color: var(--c-navy);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-card .who .name { font-family: var(--f-display); font-weight: 600; color: var(--c-charcoal); font-size: 15px; margin-bottom: 2px; }
.testimonial-card .who .role { font-family: var(--f-body); font-size: 13px; color: var(--c-text-soft); }

.testimonials-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.testimonials-summary .rating-big {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-charcoal);
  letter-spacing: -.022em;
  line-height: 1;
}
.testimonials-summary .stars-big { display: inline-flex; gap: 4px; color: var(--c-yellow-warm); }
.testimonials-summary .stars-big svg { width: 22px; height: 22px; }
.testimonials-summary .meta {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.4;
}
.testimonials-summary .meta strong { color: var(--c-charcoal); display: block; font-weight: 600; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.faq-item:hover { border-color: var(--c-line-2); }
.faq-item.is-open {
  border-color: var(--c-yellow);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--f-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--c-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: color .25s var(--ease-out);
}
.faq-q:hover { color: var(--c-navy); }
.faq-q .chev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-cream-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--c-charcoal);
  transition: transform .4s var(--ease-out), background .3s var(--ease-out), color .25s var(--ease-out);
}
.faq-item.is-open .faq-q .chev {
  transform: rotate(45deg);
  background: var(--c-yellow);
  color: var(--c-charcoal);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease-out);
}
.faq-a-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .4s var(--ease-out), transform .5s var(--ease-out);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a-inner { opacity: 1; transform: none; }
.faq-a-inner > div {
  padding: 0 24px 22px;
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 60ch;
}

/* ==========================================================================
   CONTENT/BLOG TEASERS
   ========================================================================== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.content-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.content-card .ct-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-paper));
  position: relative;
  overflow: hidden;
}
.content-card .ct-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.content-card:hover .ct-image img { transform: scale(1.04); }
.content-card .ct-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-navy);
  padding: 6px 12px;
  border-radius: 999px;
}
.content-card .ct-body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content-card h4 {
  color: var(--c-charcoal);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 600;
}
.content-card p {
  color: var(--c-text);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.content-card .ct-meta {
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--c-text-soft);
  letter-spacing: .04em;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PARTNERS / BRANDS GRID
   ========================================================================== */
.partners-band {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 56px 0;
}
.partners-head {
  text-align: center;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 32px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.partner-cell {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  place-items: center;
  min-height: 86px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.005em;
  color: var(--c-charcoal);
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out), color .3s var(--ease-out);
}
.partner-cell:hover {
  border-color: var(--c-yellow);
  color: var(--c-navy);
  transform: translateY(-2px);
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { color: var(--c-charcoal); }
.contact-info .row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-body);
  transition: padding-left .35s var(--ease-out);
}
.contact-info .row:hover { padding-left: 6px; }
.contact-info .row .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-yellow-tint);
  color: var(--c-navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info .row strong {
  color: var(--c-charcoal);
  display: block;
  margin-bottom: 4px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-info .row span, .contact-info .row a { color: var(--c-text); font-size: 16px; line-height: 1.55; }
.contact-map iframe, .contact-map img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 0;
  min-height: 520px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 14px; }
.contact-form .form-row { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-charcoal);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s var(--ease-out), box-shadow .35s var(--ease-out);
}
.contact-form input:hover, .contact-form textarea:hover { border-color: var(--c-line-2); }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 4px rgba(3, 41, 143, .08);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Socials */
.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-cream-2);
  color: var(--c-navy);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}
.socials a:hover {
  background: var(--c-navy);
  color: var(--c-yellow);
  transform: translateY(-2px);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--c-charcoal) 0%, var(--c-ink) 100%);
  color: #fff;
  padding: 80px 56px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 56px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40vmax 30vmax at 100% 0%, rgba(253, 211, 107, .2), transparent 60%),
    radial-gradient(30vmax 30vmax at 0% 100%, rgba(77, 124, 255, .22), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; font-size: clamp(28px, 3.6vw, 44px); max-width: 18ch; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 17px; margin: 0; max-width: 50ch; }
.cta-banner .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.cta-banner .cta-actions .btn { background: var(--c-yellow); color: var(--c-charcoal); justify-content: center; }
.cta-banner .cta-actions .btn:hover { background: #fff; color: var(--c-charcoal); }
.cta-banner .cta-actions .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
}
.cta-banner .cta-actions .btn-outline:hover {
  background: #fff;
  color: var(--c-charcoal);
  border-color: #fff;
}
@media (max-width: 800px) {
  .cta-banner { padding: 56px 32px; grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   PAGE HERO (sub-pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-ink));
  color: #fff;
  padding: 120px 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40vmax 30vmax at 75% 20%, rgba(253, 211, 107, .15), transparent 60%),
    radial-gradient(30vmax 25vmax at 15% 80%, rgba(77, 124, 255, .18), transparent 60%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 14px; letter-spacing: -.022em; font-weight: 700; line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 56ch; font-size: 17px; margin: 0 auto; line-height: 1.55; }
.breadcrumb {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--c-yellow); }

/* ==========================================================================
   LEGACY pages (about-grid, services-grid, product-grid, steps)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-grid h2 { color: var(--c-charcoal); margin-bottom: 18px; }
.about-grid p { color: var(--c-text); margin-bottom: 16px; max-width: 52ch; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--c-yellow); box-shadow: var(--shadow-md); }
.service-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-yellow-tint);
  display: grid;
  place-items: center;
  color: var(--c-navy);
  margin-bottom: 22px;
}
.service-card .icon-wrap svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--c-charcoal); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--c-text); font-size: 15px; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.service-card .more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  align-self: flex-start;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--c-yellow); box-shadow: var(--shadow-lg); }
.product-card .product-image {
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-paper));
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.product-card .product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 1s var(--ease-out);
  filter: drop-shadow(0 14px 22px rgba(15, 26, 54, .12));
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-card .product-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { color: var(--c-charcoal); font-size: 21px; margin-bottom: 8px; font-weight: 600; }
.product-card p { color: var(--c-text); font-size: 15px; line-height: 1.6; flex: 1; }
.product-card .btn { align-self: flex-start; margin-top: 22px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step-counter;
}
.step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  counter-increment: step-counter;
  transition: transform .4s var(--ease-out), border-color .35s var(--ease-out), box-shadow .4s var(--ease-out);
}
.step:hover { transform: translateY(-4px); border-color: var(--c-yellow); box-shadow: var(--shadow-md); }
.step::before {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--c-yellow);
  letter-spacing: -.02em;
}
.step h3 { color: var(--c-charcoal); font-size: 19px; margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--c-text); font-size: 15px; line-height: 1.6; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Media strip (legacy) */
.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}
.media-strip .logo-cell {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: grid;
  place-items: center;
  min-height: 96px;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.media-strip .logo-cell:hover { border-color: var(--c-yellow); transform: translateY(-2px); }
.media-strip img { max-height: 56px; width: auto; filter: grayscale(1) opacity(.55); transition: filter .35s var(--ease-out); }
.media-strip .logo-cell:hover img { filter: grayscale(0) opacity(1); }

/* Prose, empty state */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-charcoal);
}
.prose h2 { color: var(--c-navy); font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); margin: 44px 0 14px; }
.prose h3 { color: var(--c-charcoal); font-family: var(--f-display); font-size: 20px; margin: 32px 0 10px; }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose strong { color: var(--c-charcoal); }
.prose a { color: var(--c-navy); border-bottom: 1px solid rgba(3, 41, 143, .25); }

.empty-state {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}
.empty-state-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--c-yellow-tint);
  color: var(--c-navy);
  display: grid;
  place-items: center;
}
.empty-state h2 { color: var(--c-charcoal); margin-bottom: 12px; }
.empty-state .lead { margin: 0 auto 24px; max-width: 50ch; color: var(--c-text); font-size: 17px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, .8);
  padding: 80px 0 0;
  font-size: 15px;
  font-family: var(--f-body);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50vmax 30vmax at 80% 0%, rgba(253, 211, 107, .1), transparent 60%),
    radial-gradient(40vmax 30vmax at 10% 100%, rgba(77, 124, 255, .14), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  position: relative;
}
.footer-grid h5 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-grid ul { padding: 0; margin: 0; list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .3s var(--ease-out), gap .3s var(--ease-out);
}
.footer-grid a:hover { color: var(--c-yellow); gap: 10px; }
.footer-grid .footer-brand img { max-width: 180px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .94; }
.footer-grid .footer-brand p { color: rgba(255,255,255,.7); margin-bottom: 18px; max-width: 38ch; line-height: 1.6; }
.footer-grid .socials a {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
}
.footer-grid .socials a:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-yellow);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom .credit a { color: rgba(255,255,255,.65); }
.footer-bottom .credit a:hover { color: var(--c-yellow); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.wpp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .3s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wpp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wppHalo 2.6s var(--ease-in-out) infinite;
}
@keyframes wppHalo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}
.wpp-float:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
.wpp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================================
   Scroll progress + side dots
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: #0d3192;
  z-index: 200;
  transition: width .12s linear;
}

.section-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.section-dots a {
  pointer-events: auto;
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(15, 26, 54, .15);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.section-dots a::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-charcoal);
  color: #fff;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.section-dots a:hover::after,
.section-dots a.active::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.section-dots a:hover { background: var(--c-charcoal); transform: scale(1.3); }
.section-dots a.active { background: var(--c-charcoal); transform: scale(1.4); }
@media (max-width: 1100px) { .section-dots { display: none; } }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

.site-header { animation: slideDown .55s var(--ease-out) both; }
.bento-headline h1     { animation: fadeInUp .8s var(--ease-out) .2s both; }
.bento-headline .hero-lead { animation: fadeInUp .8s var(--ease-out) .35s both; }
.bento-headline .hero-cta { animation: fadeInUp .8s var(--ease-out) .5s both; }
.bento-headline .signal-row { animation: fadeInUp .8s var(--ease-out) .65s both; }
.bento-photo { animation: fadeIn .9s var(--ease-out) .25s both; }
.bento-stat { animation: fadeInUp .8s var(--ease-out) .45s both; }
.bento-rating { animation: fadeInUp .8s var(--ease-out) .6s both; }

.page-hero h1, .page-hero p, .page-hero .breadcrumb {
  animation: fadeInUp .7s var(--ease-out) both;
}
.page-hero p { animation-delay: .15s; }
.page-hero .breadcrumb { animation-delay: .3s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px);  }
.reveal-left.is-visible, .reveal-right.is-visible { transform: none; }
.reveal-zoom { transform: scale(.96); }
.reveal-zoom.is-visible { transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 36px !important; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 48px 0; }
.lead { font-size: 18px; color: var(--c-text); }
.muted { color: var(--c-text-soft); }
