    /* ── HOME PAGE SPECIFIC ───────────────────────────── */
    .hero {
      position: relative;
      min-height: calc(100vh - var(--nav-h));
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      padding: 0 0 60px;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 60% 50% at 65% 40%, rgba(75,124,255,.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255,180,84,.08) 0%, transparent 70%);
    }
    .hero__content { position: relative; z-index: 2; }
    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px;
      background: rgba(75,124,255,.12);
      border: 1px solid rgba(75,124,255,.25);
      border-radius: 40px;
      font-size: 13px; font-weight: 600; color: var(--primary);
      margin-bottom: 24px;
    }
    .hero__eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 8px var(--success);
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: .7; }
    }
    .hero__title { margin-bottom: 20px; }
    .hero__title .accent { color: var(--accent); }
    .hero__title .primary { color: var(--primary); }
    .hero__desc { font-size: 17px; color: var(--text2); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
    .hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .hero__trust {
      margin-top: 48px;
      display: flex; align-items: center; gap: 20px;
      font-size: 13px; color: var(--text3);
    }
    .hero__trust-item { display: flex; align-items: center; gap: 6px; }
    .hero__trust-icon { color: var(--success); font-size: 14px; }

    .hero__visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
    .hero__case-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .hero__case-img {
      width: 340px; height: 340px;
      object-fit: contain;
      animation: float 5s ease-in-out infinite;
      filter: drop-shadow(0 0 60px rgba(75,124,255,.5));
      position: relative; z-index: 2;
    }
    .hero__case-ring {
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(75,124,255,.15);
      animation: spin 20s linear infinite;
    }
    .hero__case-ring-2 {
      width: 340px; height: 340px;
      border: 1px dashed rgba(255,180,84,.12);
      animation-duration: 15s; animation-direction: reverse;
    }
    .hero__floating-item {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--r-md);
      padding: 10px 14px;
      display: flex; align-items: center; gap: 10px;
      font-size: 13px;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
      white-space: nowrap;
    }
    .hero__fi-1 { top: 30px; right: -20px; animation: float 4s ease-in-out infinite; }
    .hero__fi-2 { bottom: 60px; left: -30px; animation: float 4.5s ease-in-out infinite; animation-delay: -2s; }
    .hero__fi-3 { top: 50%; left: -50px; animation: float 3.8s ease-in-out infinite; animation-delay: -1s; }
    .hero__fi-img { width: 36px; height: 36px; object-fit: contain; }
    .hero__fi-price { font-weight: 700; color: var(--warning); font-size: 14px; }

    /* Stats strip */
    .stats-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 28px 0;
    }
    .stats-strip__inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stats-strip__item {
      display: flex; align-items: center; gap: 16px;
      padding: 0 32px;
      border-right: 1px solid var(--border);
    }
    .stats-strip__item:last-child { border-right: none; }
    .stats-strip__icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: var(--primary-dim);
      border: 1px solid rgba(75,124,255,.2);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .stats-strip__val { font-size: 26px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
    .stats-strip__label { font-size: 13px; color: var(--text3); }

    /* Live drop section */
    .live-label {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      color: var(--danger);
    }
    .live-label__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--danger);
      box-shadow: 0 0 8px var(--danger);
      animation: pulse-dot 1.2s ease-in-out infinite;
    }

    /* Popular cases */
    .cases-scroll {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    /* Advantages */
    .adv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .adv-item {
      background: var(--surface);
      padding: 40px 32px;
      transition: background .2s;
    }
    .adv-item:hover { background: var(--surface2); }
    .adv-icon {
      width: 56px; height: 56px;
      background: var(--primary-dim);
      border: 1px solid rgba(75,124,255,.2);
      border-radius: var(--r-lg);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 20px;
    }
    .adv-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .adv-desc  { font-size: 14px; color: var(--text2); line-height: 1.7; }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
    }
    .testimonial-stars { color: var(--warning); font-size: 14px; margin-bottom: 12px; }
    .testimonial-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
    .testimonial-user { display: flex; align-items: center; gap: 10px; }
    .testimonial-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; flex-shrink: 0;
    }
    .testimonial-name { font-size: 14px; font-weight: 600; }
    .testimonial-tag { font-size: 12px; color: var(--text3); }

    /* How it works */
    .how-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      position: relative;
    }
    .how-step {
      text-align: center;
      padding: 32px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
    }
    .how-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800; margin: 0 auto 16px;
    }
    .how-icon { font-size: 32px; margin-bottom: 14px; }
    .how-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .how-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, rgba(75,124,255,.12), rgba(255,180,84,.08));
      border: 1px solid rgba(75,124,255,.2);
      border-radius: var(--r-xl);
      padding: 56px 48px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px;
    }
    .newsletter__form { display: flex; gap: 10px; }
    .newsletter__input {
      width: 280px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--r-sm);
      padding: 12px 16px;
      font-size: 14px; color: var(--text);
      outline: none;
    }
    .newsletter__input:focus { border-color: var(--primary); }
    .newsletter__input::placeholder { color: var(--text3); }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      .adv-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .how-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
      .stats-strip__item:nth-child(2) { border-right: none; }
      .stats-strip__item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 20px; }
    }

    @media (max-width: 860px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 48px;
        padding-bottom: 40px;
        text-align: center;
      }
      .hero__visual { order: -1; }
      .hero__desc { margin-left: auto; margin-right: auto; }
      .hero__actions { justify-content: center; }
      .hero__trust { justify-content: center; flex-wrap: wrap; row-gap: 10px; }
      .hero__case-img { width: 240px; height: 240px; }
      .hero__case-ring { width: 280px; height: 280px; }
      .hero__case-ring-2 { width: 240px; height: 240px; }
      .hero__floating-item { display: none; }
    }

    @media (max-width: 640px) {
      .adv-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; }
      .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
      .stats-strip__item { padding: 0 12px; border-right: none !important; }
      .stats-strip__item:nth-child(n+3) { border-top: none; padding-top: 0; }
      .stats-strip__icon { width: 40px; height: 40px; font-size: 18px; }
      .stats-strip__val { font-size: 20px; }
      .newsletter {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 32px 24px;
      }
      .newsletter__form { flex-direction: column; }
      .newsletter__input { width: 100%; }
    }

    @media (max-width: 420px) {
      .hero__case-img { width: 190px; height: 190px; }
      .hero__case-ring { width: 220px; height: 220px; }
      .hero__case-ring-2 { width: 190px; height: 190px; }
      .hero__actions { flex-direction: column; align-items: stretch; }
      .hero__trust { gap: 12px; }
    }
