@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

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

    :root {
      --red: #ff4a3d;
      --red-dark: #d63a2a;
      --red-light: #ff9a8f;
      --dark: #0f0f0f;
      --dark2: #1a1a1a;
      --light-bg: #f7f6f4;
      --text: #111111;
      --text-sec: #4a4a4a;
      --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
      --font-body: 'Manrope', 'Segoe UI', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: #fff;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      letter-spacing: -0.01em;
    }

    /* ── FADE IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(14px);
      animation: fade-in-up 0.6s ease-out forwards;
    }

    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fade-in {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 72px;
      background: #ffffff;
      border-bottom: 1px solid #ebebeb;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 1000;
    }
    .nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
    .nav-logo svg { display: block; flex-shrink: 0; }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: #FF4931;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: #555555;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--red); }
    .btn-nav {
      background: var(--red);
      color: #fff !important;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 600 !important;
      font-size: 14px !important;
      transition: background 0.2s !important;
    }
    .btn-nav:hover { background: var(--red-dark) !important; }

    .hamburger {
      display: none;
      background: none;
      border: 0;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #1c1c1c;
      border-radius: 2px;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: #ffffff;
        border-bottom: 1px solid #ebebeb;
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
        align-items: flex-start;
      }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: #f7f6f4;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      bottom: -120px;
      width: 56%;
      background: #ff4931;
      border-radius: 40px 0 0 40px;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
      box-shadow: 0 40px 120px rgba(255,73,49,0.35);
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: -10% -10% -10% -10%;
      background-image: url("data:image/svg+xml;utf8,<svg width='640' height='360' viewBox='0 0 640 360' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='24' y='24' width='220' height='140' rx='12' stroke='%23ffffff' stroke-width='1'/><path d='M290 24 L370 188 L450 24 Z' stroke='%23ffffff' stroke-width='1'/><circle cx='340' cy='220' r='96' stroke='%23ffffff' stroke-width='1'/><rect x='410' y='170' width='200' height='160' rx='12' stroke='%23ffffff' stroke-width='1'/><path d='M480 40 L610 170 L480 300' stroke='%23ffffff' stroke-width='1'/></svg>");
      background-size: 520px 300px;
      background-repeat: repeat;
      background-position: 0 0;
      opacity: 0.28;
      mix-blend-mode: screen;
      animation: geo-drift 28s linear infinite;
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      max-width: 1140px;
      width: 100%;
      padding: 0 24px;
      text-align: left;
    }
    .hero-text { }
    .hero-image-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.12);
      aspect-ratio: 4/3;
    }
    .hero-image-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 768px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-image-card {
        display: block;
        width: 100%;
        max-width: 520px;
        margin: 28px auto 0;
        box-shadow: 0 18px 44px rgba(0,0,0,0.14);
      }
      .hero {
        min-height: auto;
        padding: 72px 0 56px;
      }
      .hero {
        background:
          radial-gradient(220px 220px at 18% 12%, rgba(255,73,49,0.16), transparent 60%),
          radial-gradient(260px 260px at 90% 26%, rgba(255,73,49,0.14), transparent 62%),
          radial-gradient(260px 260px at 30% 88%, rgba(17,17,17,0.06), transparent 65%),
          #f7f6f4;
      }
      .hero::before { display: none; }
      .hero::after {
        display: block;
        inset: -8%;
        background-image: url("data:image/svg+xml;utf8,<svg width='560' height='320' viewBox='0 0 560 320' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='16' y='16' width='200' height='120' rx='10' stroke='%23ffb7ad' stroke-width='1'/><path d='M250 20 L320 160 L390 20 Z' stroke='%23ffb7ad' stroke-width='1'/><circle cx='300' cy='210' r='84' stroke='%23ffb7ad' stroke-width='1'/><rect x='360' y='150' width='180' height='140' rx='10' stroke='%23ffb7ad' stroke-width='1'/><path d='M420 30 L540 150 L420 270' stroke='%23ffb7ad' stroke-width='1'/></svg>");
        background-size: 360px 220px;
        background-repeat: repeat;
        opacity: 0.22;
        mix-blend-mode: multiply;
      }
      .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
      }
      .hero-btns a {
        width: min(320px, 100%);
        text-align: center;
      }
      .hero-stats {
        margin-top: 24px;
        padding-top: 18px;
        gap: 18px 24px;
      }
      .hero-label {
        justify-content: center;
        font-size: 10px;
        letter-spacing: 1.2px;
      }
    }

    @keyframes geo-drift {
      0% { background-position: 0 0; }
      50% { background-position: -120px 80px; }
      100% { background-position: 0 0; }
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,73,49,0.85);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: 0;
      margin-bottom: 22px;
    }
    .hero-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: rgba(255,73,49,0.4);
    }
    .hero-label::after {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: 1px solid rgba(255,73,49,0.55);
      display: inline-block;
    }
    .hero-content h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 700;
      color: #1c1c1c;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-content h1 span { color: var(--red); }
    .hero-content p {
      font-size: 18px;
      font-weight: 300;
      color: #555555;
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 48px; }
    .btn-primary {
      font-family: var(--font-display);
      background: var(--red);
      color: #fff;
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 15px;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: var(--red-dark); }
    .btn-ghost {
      font-family: var(--font-display);
      background: transparent;
      border: 2px solid rgba(0,0,0,0.2);
      color: #1c1c1c;
      text-decoration: none;
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      transition: border-color 0.2s;
    }
    .btn-ghost:hover { border-color: #1c1c1c; }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 40px;
      border-top: 1px solid #e0ddd8;
      margin-top: 36px;
      padding-top: 28px;
    }
    .hero-stat { }
    .hero-stat .num {
      font-size: 26px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 12px;
      color: #888888;
      margin-top: 5px;
      font-weight: 400;
      line-height: 1.4;
    }

    /* ── PROBLEMA ── */
    .problema {
      background: var(--light-bg);
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .red-label {
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }
    .section-h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
    .problema blockquote {
      border-left: 4px solid var(--red);
      padding: 14px 20px;
      background: rgba(255,73,49,0.06);
      border-radius: 0 8px 8px 0;
      font-style: italic;
      color: var(--text-sec);
      font-size: 15px;
      margin: 24px 0;
      line-height: 1.6;
    }
    .problema p { color: var(--text-sec); line-height: 1.7; font-size: 15px; }
    .problema .pain-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
    .problema .pain-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-sec);
    }
    .problema .pain-list li::before {
      content: "✕";
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    /* ── DE CE ACUM ── */
    .de-ce-acum {
      background: #fff;
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .urgenta-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .urgenta-card {
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 28px 24px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    }
    .urgenta-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text);
    }
    .urgenta-card p {
      font-size: 14px;
      color: var(--text-sec);
      line-height: 1.6;
    }
    .urgenta-band {
      margin-top: 24px;
      background: rgba(255,73,49,0.1);
      border: 1px solid rgba(255,73,49,0.2);
      color: var(--red);
      font-weight: 700;
      font-size: 14px;
      text-align: center;
      padding: 14px 18px;
      border-radius: 10px;
    }
    .urgenta-cta {
      margin-top: 20px;
      display: flex;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .two-col { grid-template-columns: 1fr; gap: 36px; }
      .problema, .avantaje, .de-ce, .cum, .sprint-focus, .bonus-website, .customizat, .trainer, .faq, .cta-section, .de-ce-acum { padding: 56px 0; }
      .testimonial-strip { padding: 44px 0; }
      .section-title-center { margin-bottom: 36px; }
      .steps-grid, .features-grid, .custom-grid, .ba-grid, .urgenta-grid { gap: 20px; }
      .step-card, .feature-card, .custom-card { padding: 24px 20px; }
      .urgenta-card { padding: 24px 20px; }
      .contact-form-wrap { padding: 28px 22px; }
    }

    @media (max-width: 1024px) {
      .urgenta-grid { grid-template-columns: 1fr; }
    }

    /* ── CUM FUNCTIONEAZA ── */
    .cum {
      background: #f7f6f4;
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .section-title-center { text-align: center; margin-bottom: 56px; }
    .section-title-center .red-label { justify-content: center; display: flex; }
    .section-title-center h2 { color: var(--text); margin-bottom: 12px; }
    .section-title-center p { color: var(--text-sec); font-size: 16px; font-weight: 300; max-width: 560px; margin: 0 auto; }

    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .step-card {
      background: #ffffff;
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 32px 28px;
      transition: border-color 0.3s;
      display: flex;
      flex-direction: column;
    }
    .step-card:hover { border-color: var(--red); }
    .step-num {
      font-size: 48px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
      margin-bottom: 20px;
    }
    .step-card h3 {
      color: var(--text);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
      white-space: normal;
      text-wrap: balance;
    }
    .step-card p { color: var(--text-sec); font-size: 14px; line-height: 1.6; flex: 1; }
    .step-result {
      margin-top: 16px;
      padding: 10px 14px;
      background: rgba(255,73,49,0.1);
      border-radius: 6px;
      font-size: 13px;
      color: var(--red-light);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .steps-grid { grid-template-columns: 1fr; }
    }

    /* ── AI DESIGN SPRINT ── */
    .sprint-focus {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(320px 320px at 12% 18%, rgba(255,73,49,0.08), transparent 65%),
        radial-gradient(420px 420px at 90% 14%, rgba(255,154,143,0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8f5f1 100%);
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .sprint-focus .section-title-center h2,
    .sprint-focus .section-title-center p { color: var(--text); }
    .sprint-focus .section-title-center p { color: var(--text-sec); max-width: 720px; }

    .sprint-top-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .sprint-overview-card,
    .sprint-formula-card {
      background: #ffffff;
      border: 1px solid #ece6df;
      border-radius: 18px;
      box-shadow: 0 18px 44px rgba(17,24,39,0.06);
    }
    .sprint-overview-card,
    .sprint-formula-card {
      padding: 28px 28px 30px;
    }
    .sprint-mini-label {
      display: inline-block;
      color: var(--red);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .sprint-overview-card p,
    .sprint-formula-card p {
      color: var(--text-sec);
      font-size: 15px;
      line-height: 1.7;
    }
    .sprint-principle {
      font-family: var(--font-display);
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 18px;
      max-width: 14ch;
    }
    .sprint-overview-notes {
      display: grid;
      gap: 14px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid #ebe3dc;
    }
    .sprint-overview-note {
      padding-bottom: 14px;
      border-bottom: 1px solid #f1ebe4;
    }
    .sprint-overview-note:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
    .sprint-overview-note strong {
      display: block;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 3px;
    }
    .sprint-overview-note p {
      margin: 0;
      color: var(--text-sec);
      font-size: 14px;
      line-height: 1.6;
    }
    .sprint-formula {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.2vw, 38px);
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 18px;
      max-width: 14ch;
    }
    .sprint-factor-grid {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }
    .sprint-factor {
      padding: 14px 16px;
      border-radius: 14px;
      background: #f7f3ef;
      border: 1px solid #ebe3dc;
    }
    .sprint-factor strong {
      display: block;
      color: var(--text);
      font-size: 14px;
      margin-bottom: 4px;
    }
    .sprint-factor span {
      color: var(--text-sec);
      font-size: 13px;
      line-height: 1.55;
    }
    .sprint-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 24px;
    }
    .sprint-gallery-card {
      margin: 0;
      background: #ffffff;
      border: 1px solid #ece6df;
      border-radius: 18px;
      box-shadow: 0 18px 44px rgba(17,24,39,0.06);
      overflow: hidden;
    }
    .sprint-gallery-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .sprint-gallery-card {
      height: 156px;
    }

    @media (max-width: 1024px) {
      .sprint-top-grid,
      .sprint-gallery {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .sprint-overview-card,
      .sprint-formula-card {
        padding: 24px 20px;
      }
      .sprint-gallery-card {
        height: 132px;
      }
      .sprint-principle,
      .sprint-formula {
        max-width: none;
      }
    }

    /* ── BONUS WEBSITE ── */
    .bonus-website {
      background: #fff;
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .bonus-website-inner {
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 36px;
      align-items: center;
    }
    .bonus-website-copy p {
      color: var(--text-sec);
      font-size: 16px;
      line-height: 1.7;
      max-width: 58ch;
    }
    .bonus-website-steps {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }
    .bonus-website-step {
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid #ebe3dc;
      background: #f8f5f1;
    }
    .bonus-website-step strong {
      display: block;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 4px;
    }
    .bonus-website-step span {
      color: var(--text-sec);
      font-size: 14px;
      line-height: 1.6;
    }
    .bonus-website-preview {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid #ece6df;
      box-shadow: 0 24px 64px rgba(17,24,39,0.08);
      background: #fff;
    }
    .bonus-website-preview img {
      display: block;
      width: 100%;
      height: auto;
    }

    @media (max-width: 1024px) {
      .bonus-website-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ── CUSTOMIZAT ── */
    .customizat {
      background: #fff;
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .custom-card {
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 28px 24px;
      transition: border-color 0.3s;
    }
    .custom-card:hover { border-color: var(--red); }
    .custom-icon {
      width: 44px; height: 44px;
      background: rgba(255,73,49,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .custom-icon svg { width: 22px; height: 22px; }
    .custom-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .custom-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

    @media (max-width: 768px) { .custom-grid { grid-template-columns: 1fr; } }
    @media (min-width: 769px) and (max-width: 1024px) { .custom-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ── AVANTAJE ── */
    .avantaje {
      background: #fff;
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .avantaje .section-title-center h2 { color: var(--text); }
    .avantaje .section-title-center p { color: var(--text-sec); }

    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .feature-card {
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 28px 24px;
      transition: box-shadow 0.3s;
    }
    .feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(255,73,49,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .feature-icon svg { width: 22px; height: 22px; }
    .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .feature-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

    @media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
    @media (min-width: 769px) and (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ── DE CE NE ALEG ── */
    .de-ce {
      background: var(--light-bg);
      padding: 96px 0;
      scroll-margin-top: 64px;
    }
    .de-ce .section-title-center h2 { color: var(--text); }
    .de-ce .section-title-center p { color: var(--text-sec); }

    .ba-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .ba-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ebebeb;
      background: #fff;
    }
    .ba-role {
      background: var(--red);
      color: #fff;
      padding: 14px 20px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .ba-role svg { flex-shrink: 0; }
    .ba-body { padding: 0; }
    .ba-col {
      padding: 20px;
    }
    .ba-col + .ba-col {
      border-top: 1px solid #f0ede9;
    }
    .ba-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .ba-tag.before { color: #aaa; }
    .ba-tag.after  { color: var(--red); }
    .ba-tag::before {
      content: '';
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
    }
    .ba-tag.before::before { background: #ccc; }
    .ba-tag.after::before  { background: var(--red); }
    .ba-text {
      font-size: 14px;
      line-height: 1.55;
      color: var(--text-sec);
    }
    .ba-col.after-col { background: rgba(255,73,49,0.03); }
    .ba-text.after-text { color: var(--text); font-weight: 600; }

    @media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }
    @media (min-width: 769px) and (max-width: 1024px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ── TESTIMONIAL ── */
    .testimonial-strip {
      background: var(--red);
      padding: 56px 0;
    }
    .testimonial-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      padding: 0 24px;
    }
    .testimonial-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .testimonial-kicker {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .testimonial-header h2 {
      font-size: clamp(22px, 3.6vw, 32px);
      color: #fff;
      margin: 0;
    }
    .testimonial-logo {
      height: 40px;
      width: auto;
      background: #fff;
      border-radius: 999px;
      padding: 8px 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .testimonial-inner blockquote {
      font-size: 20px;
      font-weight: 300;
      color: rgba(255,255,255,0.95);
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .testimonial-inner cite {
      color: var(--red-light);
      font-size: 14px;
      font-weight: 600;
      font-style: normal;
    }

    /* ── CTA + FORMULAR ── */
    .cta-section {
      background: var(--light-bg);
      padding: 80px 0;
      scroll-margin-top: 64px;
    }
    .cta-inner { text-align: center; }
    .cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--text); margin-bottom: 12px; }
    .cta-inner p { font-size: 18px; font-weight: 300; color: var(--text-sec); margin-bottom: 40px; }

    .contact-form-wrap {
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 40px 36px;
      max-width: 560px;
      margin: 0 auto;
    }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form input,
    .contact-form textarea {
      background: #f7f6f4;
      border: 1px solid #e0ddd8;
      color: var(--text);
      border-radius: 6px;
      padding: 12px 16px;
      width: 100%;
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: #aaa; }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--red); }
    .contact-form textarea { resize: vertical; }
    .contact-form select {
      background: #f7f6f4;
      border: 1px solid #e0ddd8;
      color: var(--text-sec);
      border-radius: 6px;
      padding: 12px 16px;
      width: 100%;
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      cursor: pointer;
    }
    .contact-form select option { background: #fff; color: var(--text); }
    .btn-submit {
      font-family: var(--font-display);
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: 6px;
      padding: 14px 32px;
      cursor: pointer;
      transition: opacity 0.2s;
      margin-top: 6px;
    }
    .btn-submit:hover { opacity: 0.92; }
    .form-success {
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      padding: 32px 0;
    }

    /* ── FOOTER ── */
    footer {
      background: #f7f6f4;
      border-top: 1px solid #ebebeb;
      padding: 40px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    footer p { color: #888888; font-size: 13px; }
    footer a { color: #888888; text-decoration: none; font-size: 13px; }
    footer a:hover { color: var(--red); }

    /* ── TRAINER ── */
    .trainer { background: #fff; padding: 96px 0; }
    .trainer-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 64px;
      align-items: start;
    }
    .trainer-photo {
      position: sticky;
      top: 84px;
    }
    .trainer-photo .photo-wrap {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 16px;
      overflow: hidden;
      background: #f0ede9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
      font-size: 13px;
      margin-bottom: 16px;
    }
    .trainer-photo .photo-wrap img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .trainer-media-logos {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .media-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--light-bg);
      border-radius: 8px;
      padding: 10px 14px;
      text-decoration: none;
      border: 1px solid #ebebeb;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .media-pill:hover {
      border-color: var(--red);
      box-shadow: 0 2px 12px rgba(255,73,49,0.08);
    }
    .media-pill-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }
    .media-pill-info { flex: 1; }
    .media-pill-pub {
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .media-pill-title {
      font-size: 12px;
      color: var(--text-sec);
      margin-top: 1px;
      line-height: 1.4;
    }
    .media-pill-arrow {
      color: var(--red);
      font-size: 0;
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .media-pill-arrow::before {
      content: '';
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-top: 2px solid currentColor;
      transform: rotate(45deg);
      display: block;
    }
    .trainer-bio { }
    .trainer-bio h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; margin-bottom: 6px; }
    .trainer-bio .trainer-role {
      color: var(--red);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .trainer-bio p {
      font-size: 15px;
      color: var(--text-sec);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .trainer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 28px 0 36px;
    }
    .trainer-tag {
      background: var(--light-bg);
      border: 1px solid #e0ddd8;
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 13px;
      color: var(--text-sec);
      font-weight: 600;
    }
    .trainer-quote {
      border-left: 4px solid var(--red);
      padding: 14px 20px;
      background: rgba(255,73,49,0.04);
      border-radius: 0 8px 8px 0;
      font-style: italic;
      font-size: 15px;
      color: var(--text);
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .trainer-inner { grid-template-columns: 1fr; gap: 28px; }
      .trainer-photo { position: static; }
      .trainer-media-logos { flex-direction: row; flex-wrap: wrap; }
      .media-pill { flex: 1; min-width: 140px; }
    }

    /* ── FAQ ── */
    .faq { background: #fff; padding: 80px 0; }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      border: 1px solid #ebebeb;
      border-radius: 10px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--red); }
    .faq-question .faq-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--light-bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      color: var(--red);
      transition: transform 0.3s;
      font-style: normal;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      font-size: 14px;
      color: var(--text-sec);
      line-height: 1.7;
      padding: 0 24px;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
    }

    /* ══════════════════════════════════════════════
       TVL DATA TRANSFER — additional components
       ══════════════════════════════════════════════ */

    /* ── LANGUAGE TOGGLE ── */
    .lang-toggle {
      display: inline-flex;
      align-items: center;
      border: 1px solid #e0ddd8;
      border-radius: 999px;
      overflow: hidden;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .lang-toggle a {
      padding: 5px 12px;
      color: #888 !important;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .lang-toggle a.active {
      background: var(--red);
      color: #fff !important;
    }

    /* ── STANDARDS BAND ── */
    .standards-band {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 36px;
    }
    .standards-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid #e0ddd8;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    .standards-chip::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    /* ── FLOW DIAGRAM (sources → transfer → target) ── */
    .flow-diagram {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: stretch;
      gap: 16px;
      margin-top: 8px;
    }
    .flow-node {
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    }
    .flow-node.is-core {
      background: var(--red);
      border-color: var(--red);
      box-shadow: 0 18px 44px rgba(255,73,49,0.28);
    }
    .flow-node .flow-kicker {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }
    .flow-node.is-core .flow-kicker { color: rgba(255,255,255,0.85); }
    .flow-node .flow-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
    }
    .flow-node.is-core .flow-title { color: #fff; }
    .flow-node .flow-sub {
      font-size: 12px;
      color: var(--text-sec);
      margin-top: 6px;
      line-height: 1.5;
    }
    .flow-node.is-core .flow-sub { color: rgba(255,255,255,0.9); }
    .flow-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 22px;
      font-weight: 700;
    }
    @media (max-width: 900px) {
      .flow-diagram { grid-template-columns: 1fr; }
      .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
    }

    /* ── MEDALLION (bronze / silver / gold) accents ── */
    .step-card.tier-bronze .step-num { color: #b87333; }
    .step-card.tier-silver .step-num { color: #8a8f98; }
    .step-card.tier-gold   .step-num { color: #c9a227; }
    .tier-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .tier-bronze .tier-badge { background: rgba(184,115,51,0.12); color: #b87333; }
    .tier-silver .tier-badge { background: rgba(138,143,152,0.14); color: #6b7078; }
    .tier-gold   .tier-badge { background: rgba(201,162,39,0.15); color: #a8871a; }

    /* ── CAPABILITY CHECKLIST ── */
    .capability-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px 32px;
    }
    .capability-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text);
      line-height: 1.5;
      padding: 14px 0;
      border-bottom: 1px solid #eee;
    }
    .capability-item .cap-check {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 6px;
      background: rgba(255,73,49,0.1);
      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      margin-top: 1px;
    }
    .capability-item strong { font-weight: 700; }
    .capability-item span { color: var(--text-sec); font-weight: 400; }
    @media (max-width: 768px) { .capability-grid { grid-template-columns: 1fr; } }

    /* ── BIG METRIC ── */
    .metric-hero {
      background: var(--dark);
      border-radius: 20px;
      padding: 48px 40px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: center;
    }
    .metric-hero .metric-num {
      font-family: var(--font-display);
      font-size: clamp(56px, 10vw, 104px);
      font-weight: 700;
      color: var(--red);
      line-height: 0.9;
    }
    .metric-hero .metric-unit {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      margin-top: 8px;
    }
    .metric-hero .metric-copy h3 {
      color: #fff;
      font-size: 22px;
      margin-bottom: 10px;
    }
    .metric-hero .metric-copy p {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
      line-height: 1.7;
    }
    @media (max-width: 768px) {
      .metric-hero { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; text-align: center; }
    }

    /* ── COMPARE GRID ── */
    .compare-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    .compare-card {
      border: 1px solid #ebebeb;
      border-radius: 16px;
      padding: 28px 24px;
      background: #fff;
      display: flex;
      flex-direction: column;
    }
    .compare-card.is-winner {
      border: 2px solid var(--red);
      box-shadow: 0 18px 44px rgba(255,73,49,0.14);
      position: relative;
    }
    .compare-card .compare-badge {
      position: absolute;
      top: -12px; left: 24px;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
    }
    .compare-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--text); }
    .compare-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }
    @media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr; } }

    /* ── TRACK RECORD ── */
    .record-band {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px 56px;
      margin-bottom: 48px;
      text-align: center;
    }
    .record-stat .num {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }
    .record-stat .lbl {
      font-size: 13px;
      color: var(--text-sec);
      margin-top: 8px;
      max-width: 180px;
    }

    /* ── HERO — architecture diagram variant (single column, featured GIF) ── */
    .hero {
      min-height: auto;
      padding: 108px 0 72px;
      background:
        radial-gradient(620px 320px at 14% 8%, rgba(255,73,49,0.09), transparent 60%),
        radial-gradient(520px 320px at 88% 12%, rgba(255,73,49,0.06), transparent 62%),
        #f7f6f4;
    }
    .hero::before, .hero::after { display: none !important; }
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      max-width: 1080px;
      gap: 0;
    }
    .hero-content h1 { margin-left: auto; margin-right: auto; max-width: 15ch; }
    .hero-btns { justify-content: center; margin-bottom: 0; }
    .hero-architecture {
      margin: 44px auto 4px;
      max-width: 1000px;
      width: 100%;
      background: #fff;
      border: 1px solid #ece6df;
      border-radius: 18px;
      box-shadow: 0 24px 64px rgba(17,24,39,0.08);
      overflow: hidden;
      padding: 12px;
    }
    .hero-architecture img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .hero-stats {
      grid-template-columns: repeat(4, 1fr);
      max-width: 940px;
      margin: 40px auto 0;
      text-align: center;
      border-top: 1px solid #e0ddd8;
      padding-top: 28px;
    }
    .hero-stat .lbl { max-width: 200px; margin-left: auto; margin-right: auto; }

    @media (max-width: 768px) {
      .hero { padding: 92px 0 48px; }
      .hero-architecture { margin-top: 26px; padding: 8px; border-radius: 14px; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; padding-top: 22px; }
      .hero-btns { flex-direction: column; align-items: center; }
    }

    /* ══════════════════════════════════════════════
       ACCESSIBILITY
       ══════════════════════════════════════════════ */

    /* Skip-to-content link (visible only on keyboard focus) */
    .skip-link {
      position: absolute;
      left: 12px;
      top: -60px;
      background: var(--red-dark);
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      z-index: 3000;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 12px; }

    /* Visible keyboard focus indicator */
    a:focus-visible,
    button:focus-visible,
    .faq-question:focus-visible,
    [tabindex]:focus-visible {
      outline: 3px solid var(--red-dark);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* ── Contrast fixes (meet WCAG AA 4.5:1 for text) ── */
    /* Muted greys were #888 / #aaa (~3.5:1) → darken */
    .hero-stat .lbl { color: #5e5e5e; }
    footer p, footer a { color: #5e5e5e; }
    .ba-tag.before { color: #6b6b6b; }
    /* Small red labels: brand red #ff4a3d is only ~3.3:1 on white → use darker red */
    .red-label, .sprint-mini-label, .hero-label { color: var(--red-dark); }
    .hero-label::before { background: rgba(214,58,42,0.5); }
    .hero-label::after { border-color: rgba(214,58,42,0.6); }
    /* red-light text failed on light backgrounds */
    .step-result { color: #8f2718; }
    /* White-on-red text: darken interactive red backgrounds to #d63a2a (4.68:1) */
    .btn-primary, .btn-nav, .btn-submit { background: var(--red-dark); }
    .btn-primary:hover, .btn-nav:hover, .btn-submit:hover { background: #b5311f; }
    .compare-card .compare-badge { background: var(--red-dark); }
    /* On the solid-red testimonial strip, lift white text to full opacity */
    .testimonial-kicker { color: rgba(255,255,255,0.95); }
    .testimonial-inner cite { color: #ffffff; }

    /* Respect reduced-motion for the animated architecture GIF */
    @media (prefers-reduced-motion: reduce) {
      .hero-architecture img.motion { display: none; }
      .hero-architecture img.static { display: block; }
    }
    .hero-architecture img.static { display: none; }

    /* ══════════════════════════════════════════════
       STATE-OF-THE-ART PASS — photo, comparison table, a11y utils
       ══════════════════════════════════════════════ */

    /* Screen-reader-only utility */
    .vh {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0 0 0 0);
      white-space: nowrap; border: 0;
    }

    /* ── CHALLENGE PHOTO (moody, brand-tinted) ── */
    .challenge-photo {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(17,24,39,0.14);
    }
    .challenge-photo img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }
    .challenge-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(125deg, rgba(255,73,49,0.34) 0%, rgba(15,15,15,0.20) 100%);
      mix-blend-mode: multiply;
      pointer-events: none;
    }
    @media (max-width: 768px) { .challenge-photo img { height: 260px; } }

    /* ── SOVEREIGNTY COMPARISON TABLE ── */
    .sov-table-wrap {
      margin-top: 44px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border: 1px solid #ece6df;
      border-radius: 16px;
      box-shadow: 0 18px 44px rgba(17,24,39,0.06);
    }
    .sov-table {
      width: 100%;
      min-width: 660px;
      border-collapse: collapse;
      background: #fff;
      font-size: 14px;
    }
    .sov-table th, .sov-table td {
      padding: 15px 18px;
      text-align: left;
      border-bottom: 1px solid #f1ede8;
      vertical-align: middle;
    }
    .sov-table thead th {
      font-family: var(--font-display);
      font-size: 13px;
      letter-spacing: 0.2px;
      color: var(--text);
      background: #faf8f6;
    }
    .sov-table thead th.col-tvl { color: var(--red-dark); }
    .sov-table th.col-tvl, .sov-table td.col-tvl { background: rgba(255,73,49,0.06); }
    .sov-table tbody th[scope="row"] {
      font-weight: 600;
      color: var(--text);
    }
    .sov-table tbody tr:last-child th,
    .sov-table tbody tr:last-child td { border-bottom: 0; }
    .cap-yes, .cap-no, .cap-part {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 11px;
      border-radius: 999px;
      white-space: nowrap;
    }
    .cap-yes  { background: rgba(255,73,49,0.13); color: var(--red-dark); }
    .cap-part { background: #f1efe9; color: #736a5e; }
    .cap-no   { background: #f2f2f2; color: #7c7c7c; }

    /* ── A11y: darken the solid-red testimonial strip so white text passes AA ── */
    .testimonial-strip { background: var(--red-dark); }
