/* =============================================================
   mobile-en.css — CBS Site Mobile English Styles
   Breakpoint: @media (max-width: 480px)
   Extracted verbatim from mobile-en-spec.md
   ============================================================= */

/* ── Global / Reset ── */
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  body {
    background: #FFFFFF;
    color: #111827;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
}

/* ── Section entrance animation — disabled: no IntersectionObserver in production JS ── */
/* Sections are always visible; no opacity/transform needed */

/* ── Eyebrow / label utility ── */
@media (max-width: 480px) {
  .hero-eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1D4ED8;
    margin-bottom: 12px;
  }
}

/* ── Section label utility ── */
@media (max-width: 480px) {
  /* .hero-eyebrow covers this — see eyebrow above */
}

/* ── Section alternate background ── */
@media (max-width: 480px) {
  .execution-shift,
  .cbs-demo-toc-lean,
  .quick-links {
    background: #F8FAFC;
  }
}

/* ── Button Primary ── */
@media (max-width: 480px) {
  .btn-primary,
  .cta-button {
    display: block;
    width: 100%;
    background: #2563EB;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    min-height: 52px;
    line-height: 1.2;
  }
  .btn-primary:active,
  .cta-button:active {
    background: #1D4ED8;
  }
}

/* ── Button Secondary ── */
@media (max-width: 480px) {
  .btn-secondary,
  .testimonial-link-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: #FFFFFF; /* cancel desktop red background */
    border: 1px solid #2563EB;
    color: #2563EB;
    border-radius: 4px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 12px;
    min-height: 44px;
    line-height: 1.4;
  }
  .btn-secondary:hover,
  .testimonial-link-btn:hover {
    background: #EFF6FF;
  }
}

/* ── Heading styles ── */
@media (max-width: 480px) {
  /* desktop red accent bars — absent from the mobile reference, and their
     absolute positioning breaks inside mobile cards */
  html[lang="en"] body .solution h2::after,
  html[lang="en"] body .real-results h2::after,
  html[lang="en"] body .faq h2::after,
  html[lang="en"] body .final-cta h2::after,
  html[lang="en"] body .execution-shift-panel::before {
    display: none;
  }

  h1, h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
  }
  h1 {
    font-size: clamp(2.2rem, 8.5vw, 2.8rem);
    line-height: 1.15;
    color: #111827;
    margin-bottom: 16px;
  }
  h2 {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    line-height: 1.25;
    color: #111827;
    margin-bottom: 16px;
  }
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
  }
}

/* ── 1. NAV ── */
@media (max-width: 480px) {
  /* fixed (not sticky): body{overflow-x:hidden} breaks position:sticky */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    background: #1a1a1a;
    border-bottom: none;
  }

  /* reserve space for the fixed header */
  body {
    padding-top: 60px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
  }

  /* Hide desktop nav links on mobile.
     Keep the <nav> wrapper itself visible so .nav-menu.mobile-open
     (legacy !important overlay) can render when the hamburger opens. */
  .nav-container .nav-menu,
  .nav-container .language-selector {
    display: none;
  }

  .logo {
    position: static; /* cancel desktop position:fixed */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo .cbs {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #2563EB;
    letter-spacing: -0.02em;
  }

  /* "BUSINESS SOLUTIONS" text node after .cbs span */
  .logo {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    margin-top: 2px;
    text-transform: uppercase;
  }

  .hamburger-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }
}

/* ── 2. HERO ── */
@media (max-width: 480px) {
  /* Use html[lang="en"] body .hero to beat the higher-specificity desktop rule at styles-new.css:5341 */
  html[lang="en"] body .hero {
    background: #FFFFFF;
    padding: 40px 20px 24px;
  }

  html[lang="en"] body .hero-title {
    font-size: clamp(2.2rem, 8.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  /* Match specificity of styles-new.css:5358 html[lang="en"] body .hero-content.hero-content--single.cbs-demo-hero-grid */
  html[lang="en"] body .hero-content.hero-content--single.cbs-demo-hero-grid {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  html[lang="en"] body .hero-content.hero-content--single.cbs-demo-hero-grid .hero-text {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Reference has no CTA buttons in hero — scroll link only */
  html[lang="en"] body .hero-buttons {
    display: none;
  }

  html[lang="en"] body .hero__scroll-link {
    color: #2563EB;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
    font-weight: 500;
  }

  html[lang="en"] .hero-bg-anim {
    display: block;
    position: relative;
    width: 100%;
    height: 180px;
    margin: 16px 0;
    overflow: hidden;
    pointer-events: none;
  }

  html[lang="en"] .hero-bg-anim svg {
    width: 100%;
    height: 100%;
  }
}

/* ── 3. STATS STRIP (he-value-strip) ── */
@media (max-width: 480px) {
  html[lang="en"] .he-value-strip {
    background: #FFFFFF;
    padding: 0 20px;
  }

  html[lang="en"] .he-value-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #F0F7FF;
    border-radius: 12px;
    padding: 28px 20px;
    margin: 28px 0;
  }

  html[lang="en"] .stats-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
  }

  html[lang="en"] .he-value-strip-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Override desktop hero-stats-strip rules with full specificity path */
  html[lang="en"] .he-value-strip .hero-stats-strip {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-width: none;
    margin-top: 0;
  }

  html[lang="en"] .he-value-strip .hero-stats-strip .stat-item,
  html[lang="en"] .he-value-strip .stat-item {
    border-left: 3px solid #2563EB;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    margin-bottom: 20px;
    min-height: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    flex: none;
    width: auto;
    gap: 0;
    overflow: visible;
  }

  html[lang="en"] .he-value-strip .hero-stats-strip .stat-item:last-child,
  html[lang="en"] .he-value-strip .stat-item:last-child {
    margin-bottom: 0;
  }

  /* .stat-divider — hide on mobile */
  html[lang="en"] .he-value-strip .hero-stats-strip .stat-divider,
  html[lang="en"] .he-value-strip .stat-divider {
    display: none;
  }

  /* a11y: desktop label color is 4.47 contrast on the mobile #F0F7FF strip */
  html[lang="en"] .he-value-strip-label {
    color: #5B6472;
  }

  html[lang="en"] .he-value-strip .hero-stats-strip .stat-number,
  html[lang="en"] .he-value-strip .stat-number {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 12vw, 3.8rem);
    font-weight: 400;
    color: #111827;
    line-height: 1;
    display: block;
    white-space: normal;
    letter-spacing: 0;
    margin: 0;
  }

  html[lang="en"] .he-value-strip .hero-stats-strip .stat-label,
  html[lang="en"] .he-value-strip .stat-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #5B6472; /* a11y: #6B7280 on #F0F7FF is 4.47, just under WCAG AA 4.5 */
    margin-top: 4px;
    display: block;
    line-height: 1.3;
  }
}

/* ── 4. VIDEO (cbs-demo-video) ── */
@media (max-width: 480px) {
  html[lang="en"] .cbs-demo-video {
    background: #F8FAFC;
    padding: 48px 20px;
  }

  .cbs-demo-video-inner {
    /* inherits section padding */
  }

  /* eyebrow above h2 — covered by .hero-eyebrow rule */

  /* h2 — covered by h2 rule */

  /* html[lang="en"] body prefix required to beat desktop rules in styles-new.css */
  html[lang="en"] body .cbs-demo-video-frame {
    margin-top: 20px;
    border-top: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: transparent;
    box-shadow: none;
  }

  /* Reference look: YouTube thumbnail + dark overlay + blue play button */
  html[lang="en"] body .cbs-demo-video-frame .video-lazy {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    padding: 0;
    background: #000 url('https://img.youtube.com/vi/gGS2Yq9BV-4/hqdefault.jpg') center / cover no-repeat;
    cursor: pointer;
  }

  html[lang="en"] body .cbs-demo-video-frame .video-lazy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
  }

  html[lang="en"] body .cbs-demo-video-frame .video-lazy-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2563EB;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    box-shadow: none;
  }

  html[lang="en"] body .cbs-demo-video-frame .video-lazy-play::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-block: 0.55rem solid transparent;
    border-inline-start: 0.85rem solid #FFFFFF;
    margin-inline-start: 0.15rem;
  }

  /* .video-lazy-label stays visually hidden (desktop rule) — screen readers only */
}

/* ── 5. PROBLEM CARDS (he-real-problem) ── */
@media (max-width: 480px) {
  html[lang="en"] .he-real-problem {
    background: #FFFFFF;
    padding: 48px 20px;
  }

  .he-real-problem-inner {
    /* inherits section padding */
  }

  /* eyebrow — covered by .hero-eyebrow rule */

  .he-real-problem-lead {
    color: #374151;
    margin-bottom: 24px;
  }

  .he-real-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .he-real-problem-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    border-left: 3px solid #2563EB;
    padding: 16px 14px 16px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .he-real-problem-card.in-view {
    border-left-color: #2563EB;
    box-shadow: 0 2px 12px rgba(37,99,235,0.1);
  }

  /* Card h3 maps to .problem__card-title */
  .he-real-problem-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1D4ED8;
    margin-bottom: 8px;
  }

  /* Card p maps to .problem__card-text */
  .he-real-problem-card p {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.5;
  }

  .he-real-problem-fit {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    color: #374151;
    margin-top: 24px;
  }
}

/* ── 6. WHO SETS PACE (execution-shift) ── */
@media (max-width: 480px) {
  html[lang="en"] .execution-shift {
    background: #F8FAFC;
    padding: 48px 20px;
  }

  .execution-shift-container {
    /* inherits section padding */
  }

  .execution-shift-panel {
    /* stack vertically on mobile; the global *{padding:0} reset above wipes
       the desktop panel padding — without this the rounded corner (22px +
       overflow:hidden) clips the first line of text */
    padding: 28px 20px;
  }

  .execution-shift-header {
    margin-bottom: 20px;
  }

  /* h2 covered by global h2 rule */

  .execution-shift-subhead {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
  }

  .execution-shift-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .execution-shift-visual {
    width: 100%;
    margin: 0;
  }

  .execution-shift-visual img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: block;
  }

  .execution-shift-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .execution-shift-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-top: 16px;
  }

  .execution-shift-summary {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-top: 16px;
  }
}

/* ── 7. HOW WE WORK (solution) ── */
@media (max-width: 480px) {
  html[lang="en"] .solution {
    background: #FFFFFF;
    padding: 48px 20px;
  }

  .solution-container {
    /* inherits section padding */
  }

  .solution-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .solution-text-section {
    /* block, stacked */
  }

  .solution-text-content {
    /* block */
  }

  html[lang="en"] .solution-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 0;
  }

  html[lang="en"] .solution-text:first-child {
    margin-top: 0;
  }

  .cta-button {
    display: block;
    width: 100%;
    background: #2563EB;
    color: #FFFFFF;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    min-height: 52px;
    line-height: 1.2;
    margin-top: 28px;
  }

  .cta-button:active {
    background: #1D4ED8;
  }
}

/* ── 8. TOC vs LEAN (cbs-demo-toc-lean) ── */
@media (max-width: 480px) {
  html[lang="en"] .cbs-demo-toc-lean {
    background: #F8FAFC;
    padding: 48px 20px;
  }

  .cbs-demo-toc-lean-inner {
    /* inherits section padding */
  }

  /* eyebrow "Our approach" — covered by .hero-eyebrow */

  /* h2 — covered by global h2 rule */

  .cbs-demo-toc-lean-lead {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
  }

  .cbs-demo-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .cbs-demo-compare-card {
    padding: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
  }

  .cbs-demo-compare-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
  }

  .cbs-demo-compare-card p {
    font-size: 0.9rem;
    color: #374151;
  }

  /* First card (Lean everywhere) — red */
  html[lang="en"] .cbs-demo-compare-card:first-child {
    background: #FFF5F5;
    border-left: 4px solid #EF4444;
  }

  html[lang="en"] .cbs-demo-compare-card:first-child h3 {
    color: #991B1B;
  }

  /* Second card (Constraint-first) — blue highlight */
  html[lang="en"] .cbs-demo-compare-card--highlight {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
  }

  html[lang="en"] .cbs-demo-compare-card--highlight h3 {
    color: #1D4ED8;
  }
}

/* ── 9. RESULTS (real-results) ── */
@media (max-width: 480px) {
  html[lang="en"] .real-results {
    background: #F8FAFC;
    padding: 48px 20px;
  }

  html[lang="en"] .results-container {
    /* inherits section padding */
  }

  /* h2 — covered by global h2 rule */

  html[lang="en"] .results-subtitle {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: none;
    text-align: left;
  }

  html[lang="en"] .results-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 28px;
    grid-template-columns: none;
  }

  html[lang="en"] .result-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top: 3px solid #2563EB;
    border-left: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
    height: auto;
    overflow: visible;
  }

  html[lang="en"] .result-card__logo-img,
  html[lang="en"] .company-logo-img,
  html[lang="en"] .company-logo img {
    height: 56px;
    max-height: none;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
  }

  /* company-logo wrapper div */
  html[lang="en"] .company-logo {
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0 0 12px 0;
  }

  html[lang="en"] .result-kpi {
    margin-bottom: 4px;
  }

  html[lang="en"] .result-kpi-number {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
  }

  html[lang="en"] .result-kpi-label {
    font-size: 0.95rem;
    color: #374151;
  }

  html[lang="en"] .result-metrics {
    list-style: none;
    padding: 0;
    margin-top: 12px;
  }

  html[lang="en"] .metric {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    border-top: 1px solid #F3F4F6;
  }

  html[lang="en"] .metric-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 3px;
    color: #2563EB;
  }

  html[lang="en"] .metric-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #4A4A4A;
  }

  html[lang="en"] .results-cta {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* btn-primary and btn-secondary within results covered by global button rules */

  html[lang="en"] .results-link {
    margin-top: 12px;
    text-align: center;
  }

  html[lang="en"] .results-link a {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid #2563EB;
    color: #2563EB;
    border-radius: 4px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.4;
  }

  html[lang="en"] .results-link a:hover {
    background: #EFF6FF;
  }
}

/* ── 10. TESTIMONIALS (testimonial) ── */
@media (max-width: 480px) {
  /* reference (cbs-mobile) uses a white testimonials section, not dark */
  html[lang="en"] .testimonial {
    background: #FFFFFF;
    padding: 48px 20px;
  }

  .testimonial-container {
    /* inherits section padding */
  }

  /* h2 — covered by global h2 rule */

  .testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .testimonial-content {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-left: none;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 16px;
  }

  /* quote-mark — production does not have .quote-mark element, it's omitted */
  /* If added via ::before: */
  .testimonial-content::before {
    content: none;
  }

  .testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .testimonial-author {
    border-top: 2px solid #EFF6FF;
    padding-top: 12px;
    margin-top: 12px;
  }

  .author-info h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
  }

  .author-info p {
    font-size: 0.8rem;
    color: #6B7280;
  }

  .testimonial-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  /* .testimonial-link-btn covered by .btn-secondary rule above */
}

/* ── 11. LOGOS (trusted-by) ── */
@media (max-width: 480px) {
  html[lang="en"] .trusted-by {
    background: #FFFFFF;
    padding: 48px 20px;
  }

  .trusted-by-container {
    /* inherits section padding */
  }

  /* h2 override — logos section uses smaller, muted heading */
  .trusted-by h2 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
    margin-bottom: 24px;
    font-style: normal;
  }

  .he-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
    align-items: center;
    justify-items: center;
    padding: 8px 0;
  }

  .he-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-logo {
    height: 36px;
    max-width: 100px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.2s ease;
  }

  .client-logo:hover {
    transform: scale(1.05);
  }
}

/* ── 12. FAQ (faq) ── */
@media (max-width: 480px) {
  html[lang="en"] .faq {
    background: #FFFFFF;
    padding: 48px 20px;
  }

  .faq-container {
    /* inherits section padding */
  }

  /* h2 — covered by global h2 rule */

  .faq-content {
    margin-top: 24px;
  }

  .faq-item {
    border-bottom: 1px solid #E5E7EB;
  }

  html[lang="en"] .faq-question {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
  }

  /* h3 inside .faq-question */
  html[lang="en"] .faq-question h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    margin: 0;
    text-align: left;
    padding-right: 0;
  }

  html[lang="en"] .faq-icon {
    font-size: 1.2rem;
    color: #1D4ED8;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 250ms ease;
  }

  /* open state — icon changes to × via JS (cbsToggleFaq) */

  html[lang="en"] .faq-answer {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
    padding: 0 0 16px 0;
    display: block;
  }

  .faq-answer p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
  }
}

/* ── 13. CTA (final-cta) ── */
@media (max-width: 480px) {
  /* reference (cbs-mobile) --bg-alt: light section, dark heading, blue button */
  html[lang="en"] .final-cta {
    background: #F8FAFC;
    text-align: center;
    padding: 48px 20px;
  }

  html[lang="en"] .final-cta h2 {
    color: #111827;
  }

  .cta-container {
    /* inherits section padding */
  }

  /* h2 — covered by global h2 rule + override margin */
  .final-cta h2 {
    margin-bottom: 12px;
  }

  .cta-text {
    color: #374151;
    margin-bottom: 28px;
  }

  /* btn-primary covered by global button rule */

  /* .final-cta__email — not present in production HTML */
  /* If added: */
  .final-cta__email {
    display: block;
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 16px;
    padding: 8px 0;
  }

  .final-cta__email:hover {
    color: #111827;
  }
}

/* ── QUICK LINKS / LEARN MORE (quick-links) ── */
@media (max-width: 480px) {
  /* Match the 2-class specificity of styles-new.css html[lang="en"] .quick-links.he-quick-links */
  html[lang="en"] .quick-links.he-quick-links {
    background: #F8FAFC;
    padding: 32px 20px;
  }

  html[lang="en"] .quick-links.he-quick-links h2 {
    margin-bottom: 4px;
  }

  html[lang="en"] .quick-links.he-quick-links .learn-more-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 100%;
  }

  html[lang="en"] .quick-links.he-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  html[lang="en"] .quick-links.he-quick-links ul li {
    margin: 0;
    padding: 0;
  }

  html[lang="en"] .quick-links.he-quick-links a,
  html[lang="en"] .quick-links.he-quick-links ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    white-space: normal;
    min-height: 0;
    border-top: none;
    border-left: none;
    border-right: none;
  }
}

/* ── 14. FOOTER (footer) ── */
/* Use html[lang="en"] to beat footer.css bare selectors (footer.css loads async, AFTER mobile-en.css) */
@media (max-width: 480px) {
  html[lang="en"] .footer {
    background: #1A1A1A;
    padding: 40px 20px 32px;
    margin-top: 0;
  }

  html[lang="en"] .footer-container {
    padding: 0;
    max-width: 100%;
  }

  html[lang="en"] .footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* footer-brand: logo + tagline.
     a11y: opacity 0.7 dimmed the blue .cbs child below 3:1 — use a
     pre-blended muted color at full opacity instead (same visual). */
  html[lang="en"] .footer-brand h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #B3B2AD;
    opacity: 1;
    margin-bottom: 8px;
  }

  html[lang="en"] .footer-brand p {
    font-size: 0.85rem;
    color: #F0EEE8;
    opacity: 0.7;
    margin-bottom: 0;
    line-height: 1.5;
  }

  /* footer-contact */
  html[lang="en"] .footer-contact h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F0EEE8;
    opacity: 0.7;
    margin-bottom: 8px;
  }

  html[lang="en"] .footer-contact .email-ltr,
  html[lang="en"] .footer-contact .phone-number {
    display: block;
    color: #F0EEE8;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 4px;
  }

  html[lang="en"] .footer-contact a {
    display: inline-block;
    color: #F0EEE8;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 4px;
    margin-bottom: 0;
  }

  html[lang="en"] .footer-contact a:hover,
  html[lang="en"] .footer-contact .phone-number:hover {
    color: #2563EB;
  }

  /* footer-menu: nav links */
  html[lang="en"] .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: flex-start;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
  }

  html[lang="en"] .footer-link {
    font-size: 0.85rem;
    color: #F0EEE8;
    text-decoration: none;
    opacity: 0.8;
  }

  html[lang="en"] .footer-link:hover {
    color: #2563EB;
    opacity: 1;
  }

  /* privacy + terms links.
     a11y: was 12px at opacity 0.45 (4.0:1) — align with the he page:
     full opacity, muted-but-readable gray, 14.4px (9:1). */
  html[lang="en"] .privacy-link,
  html[lang="en"] .terms-link {
    font-size: 0.9rem;
    color: #CCCCCC;
    text-decoration: none;
    opacity: 1;
  }

  /* footer-bottom */
  html[lang="en"] .footer-bottom {
    margin-top: 16px;
    border-top: 1px solid #333;
    padding-top: 12px;
    text-align: center;
  }

  html[lang="en"] .footer-copyright {
    font-size: 0.75rem;
    color: #999;
    opacity: 1;
  }
}

/* ── Animation keyframes (global, all viewports) ── */
/* Already in styles-new.css global section — no changes needed */
.bk-pd { opacity: 0; }
.bk-ggl { animation: bk-gp 2.8s ease-in-out infinite; }
.bk-rng1 { animation: bk-ring 2.2s ease-out infinite; }
.bk-rng2 { animation: bk-ring 2.2s ease-out 1.1s infinite; }
.bk-pill { animation: bk-pp 2.8s ease-in-out infinite; transform-origin: 340px 130px; }
