/* --- TOKENS --- */
:root {
  --black:   #0a0a0a;
  --black2:  #111111;
  --card:    #1a1a1a;
  --card2:   #222222;
  --white:   #f5f5f5;
  --white2:  #ffffff;
  --muted:   #888888;
  --muted2:  #555555;
  --border:  rgba(255,255,255,0.08);
  --radius:  16px;
  --radius-sm: 10px;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --accent:  #c8a96e;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
.display-xl { font-size: clamp(3rem, 7vw, 7rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.2rem, 5vw, 4.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display-sm { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.2; }
.body-lg    { font-size: 1.1rem; line-height: 1.7; color: #aaaaaa; }
.body-md    { font-size: 0.95rem; line-height: 1.6; color: #999999; }
.label      { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.eyebrow    { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: inline-block; }

/* --- LAYOUT --- */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* --- NAV --- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.nav-logo-sub { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.05em; display: none; }
@media (min-width: 1100px) {
  .nav-logo-sub { display: block; }
}
.nav-logo-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  font-size: 0.88rem; color: var(--muted); transition: color 0.2s;
  padding: 8px 14px; border-radius: 6px; background: none; border: none;
  cursor: pointer; font-family: var(--font-display); display: flex; align-items: center; gap: 4px;
}
.nav-item > a:hover, .nav-item > button:hover, .nav-item > a:focus, .nav-item > button:focus { color: var(--white); }
.nav-item > button::after { content: '\25BE'; font-size: 0.65rem; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--black2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.5rem 0;
  min-width: 260px; z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 8px 20px; font-size: 0.85rem; color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover, .nav-dropdown a:focus { color: var(--white); background: rgba(255,255,255,0.04); }
.btn-nav {
  background: var(--white2); color: var(--black);
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600;
  transition: opacity 0.2s; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.85; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white2); color: var(--black);
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  transition: opacity 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* --- CARDS --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.card-dark {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.card-light {
  background: var(--white2); color: var(--black);
  border-radius: var(--radius);
  padding: 2rem;
}
.card-sm { padding: 1.25rem 1.5rem; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* --- PILL / BADGE --- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
}
.pill::before { content: ''; display: none; }
.pill.active { background: var(--white2); color: var(--black); border-color: var(--white2); }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(200,169,110,0.12); color: var(--accent); border: 1px solid rgba(200,169,110,0.2);
}
.badge-coming { background: rgba(255,255,255,0.05); color: var(--muted); border-color: var(--border); }

/* --- HERO --- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  padding: 80px 0 100px;
}
.hero-left {}
.hero-right {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.hero-right .label { margin-bottom: 1.5rem; }
.hero-outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.outcome-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.outcome-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.outcome-card.light { background: var(--white2); color: var(--black); }
.outcome-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.outcome-card p  { font-size: 0.78rem; color: var(--muted); }
.outcome-card.light p { color: #666; }
.philosophy-card {
  background: var(--white2); color: var(--black);
  border-radius: var(--radius-sm);
  padding: 1.25rem; margin-top: 1rem;
}
.philosophy-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem; }
.philosophy-card p  { font-size: 0.78rem; color: #555; }

/* --- STATS ROW --- */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat h3 { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; }
.stat p   { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }

/* --- PROBLEM SECTION --- */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.problem-patterns { display: flex; flex-direction: column; gap: 1rem; }

/* --- OFFER CARDS --- */
.offer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column;
}
.offer-card-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.offer-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.offer-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.offer-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.offer-tag { font-size: 0.72rem; color: var(--muted2); border-bottom: 1px solid var(--muted2); padding-bottom: 1px; }
.offer-link { margin-top: auto; padding-top: 1.5rem; font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.offer-link:hover { opacity: 0.7; }

/* --- WHY SAB --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-point {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem;
}
.why-point-icon { font-size: 1rem; opacity: 0.6; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-meta-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 1rem; }

/* --- INSIGHTS --- */
.insights-tabs { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.tab-btn {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 18px;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.tab-btn.active { background: var(--white2); color: var(--black); border-color: var(--white2); }
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.insight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.insight-card:hover { border-color: rgba(255,255,255,0.2); }
.insight-category { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.insight-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.75rem; }
.insight-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.insight-card-footer { margin-top: auto; padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.insight-read { font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0; cursor: pointer;
}
.faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 600; gap: 1rem; }
.faq-toggle { font-size: 1.2rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding-top 0.3s; }
.faq-item.open .faq-answer { max-height: 600px; padding-top: 1rem; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* --- CTA SECTION --- */
.cta-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem; text-align: center;
  margin: 60px 0;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  padding: 1rem 0; font-size: 0.82rem; color: var(--muted);
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin: 0 0.5rem; }

/* --- SERVICE PAGE --- */
.service-hero { padding: 60px 0 40px; }
.service-hero h1 { margin-bottom: 1.5rem; }
.service-section { padding: 60px 0; }
.service-section + .service-section { border-top: 1px solid var(--border); }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.service-list li { font-size: 0.95rem; color: #aaaaaa; line-height: 1.6; padding-left: 1.25rem; position: relative; }
.service-list li::before { content: '\2022'; position: absolute; left: 0; color: var(--accent); }
.related-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.related-services a {
  display: block; padding: 1rem 1.25rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; transition: border-color 0.2s;
}
.related-services a:hover { border-color: rgba(255,255,255,0.2); }

/* --- FORM --- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--muted); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.95rem; font-family: var(--font-display);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: rgba(255,255,255,0.3);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.form-consent label { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.form-success {
  display: none; padding: 2rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center;
}
.form-success.visible { display: block; }

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.5; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: #777; padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-disclaimer { font-size: 0.72rem; color: #555; max-width: 600px; }

/* --- DIVIDER --- */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* --- WHITE SECTION --- */
.section-white { background: #fff; color: #0a0a0a; }
.section-white .body-lg { color: #555; }
.section-white .label   { color: #888; }
.section-alt { background: var(--black2); }

/* --- COMING SOON --- */
.coming-soon-section { padding: 80px 0; text-align: center; }
.coming-soon-section h1 { margin-bottom: 1.5rem; }
.coming-soon-section p { max-width: 600px; margin: 0 auto 2rem; }

/* --- TRUST STATEMENT --- */
.trust-statement {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem; margin: 2rem 0;
  font-size: 0.95rem; color: #aaaaaa; line-height: 1.7; font-style: italic;
}

/* --- TECH BADGES --- */
.tech-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.tech-badge {
  display: inline-block; padding: 6px 14px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.78rem; color: var(--muted); font-weight: 500;
}

/* --- TWO ENTRY POINTS --- */
.entry-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.entry-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column;
}
.entry-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.entry-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.entry-card .btn-ghost { margin-top: auto; font-size: 0.85rem; padding: 10px 20px; }

/* --- METHODOLOGY STEPS --- */
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.method-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.method-step-num { font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 0.75rem; }
.method-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.method-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* --- RESPONSIVE: TABLET (<= 1024px) --- */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .why-meta-row  { grid-template-columns: 1fr 1fr; }
  .hero          { padding: 60px 0 80px; }
  .why-grid,
  .problem-grid  { gap: 2.5rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand  { grid-column: span 3; }
  .method-steps  { grid-template-columns: 1fr 1fr; }
}

/* --- RESPONSIVE: TABLET (<= 900px) --- */
@media (max-width: 900px) {
  .container     { padding: 0 1.5rem; }
  .container-narrow { padding: 0 1.5rem; }

  /* Nav */
  .nav-links     { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    padding: 1.5rem 2rem; gap: 0.5rem; z-index: 99;
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .nav-toggle    { display: block; }
  .btn-nav       { font-size: 0.8rem; padding: 7px 14px; }
  .nav-dropdown  { position: static; background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem; min-width: 0; display: none; }
  .nav-item:hover .nav-dropdown { display: none; }
  .nav-item:focus-within .nav-dropdown { display: none; }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 6px 12px; font-size: 0.82rem; }

  /* Layout */
  .hero          { grid-template-columns: 1fr; gap: 2.5rem; padding: 50px 0 60px; }
  .problem-grid,
  .why-grid,
  .offer-cards,
  .entry-points  { grid-template-columns: 1fr; gap: 2rem; }
  .hero-outcomes,
  .why-cards     { grid-template-columns: 1fr 1fr; }
  .why-meta-row  { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .grid-3        { grid-template-columns: 1fr 1fr; }
  .grid-4        { grid-template-columns: 1fr 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .related-services { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: span 2; }

  /* Spacing */
  .section       { padding: 60px 0; }
  .section-sm    { padding: 40px 0; }
  .cta-section   { padding: 2.5rem 1.5rem; }

  /* Typography */
  .display-xl    { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* --- RESPONSIVE: MOBILE (<= 600px) --- */
@media (max-width: 600px) {
  .container     { padding: 0 1rem; }
  .container-narrow { padding: 0 1rem; }
  .section       { padding: 44px 0; }
  .section-sm    { padding: 28px 0; }
  .btn-nav       { display: none; }
  .display-xl    { font-size: clamp(1.9rem, 9.5vw, 2.7rem); letter-spacing: -0.02em; line-height: 1.05; }
  .display-lg    { font-size: clamp(1.6rem, 7vw, 2.2rem); letter-spacing: -0.02em; }
  .display-md    { font-size: clamp(1.25rem, 5.5vw, 1.75rem); }
  .display-sm    { font-size: 1.1rem; }
  .body-lg       { font-size: 1rem; line-height: 1.65; }
  .hero          { padding: 28px 0 36px; gap: 0; }
  .hero-right    {
    background: transparent; border: none;
    border-top: 1px solid var(--border);
    border-radius: 0; padding: 1.75rem 0 0; margin-top: 1.5rem;
  }
  .hero-outcomes { grid-template-columns: 1fr; gap: 0.6rem; }
  .outcome-card  { grid-column: auto !important; }
  .stats-row     {
    display: flex; flex-direction: column;
    gap: 0; padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: none;
  }
  .stat          {
    padding: 1.1rem 1rem 1.1rem 1.25rem;
    border-left: 3px solid rgba(255,255,255,0.7);
    border-bottom: 1px solid var(--border);
  }
  .stat h3       { font-size: 2.2rem; letter-spacing: -0.04em; }
  .stat p        { font-size: 0.82rem; margin-top: 0.1rem; }
  .grid-2,
  .grid-3,
  .grid-4        { grid-template-columns: 1fr; gap: 0.75rem; }
  .why-cards,
  .why-meta-row  { grid-template-columns: 1fr; gap: 0.75rem; }
  .insights-grid { grid-template-columns: 1fr; gap: 1rem; }
  .method-steps  { grid-template-columns: 1fr; }
  .card          { padding: 1.2rem; border-radius: var(--radius-sm); }
  .card-sm       { padding: 1rem 1.1rem; }
  .offer-card    { padding: 1.2rem; }
  .cta-section   { padding: 2rem 1.25rem; margin: 24px 0; border-radius: var(--radius-sm); }
  .insights-tabs {
    overflow-x: auto; flex-wrap: nowrap;
    -ms-overflow-style: none; scrollbar-width: none;
    padding-bottom: 2px; gap: 0.5rem; margin-bottom: 1.5rem;
  }
  .insights-tabs::-webkit-scrollbar { display: none; }
  .tab-btn       { white-space: nowrap; flex-shrink: 0; padding: 6px 14px; font-size: 0.78rem; }
  .btn-group     { flex-direction: column; gap: 0.75rem; }
  .btn-primary,
  .btn-ghost     { width: 100%; justify-content: center; min-height: 48px; font-size: 1rem; padding: 12px 24px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links  { flex-direction: column; align-items: center; gap: 0.75rem; }
  .entry-points  { grid-template-columns: 1fr; }
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
