@font-face{font-family:'Manrope';font-style:normal;font-weight:300;font-display:swap;src:url('fonts/manrope-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Manrope';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/manrope-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Manrope';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/manrope-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Manrope';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/manrope-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/manrope-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/space-grotesk-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/space-grotesk-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/space-grotesk-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/space-grotesk-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

    *, *::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,
    .hero-architecture video {
      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: show the static frame instead of the video */
    @media (prefers-reduced-motion: reduce) {
      .hero-architecture .motion { display: none; }
      .hero-architecture .static { display: block; }
    }
    .hero-architecture .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); }

    /* ═══════════════════════════════════════════════════════
       REDESIGN v2 — cinematic dark hero + modern depth
       Overrides earlier rules (appended last). Brand tokens kept.
       ═══════════════════════════════════════════════════════ */
    :root{
      --ink:#0f0c0b;
      --ink-2:#191210;
      --hero-fg:#f4efee;
    }

    /* ── NAV: transparent over the dark hero, frosts on scroll ── */
    nav{
      background:transparent;
      border-bottom:1px solid transparent;
      transition:background .32s ease, border-color .32s ease, backdrop-filter .32s ease, box-shadow .32s ease;
    }
    nav .nav-logo-text{ color:#fff; }
    nav .nav-links a{ color:rgba(255,255,255,0.82); }
    nav .nav-links a:hover{ color:#fff; }
    nav .btn-nav{ background:var(--red); color:#fff !important; box-shadow:0 6px 20px rgba(255,73,49,0.35); }
    nav .btn-nav:hover{ background:var(--red-dark); }
    nav .lang-toggle{ border-color:rgba(255,255,255,0.28); }
    nav .lang-toggle a{ color:rgba(255,255,255,0.7) !important; }
    nav .lang-toggle a.active{ background:var(--red); color:#fff !important; }
    .hamburger span{ background:#fff; }

    nav.scrolled{
      background:rgba(255,255,255,0.82);
      -webkit-backdrop-filter:saturate(160%) blur(14px);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom-color:#ececec;
      box-shadow:0 8px 30px rgba(15,12,11,0.06);
    }
    nav.scrolled .nav-logo-text{ color:var(--red); }
    nav.scrolled .nav-links a{ color:#555; }
    nav.scrolled .nav-links a:hover{ color:var(--red); }
    nav.scrolled .lang-toggle{ border-color:#e0ddd8; }
    nav.scrolled .lang-toggle a{ color:#888 !important; }
    nav.scrolled .lang-toggle a.active{ background:var(--red); color:#fff !important; }
    nav.scrolled .hamburger span{ background:#1c1c1c; }

    /* ── HERO: warm near-black ground with a coral glow ── */
    .hero{
      min-height:auto;
      padding:150px 0 96px;
      color:var(--hero-fg);
      background:
        radial-gradient(1050px 580px at 12% -14%, rgba(255,73,49,0.30), transparent 58%),
        radial-gradient(760px 520px at 106% 6%, rgba(255,138,96,0.15), transparent 55%),
        linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 64%);
    }
    .hero::before, .hero::after{ display:none !important; }
    .hero-content{ max-width:1160px; }
    .hero-pill{
      display:inline-flex; align-items:center; gap:9px;
      margin:0 auto 26px;
      padding:7px 15px 7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.14);
      -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
      font-family:var(--font-body); font-size:13px; font-weight:600;
      color:rgba(244,239,238,0.9); letter-spacing:.2px;
    }
    .hero-pill .dot{ width:7px; height:7px; border-radius:50%; background:#28d17c; box-shadow:0 0 0 4px rgba(40,209,124,0.18); }
    .hero-label{ color:#ff9a8f; }
    .hero-label::before{ background:rgba(255,154,143,0.5); }
    .hero-label::after{ border-color:rgba(255,154,143,0.6); }
    .hero-content h1{
      color:#fff;
      font-size:clamp(42px, 6.6vw, 78px);
      letter-spacing:-0.025em;
      line-height:1.04;
      max-width:16ch;
      text-wrap:balance;
    }
    .hero-content h1 span{
      background:linear-gradient(115deg,#ff7a5c 0%, #ff4a3d 60%);
      -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
    }
    .hero-content p{ color:rgba(244,239,238,0.70); font-size:19px; }
    .btn-ghost{ border:2px solid rgba(255,255,255,0.26); color:#fff; }
    .btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,0.04); }
    .hero-stats{ border-top-color:rgba(255,255,255,0.13); max-width:960px; }
    .hero-stat .num{ color:#ff9a8f; }
    .hero-stat .lbl{ color:rgba(244,239,238,0.5); }
    .hero-architecture{
      margin-top:52px;
      background:rgba(255,255,255,0.035);
      border:1px solid rgba(255,255,255,0.12);
      padding:10px;
      border-radius:18px;
      box-shadow:0 50px 120px rgba(0,0,0,0.55), 0 0 90px rgba(255,73,49,0.10);
      -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
    }

    /* Mobile: the open nav dropdown is a light panel — keep its links dark */
    @media (max-width: 768px){
      .nav-links{ background:#ffffff; box-shadow:0 20px 40px rgba(15,12,11,0.10); }
      .nav-links a{ color:#555; }
      .nav-links a:hover{ color:var(--red); }
      .nav-links .lang-toggle{ border-color:#e0ddd8; }
      .nav-links .lang-toggle a{ color:#888 !important; }
      .nav-links .lang-toggle a.active{ color:#fff !important; }
      .hero{ padding:120px 0 64px; }
      .hero-architecture{ margin-top:34px; }
    }

    /* ── CREDIBILITY STRIP (grounded names, under hero) ── */
    .cred-strip{
      background:#ffffff;
      border-bottom:1px solid #efece8;
      padding:26px 0;
    }
    .cred-strip .container{
      display:flex; align-items:center; justify-content:center;
      gap:18px 40px; flex-wrap:wrap;
    }
    .cred-label{
      font-family:var(--font-display);
      font-size:11px; font-weight:700; letter-spacing:1.8px; text-transform:uppercase;
      color:#a49c94;
    }
    .cred-item{
      font-family:var(--font-display);
      font-weight:700; font-size:15px; letter-spacing:.2px;
      color:#3a3632;
      display:inline-flex; align-items:center; gap:9px;
    }
    .cred-item::before{
      content:''; width:6px; height:6px; border-radius:50%;
      background:var(--red); opacity:.7; flex-shrink:0;
    }
    @media (max-width:768px){
      .cred-strip .container{ gap:12px 22px; }
      .cred-item{ font-size:13px; }
      .cred-label{ flex-basis:100%; text-align:center; margin-bottom:2px; }
    }

    /* ═══════════════════════════════════════════════════════
       REDESIGN v2 — body sections carried in the hero direction
       ═══════════════════════════════════════════════════════ */

    /* Eyebrows become pills (cohesive with the hero status pill) */
    .red-label{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 13px; border-radius:999px;
      background:rgba(255,73,49,0.09);
      color:var(--red-dark);
      font-size:11.5px; letter-spacing:1.4px;
      margin-bottom:18px;
    }
    .section-title-center .red-label{ display:inline-flex; }

    /* Section headings: a touch larger and tighter */
    .section-h2{ letter-spacing:-0.02em; text-wrap:balance; }

    /* Cards: layered depth + hover lift, warm borders */
    .step-card, .urgenta-card, .feature-card, .custom-card, .compare-card,
    .sprint-overview-card, .sprint-formula-card, .sprint-gallery-card{
      border-color:#ece7e1;
      box-shadow:0 1px 2px rgba(17,12,11,0.04);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .step-card:hover, .urgenta-card:hover, .feature-card:hover,
    .custom-card:hover, .compare-card:hover{
      transform:translateY(-4px);
      box-shadow:0 24px 50px rgba(17,12,11,0.10);
      border-color:#e3dcd4;
    }
    .compare-card.is-winner:hover{ box-shadow:0 26px 56px rgba(255,73,49,0.18); }

    /* Capabilities: turn the checklist into a bento-style card grid */
    .capability-grid{ gap:16px; }
    .capability-item{
      border:1px solid #ece7e1;
      border-radius:14px;
      background:#fff;
      padding:18px 20px;
      box-shadow:0 1px 2px rgba(17,12,11,0.04);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .capability-item:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 40px rgba(17,12,11,0.09);
      border-color:#e3dcd4;
    }

    /* Red CTAs: subtle gradient + depth */
    .btn-primary, .btn-submit{
      background:linear-gradient(180deg,#ff5a48 0%, #e23a2a 100%);
      box-shadow:0 10px 26px rgba(214,58,42,0.30);
    }
    .btn-primary:hover, .btn-submit:hover{
      background:linear-gradient(180deg,#f2493a 0%, #c9331f 100%);
    }

    /* Reliability metric band: warm-retint to match the hero */
    .metric-hero{
      background:
        radial-gradient(620px 320px at 12% -10%, rgba(255,73,49,0.20), transparent 60%),
        linear-gradient(180deg,#191210 0%, #0f0c0b 100%);
    }

    /* Final CTA: dark bookend that mirrors the hero */
    .cta-section{
      background:
        radial-gradient(820px 480px at 50% -25%, rgba(255,73,49,0.24), transparent 60%),
        linear-gradient(180deg,#191210 0%, #0f0c0b 100%);
    }
    .cta-inner h2{ color:#fff; }
    .cta-inner p{ color:rgba(244,239,238,0.70); }

    /* ═══════════════════════════════════════════════════════
       REDESIGN v3 — CORAL-FORWARD signature (overrides dark hero)
       Deep coral gradient so white text clears WCAG AA (>=4.5:1 at mid).
       ═══════════════════════════════════════════════════════ */
    .hero{
      color:#fff;
      background:
        radial-gradient(860px 520px at 16% -14%, rgba(255,255,255,0.16), transparent 56%),
        linear-gradient(165deg, #f24a36 0%, #d6301f 52%, #ad230f 100%);
    }
    .hero .hero-label{ display:none; }               /* pill carries the eyebrow; avoids low-contrast text high on coral */
    .hero-pill{
      background:rgba(255,255,255,0.94);
      border:1px solid rgba(255,255,255,0.6);
      color:#b5271a;
      -webkit-backdrop-filter:none; backdrop-filter:none;
    }
    .hero-pill .dot{ background:#17b866; box-shadow:0 0 0 4px rgba(23,184,102,0.18); }
    .hero-content h1{ color:#fff; }
    .hero-content h1 span{
      background:none;
      -webkit-background-clip:border-box; background-clip:border-box;
      -webkit-text-fill-color:#ffe1d9; color:#ffe1d9;
    }
    .hero-content p{ color:rgba(255,255,255,0.92); }
    .hero .btn-primary{
      background:#ffffff; color:#c02714;
      box-shadow:0 14px 32px rgba(120,20,10,0.32);
    }
    .hero .btn-primary:hover{ background:#fff2ef; color:#a81f12; }
    .hero .btn-ghost{ border:2px solid rgba(255,255,255,0.6); color:#fff; }
    .hero .btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,0.12); }
    .hero-stats{ border-top-color:rgba(255,255,255,0.28); }
    .hero-stat .num{ color:#fff; }
    .hero-stat .lbl{ color:rgba(255,255,255,0.75); }
    .hero-architecture{
      background:rgba(255,255,255,0.14);
      border:1px solid rgba(255,255,255,0.34);
      box-shadow:0 50px 120px rgba(120,20,10,0.42), 0 0 70px rgba(255,255,255,0.05);
    }

    /* Nav over coral: white logo + white (inverted) CTA; revert when frosted */
    nav .nav-logo svg path{ fill:#ffffff; }
    nav:not(.scrolled) .btn-nav{
      background:#ffffff; color:#c02714 !important;
      box-shadow:0 6px 18px rgba(120,20,10,0.22);
    }
    nav:not(.scrolled) .btn-nav:hover{ background:#fff2ef; }
    nav.scrolled .nav-logo svg path{ fill:#FF4931; }
    nav.scrolled .btn-nav{ background:var(--red); color:#fff !important; }

    /* Final CTA: coral bookend that mirrors the hero */
    .cta-section{
      background:
        radial-gradient(820px 480px at 50% -25%, rgba(255,255,255,0.14), transparent 60%),
        linear-gradient(165deg, #f24a36 0%, #d6301f 55%, #ad230f 100%);
    }
    .cta-inner p{ color:rgba(255,255,255,0.9); }

    /* Mobile: keep the nav CTA red inside the white dropdown panel */
    @media (max-width:768px){
      .nav-links .btn-nav{ background:var(--red) !important; color:#fff !important; box-shadow:none; }
    }

    /* ── CHALLENGE: editorial pain-point cards (no photo) ── */
    .pain-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      margin-top:52px;
    }
    .pain-card{
      background:#fff;
      border:1px solid #ece7e1;
      border-radius:16px;
      padding:26px 24px;
      box-shadow:0 1px 2px rgba(17,12,11,0.04);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .pain-card:hover{
      transform:translateY(-4px);
      box-shadow:0 24px 50px rgba(17,12,11,0.10);
      border-color:#e3dcd4;
    }
    .pc-icon{
      width:44px; height:44px; border-radius:12px;
      background:rgba(255,73,49,0.09);
      display:flex; align-items:center; justify-content:center;
      margin-bottom:16px;
    }
    .pc-icon svg{ width:22px; height:22px; }
    .pain-card p{ font-size:14.5px; color:var(--text-sec); line-height:1.62; }
    @media (max-width:1024px){ .pain-grid{ grid-template-columns:repeat(2,1fr); } }
    @media (max-width:600px){ .pain-grid{ grid-template-columns:1fr; } }

    /* ═══════════════════════════════════════════════════════
       CONTRAST FIXES — WCAG AA on every small text (Lighthouse a11y 100)
       Deep-red "ink" for small red text on light tints; keep bright coral
       for large/hero elements. Darken muted greys and tier labels.
       ═══════════════════════════════════════════════════════ */
    :root{ --red-ink:#b02616; }
    .cred-label{ color:#6a645d; }
    .red-label{ color:var(--red-ink); }
    .sov-table thead th.col-tvl{ color:var(--red-ink); }
    .cap-yes{ color:var(--red-ink); }
    .cap-no{ color:#5c5c5c; }
    #emailLink, #emailLink2{ color:var(--red-ink) !important; }
    footer .nav-logo-text{ color:var(--red-ink); }
    nav.scrolled .nav-logo-text{ color:var(--red-ink); }
    .tier-bronze .tier-badge{ color:#8a531c; }
    .tier-silver .tier-badge{ color:#565a61; }
    .tier-gold .tier-badge{ color:#786012; }
    .step-card.tier-silver .step-num{ color:#6b7078; }
    .step-card.tier-gold .step-num{ color:#9c7d16; }
    .testimonial-strip{ background:#c22b17; }
    .testimonial-kicker{ color:#ffffff; }
    .testimonial-inner blockquote{ color:#ffffff; }
    .testimonial-inner cite{ color:#ffe1d9; }

    /* ── Booking-form facade (click-to-load keeps third-party JS off load) ── */
    .form-facade{ text-align:center; padding:24px 10px 14px; }
    .form-facade p{ color:var(--text-sec); font-size:15px; line-height:1.6; max-width:46ch; margin:0 auto 20px; }

    /* ── WORKS-WITH integrations grid ── */
    .logo-grid{
      display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
      max-width:880px; margin:44px auto 0;
    }
    .logo-chip{
      display:inline-flex; align-items:center; gap:9px;
      padding:12px 20px; border-radius:12px;
      background:#fff; border:1px solid #ece7e1;
      box-shadow:0 1px 2px rgba(17,12,11,0.04);
      font-family:var(--font-display); font-weight:600; font-size:15px; color:#3a3632;
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .logo-chip::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--red); opacity:.75; }
    .logo-chip:hover{ transform:translateY(-2px); border-color:#e3dcd4; box-shadow:0 10px 24px rgba(17,12,11,0.08); }

    /* ═══════════════════════════════════════════════════════
       TVL HAROLD — page-specific components
       (built on the shared TVL design system above)
       ═══════════════════════════════════════════════════════ */

    /* ── COST FUNNEL: the 10 gates ── */
    .funnel-grid{
      display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
    }
    .gate{
      display:flex; gap:14px; align-items:flex-start;
      background:#fff; border:1px solid #ece7e1; border-radius:12px;
      padding:16px 18px;
      box-shadow:0 1px 2px rgba(17,12,11,0.04);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .gate:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(17,12,11,0.09); border-color:#e3dcd4; }
    .gate .n{
      flex-shrink:0; width:30px; height:30px; border-radius:8px;
      background:rgba(255,73,49,0.1); color:var(--red-ink);
      font-family:var(--font-display); font-weight:700; font-size:14px;
      display:flex; align-items:center; justify-content:center;
    }
    .gate.is-model .n{ background:var(--red); color:#fff; }
    .gate.is-final .n{ background:var(--ink); color:#fff; }
    .gate strong{ display:block; font-size:14px; color:var(--text); margin-bottom:3px; }
    .gate p{ font-size:13px; color:var(--text-sec); line-height:1.55; }
    .gate .tag{ font-size:9px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--red-ink); }
    @media (max-width:768px){ .funnel-grid{ grid-template-columns:1fr; } }

    /* ── DETECTOR grid tags ── */
    .det-tag{
      display:inline-block; font-size:10px; font-weight:700; letter-spacing:1px;
      text-transform:uppercase; margin-bottom:10px;
      padding:3px 9px; border-radius:999px;
    }
    .det-det{ background:rgba(255,73,49,0.1); color:var(--red-ink); }
    .det-learn{ background:rgba(138,143,152,0.16); color:#565a61; }
    .det-comp{ background:rgba(201,162,39,0.16); color:#786012; }

    /* ── PRODUCT SCREENSHOTS (framed figures from the manual) ── */
    .shot{
      margin:48px auto 0;
      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:10px;
    }
    .shot img{ display:block; width:100%; height:auto; border-radius:10px; }
    .shot figcaption{
      font-size:12.5px; color:var(--text-sec); line-height:1.5;
      padding:14px 10px 4px; text-align:center;
    }
    .shot figcaption .fig{
      color:var(--red-ink); font-weight:700; letter-spacing:.4px;
      text-transform:uppercase; font-size:11px; margin-right:6px;
    }
    /* On the coral hero, frame the flagship shot in translucent white */
    .hero .shot{
      background:rgba(255,255,255,0.14);
      border:1px solid rgba(255,255,255,0.34);
      box-shadow:0 50px 120px rgba(120,20,10,0.42), 0 0 70px rgba(255,255,255,0.05);
      margin-top:52px;
    }
    @media (max-width:768px){ .shot{ margin-top:32px; padding:6px; border-radius:14px; } }

    /* ── GENERIC UI MOCKS (replace screenshots that held real data) ── */
    .uimock{
      background:#fff; border-radius:10px; overflow:hidden; text-align:left;
      color:var(--text); font-size:13px;
    }
    .uim-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      padding:20px 22px 16px;
    }
    .uim-title{ font-family:var(--font-display); font-size:20px; font-weight:700; color:#1c1c28; }
    .uim-sub{ font-size:12.5px; color:#8a8f98; margin-top:2px; }
    .uim-btn{
      border:0; border-radius:8px; font-family:var(--font-body); font-weight:600;
      font-size:12.5px; padding:8px 16px; cursor:default; white-space:nowrap;
    }
    .uim-btn.primary{ background:#635bff; color:#fff; }
    .uim-btn.sm{ padding:5px 12px; font-size:11.5px; }
    .uim-panel{ margin:0 22px 20px; border:1px solid #ececf1; border-radius:12px; overflow:hidden; }
    .uim-panel-h{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 18px; font-weight:700; font-size:14px; color:#1c1c28;
      border-bottom:1px solid #f0f0f4;
    }
    .uim-conn{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      padding:16px 18px;
    }
    .uim-conn + .uim-conn{ border-top:1px solid #f0f0f4; }
    .uim-conn-name{ font-weight:700; font-size:14px; color:#1c1c28; }
    .uim-conn-secret{ font-size:11.5px; color:#a0a4ad; margin:1px 0 10px; }
    .uim-chips{ display:flex; flex-wrap:wrap; gap:7px; }
    .uim-chip{
      display:inline-flex; align-items:center; gap:6px;
      background:#eef0ff; color:#4b4fce; border-radius:999px;
      padding:4px 11px; font-size:12px; font-weight:500;
    }
    .uim-chip::before{
      content:''; width:8px; height:8px; border-radius:50%;
      border:1.5px solid #8f93e6; flex-shrink:0;
    }
    .uim-conn-actions{ display:flex; gap:14px; flex-shrink:0; font-size:12.5px; font-weight:600; }
    .a-import{ color:#1a9c5b; } .a-sync{ color:#635bff; } .a-del{ color:#e5484d; }
    /* table */
    .uim-table{ width:100%; border-collapse:collapse; font-size:12.5px; }
    .uim-table th{
      text-align:left; font-size:10px; font-weight:700; letter-spacing:1px;
      text-transform:uppercase; color:#a0a4ad; padding:12px 14px;
      border-bottom:1px solid #ececf1; background:#fafafb;
    }
    .uim-table td{ padding:13px 14px; border-bottom:1px solid #f2f2f5; vertical-align:middle; color:#3a3a44; }
    .uim-table tr:last-child td{ border-bottom:0; }
    .uim-name{ font-weight:700; color:#1c1c28; }
    .uim-check{ width:16px; height:16px; border-radius:4px; background:#635bff; display:inline-block; position:relative; }
    .uim-check::after{ content:'✓'; color:#fff; font-size:11px; position:absolute; top:-1px; left:2.5px; }
    .uim-mono{ font-family:ui-monospace,SFMono-Regular,Menlo,monospace; color:#6b6b76; }
    .uim-status{ display:inline-flex; align-items:center; gap:6px; background:#f0f0f4; color:#6b6b76; border-radius:6px; padding:3px 9px; font-size:11px; font-weight:600; }
    .uim-status.on{ background:#e7f7ee; color:#1a9c5b; }
    .uim-status .d{ width:6px; height:6px; border-radius:50%; background:currentColor; }
    .uim-actions{ display:flex; gap:12px; font-weight:600; font-size:12px; }
    .uim-actions .e{ color:#635bff; } .uim-actions .p{ color:#1a9c5b; } .uim-actions .d{ color:#e5484d; }
    @media (max-width:768px){
      .uim-table{ font-size:11px; }
      .uim-table .hide-sm{ display:none; }
      .uim-conn{ flex-direction:column; }
    }

    /* ── A11y: darken UI-mock text to meet WCAG AA (Lighthouse contrast) ── */
    .uim-sub, .uim-conn-secret, .uim-table th, .uim-mono { color:#5f6470; }
    .a-import, .uim-status.on { color:#0a6b39; }
    .a-del { color:#b3252b; }
