  :root {
    --bg: #0a0a0f;
    --bg-panel: #13131a;
    --bg-panel-2: #1a1a22;
    --ink: #f5efe1;
    --ink-dim: #b9ae95;
    --muted: #83795f;
    --accent: #cfa03c;
    --accent-ink: #0a0805;
    --pop: #e6c264;
    --line: rgba(245, 239, 225, 0.1);
    --line-strong: rgba(245, 239, 225, 0.2);
    --glow: rgba(207, 160, 60, 0.17);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(207, 160, 60, 0.25), 0 12px 40px rgba(207, 160, 60, 0.12);
  }

  :root[data-theme="light"] {
    --bg: #f7f2e4;
    --bg-panel: #ffffff;
    --bg-panel-2: #efe7d3;
    --ink: #1a1610;
    --ink-dim: #524a3b;
    --muted: #766c58;
    --accent: #a07d16;
    --accent-ink: #fffaf0;
    --pop: #8a6b16;
    --line: rgba(26, 22, 16, 0.1);
    --line-strong: rgba(26, 22, 16, 0.18);
    --shadow: 0 20px 60px rgba(26, 22, 16, 0.12);
    --shadow-glow: 0 20px 60px rgba(26, 22, 16, 0.12), 0 0 0 1px rgba(160, 125, 22, 0.25), 0 10px 30px rgba(160, 125, 22, 0.14);
  }


  * { box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }

  body { line-height: 1.5; position: relative; }

  /* ---------- SCROLL PROGRESS ---------- */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--pop));
    z-index: 40;
    transition: width 0.1s linear;
  }

  /* ---------- AMBIENT BACKGROUND ---------- */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .ambient span {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0.9;
  }
  .ambient span:nth-child(1) { width: 620px; height: 620px; top: -180px; left: -120px; animation: drift-a 26s ease-in-out infinite; }
  .ambient span:nth-child(2) { width: 520px; height: 520px; top: 40%; right: -180px; animation: drift-b 32s ease-in-out infinite; }
  .ambient span:nth-child(3) { width: 460px; height: 460px; bottom: -200px; left: 30%; animation: drift-c 30s ease-in-out infinite; }
  @keyframes drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 80px) scale(1.12); }
  }
  @keyframes drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, 50px) scale(1.08); }
  }
  @keyframes drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.15); }
  }
  .grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  nav, header, main, section, footer { position: relative; z-index: 2; }

  :root[data-theme="light"] .grain { opacity: 0.03; }
  @media (prefers-reduced-motion: reduce) {
    .ambient span { animation: none !important; }
  }

  a { color: inherit; }

  .display {
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-wrap: balance;
    line-height: 0.94;
  }

  .label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- NAV ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 16px;
  }
  .logo {
    font-weight: 900;
    letter-spacing: -0.01em;
    font-size: 1.05rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo img { width: 34px; height: 34px; display: block; flex-shrink: 0; }
  .logo .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
  .logo .wordmark small {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-dim);
    padding-bottom: 3px;
    transition: color 0.15s ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
  .nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
  .nav-cta {
    background: var(--accent);
    color: var(--accent-ink);
    border: none;
    border-radius: 999px;
    padding: 10px 20px 10px 16px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 45%, transparent); }
  .nav-cta:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--pop);
    outline-offset: 2px;
  }
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--line-strong);
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-burger span { display: block; height: 2px; width: 16px; margin: 0 auto; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 16px 32px;
    text-decoration: none;
    color: var(--ink-dim);
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--accent); }
  @media (max-width: 780px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
  }
  @media (min-width: 781px) {
    .mobile-menu { display: none !important; }
  }
  @media (max-width: 460px) {
    .nav-cta { padding: 10px; border-radius: 50%; }
    .nav-cta .cta-label { display: none; }
  }

  /* ---------- TICKER ---------- */
  .ticker {
    border-bottom: 1px solid var(--line);
    background: var(--bg-panel);
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  .ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ticker-scroll 30s linear infinite;
    will-change: transform;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-dim);
  }
  .ticker-item .dot { color: var(--accent); font-size: 1rem; }
  .ticker-item .sep { padding: 0 22px; }
  @keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    padding: 88px 0 96px;
    background:
      repeating-linear-gradient(
        115deg,
        transparent 0px,
        transparent 64px,
        var(--line) 64px,
        var(--line) 65px
      );
    background-size: 220px 220px;
    animation: stripe-drift 34s linear infinite;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  @keyframes stripe-drift {
    from { background-position: 0 0; }
    to { background-position: 220px 220px; }
  }
  #heroMotes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .hero-shine-logo {
    position: absolute;
    top: 18px;
    right: 32px;
    width: 238px;
    height: 238px;
    z-index: 2;
    filter: drop-shadow(0 0 34px var(--glow));
    pointer-events: none;
  }
  @media (max-width: 960px) {
    .hero-shine-logo { width: 138px; height: 138px; top: 12px; right: 16px; opacity: 0.85; }
  }
  @media (max-width: 640px) {
    .hero-shine-logo { display: none; }
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 20%), var(--glow), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 56px;
    align-items: end;
    transition: transform 0.05s linear;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5.6vw, 4.7rem);
    margin: 18px 0 22px;
  }
  .hero h1 .accent-word { color: var(--accent); position: relative; display: inline-block; }
  .hero h1 .accent-word::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.06em;
    width: 100%;
    height: 0.09em;
    background: var(--pop);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-draw 0.5s ease-out forwards;
    animation-delay: 0.9s;
  }
  @keyframes underline-draw { to { transform: scaleX(1); } }
  .hero-sub {
    max-width: 48ch;
    color: var(--ink-dim);
    font-size: 1.06rem;
    margin: 0 0 32px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary, .btn-secondary {
    padding: 15px 28px;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 45%, transparent); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
  }
  .btn-secondary:hover { border-color: var(--ink-dim); }

  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-stats .stat {
    opacity: 0;
    transform: translateY(22px);
    animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-eyebrow { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero-sub { animation-delay: 0.32s; }
  .hero-actions { animation-delay: 0.46s; }
  .hero-stats .stat:nth-child(1) { animation-delay: 0.5s; }
  .hero-stats .stat:nth-child(2) { animation-delay: 0.62s; }
  .hero-stats .stat:nth-child(3) { animation-delay: 0.74s; }
  @keyframes rise-in { to { opacity: 1; transform: translateY(0); } }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--line-strong);
    padding-left: 32px;
  }
  .stat { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .stat-num {
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    color: var(--pop);
  }
  .stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--line-strong); padding-top: 24px; flex-direction: row; flex-wrap: wrap; gap: 24px; }
    .stat { border-bottom: none; padding: 0; flex: 1 1 140px; }
  }

  /* ---------- SECTION SHELL ---------- */
  section { padding: 88px 0; }
  section + section { border-top: 1px solid var(--line); }
  .section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
  .section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 10px 0 0; }
  .section-head p { max-width: 42ch; color: var(--ink-dim); margin: 0; }

  /* ---------- PROCESS ---------- */
  .process-list { display: flex; flex-direction: column; }
  .process-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
  }
  .process-item:last-child { border-bottom: 1px solid var(--line); }
  .process-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    transition: color 0.35s ease;
  }
  .process-item:hover .process-num { color: var(--accent); }
  .process-body h3 { margin: 0 0 8px; font-size: 1.2rem; letter-spacing: -0.01em; }
  .process-body p { margin: 0; color: var(--ink-dim); font-size: 0.96rem; max-width: 62ch; }
  @media (max-width: 640px) { .process-item { grid-template-columns: 1fr; gap: 8px; } }

  /* ---------- WHY GRID ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .why-card {
    background: var(--bg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); position: relative; z-index: 1; }
  .why-icon { width: 40px; height: 40px; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .why-card:hover .why-icon { transform: scale(1.12) rotate(-4deg); }
  .why-card h3 { margin: 0; font-size: 1.1rem; letter-spacing: -0.01em; }
  .why-card p { margin: 0; color: var(--ink-dim); font-size: 0.92rem; }
  @media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

  /* ---------- COACH ---------- */
  .coach-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .coach-photo-wrap {
    border: 1px solid var(--line);
    background: radial-gradient(circle at 50% 30%, var(--bg-panel-2), var(--bg) 75%);
    overflow: hidden;
    position: relative;
    padding: 40px;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 4 / 5;
    margin-bottom: 40px;
  }
  .coach-photo {
    position: absolute;
    inset: 40px;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
  }
  .coach-photo.active { opacity: 1; z-index: 2; }
  @media (max-width: 780px) {
    .coach-photo { inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); }
  }
  .coach-bio { display: flex; flex-direction: column; align-items: center; max-width: 720px; }
  .coach-slogan {
    font-weight: 900;
    letter-spacing: 0.01em;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.15;
    background: linear-gradient(100deg, var(--accent), var(--pop) 55%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px var(--glow);
    text-transform: uppercase;
    margin: 4px 0 24px;
  }
  .cert-marquee {
    overflow: hidden;
    margin-bottom: 30px;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .cert-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation: ticker-scroll 26s linear infinite;
  }
  .cert-track img { height: 128px; width: auto; display: block; flex-shrink: 0; opacity: 0.95; }
  .coach-bio h3 { font-size: 2rem; margin: 0 0 6px; letter-spacing: -0.01em; }
  .coach-bio .coach-role { color: var(--accent); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
  .coach-bio p { color: var(--ink-dim); font-size: 1rem; line-height: 1.65; max-width: 62ch; margin: 0 0 26px; }
  .coach-facts { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
  .coach-fact .num { font-size: 1.9rem; line-height: 1.9rem; font-weight: 900; color: var(--pop); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
  .coach-fact .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
  .cert-cycle-wrap { display: inline-grid; justify-items: center; }
  .cert-cycle {
    grid-area: 1 / 1;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .cert-cycle.active { opacity: 1; }
  @media (max-width: 780px) {
    .coach-photo-wrap { padding: 24px; }
    .cert-track img { height: 84px; }
    .cert-track { gap: 50px; }
  }

  /* ---------- FREE TOOLS ---------- */
  .tool-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
  .tool-tab {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink-dim);
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .tool-tab.active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  .tool-tab:not(.active):hover { border-color: var(--accent); color: var(--ink); }
  .tool-panel { display: none; }
  .tool-panel.active { display: block; }
  .tool-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 34px;
  }
  .tool-inputs { display: flex; flex-direction: column; gap: 16px; }
  .tool-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .tool-results { display: flex; flex-direction: column; justify-content: center; gap: 18px; border-left: 1px solid var(--line); padding-left: 40px; }
  .tool-result-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .tool-result-row:last-child { border-bottom: none; padding-bottom: 0; }
  .tool-result-row .trl { font-size: 0.85rem; color: var(--muted); }
  .tool-result-row .trv { font-size: 1.5rem; font-weight: 900; color: var(--pop); font-variant-numeric: tabular-nums; }
  .tool-result-row .tru { font-size: 0.78rem; color: var(--muted); margin-left: 4px; }
  .tool-note { font-size: 0.8rem; color: var(--muted); margin-top: 18px; line-height: 1.5; }
  @media (max-width: 780px) {
    .tool-body { grid-template-columns: 1fr; }
    .tool-results { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  }

  /* ---------- RESULTS / TESTIMONIALS ---------- */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
  }
  .result-card {
    border: 1px solid var(--line);
    background: var(--bg-panel);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--line-strong); }
  .result-card img { width: 100%; display: block; }
  .result-card .result-caption {
    padding: 18px 22px 22px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .result-card .result-caption h4 { margin: 0; font-size: 0.98rem; letter-spacing: -0.01em; }
  .result-card .result-caption span { font-size: 0.82rem; color: var(--pop); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
  @media (max-width: 780px) { .results-grid { grid-template-columns: 1fr; } }

  .marquee-wrap {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 46s linear infinite;
  }
  .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .quote-card {
    flex: 0 0 340px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-top: 2px solid var(--accent);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .quote-card .who { display: flex; align-items: center; gap: 12px; }
  .quote-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 20%, var(--bg-panel-2));
    border: 1px solid var(--line-strong);
    color: var(--pop);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .quote-card .who .name { font-weight: 800; font-size: 0.92rem; }
  .quote-card .who .role { font-size: 0.78rem; color: var(--muted); }
  .quote-card p { margin: 0; font-size: 0.9rem; color: var(--ink-dim); line-height: 1.55; }

  .video-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; justify-content: center; }
  .video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--line-strong);
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .video-link:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
  .play-dot { color: var(--accent); font-size: 0.7rem; }

  /* ---------- PRICING ---------- */
  .pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .plan {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  }
  .plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
  .plan.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    position: relative;
    transform: translateY(-10px);
  }
  .plan.featured:hover { transform: translateY(-16px); }
  .plan.featured .plan-desc,
  .plan.featured .plan-features li { color: color-mix(in srgb, var(--bg) 70%, var(--ink) 30%); }
  .plan-tag {
    position: absolute;
    top: -13px;
    right: 24px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
  }
  .plan-name { font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; }
  .plan-desc { color: var(--ink-dim); font-size: 0.88rem; margin: 0; }
  .plan-prices { display: flex; flex-direction: column; gap: 6px; }
  .plan-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
  .plan-price-row .term { font-size: 0.82rem; color: var(--muted); }
  .plan.featured .plan-price-row .term { color: color-mix(in srgb, var(--bg) 70%, var(--ink) 30%); }
  .plan-price-row .amount { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
  .plan-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .plan-features li { font-size: 0.9rem; color: var(--ink-dim); display: flex; gap: 10px; }
  .plan-features li::before { content: "+"; font-weight: 900; color: var(--accent); }
  .plan-btn {
    text-align: center;
    padding: 13px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid var(--line-strong);
    text-decoration: none;
    color: var(--ink);
    transition: background 0.15s ease, color 0.15s ease;
  }
  .plan.featured .plan-btn { border-color: var(--bg); color: var(--bg); }
  .plan-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  @media (max-width: 900px) {
    .pricing-row { grid-template-columns: 1fr; }
    .plan.featured { transform: none; }
  }

  /* ---------- CONTACT ---------- */
  .contact {
    background: var(--bg-panel);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .contact h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 10px 0 16px; }
  .contact p.lead { color: var(--ink-dim); max-width: 42ch; margin: 0 0 28px; }
  .contact-facts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .contact-facts .fact { display: flex; gap: 14px; font-size: 0.92rem; }
  .contact-facts .fact .k { color: var(--muted); min-width: 96px; }
  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    text-decoration: none;
    padding: 15px 26px;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 45%, transparent); }
  .whatsapp-btn svg { width: 18px; height: 18px; }

  form { display: flex; flex-direction: column; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .field input, .field select, .field textarea {
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--ink);
    padding: 13px 14px;
    font-size: 0.95rem;
    font-family: inherit;
  }
  .field textarea { resize: vertical; min-height: 90px; }
  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .submit-btn {
    background: var(--accent);
    color: var(--accent-ink);
    border: none;
    padding: 15px;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.15s ease;
  }
  .submit-btn:hover { transform: translateY(-2px); }
  .form-note { font-size: 0.78rem; color: var(--muted); margin: -6px 0 0; }
  @media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } .row-2 { grid-template-columns: 1fr; } }

  .lead-magnet-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 34px;
  }

  /* ---------- FOOTER ---------- */
  footer { padding: 40px 0; }
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-row .logo { font-size: 0.9rem; }
  footer .fine { font-size: 0.8rem; color: var(--muted); }

  /* ---------- CONSULTATION ---------- */
  .consult-intro { max-width: 68ch; color: var(--ink-dim); font-size: 1.02rem; line-height: 1.65; margin: 0 0 48px; }
  .consult-video-wrap {
    max-width: 360px;
    margin: 0 auto 48px;
    border: 1px solid var(--line);
    background: var(--bg-panel);
    padding: 10px;
  }
  .consult-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 480 / 698;
    background: var(--bg-panel-2);
    overflow: hidden;
  }
  .consult-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .consult-video-caption { padding: 14px 8px 4px; font-size: 0.85rem; color: var(--muted); text-align: center; }
  .consult-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 48px;
  }
  .consult-step { background: var(--bg); padding: 30px; display: flex; flex-direction: column; gap: 10px; }
  .consult-step .step-num { font-size: 1.4rem; font-weight: 900; color: var(--muted); font-variant-numeric: tabular-nums; transition: color 0.3s ease; }
  .consult-step:hover .step-num { color: var(--accent); }
  .consult-step h3 { margin: 0; font-size: 1.05rem; letter-spacing: -0.01em; }
  .consult-step p { margin: 0; color: var(--ink-dim); font-size: 0.9rem; }
  @media (max-width: 860px) { .consult-steps { grid-template-columns: 1fr; } }
  .consult-types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
  .consult-type-badge {
    border: 1px solid var(--line-strong);
    color: var(--ink-dim);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 18px;
    white-space: nowrap;
  }
  .consult-price-card {
    max-width: 460px;
    background: var(--bg-panel);
    border: 1px solid var(--line-strong);
    padding: 40px;
    text-align: center;
  }
  .consult-price-card .amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.02em; color: var(--pop); font-variant-numeric: tabular-nums; }
  .consult-price-card .amount-note { font-size: 0.85rem; color: var(--muted); margin: 4px 0 24px; }
  .consult-price-card p.desc { color: var(--ink-dim); font-size: 0.9rem; margin: 0 0 26px; }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 840px; }
  .faq-item { background: var(--bg); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.005em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .faq-item[open] .faq-chevron { transform: rotate(135deg); }
  .faq-item summary:hover { color: var(--pop); }
  .faq-answer { padding: 0 26px 24px; color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; max-width: 68ch; }
  @media (prefers-reduced-motion: no-preference) {
    .faq-item summary { transition: color 0.2s ease; }
  }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--d, 0) * 90ms);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-stats .stat, .accent-word::after { opacity: 1 !important; transform: none !important; }
  }
