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

    :root {
      --orange-400: #fb923c;
      --orange-500: #f97316;
      --orange-600: #ea580c;
      --red-400: #f87171;
      --red-500: #ef4444;
      --red-600: #dc2626;
      --red-700: #b91c1c;
      --red-900: #7f1d1d;
      --neutral-900: #171717;
      --neutral-950: #0a0a0a;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --gray-600: #4b5563;
    }

    ::selection { background: var(--orange-500); color: white; }

    body {
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      background: #050505;
      color: white;
      overflow-x: hidden;
    }

    h1, h2, h3, .font-display {
      font-family: "Anton", sans-serif;
      letter-spacing: 1px;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.1; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.5); }
    }

@keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(200%); }
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 40px rgba(220,38,38,0.8); }
      50% { box-shadow: 0 0 60px rgba(220,38,38,1), 0 0 80px rgba(220,38,38,0.5); }
    }

    /* ===== BACKGROUND ===== */
    #stars-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #050505;
      pointer-events: none;
    }

    #stars-bg .glow-orange {
      position: absolute;
      top: -10%; left: -10%;
      width: 40%; height: 40%;
      background: rgba(234,88,12,0.2);
      border-radius: 50%;
      filter: blur(120px);
    }

    #stars-bg .glow-red {
      position: absolute;
      bottom: -10%; right: -10%;
      width: 50%; height: 50%;
      background: rgba(127,29,29,0.2);
      border-radius: 50%;
      filter: blur(150px);
    }

    .star {
      position: absolute;
      background: white;
      border-radius: 50%;
      animation: twinkle var(--dur) ease-in-out infinite;
      animation-delay: var(--del);
    }

/* ===== PAGE WRAPPER ===== */
    .page-wrapper {
      position: relative;
      min-height: 100vh;
      background: #050505;
      color: white;
      overflow-x: hidden;
      padding-bottom: 96px;
    }
    @media (min-width: 768px) { .page-wrapper { padding-bottom: 0; } }

    .content-wrapper { position: relative; z-index: 10; }

    /* ===== STICKY MOBILE CTA ===== */
    #sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      padding: 16px 16px 24px;
      background: linear-gradient(to top, black, rgba(0,0,0,0.9), transparent);
      z-index: 50;
      display: none;
      justify-content: center;
      pointer-events: none;
    }
    #sticky-cta.show { display: flex; }
    @media (min-width: 768px) { #sticky-cta { display: none !important; } }

    #sticky-cta a {
      pointer-events: auto;
      position: relative;
      overflow: hidden;
      width: 100%;
      background: linear-gradient(to right, var(--orange-600), var(--red-600));
      color: white;
      font-family: "Anton", sans-serif;
      font-size: 1.5rem;
      padding: 16px;
      border-radius: 16px;
      box-shadow: 0 0 30px rgba(234,88,12,0.8);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: 2px solid rgba(251,146,60,0.5);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    /* ===== WARNING BANNER ===== */
    .warning-banner {
      background: var(--red-600);
      color: white;
      text-align: center;
      padding: 0 16px;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.4;
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(239,68,68,0.5);
    }
    @media (min-width: 768px) { .warning-banner { font-size: 16px; letter-spacing: 0.08em; } }

    /* ===== HERO ===== */
    .hero-section {
      min-height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 16px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) { .hero-section { min-height: 85vh; padding: 32px 16px 64px; } }

    .hero-inner {
      max-width: 1380px;
      margin: 16px auto 0;
      position: relative;
      z-index: 20;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .hero-inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 48px;
        margin-top: 32px;
      }
    }

    .hero-text {
      flex: 1;
      text-align: center;
    }
    @media (min-width: 768px) { .hero-text { text-align: left; padding-bottom: 48px; } }

    .hero-h1 {
      font-family: "Anton", sans-serif;
      font-size: 15vw;
      line-height: 1.05;
      text-transform: uppercase;
      margin-bottom: 24px;
      color: white;
      filter: drop-shadow(0 25px 25px rgba(0,0,0,0.5));
    }
    @media (min-width: 640px) { .hero-h1 { font-size: 4.5rem; } }
    @media (min-width: 768px) { .hero-h1 { font-size: 6rem; line-height: 0.9; margin-bottom: 32px; } }
    @media (min-width: 1024px) { .hero-h1 { font-size: 7rem; } }

    .br-mobile { display: block; }
    @media (min-width: 768px) { .br-mobile { display: none; } }

    .gradient-text {
      background: linear-gradient(to right, var(--orange-400), var(--red-500), var(--red-600));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gradient-text-red {
      background: linear-gradient(to right, var(--red-500), var(--red-700));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--gray-300);
      margin-bottom: 32px;
      font-weight: 500;
      line-height: 1.3;
      padding: 0 8px;
    }
    @media (min-width: 640px) { .hero-subtitle { font-size: 1.5rem; } }
    @media (min-width: 768px) {
      .hero-subtitle { font-size: 2rem; margin-bottom: 48px; padding: 0; max-width: 48rem; }
    }

    /* Shimmer overlay */
    .shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
      transform: translateX(-100%);
      animation: shimmer 2.5s infinite;
    }

    /* CTA Buttons */
    .cta-btn {
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, var(--orange-600), var(--red-600));
      color: white;
      font-family: "Anton", sans-serif;
      font-size: 2rem;
      padding: 24px 40px;
      border-radius: 16px;
      box-shadow: 0 0 50px rgba(234,88,12,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: 2px solid rgba(251,146,60,0.5);
      text-decoration: none;
      transition: box-shadow 0.3s, transform 0.2s;
      width: fit-content;
    }
    .cta-btn:hover { box-shadow: 0 0 80px rgba(234,88,12,0.9); transform: scale(1.05); }
    .cta-btn:active { transform: scale(0.95); }
    @media (min-width: 768px) { .cta-btn { font-size: 2.5rem; } }

    .cta-btn-mobile {
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, var(--orange-600), var(--red-600));
      color: white;
      font-family: "Anton", sans-serif;
      font-size: 1.125rem;
      padding: 20px 32px;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(220,38,38,0.6);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: 2px solid rgba(251,146,60,0.5);
      text-decoration: none;
      width: 90%;
    }
    @media (min-width: 640px) { .cta-btn-mobile { width: auto; } }

    #hero-cta-desktop { display: none; }
    @media (min-width: 768px) { #hero-cta-desktop { display: flex; } }
    #hero-cta-mobile-wrap { display: flex; justify-content: center; margin-top: 24px; }
    @media (min-width: 768px) { #hero-cta-mobile-wrap { display: none; } }

    @keyframes hero-pulse {
      0%, 100% {
        opacity: 0.55;
        transform: scale(1);
      }
      50% {
        opacity: 0.85;
        transform: scale(1.08);
      }
    }

    /* Hero image */
    .hero-image-wrap {
      position: relative;
      width: calc(100% + 16px);
      max-width: none;
      margin: 0 -8px;
    }

    .hero-image-wrap::before {
      content: '';
      position: absolute;
      inset: 5% 10%;
      background: radial-gradient(ellipse at center,
        rgba(220,38,38,0.55) 0%,
        rgba(234,88,12,0.35) 40%,
        transparent 70%
      );
      filter: blur(40px);
      animation: hero-pulse 3s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
    }
    @media (min-width: 768px) { .hero-image-wrap { width: 100%; max-width: 530px; margin: 0; } }
    @media (min-width: 1024px) { .hero-image-wrap { max-width: 640px; } }
    @media (min-width: 1280px) { .hero-image-wrap { max-width: 710px; } }

    .hero-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 1;
    }

    /* ===== SOCIAL PROOF BAR ===== */
    .social-proof {
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background: rgba(0,0,0,0.9);
      backdrop-filter: blur(24px);
      padding: 24px 16px;
      position: relative;
      z-index: 20;
    }
    @media (min-width: 768px) { .social-proof { padding: 32px 16px; } }

    .social-proof-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }
    @media (min-width: 768px) { .social-proof-inner { flex-direction: row; gap: 96px; } }

    .stars-row { display: flex; color: var(--orange-500); }
    .stars-row svg { width: 24px; height: 24px; }
    @media (min-width: 768px) { .stars-row svg { width: 32px; height: 32px; } }

    .rating-label {
      font-family: "Anton", sans-serif;
      font-size: 1.25rem;
      letter-spacing: 0.05em;
      text-align: center;
    }
    @media (min-width: 768px) { .rating-label { font-size: 1.5rem; } }

    .stats-row { display: flex; gap: 48px; }
    @media (min-width: 768px) { .stats-row { gap: 96px; } }

    .stat-num { font-family: "Anton", sans-serif; font-size: 1.875rem; }
    @media (min-width: 768px) { .stat-num { font-size: 2.25rem; } }
    .stat-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray-400);
    }
    @media (min-width: 768px) { .stat-label { font-size: 0.875rem; } }

    /* ===== VIDEO TESTIMONIALS ===== */
    .testimonials-section {
      padding: 64px 16px;
      background: var(--neutral-950);
      position: relative;
      z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    @media (min-width: 768px) { .testimonials-section { padding: 128px 16px; } }

    .max-7xl { max-width: 1280px; margin: 0 auto; }

    .section-title {
      font-family: "Anton", sans-serif;
      font-size: 2.25rem;
      text-transform: uppercase;
      color: white;
      margin-bottom: 16px;
    }
    @media (min-width: 768px) { .section-title { font-size: 4.5rem; margin-bottom: 24px; } }

    .section-subtitle { font-size: 1.125rem; color: var(--gray-400); }
    @media (min-width: 768px) { .section-subtitle { font-size: 1.5rem; } }

    .text-center { text-align: center; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

    .testimonial-card {
      position: relative;
      margin: 0 auto;
      width: 100%;
      max-width: 320px;
      height: 380px;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }
    @media (min-width: 768px) { .testimonial-card { height: 450px; } }

    .card-hidden { display: none; }
    @media (min-width: 768px) { .card-hidden { display: block; } }

    .card-border {
      position: absolute;
      inset: -50%;
      border-radius: 0;
    }
    .card-border-1 {
      background: conic-gradient(from 0deg, transparent 0deg 340deg, rgba(239,68,68,1) 360deg);
      animation: spin 3s linear infinite;
    }
    .card-border-2 {
      background: conic-gradient(from 180deg, transparent 0deg 340deg, rgba(249,115,22,1) 360deg);
      animation: spin 3s linear infinite;
    }

    .card-inner {
      position: absolute;
      inset: 3px;
      background: var(--neutral-900);
      border-radius: 20px;
      overflow: hidden;
    }

    .card-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.7;
      transition: opacity 0.7s, transform 0.7s;
    }
    .testimonial-card:hover .card-inner img { opacity: 1; transform: scale(1.05); }

    .play-btn-wrap {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }

    .play-btn {
      background: rgba(220,38,38,0.9);
      backdrop-filter: blur(8px);
      border-radius: 50%;
      padding: 20px;
      animation: pulse-glow 2s ease-in-out infinite;
      transition: transform 0.3s;
    }
    .testimonial-card:hover .play-btn { transform: scale(1.25); }
    @media (min-width: 768px) { .play-btn { padding: 24px; } }

    .card-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, black, rgba(0,0,0,0.9), transparent);
      padding: 24px;
    }
    @media (min-width: 768px) { .card-info { padding: 32px; } }

    .card-stars { display: flex; color: var(--orange-500); margin-bottom: 8px; }
    .card-stars svg { width: 16px; height: 16px; }
    @media (min-width: 768px) { .card-stars svg { width: 20px; height: 20px; } }

    .card-name {
      color: white; font-weight: 700;
      font-size: 1.25rem; margin-bottom: 4px; line-height: 1.3;
    }
    @media (min-width: 768px) { .card-name { font-size: 1.5rem; } }

    .card-result {
      color: var(--red-400); font-weight: 900;
      font-size: 1.125rem; text-transform: uppercase;
      background: rgba(69,10,10,0.5);
      display: inline-block; padding: 4px 8px; border-radius: 4px;
    }
    @media (min-width: 768px) { .card-result { font-size: 1.25rem; } }

    #show-more-wrap { margin-top: 32px; text-align: center; }
    @media (min-width: 768px) { #show-more-wrap { display: none; } }

    #show-more-btn {
      background: #262626;
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      padding: 12px 24px; border-radius: 12px;
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; font-size: 0.875rem;
      cursor: pointer; transition: background 0.2s;
    }
    #show-more-btn:hover { background: #404040; }

    /* ===== PAIN SECTION ===== */
    .pain-section {
      padding: 80px 16px;
      max-width: 1152px;
      margin: 0 auto;
      position: relative; z-index: 20;
    }
    @media (min-width: 768px) { .pain-section { padding: 128px 16px; } }

    .pain-title {
      font-family: "Anton", sans-serif;
      font-size: 2.25rem;
      text-transform: uppercase;
      color: var(--red-500);
      margin-bottom: 16px;
    }
    @media (min-width: 768px) { .pain-title { font-size: 4.5rem; margin-bottom: 24px; } }

    .pain-subtitle { font-size: 1.125rem; color: var(--gray-400); font-weight: 500; }
    @media (min-width: 768px) { .pain-subtitle { font-size: 1.5rem; } }

    .pain-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 16px; margin-top: 48px;
    }
    @media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 80px; } }

    .pain-item {
      background: rgba(23,23,23,0.8);
      border: 1px solid rgba(239,68,68,0.3);
      padding: 24px; border-radius: 16px;
      display: flex; align-items: flex-start; gap: 16px;
      transition: border-color 0.3s;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
    .pain-item:hover { border-color: var(--red-500); }
    @media (min-width: 768px) { .pain-item { padding: 32px; gap: 24px; } }

    .pain-item p { font-size: 1rem; color: var(--gray-300); line-height: 1.6; }
    @media (min-width: 768px) { .pain-item p { font-size: 1.25rem; } }

    .icon-xcircle {
      flex-shrink: 0; margin-top: 4px;
      color: var(--red-500);
      width: 32px; height: 32px;
    }
    @media (min-width: 768px) { .icon-xcircle { width: 40px; height: 40px; } }

    /* ===== SOLUTION SECTION ===== */
    .solution-section {
      padding: 80px 16px;
      background: linear-gradient(to bottom, transparent, rgba(127,29,29,0.2), transparent);
      position: relative; z-index: 20;
    }
    @media (min-width: 768px) { .solution-section { padding: 128px 16px; } }

    .solution-title {
      font-family: "Anton", sans-serif;
      font-size: 3rem; text-transform: uppercase;
      color: white; margin-bottom: 16px; line-height: 1;
    }
    @media (min-width: 768px) { .solution-title { font-size: 6rem; margin-bottom: 24px; } }

    .solution-subtitle {
      font-size: 1.125rem; color: var(--gray-300);
      font-weight: 500; max-width: 56rem; margin: 0 auto;
    }
    @media (min-width: 768px) { .solution-subtitle { font-size: 1.875rem; } }

    .solution-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 24px; margin-top: 48px;
    }
    @media (min-width: 768px) { .solution-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; } }

    .solution-card {
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(239,68,68,0.2);
      padding: 32px; border-radius: 24px;
      transition: all 0.3s;
      box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }
    .solution-card:hover {
      border-color: rgba(239,68,68,0.8);
      transform: translateY(-10px);
      box-shadow: 0 0 40px rgba(220,38,38,0.2);
    }
    @media (min-width: 768px) { .solution-card { padding: 40px; } }

    .solution-icon-wrap {
      background: rgba(239,68,68,0.1);
      width: 80px; height: 80px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      transition: background 0.3s, transform 0.3s;
    }
    .solution-card:hover .solution-icon-wrap { background: rgba(239,68,68,0.2); transform: scale(1.1); }
    @media (min-width: 768px) { .solution-icon-wrap { width: 96px; height: 96px; margin-bottom: 32px; } }

    .solution-card-title {
      font-family: "Anton", sans-serif;
      font-size: 1.5rem; text-transform: uppercase;
      letter-spacing: 0.05em; color: white; margin-bottom: 12px;
    }
    @media (min-width: 768px) { .solution-card-title { font-size: 1.875rem; margin-bottom: 16px; } }

    .solution-card-desc { color: var(--gray-400); font-size: 1rem; line-height: 1.6; }
    @media (min-width: 768px) { .solution-card-desc { font-size: 1.25rem; } }

    /* ===== WHATSAPP PROOF ===== */
    .whatsapp-section {
      padding: 80px 16px;
      max-width: 1280px;
      margin: 0 auto;
      position: relative; z-index: 20;
    }
    @media (min-width: 768px) { .whatsapp-section { padding: 128px 16px; } }

    .whatsapp-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 24px; margin-top: 48px;
    }
    @media (min-width: 768px) { .whatsapp-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .whatsapp-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 80px; } }

    .whatsapp-card {
      position: relative; border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(0,0,0,0.8);
      border: 1px solid rgba(255,255,255,0.1);
      aspect-ratio: 9/16;
      background: var(--neutral-900);
    }
    .whatsapp-card img {
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.8;
      transition: opacity 0.5s, transform 0.5s;
    }
    .whatsapp-card:hover img { opacity: 1; transform: scale(1.05); }

    .whatsapp-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
      display: flex; align-items: flex-end; justify-content: center;
      padding-bottom: 24px;
    }
    .whatsapp-label {
      color: white; font-weight: 700;
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
      background: rgba(0,0,0,0.5); padding: 8px 16px;
      border-radius: 9999px; backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    /* ===== HOW IT WORKS ===== */
    .how-section {
      padding: 80px 16px;
      max-width: 1280px; margin: 0 auto;
      position: relative; z-index: 20;
    }
    @media (min-width: 768px) { .how-section { padding: 128px 16px; } }

    .how-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 32px; margin-top: 48px;
    }
    @media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); margin-top: 80px; } }

    .how-card {
      background: rgba(23,23,23,0.5);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 32px; border-radius: 24px;
      position: relative; overflow: hidden;
      transition: border-color 0.3s;
    }
    .how-card:hover { border-color: rgba(239,68,68,0.5); }

    .how-step-num {
      font-family: "Anton", sans-serif;
      font-size: 6rem;
      color: rgba(255,255,255,0.05);
      position: absolute; top: -16px; right: -16px;
      transition: color 0.3s; line-height: 1;
    }
    .how-card:hover .how-step-num { color: rgba(239,68,68,0.1); }

    .how-card-title {
      font-family: "Anton", sans-serif;
      font-size: 1.875rem; margin-bottom: 16px;
      position: relative; z-index: 10;
    }
    .how-card-desc { color: var(--gray-400); font-size: 1.125rem; position: relative; z-index: 10; }

    /* ===== GUARANTEE ===== */
    .guarantee-section {
      padding: 80px 16px;
      background: rgba(127,29,29,0.2);
      position: relative; z-index: 20;
      border-top: 1px solid rgba(239,68,68,0.2);
      border-bottom: 1px solid rgba(239,68,68,0.2);
    }
    @media (min-width: 768px) { .guarantee-section { padding: 128px 16px; } }

    .guarantee-inner { max-width: 56rem; margin: 0 auto; text-align: center; }

    .guarantee-title {
      font-family: "Anton", sans-serif;
      font-size: 3rem; text-transform: uppercase;
      color: white; margin-bottom: 24px; line-height: 1;
    }
    @media (min-width: 768px) { .guarantee-title { font-size: 4.5rem; } }

    .guarantee-text {
      font-size: 1.25rem; color: var(--gray-300);
      margin-bottom: 32px; line-height: 1.6;
    }
    @media (min-width: 768px) { .guarantee-text { font-size: 1.875rem; } }

    /* ===== NOT FOR ===== */
    .not-for-section {
      padding: 80px 16px;
      max-width: 64rem; margin: 0 auto;
      position: relative; z-index: 20;
    }
    @media (min-width: 768px) { .not-for-section { padding: 128px 16px; } }

    .not-for-box {
      background: var(--neutral-900);
      border-left: 8px solid var(--red-600);
      padding: 32px; border-radius: 0 24px 24px 0;
      box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }
    @media (min-width: 768px) { .not-for-box { padding: 48px; } }

    .not-for-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

    .not-for-title { font-family: "Anton", sans-serif; font-size: 1.875rem; text-transform: uppercase; }
    @media (min-width: 768px) { .not-for-title { font-size: 3rem; } }

    .not-for-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

    .not-for-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 1.125rem; color: var(--gray-300);
    }
    @media (min-width: 768px) { .not-for-item { font-size: 1.25rem; } }
    .not-for-item svg { flex-shrink: 0; margin-top: 4px; }

    /* ===== URGENCY CTA ===== */
    .cta-section {
      padding: 96px 16px; text-align: center;
      position: relative; z-index: 20; overflow: hidden;
    }
    @media (min-width: 768px) { .cta-section { padding: 160px 16px; } }

    .cta-glow {
      position: absolute; inset: 0;
      background: rgba(220,38,38,0.1);
      filter: blur(150px); pointer-events: none;
    }
    .cta-inner { max-width: 64rem; margin: 0 auto; position: relative; z-index: 10; }

    .cta-title {
      font-family: "Anton", sans-serif;
      font-size: 3rem; text-transform: uppercase;
      margin-bottom: 24px; line-height: 1;
    }
    @media (min-width: 768px) { .cta-title { font-size: 6rem; margin-bottom: 40px; } }

    .cta-subtitle { font-size: 1.25rem; color: var(--gray-300); margin-bottom: 40px; line-height: 1.6; }
    @media (min-width: 768px) { .cta-subtitle { font-size: 1.875rem; margin-bottom: 64px; } }

    .cta-highlight {
      color: white; font-weight: 700;
      background: rgba(220,38,38,0.3);
      padding: 12px 16px; border-radius: 12px;
      border: 1px solid rgba(239,68,68,0.5);
      display: inline-block;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      font-size: 1.125rem;
    }
    @media (min-width: 768px) { .cta-highlight { font-size: 1.5rem; } }

    /* Countdown */
    .countdown { display: flex; gap: 16px; justify-content: center; margin: 48px 0; }
    @media (min-width: 768px) { .countdown { gap: 32px; } }

    .cd-item { display: flex; flex-direction: column; align-items: center; }

    .cd-num {
      background: var(--neutral-900);
      border: 2px solid rgba(249,115,22,0.5);
      color: var(--orange-500);
      font-family: monospace; font-size: 3rem; font-weight: 700;
      padding: 16px; border-radius: 12px;
      box-shadow: 0 0 30px rgba(234,88,12,0.3);
      width: 80px; display: flex; justify-content: center;
    }
    @media (min-width: 768px) { .cd-num { font-size: 4.5rem; padding: 24px; width: 128px; } }

    .cd-label {
      color: var(--gray-400); font-size: 0.75rem;
      margin-top: 16px; text-transform: uppercase;
      letter-spacing: 0.2em; font-weight: 700;
    }
    @media (min-width: 768px) { .cd-label { font-size: 0.875rem; } }

    .final-cta {
      position: relative; overflow: hidden;
      margin-top: 40px;
      background: linear-gradient(to right, var(--orange-600), var(--red-600));
      color: white;
      font-family: "Anton", sans-serif; font-size: 1.5rem;
      padding: 24px 32px; border-radius: 16px;
      box-shadow: 0 0 60px rgba(220,38,38,0.6);
      display: flex; align-items: center; justify-content: center;
      gap: 16px; text-transform: uppercase; letter-spacing: 0.05em;
      border: 2px solid rgba(248,113,113,0.5);
      text-decoration: none;
      transition: all 0.3s; width: 100%;
    }
    .final-cta:hover { box-shadow: 0 0 100px rgba(220,38,38,0.9); transform: scale(1.05); }
    .final-cta:active { transform: scale(0.95); }
    @media (min-width: 768px) {
      .final-cta { font-size: 3rem; padding: 32px 48px; border-radius: 24px; width: auto; margin-top: 64px; }
    }

    .cta-trust {
      margin-top: 24px; color: var(--gray-400);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; font-size: 0.875rem; font-weight: 500;
    }
    @media (min-width: 768px) { .cta-trust { flex-direction: row; gap: 12px; font-size: 1.25rem; margin-top: 32px; } }

    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 40px 16px 128px;
      text-align: center; color: var(--gray-500);
      font-size: 0.875rem;
      position: relative; z-index: 20; background: black;
    }
    @media (min-width: 768px) { footer { padding: 64px 16px; font-size: 1rem; } }

    .footer-inner { max-width: 56rem; margin: 0 auto; }

    .footer-title {
      font-family: "Anton", sans-serif; font-size: 1.5rem;
      color: white; margin-bottom: 16px;
      text-transform: uppercase; letter-spacing: 0.2em;
    }
    @media (min-width: 768px) { .footer-title { font-size: 1.875rem; margin-bottom: 24px; } }

    .footer-copy { margin-bottom: 16px; }
    .footer-fine { font-size: 0.625rem; color: #374151; }
    @media (min-width: 768px) { .footer-fine { font-size: 0.75rem; } }

    /* ===== SVG ICONS (helpers) ===== */
    .icon-red { color: var(--red-500); }
    .z-rel { position: relative; z-index: 10; }