/* ==========================================================================
   Indigenius — Brand Design System
   Colors, type and photography per brandbook-indigenius-v2
   ========================================================================== */

:root {
  --cream: #F4F2ED;
  --cream-rgb: 244, 242, 237;
  --navy: #122430;
  --navy-rgb: 18, 36, 48;
  --blue: #5170B3;
  --blue-rgb: 81, 112, 179;
  --blue-dark: #3d5a94;
  --orange: #D66527;
  --orange-rgb: 214, 101, 39;
  --yellow: #EBC140;
  --yellow-rgb: 235, 193, 64;
  --green: #3A5C47;
  --green-rgb: 58, 92, 71;

  --font-display: "Funnel Display", "Montserrat", sans-serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(var(--navy-rgb), 0.78);
  max-width: 46ch;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-pad-sm { padding: clamp(2.75rem, 6vw, 4.5rem) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--orange); color: var(--cream); }
.btn-primary:hover { background: #c15a1f; }

.btn-outline-light { border-color: rgba(var(--cream-rgb), 0.55); color: var(--cream); }
.btn-outline-light:hover { background: rgba(var(--cream-rgb), 0.12); border-color: var(--cream); }

.btn-outline-dark { border-color: rgba(var(--navy-rgb), 0.25); color: var(--navy); }
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(var(--navy-rgb), 0.05); }

.btn-blue { background: var(--blue); color: var(--cream); }
.btn-blue:hover { background: var(--blue-dark); }

.btn-cream { background: var(--cream); color: var(--navy); }
.btn-cream:hover { background: #fff; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: var(--cream);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(var(--navy-rgb), 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand .logo-img {
  height: 24px;
  width: auto;
  display: block;
}
.brand .logo-on-light { display: none; }
.is-scrolled .brand .logo-on-dark,
.on-light .brand .logo-on-dark { display: none; }
.is-scrolled .brand .logo-on-light,
.on-light .brand .logo-on-light { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-links a {
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.35s var(--ease), opacity .3s;
  opacity: 0.88;
}
.is-scrolled .nav-links a,
.on-light .nav-links a { color: var(--navy); }
.nav-links a:hover { opacity: 1; color: var(--yellow-dark, var(--orange)); }
.is-scrolled .nav-links a:hover,
.on-light .nav-links a:hover { color: var(--blue); }
.nav-links a.is-active { opacity: 1; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.nav-right { display: flex; align-items: center; gap: 1.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, background-color .3s;
}
.site-header:not(.is-scrolled):not(.menu-open) .nav-toggle span { background: var(--cream); }
.on-light .nav-toggle span { background: var(--navy); }
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--navy); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--navy); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem var(--gutter);
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease);
  }
  .menu-open .mobile-menu { transform: translateY(0); }
  .mobile-menu ul { display: flex; flex-direction: column; gap: 1.1rem; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--navy);
  }
  .mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-page {
  min-height: 62vh;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.06);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,36,48,.55) 0%, rgba(18,36,48,.35) 35%, rgba(18,36,48,.88) 100%),
    linear-gradient(100deg, rgba(81,112,179,.55), rgba(18,36,48,.25) 55%);
  mix-blend-mode: multiply;
  background-color: rgba(18,36,48,.4);
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(18,36,48,.42);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 14vw, 9rem) 0 clamp(3.5rem, 6vw, 5rem);
  width: 100%;
}
.hero-eyebrow {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}
.hero-eyebrow svg { width: 18px; height: 18px; }
.hero h1 { color: var(--cream); max-width: 16ch; }
.hero .lede { color: rgba(244,242,237,.85); margin-top: 1.3rem; max-width: 50ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(244,242,237,.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: rgba(244,242,237,.5); position: relative; overflow: hidden; }
.hero-scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--yellow);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 50% { top: 0; } 100% { top: 100%; } }

/* ==========================================================================
   Decorative motifs (brandbook illustration motifs, recreated)
   ========================================================================== */
.dotted-path {
  position: absolute;
  pointer-events: none;
  opacity: .55;
}
.blob-accent {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0px);
}

.star-mark { color: var(--orange); }

/* ==========================================================================
   Language pills strip
   ========================================================================== */
.lang-strip {
  background: var(--cream);
  border-top: 1px solid rgba(var(--navy-rgb), .08);
  border-bottom: 1px solid rgba(var(--navy-rgb), .08);
  padding: 2.6rem 0;
}
.lang-strip-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55em 1.15em;
  border-radius: 100px;
  background: rgba(var(--blue-rgb), 0.1);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(var(--blue-rgb), 0.18);
}
.lang-pill.is-more {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ==========================================================================
   Split / feature sections
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

.split-media { position: relative; }
.split-media .photo-frame { position: relative; z-index: 1; }
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .8s var(--ease); }
.photo-frame:hover img { transform: scale(1.04); }

.circle-accent {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.split-body .kicker-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.85rem; }
.kicker-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-weight: 500; }
.kicker-list .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  margin-top: 0.55em; flex-shrink: 0;
}

/* ==========================================================================
   Cards — services
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid rgba(var(--navy-rgb), .08);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(18,36,48,.25);
  border-color: transparent;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h4 { font-size: 1.08rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: rgba(var(--navy-rgb), .72); }

.icon-bg-1 { background: rgba(var(--orange-rgb), .14); color: var(--orange); }
.icon-bg-2 { background: rgba(var(--blue-rgb), .14); color: var(--blue); }
.icon-bg-3 { background: rgba(var(--yellow-rgb), .22); color: #a4790c; }
.icon-bg-4 { background: rgba(var(--green-rgb), .16); color: var(--green); }

/* Detailed service blocks (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.8rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(var(--navy-rgb), .1);
}
.service-detail:first-of-type { padding-top: 0; }
.service-detail:last-of-type { border-bottom: none; }
.service-detail .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: rgba(var(--blue-rgb), .35);
  font-weight: 700;
}
.service-detail p { margin-top: 0.9rem; color: rgba(var(--navy-rgb), .78); max-width: 68ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4em 0.9em;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid rgba(var(--navy-rgb), .12);
  color: rgba(var(--navy-rgb), .75);
}
@media (max-width: 620px) {
  .service-detail { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* ==========================================================================
   Values band (dark)
   ========================================================================== */
.band-dark {
  background: var(--navy);
  color: var(--cream);
}
.band-blue { background: var(--blue); color: var(--cream); }
.band-dark .eyebrow, .band-blue .eyebrow { color: var(--yellow); }
.band-dark .eyebrow::before, .band-blue .eyebrow::before { background: var(--yellow); }
.band-dark h2, .band-blue h2 { color: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(244,242,237,.06);
  border: 1px solid rgba(244,242,237,.14);
  border-radius: var(--radius-md);
}
.value-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--yellow); margin-top: 2px; }
.value-item p { font-weight: 600; font-size: 0.98rem; }

/* ==========================================================================
   Media / Press cards
   ========================================================================== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
@media (max-width: 780px) { .media-grid { grid-template-columns: 1fr; } }

.media-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  background: #fff;
  border: 1px solid rgba(var(--navy-rgb), .09);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.media-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -20px rgba(18,36,48,.28); }
.media-card-top { display: flex; align-items: center; justify-content: space-between; }
.media-type {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 0.4em 0.85em; border-radius: 100px;
}
.media-type.type-article { background: rgba(var(--blue-rgb), .12); color: var(--blue-dark); }
.media-type.type-podcast { background: rgba(var(--orange-rgb), .14); color: var(--orange); }
.media-card h3 { font-size: 1.35rem; line-height: 1.22; }
.media-outlet { font-weight: 700; color: rgba(var(--navy-rgb), .55); font-size: 0.9rem; margin-top: 0.7rem; }
.media-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy);
  padding-top: 0.4rem;
}
.media-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.media-card:hover .media-link svg { transform: translate(3px,-3px); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 340px at 85% 15%, rgba(var(--blue-rgb),.5), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: var(--cream); max-width: 14ch; }
.cta-contacts { display: flex; flex-direction: column; gap: 0.55rem; font-weight: 600; }
.cta-contacts a { color: rgba(244,242,237,.85); }
.cta-contacts a:hover { color: var(--yellow); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.3rem; }
.field label {
  display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem;
  color: rgba(var(--navy-rgb), .75);
}
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid rgba(var(--navy-rgb), .18);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.9em 1.1em;
  color: var(--navy);
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
  background: var(--blue);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  height: fit-content;
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--yellow); margin-top: 3px; }
.info-row h4 { color: var(--cream); font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 0.3rem; }
.info-row p, .info-row a { color: rgba(244,242,237,.9); font-weight: 500; }
.info-row a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 0.7rem; padding-top: 0.4rem; }
.social-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(244,242,237,.14);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.social-circle:hover { background: rgba(244,242,237,.28); }
.social-circle svg { width: 18px; height: 18px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(244,242,237,.82);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; margin-bottom: 1.2rem; }
.footer-brand img { height: 26px; width: auto; display: block; }
.footer-col h4 { color: var(--cream); font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.94rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { font-size: 0.94rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(244,242,237,.14);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
  color: rgba(244,242,237,.55);
}
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,242,237,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--blue); }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(58,92,71,.6);
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; color: var(--cream); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Page hero small (About/Services/Media/Contact)
   ========================================================================== */
.breadcrumb-eyebrow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Testimony / trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 1.8rem 2.2rem;
  border-radius: var(--radius-md);
  background: rgba(var(--blue-rgb), .08);
  border: 1px solid rgba(var(--blue-rgb), .18);
  margin-top: 2.6rem;
}
.trust-strip .badge-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-strip .badge-dot svg { width: 20px; height: 20px; }
.trust-strip p { font-weight: 600; color: rgba(var(--navy-rgb), .85); }
.trust-strip strong { color: var(--navy); }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 780px) { .two-col-text { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(var(--navy-rgb), .1);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(var(--blue-rgb), .12);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background-color .3s;
}
.faq-item summary .faq-icon svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.faq-item[open] summary .faq-icon { background: var(--orange); color: var(--cream); }
.faq-item[open] summary .faq-icon svg { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 1.6rem 1.5rem;
  color: rgba(var(--navy-rgb), .75);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 68ch;
}
