/* PulseHub site — shared styles */
:root,
  [data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b0d11;
    --bg-elev: #12151b;
    --bg-soft: #181c24;
    --bg-hero: #10141c;
    --line: rgba(255,255,255,.08);
    --text: #eef1f5;
    --muted: #9aa3b2;
    --faint: #6b7382;
    --accent: #FF8A1E;
    --accent-soft: rgba(255,138,30,.16);
    --accent-strong: #ff9d42;
    --nav-solid: rgba(11,13,17,.78);
    --phone-shell: linear-gradient(160deg, #2a303a, #12151a 55%, #0a0c10);
    --phone-notch: #050607;
    --phone-border: rgba(255,255,255,.12);
    --phone-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 28px 60px rgba(0,0,0,.55);
    --grid-line: rgba(255,255,255,.03);
    --hero-glow: rgba(255,138,30,.18);
    --hero-glow-2: rgba(70,120,255,.08);
    --cta-bg: linear-gradient(135deg, #161a22, #101318 60%);
    --cta-border: rgba(255,138,30,.28);
    --orbit-border: rgba(255,255,255,.1);
    --icon-opacity: .18;
    --icon-accent-opacity: .28;
    --radius: 20px;
    --max: 1120px;
    --phone-w: 280px;
    --ease: cubic-bezier(.22,1,.36,1);
  }

  [data-theme="light"] {
    color-scheme: light;
    --bg: #f4f5f7;
    --bg-elev: #ffffff;
    --bg-soft: #eceef2;
    --bg-hero: #ebe7e1;
    --line: rgba(20,24,32,.1);
    --text: #141820;
    --muted: #5c6573;
    --faint: #8a93a1;
    --accent: #e87812;
    --accent-soft: rgba(232,120,18,.14);
    --accent-strong: #f08a28;
    --nav-solid: rgba(244,245,247,.86);
    --phone-shell: linear-gradient(160deg, #d8dde6, #b8c0cc 55%, #9aa3b0);
    --phone-notch: #2a3038;
    --phone-border: rgba(20,24,32,.14);
    --phone-shadow: 0 0 0 1px rgba(20,24,32,.06), 0 24px 50px rgba(20,24,32,.16);
    --grid-line: rgba(20,24,32,.05);
    --hero-glow: rgba(255,138,30,.22);
    --hero-glow-2: rgba(90,130,220,.08);
    --cta-bg: linear-gradient(135deg, #fff8f0, #ffffff 55%);
    --cta-border: rgba(232,120,18,.35);
    --orbit-border: rgba(20,24,32,.12);
    --icon-opacity: .14;
    --icon-accent-opacity: .22;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .35s var(--ease), color .35s var(--ease);
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }

  /* —— Animated sports icons field —— */
  .icon-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .icon-field__item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: calc(44px * var(--s, 1));
    height: calc(44px * var(--s, 1));
    max-width: none;
    opacity: var(--icon-opacity);
    object-fit: contain;
    will-change: transform;
    animation: icon-float var(--dur, 22s) ease-in-out var(--d, 0s) infinite alternate;
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg));
  }
  [data-theme="dark"] .icon-field__item {
    filter: invert(1);
  }
  [data-theme="light"] .icon-field__item {
    filter: none;
  }
  .icon-field__item.is-accent {
    opacity: var(--icon-accent-opacity);
    filter: invert(56%) sepia(88%) saturate(1800%) hue-rotate(352deg) brightness(1.05) !important;
  }
  @keyframes icon-float {
    0%   { transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1); }
    50%  { transform: translate3d(var(--dx, 14px), var(--dy, -22px), 0) rotate(calc(var(--rot, 0deg) + 10deg)) scale(1.06); }
    100% { transform: translate3d(var(--dx2, -8px), var(--dy2, 10px), 0) rotate(calc(var(--rot, 0deg) - 8deg)) scale(.96); }
  }

  /* Канон-wordmark (бренд-бук): Inter 800, два градиента Pulse/Hub — как в шапке apps/web */
  .brand {
    font-family: Inter, system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .brand__p {
    background: linear-gradient(90deg, #F6C744 0%, #F39C4B 40%, #F65C8D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .brand__h {
    background: linear-gradient(90deg, #F65C8D 0%, #B14BE0 60%, #7C3AED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .wrap {
    width: min(100% - 40px, var(--max));
    margin-inline: auto;
  }

  /* —— Nav —— */
  .nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    padding: 18px 0;
    transition: background .35s var(--ease), backdrop-filter .35s, border-color .35s;
    border-bottom: 1px solid transparent;
  }
  .nav.is-solid {
    background: var(--nav-solid);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
  }
  .nav__logo img { width: 32px; height: 32px; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav__link {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color .2s, background .2s;
  }
  .nav__link:hover { color: var(--text); background: rgba(127,127,127,.08); }
  .nav__link.is-active { color: var(--text); }
  .nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background .2s var(--ease), border-color .2s, transform .2s var(--ease);
  }
  .theme-toggle:hover {
    background: rgba(127,127,127,.1);
    border-color: rgba(127,127,127,.28);
    transform: translateY(-1px);
  }
  .theme-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .theme-toggle svg {
    width: 18px;
    height: 18px;
  }
  .theme-toggle .icon-moon {
    fill: currentColor;
  }
  .theme-toggle .icon-sun {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .theme-toggle .icon-sun { display: none; }
  .theme-toggle .icon-moon { display: block; }
  [data-theme="light"] .theme-toggle .icon-sun { display: block; }
  [data-theme="light"] .theme-toggle .icon-moon { display: none; }
  .nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 12px;
    background: var(--accent);
    color: #121212;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s var(--ease), background .2s;
  }
  .nav__cta:hover { background: var(--accent-strong); transform: translateY(-1px); }

  /* —— Buttons —— */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn--primary { background: var(--accent); color: #121212; }
  .btn--primary:hover { background: var(--accent-strong); }
  .btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
  }
  .btn--ghost:hover { border-color: rgba(127,127,127,.28); background: rgba(127,127,127,.06); }

  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.08;
  }
  .lead {
    margin: 0;
    font-size: clamp(17px, 1.7vw, 20px);
    color: var(--muted);
    max-width: 38ch;
    line-height: 1.55;
  }

  /* —— Phone mock —— */
  .phone {
    position: relative;
    width: var(--phone-w);
    aspect-ratio: 1080 / 2069;
    border-radius: 36px;
    padding: 10px;
    background: var(--phone-shell);
    border: 1px solid var(--phone-border);
    box-shadow: var(--phone-shadow);
    overflow: hidden;
  }
  .phone::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 8px;
    border-radius: 999px;
    background: var(--phone-notch);
    z-index: 2;
  }
  .phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    background: var(--bg-soft);
  }
  .phone--sm { --phone-w: 220px; border-radius: 30px; }
  .phone--sm img { border-radius: 22px; }
  .phone--lg { --phone-w: 300px; }

  /* —— Reveal —— */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }

  /* —— Hero —— */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 110px 0 72px;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 78% 42%, var(--hero-glow), transparent 60%),
      radial-gradient(ellipse 50% 40% at 12% 80%, var(--hero-glow-2), transparent 55%),
      linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 70%);
  }
  .hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    opacity: .5;
    pointer-events: none;
  }
  .hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
  }
  .hero__copy { max-width: 560px; }
  .hero__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero__brand img { width: 64px; height: 64px; }
  .hero__brand .brand { font-size: clamp(48px, 6.2vw, 72px); line-height: 1; }
  /* слоган-якорь бренда — под бренд-строкой, над H1 (полир аудита Маркетолога) */
  .hero__slogan {
    margin: -14px 0 20px;
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--accent);
  }
  .hero h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
  }
  .hero__sub {
    margin: 0 0 32px;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--muted);
    max-width: 34ch;
    line-height: 1.45;
  }
  .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero__stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
  }
  .hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,30,.28), transparent 68%);
    filter: blur(8px);
    animation: pulse-glow 5.5s ease-in-out infinite;
  }
  .hero__phone {
    position: relative;
    animation: float-y 6s ease-in-out infinite;
  }
  .hero__orbit {
    position: absolute;
    width: 210px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--orbit-border);
    opacity: .55;
    filter: blur(.2px);
    transform: rotate(-8deg) translate(-58%, 18%);
    box-shadow: var(--phone-shadow);
  }
  .hero__orbit img {
    width: 100%;
    aspect-ratio: 1080/1400;
    object-fit: cover;
    object-position: top;
  }

  @keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  @keyframes pulse-glow {
    0%, 100% { opacity: .7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
  }

  /* —— Sections —— */
  section { padding: 100px 0; position: relative; }
  .section-head { margin-bottom: 48px; max-width: 640px; }

  /* Problem */
  .problem {
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,80,60,.06), transparent 55%),
      var(--bg);
  }
  .pain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .pain__item {
    background: var(--bg-elev);
    padding: 32px 28px;
  }
  .pain__n {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 14px;
  }
  .pain__item h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .pain__item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
  }

  /* Split feature */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
  }
  .split--flip .split__visual { order: -1; }
  .split__visual {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: flex-end;
  }
  .split__stack {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  /* Steps */
  .steps {
    background:
      linear-gradient(180deg, transparent, rgba(255,138,30,.04), transparent);
  }
  .steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .step {
    text-align: center;
  }
  .step__n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 18px;
  }
  .step .phone { margin: 0 auto 22px; }
  .step h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .step p {
    margin: 0 auto;
    max-width: 28ch;
    color: var(--muted);
    font-size: 15px;
  }

  /* Dual phones */
  .duo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
  }
  .duo .phone:nth-child(1) { transform: translateY(24px); }

  /* Trust strip */
  .trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .trust-points li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .trust-points {
    padding: 0;
  }
  .trust-points strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .trust-points span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
  }

  /* FAQ teaser */
  .faq-teaser {
    background:
      radial-gradient(ellipse 50% 50% at 20% 0%, rgba(255,138,30,.06), transparent 55%),
      var(--bg);
  }
  .faq-teaser__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
  }
  .faq-teaser__item {
    background: var(--bg-elev);
    padding: 24px 26px;
  }
  .faq-teaser__item strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.015em;
    margin-bottom: 8px;
  }
  .faq-teaser__item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
  }
  .faq-teaser__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
    transition: gap .2s var(--ease), color .2s;
  }
  .faq-teaser__more:hover {
    color: var(--accent-strong);
    gap: 12px;
  }

  /* Free / telegram */
  .where {
    background:
      radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,138,30,.1), transparent 60%),
      var(--bg);
  }
  .where__row {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
  }
  .where__note {
    margin-top: 20px;
    padding: 14px 16px;
    border-left: 3px solid var(--accent);
    color: var(--muted);
    font-size: 15px;
    background: rgba(255,138,30,.05);
  }

  /* CTA */
  .cta {
    padding-bottom: 120px;
  }
  .cta__panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 40px;
    align-items: center;
    padding: clamp(36px, 5vw, 56px);
    border-radius: 28px;
    border: 1px solid var(--cta-border);
    background:
      radial-gradient(ellipse 80% 80% at 0% 50%, var(--accent-soft), transparent 55%),
      var(--cta-bg);
    overflow: hidden;
  }
  .cta__panel h2 { margin-bottom: 12px; }
  .cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .cta__meta {
    margin-top: 16px;
    font-size: 14px;
    color: var(--faint);
  }
  .cta__meta a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
  .cta__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta__qr img {
    width: 168px;
    height: 168px;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
  }
  .cta__qr span {
    font-size: 13px;
    color: var(--faint);
    text-align: center;
  }

  footer {
    padding: 28px 0 48px;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-size: 14px;
  }
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
  }
  footer a:hover { color: var(--muted); }

  /* —— Responsive —— */
  @media (max-width: 960px) {
    .hero__grid,
    .split,
    .split--flip .split__visual,
    .where__row,
    .cta__panel,
    .steps__grid,
    .pain,
    .trust-points,
    .faq-teaser__list {
      grid-template-columns: 1fr;
    }
    .split--flip .split__visual { order: 0; }
    .hero {
      min-height: auto;
      padding-top: 100px;
      padding-bottom: 56px;
    }
    .hero__stage { min-height: 420px; margin-top: 12px; }
    .hero__orbit { display: none; }
    .duo { flex-wrap: wrap; }
    .duo .phone:nth-child(1) { transform: none; }
    .phone--lg { --phone-w: 260px; }
    section { padding: 72px 0; }
    .cta__panel { justify-items: start; }
    .cta__qr { justify-self: start; }
  }

  @media (max-width: 720px) {
    .nav__links { display: none; }
  }

  @media (max-width: 560px) {
    .wrap { width: min(100% - 28px, var(--max)); }
    .hero__actions .btn,
    .cta__actions .btn { width: 100%; }
    .phone--lg, .phone { --phone-w: 240px; }
    .phone--sm { --phone-w: 200px; }
    .split__stack { flex-direction: column; }
    .pain__item { padding: 24px 20px; }
    .icon-field__item:nth-child(n + 12) { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__phone, .hero__glow { animation: none; }
    .icon-field__item { animation: none; }
  }

  main, footer { position: relative; z-index: 1; }

/* —— Page hero —— */
  .page-hero {
    position: relative;
    padding: 128px 0 56px;
    overflow: hidden;
  }
  .page-hero__bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 78% 42%, var(--hero-glow), transparent 60%),
      radial-gradient(ellipse 50% 40% at 12% 80%, var(--hero-glow-2), transparent 55%),
      linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 70%);
  }
  .page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    opacity: .5;
    pointer-events: none;
  }
  .page-hero__inner {
    position: relative;
    max-width: 720px;
  }
  .page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
  }
  .page-hero__sub {
    margin: 0 0 28px;
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--muted);
    max-width: 40ch;
    line-height: 1.5;
  }
  .page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

/* —— Quick answers —— */
  .quick {
    padding: 0 0 40px;
    position: relative;
  }
  .quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .quick__item {
    background: var(--bg-elev);
    padding: 24px 22px;
  }
  .quick__item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 10px;
  }
  .quick__item span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.4;
  }

/* —— FAQ accordion —— */
  .faq {
    padding: 48px 0 80px;
    position: relative;
  }
  .faq__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
  }
  .faq__nav {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .faq__nav a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color .2s, background .2s;
  }
  .faq__nav a:hover,
  .faq__nav a.is-active {
    color: var(--text);
    background: rgba(127,127,127,.08);
  }
  .faq__groups { display: flex; flex-direction: column; gap: 40px; }
  .faq__group-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .faq__list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .faq__item {
    background: var(--bg-elev);
  }
  .faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.35;
    transition: background .2s;
  }
  .faq__item summary::-webkit-details-marker { display: none; }
  .faq__item summary:hover { background: rgba(127,127,127,.04); }
  .faq__item summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }
  .faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease);
  }
  .faq__icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
  }
  .faq__item[open] .faq__icon { transform: rotate(45deg); }
  .faq__answer {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 62ch;
  }
  .faq__answer p { margin: 0; }
  .faq__answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .faq__answer a:hover { color: var(--accent-strong); }

  @media (max-width: 960px) {
    .faq__layout { grid-template-columns: 1fr; }
    .faq__nav {
      position: static;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 8px;
    }
    .quick__grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .quick__grid { grid-template-columns: 1fr; }
    .page-hero__actions .btn { width: 100%; }
  }


  /* —— Production extras —— */
  .skip-link {
    position: absolute;
    left: 16px;
    top: -64px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: #121212;
    font-weight: 700;
    font-size: 14px;
    transition: top .2s var(--ease);
  }
  .skip-link:focus { top: 16px; outline: none; }

  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }

