/* v2 - updated */
/* Component-specific CSS for the Astryx marketing kit.
   Tokens live in /colors_and_type.css — this file just composes them. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg-page); color: var(--fg-primary); font-family: var(--font-ui); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 500; line-height: 1;
  padding: 14px 22px; border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand-navy); color: #fff; }
.btn--primary:hover { background: var(--navy-800); }
.btn--accent { background: var(--accent-500); color: var(--brand-navy); font-weight: 600; }
.btn--accent:hover { background: var(--accent-400); }
.btn--ghost { background: transparent; color: var(--brand-navy); border-color: var(--border-default); }
.btn--ghost:hover { border-color: var(--brand-navy); }
.btn--invert { background: #fff; color: var(--brand-navy); }
.btn--invert:hover { background: var(--navy-100); }
.btn--text { background: transparent; padding: 8px 0; color: var(--brand-navy); }
.btn--text .arrow { color: var(--accent-700); transition: transform var(--dur-base) var(--ease-out); display: inline-block; }
.btn--text:hover .arrow { transform: translateX(4px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--accent-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--accent-600);
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 251, 250, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.site-header__brand img { height: 80px; display: block; }
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  position: relative; font-size: 14px; font-weight: 500; color: var(--fg-primary);
  text-decoration: none; padding: 8px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--accent-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active::after { transform: scaleX(1); background: var(--brand-navy); }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(1200px 400px at 20% 0%, rgba(13, 27, 42, 0.04), transparent 60%),
    var(--bg-page);
}
.hero__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: end; }
.hero h1 {
  font-family: var(--font-display); font-weight: 360;
  font-size: clamp(44px, 6vw, 84px); line-height: 1.02; letter-spacing: -0.025em;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; font-weight: 380;
  color: var(--navy-600);
}
.hero__lead { font-size: 19px; line-height: 1.55; color: var(--fg-secondary); max-width: 52ch; }
.hero__ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__aside { padding-left: 24px; border-left: 1px solid var(--border-subtle); display: grid; gap: 24px; }
.hero__metric { display: grid; gap: 4px; }
.hero__metric .num {
  font-family: var(--font-display); font-weight: 380; font-size: 44px;
  line-height: 1; letter-spacing: -0.02em; color: var(--brand-navy);
}
.hero__metric .num sup { font-size: 18px; font-weight: 500; color: var(--accent-700); margin-left: 4px; vertical-align: super; }
.hero__metric .label { font-size: 13px; color: var(--fg-secondary); line-height: 1.45; max-width: 28ch; }

/* Trust strip */
.trust { padding: 28px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: var(--bg-page); }
.trust__row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-tertiary); margin-right: 12px; }
.trust__logo { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: -0.01em; color: var(--navy-500); opacity: 0.85; }

/* ---------- Section ---------- */
.section { padding: 112px 0; }
.section--bone { background: var(--bg-sunken); }
.section--navy { background: var(--brand-navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; margin-bottom: 56px; align-items: end; }
.section__head h2 {
  font-family: var(--font-display); font-weight: 380;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 12px 0 0; text-wrap: balance;
}
.section__head p { font-size: 17px; line-height: 1.6; color: var(--fg-secondary); max-width: 56ch; }
.section--navy .section__head p { color: var(--navy-200); }

/* ---------- Service cards ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: 10px; padding: 32px; display: grid; gap: 16px;
  transition: border-color var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
  text-decoration: none; color: inherit;
}
.service:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.service__title { font-family: var(--font-display); font-size: 26px; font-weight: 420; letter-spacing: -0.01em; color: var(--brand-navy); }
.service__desc { font-size: 15px; line-height: 1.6; color: var(--fg-secondary); }
.service__meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; padding-top: 20px; border-top: 1px solid var(--border-subtle);
}
.service__meta div { font-size: 12px; color: var(--fg-secondary); }
.service__meta b { display: block; font-size: 15px; font-weight: 600; color: var(--brand-navy); margin-bottom: 2px; letter-spacing: -0.01em; }
.service__more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--brand-navy); margin-top: 4px; }
.service__more .arrow { color: var(--accent-700); transition: transform var(--dur-base) var(--ease-out); }
.service:hover .service__more .arrow { transform: translateX(4px); }

/* ---------- Engagement timeline ---------- */
.timeline { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 40px; overflow: visible; }
.timeline__bar { position: relative; height: 4px; background: var(--navy-100); border-radius: 2px; margin: 56px 0 24px; }
.timeline__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 75%; background: var(--brand-navy); border-radius: 2px; }
.timeline__fill::after { content: ""; position: absolute; right: -1px; top: -3px; width: 10px; height: 10px; background: var(--accent-500); border-radius: 50%; }
.timeline__steps { position: absolute; left: 0; right: 0; top: -38px; display: flex; justify-content: space-between; }
.timeline__step { text-align: left; max-width: 22%; }
.timeline__step b { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--fg-tertiary); letter-spacing: 0.06em; }
.timeline__step span { display: block; font-size: 14px; font-weight: 500; color: var(--brand-navy); margin-top: 2px; line-height: 1.3; }
.timeline__legend { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border-subtle); margin-top: 32px; font-size: 13px; color: var(--fg-secondary); }
.timeline__legend b { color: var(--brand-navy); font-weight: 600; display: block; font-size: 14px; }

/* ---------- Testimonial ---------- */
.testimonial-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.testimonial blockquote {
  font-family: var(--font-display); font-weight: 360;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.25; letter-spacing: -0.015em;
  color: #fff; margin: 0; text-wrap: balance;
}
.testimonial blockquote::before { content: "\201C"; color: var(--accent-500); margin-right: 4px; }
.testimonial__attr { display: flex; gap: 16px; align-items: center; margin-top: 36px; }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-500), var(--navy-300)); border: 2px solid var(--navy-700); flex-shrink: 0; }
.testimonial__attr b { color: #fff; font-weight: 600; display: block; font-size: 15px; }
.testimonial__attr span { color: var(--navy-300); font-size: 13px; }

.testimonial__shelf { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px; background: var(--navy-800); border-radius: 14px; border: 1px solid var(--navy-700); }
.testimonial__stat b { font-family: var(--font-display); font-weight: 380; font-size: 44px; line-height: 1; color: #fff; letter-spacing: -0.02em; display: block; }
.testimonial__stat b sup { color: var(--accent-500); font-size: 16px; vertical-align: super; margin-left: 2px; }
.testimonial__stat span { font-size: 13px; color: var(--navy-200); display: block; margin-top: 8px; line-height: 1.45; max-width: 26ch; }

/* ---------- Case study ---------- */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.case__img {
  aspect-ratio: 5 / 4; border-radius: 14px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(13, 27, 42, 0.5)),
    linear-gradient(135deg, #2a4360, #6b82a3);
  position: relative; overflow: hidden;
}
.case__img::after {
  content: "Editorial photograph — workplace · placeholder";
  position: absolute; left: 16px; bottom: 14px; color: var(--navy-100); font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.case__body h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 380; letter-spacing: -0.02em; line-height: 1.1; margin-top: 16px; }
.case__body p { color: var(--fg-secondary); font-size: 16px; line-height: 1.65; margin-top: 16px; }
.case__shelf { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.case__shelf b { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 380; color: var(--brand-navy); letter-spacing: -0.01em; }
.case__shelf span { font-size: 12px; color: var(--fg-secondary); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border-default); }
.faq__item { border-bottom: 1px solid var(--border-default); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; text-align: left; gap: 24px;
  font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--brand-navy);
}
.faq__chev { width: 22px; height: 22px; color: var(--fg-secondary); flex-shrink: 0; transition: transform var(--dur-base) var(--ease-standard); }
.faq__item.open .faq__chev { transform: rotate(180deg); color: var(--brand-navy); }
.faq__a {
  font-size: 16px; line-height: 1.65; color: var(--fg-secondary); max-width: 70ch;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-standard);
}
.faq__a > div { overflow: hidden; }
.faq__a > div > p { padding-bottom: 24px; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }

/* ---------- CTA section ---------- */
.cta-block { background: var(--brand-navy); color: #fff; border-radius: 14px; padding: 64px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.cta-block h2 { font-family: var(--font-display); color: #fff; font-weight: 380; font-size: clamp(34px, 4vw, 50px); line-height: 1.05; letter-spacing: -0.02em; }
.cta-block p { color: var(--navy-200); font-size: 17px; line-height: 1.6; margin-top: 16px; max-width: 44ch; }
.cta-card { background: var(--navy-800); border: 1px solid var(--navy-700); border-radius: 10px; padding: 24px; }
.cta-card .who { display: flex; gap: 14px; align-items: center; }
.cta-card .av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #6b82a3, #c8d2e0); border: 2px solid var(--navy-700); }
.cta-card b { color: #fff; display: block; font-size: 15px; font-weight: 600; }
.cta-card span { color: var(--navy-200); font-size: 13px; }
.cta-card hr { border: none; border-top: 1px solid var(--navy-700); margin: 18px 0; }
.cta-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--navy-100); }
.cta-card li::before { content: "\2713"; color: var(--accent-500); margin-right: 10px; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-navy); color: var(--navy-200); padding: 80px 0 40px; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.site-footer__top img { height: 80px; mix-blend-mode: screen; }
.site-footer__tagline { color: var(--navy-300); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 38ch; }
.site-footer__col h4 { font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__col a { color: var(--navy-200); text-decoration: none; font-size: 14px; transition: color var(--dur-fast); }
.site-footer__col a:hover { color: #fff; }
.site-footer__fine { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--navy-700); font-size: 12px; color: var(--navy-300); }
.site-footer__fine a { color: var(--navy-300); text-decoration: none; }
.site-footer__fine a:hover { color: #fff; }
.site-footer__fine .links { display: flex; gap: 24px; }

/* Inline lucide icon sizing helper */
.icon { width: 1em; height: 1em; stroke-width: 1.5; }

/* ============================================================
   MOBILE STYLES — breakpoint at 768px
   ============================================================ */

@media (max-width: 768px) {

  /* ---------- Header / Nav ---------- */
  .site-header__inner { position: relative; flex-wrap: wrap; height: auto; padding: 12px 0; gap: 8px; }
  .site-header__brand img { height: 64px; }

  /* Hide the text nav links on mobile, keep only the button */
  .site-nav { display: none; }

  /* Keep the Book a call button but make it smaller */
  .site-header .btn--accent { font-size: 13px; padding: 10px 16px; }

  /* ---------- Hero ---------- */
  .hero { padding: 48px 0 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); margin: 12px 0 16px; }
  .hero__lead { font-size: 16px; }
  .hero__aside { padding-left: 0; border-left: none; border-top: 1px solid var(--border-subtle); padding-top: 24px; gap: 20px; }
  .hero__metric .num { font-size: 32px; }
  .hero__ctas { flex-direction: column; }

  /* ---------- Sections ---------- */
  .section { padding: 64px 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .section__head h2 { font-size: clamp(28px, 7vw, 40px); }
  .section__head p { font-size: 15px; }

  /* ---------- Service cards ---------- */
  .services { grid-template-columns: 1fr; gap: 16px; }
  .service { padding: 24px; }
  .service__title { font-size: 22px; }

  /* ---------- Timeline ---------- */
  .timeline { padding: 20px; }
  .timeline__bar { display: none; }
  .timeline__steps {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0;
    top: unset;
    left: unset;
    right: unset;
    margin-bottom: 0;
  }
  .timeline__step {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .timeline__step:last-child { border-bottom: none; }
  .timeline__step b {
    font-size: 10px;
    color: var(--accent-700);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .timeline__step span {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-top: 0;
  }
  .timeline__legend {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
  }
  .timeline__legend > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* ---------- Testimonial / About ---------- */
  .testimonial-wrap { grid-template-columns: 1fr; gap: 32px; }
  .testimonial blockquote { font-size: clamp(22px, 5vw, 30px); }
  .testimonial__shelf { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
  .testimonial__stat b { font-size: 28px; }

  /* ---------- Case study ---------- */
  .case { grid-template-columns: 1fr; gap: 32px; }

  /* ---------- FAQ ---------- */
  .faq__q { font-size: 17px; padding: 18px 0; }

  /* ---------- CTA block ---------- */
  .cta-block { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; border-radius: 10px; }
  .cta-block h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-block > div > div { flex-direction: column; }

  /* ---------- Footer ---------- */
  .site-footer { padding: 48px 0 32px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .site-footer__top > div:first-child { grid-column: 1 / -1; }
  .site-footer__fine { flex-direction: column; gap: 12px; text-align: center; }

}

/* Extra small screens */
@media (max-width: 400px) {
  .testimonial__shelf { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ---------- Hamburger / Mobile nav overlay ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-standard);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brand-navy);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.nav-overlay nav a { color: #fff; font-size: 24px; font-weight: 500; text-decoration: none; letter-spacing: 0.02em; }
.nav-overlay nav a:hover { color: var(--accent-400); }
.nav-overlay__close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 24px; cursor: pointer; padding: 8px;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-header .btn--accent { display: none; }
}

/* Closing quote to match opening green quote */
.testimonial blockquote::after {
  content: "\201D";
  color: var(--accent-500);
  margin-left: 4px;
}

/* Larger header logo */
.site-header__brand img { height: 80px !important; }
.site-header__inner { height: 104px !important; }

/* Footer logo — light version on dark bg */
.site-footer__top img {
  height: 80px !important;
  
  border-radius: 8px;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--brand-navy);
  padding: 80px 0;
}
.stats-strip__head {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--navy-700);
}
.stats-strip__item:last-child {
  border-right: none;
}
.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-strip__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-200);
  max-width: 24ch;
  margin: 0 auto;
}
.stats-strip__source {
  font-size: 11px;
  color: var(--navy-400);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stats strip mobile */
@media (max-width: 768px) {
  .stats-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stats-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--navy-700);
    padding-bottom: 24px;
  }
  .stats-strip__item:nth-child(3),
  .stats-strip__item:last-child {
    border-bottom: none;
  }
  .stats-strip__num {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
  }
  .stats-strip__item:nth-child(3) {
    border-bottom: 1px solid var(--navy-700);
  }
}

/* Center last row of services when fewer than 3 cards */
.services {
}
}
.services .service:nth-child(4),
.services .service:nth-child(5) {
}
.services {
}


/* 5th service card spans full width and centers */
.services .service:nth-child(5) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
}

/* CTA card monogram */
.cta-monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-500);
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA card inline SVG mark */
.cta-mark { flex-shrink: 0; line-height: 0; }
.cta-mark svg { border-radius: 8px; }

/* Override 5th card centering on mobile — stack normally */
@media (max-width: 768px) {
  .services .service:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}

/* FAQ background fix - ensure consistent background */
.faq__item { background: transparent; }
.faq__item.open { background: transparent; }
.faq__q { background: transparent; }
.faq__q:hover { background: transparent; }

/* FAQ full fix - clean full-width rows like reference design */
.faq { width: 100%; }
.faq__item {
  width: 100%;
  display: block;
  background: transparent !important;
  border-bottom: 1px solid var(--border-default);
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
}
.faq__item.open { background: transparent !important; }
.faq__q {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 24px 0 !important;
}
.faq__q:hover { background: transparent !important; }
