/* ─── VARIABLES ─────────────────────────────────────── */
    :root {
      --blue:    #0098ff;
      --pink:    #ec6ead;
      --orange:  #fa8560;
      --dark:    #111827;
      --text:    #1f2937;
      --muted:   #6b7280;
      --white:   #ffffff;
      --light:   #f9fafb;
      --gradient: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
      --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
      --shadow-md: 0 4px 16px rgba(0,0,0,.10);
      --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
      --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
      --radius:    12px;
      --radius-lg: 20px;
      --radius-pill: 999px;
    }

    /* ─── RESET ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Rubik', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    svg { display: block; }

    /* ─── NAV ───────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,.93);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
      padding: 14px 0;
    }
    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo {
      width: 38px; height: 38px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter .35s ease;
    }
    .nav.scrolled .nav-logo { filter: none; }
    .nav-name {
      font-family: 'Rubik Mono One', monospace;
      font-size: 15px;
      letter-spacing: .5px;
      color: var(--white);
      transition: color .35s ease;
    }
    .nav.scrolled .nav-name {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      background: var(--white);
      color: var(--blue);
      font-weight: 600;
      font-size: 14px;
      border-radius: var(--radius-pill);
      transition: all .25s ease;
      white-space: nowrap;
      box-shadow: 0 2px 10px rgba(0,0,0,.12);
    }
    .nav.scrolled .nav-cta {
      background: var(--gradient);
      color: var(--white);
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    /* ─── HERO ──────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: var(--gradient);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-blobs { position: absolute; inset: 0; pointer-events: none; }
    .blob {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
    }
    .blob-1 {
      width: 560px; height: 560px;
      top: -180px; right: -120px;
      animation: drift 9s ease-in-out infinite;
    }
    .blob-2 {
      width: 360px; height: 360px;
      bottom: -100px; left: 5%;
      animation: drift 7s ease-in-out infinite reverse;
      animation-delay: -3s;
    }
    .blob-3 {
      width: 200px; height: 200px;
      top: 35%; right: 28%;
      animation: drift 11s ease-in-out infinite;
      animation-delay: -1.5s;
    }
    @keyframes drift {
      0%,100% { transform: translate(0,0) scale(1); }
      50%      { transform: translate(-16px,-24px) scale(1.04); }
    }
    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 130px 28px 90px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .hero-text { flex: 1; min-width: 0; }
    .hero-product {
      flex: 0 0 320px;
      animation: floatCard 6s ease-in-out infinite;
    }
    @keyframes floatCard {
      0%,100% { transform: translateY(0) rotate(3deg); }
      50%      { transform: translateY(-14px) rotate(3deg); }
    }
    .hero-product-card {
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 24px;
      padding: 36px 32px;
      box-shadow: var(--shadow-xl);
    }
    .hero-product-card img {
      width: 100%;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
      transform: rotate(-3deg);
    }
    .hero-product-label {
      text-align: center;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .tag-dot {
      width: 6px; height: 6px;
      background: var(--white);
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; } 50% { opacity: .4; }
    }
    .hero-headline {
      font-size: clamp(36px, 5.5vw, 68px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 22px;
      max-width: 640px;
    }
    .hero-sub {
      font-size: clamp(16px, 1.8vw, 19px);
      color: rgba(255,255,255,.82);
      font-weight: 300;
      max-width: 500px;
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      font-size: 17px;
      border-radius: var(--radius-pill);
      transition: all .25s ease;
      box-shadow: 0 4px 24px rgba(250,133,96,.45);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(250,133,96,.55);
    }
    .btn-primary:active { transform: translateY(0); }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }
    .scroll-hint {
      position: absolute;
      bottom: 30px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,.5);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      animation: scrollBounce 2.5s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── SHOP / VARIANT GRID ───────────────────────────── */
    .shop {
      padding: 100px 28px 80px;
      background: var(--white);
    }
    .section-header {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 56px;
    }
    .section-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.75;
    }
    .shop-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 18px;
      font-size: 13px;
      color: var(--muted);
    }
    .variants-grid {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .variant-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0,0,0,.06);
      transition: transform .3s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }
    .variant-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .vc-photo {
      aspect-ratio: 3/2;
      overflow: hidden;
      position: relative;
    }
    .vc-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .variant-card:hover .vc-photo img { transform: scale(1.06); }
    .vc-flag {
      position: absolute;
      top: 10px; right: 11px;
      font-size: 22px;
      line-height: 1;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,.5));
    }
    .vc-decal-strip {
      background: var(--light);
      padding: 10px 14px;
      border-bottom: 1px solid rgba(0,0,0,.06);
      display: flex;
      align-items: center;
      min-height: 58px;
    }
    .vc-decal-strip img {
      height: 32px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
    }
    .vc-body {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .vc-name {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
    }
    .vc-tagline {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      flex: 1;
      margin-bottom: 14px;
    }
    .vc-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .vc-price {
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
    }
    .btn-variant {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 15px;
      background: var(--orange);
      color: var(--white);
      font-weight: 600;
      font-size: 13px;
      border-radius: var(--radius-pill);
      transition: all .2s ease;
      box-shadow: 0 2px 8px rgba(250,133,96,.3);
      white-space: nowrap;
    }
    .btn-variant:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(250,133,96,.45);
    }
    .btn-variant:active { transform: translateY(0); }

    /* ─── WHY IT WORKS ──────────────────────────────────── */
    .why {
      padding: 110px 28px;
      background: var(--light);
    }
    .cards-grid {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      box-shadow: var(--shadow-sm);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    .card-icon {
      width: 56px; height: 56px;
      background: var(--gradient);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    .card-icon svg {
      width: 26px; height: 26px;
      stroke: white;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .card h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── HOW IT WORKS ──────────────────────────────────── */
    .how {
      padding: 110px 28px;
      background: var(--white);
    }
    .how-inner { max-width: 820px; margin: 0 auto; }
    .steps {
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .steps::before {
      content: '';
      position: absolute;
      left: 27px; top: 28px; bottom: 28px;
      width: 2px;
      background: linear-gradient(to bottom, var(--blue), var(--pink));
      opacity: .15;
    }
    .step {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      padding: 30px 0;
    }
    .step-num {
      flex-shrink: 0;
      width: 56px; height: 56px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: 'Rubik Mono One', monospace;
      font-size: 20px;
      position: relative; z-index: 1;
      box-shadow: 0 4px 16px rgba(0,152,255,.3);
    }
    .step-body { padding-top: 12px; }
    .step-body h3 { font-size: 19px; font-weight: 600; margin-bottom: 7px; }
    .step-body p { font-size: 15px; color: var(--muted); line-height: 1.7; }

    /* ─── CTA BAND ──────────────────────────────────────── */
    .cta-band {
      padding: 90px 28px;
      background: var(--gradient);
      text-align: center;
    }
    .cta-band h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }
    .cta-band p {
      font-size: 18px;
      color: rgba(255,255,255,.8);
      margin-bottom: 40px;
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 17px 44px;
      background: var(--white);
      color: var(--pink);
      font-weight: 700;
      font-size: 18px;
      border-radius: var(--radius-pill);
      transition: all .25s ease;
      box-shadow: 0 4px 24px rgba(0,0,0,.15);
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(0,0,0,.22);
    }

    /* ─── FOOTER ────────────────────────────────────────── */
    .footer { padding: 48px 28px; background: var(--dark); }
    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-brand { display: flex; align-items: center; gap: 12px; }
    .footer-logo { width: 34px; opacity: .6; }
    .footer-name {
      font-family: 'Rubik Mono One', monospace;
      font-size: 13px;
      color: rgba(255,255,255,.5);
    }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }

    /* ─── MODAL ──────────────────────────────────────────── */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .modal-backdrop.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal-box {
      background: var(--white);
      border-radius: 24px;
      max-width: 860px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(.96) translateY(16px);
      transition: transform .35s ease;
      box-shadow: 0 28px 80px rgba(0,0,0,.28);
    }
    .modal-backdrop.open .modal-box { transform: scale(1) translateY(0); }
    .modal-close {
      position: absolute;
      top: 14px; right: 14px;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(0,0,0,.08);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      transition: background .2s ease;
    }
    .modal-close:hover { background: rgba(0,0,0,.16); }
    .modal-close svg { stroke: var(--text); }
    .modal-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
    }
    .modal-media {
      border-radius: 24px 0 0 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--light);
    }
    .modal-car-photo {
      flex: 1;
      min-height: 260px;
      overflow: hidden;
    }
    .modal-car-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .modal-decal-strip {
      background: var(--white);
      padding: 14px 20px;
      border-top: 1px solid rgba(0,0,0,.07);
      display: flex;
      align-items: center;
      min-height: 66px;
    }
    .modal-decal-strip img {
      height: 38px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
    }
    .modal-info {
      padding: 40px 32px 32px;
      display: flex;
      flex-direction: column;
    }
    .modal-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }
    .modal-flag { font-size: 30px; line-height: 1; }
    .modal-name {
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 700;
      line-height: 1.1;
    }
    .modal-product-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 22px;
    }
    .modal-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 0;
      flex: 1;
    }
    .modal-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      line-height: 1.5;
    }
    .modal-check {
      flex-shrink: 0;
      margin-top: 1px;
      width: 18px; height: 18px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .modal-check svg { stroke: white; }
    .modal-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 22px 0 16px;
      padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,.07);
    }
    .modal-price { font-size: 40px; font-weight: 700; line-height: 1; }
    .modal-price-note { font-size: 14px; color: var(--muted); }
    .modal-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px;
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      font-size: 17px;
      border-radius: var(--radius-pill);
      transition: all .25s ease;
      box-shadow: 0 4px 20px rgba(250,133,96,.35);
      margin-bottom: 12px;
    }
    .modal-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(250,133,96,.45);
    }
    .modal-secure {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      color: var(--muted);
    }
    @media (max-width: 640px) {
      .modal-inner { grid-template-columns: 1fr; }
      .modal-media { border-radius: 24px 24px 0 0; }
      .modal-car-photo { min-height: 200px; max-height: 220px; }
      .modal-info { padding: 24px 20px; }
    }

    /* ─── IMAGE SWAP ─────────────────────────────────────── */
    /* Card decal strip — clickable thumbnail */
    .vc-decal-strip { cursor: pointer; transition: background .2s ease; }
    .vc-decal-strip:hover { background: #ededf0; }
    /* Card main photo when showing decal instead of car */
    .vc-photo.showing-decal { background: var(--light); }
    .vc-photo.showing-decal img { object-fit: contain; padding: 14px; }
    /* Modal — both panels are clickable */
    .modal-car-photo { cursor: pointer; }
    .modal-decal-strip { cursor: pointer; transition: background .2s ease; }
    .modal-decal-strip:hover { background: #f0f0f2; }
    /* Modal main photo when showing decal */
    .modal-car-photo.showing-decal { background: var(--light); }
    .modal-car-photo.showing-decal img { object-fit: contain; padding: 28px; }

    /* ─── SCROLL ANIMATIONS ─────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .fade-up.in { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }

    /* ─── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 1024px) {
      .variants-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media (max-width: 960px) {
      .hero-product { display: none; }
      .hero-inner { padding-bottom: 70px; }
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 620px) {
      .nav-cta { display: none; }
      .cards-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-brand { justify-content: center; }
    }
    @media (max-width: 480px) {
      .variants-grid { grid-template-columns: 1fr; }
    }
