    /* ===================================
       🎨 VARIÁVEIS & RESET
    =================================== */
    :root {
      --bg: #0c0314;
      --bg-alt: #110520;
      --card: #14071f;
      --primary: #8a00cc;
      --primary-dark: #6b00a0;
      --secondary: #b300ff;
      --accent: #d966ff;
      --accent-soft: rgba(217, 102, 255, 0.15);
      --text: #f5f0fa;
      --muted: #b8a8c7;
      --glass: rgba(20, 7, 31, 0.65);
      --border: rgba(179, 0, 255, 0.15);
      --border-strong: rgba(179, 0, 255, 0.3);
      --gradient: linear-gradient(135deg, #8a00cc, #b300ff);
      --gradient-hero: linear-gradient(135deg, #8a00cc 0%, #b300ff 50%, #d966ff 100%);
      --shadow-primary: 0 10px 40px rgba(138, 0, 204, 0.3);
      --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: "Inter", system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===================================
       ✨ GRADIENT TEXT
    =================================== */
    .gradient-text {
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ===================================
       🎯 NAVBAR
    =================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(12, 3, 20, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(12, 3, 20, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: 1.25rem;
      text-decoration: none;
    }

    .nav-logo img {
      height: 34px;
      width: auto;
      display: block;
    }

    .nav-logo span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--muted);
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--text);
    }

    /* ===================================
       🎨 BUTTONS
    =================================== */
    .btn-primary {
      background: var(--gradient);
      color: #fff;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-primary);
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 50px rgba(138, 0, 204, 0.5);
      filter: brightness(1.1);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      color: var(--text);
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
      border-color: var(--border-strong);
    }

    .btn-outline {
      background: transparent;
      color: var(--accent);
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      border: 2px solid var(--accent);
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: var(--accent);
      color: var(--bg);
      transform: translateY(-2px);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 1.1rem;
    }

    /* ===================================
       🚀 HERO
    =================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.25;
      animation: orb-float 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: var(--primary);
      top: -200px;
      left: -200px;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: var(--accent);
      bottom: -150px;
      right: -150px;
      animation-delay: 5s;
    }

    .orb-3 {
      width: 400px;
      height: 400px;
      background: #6b00a0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: 10s;
    }

    @keyframes orb-float {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      25% {
        transform: translate(30px, -30px) scale(1.1);
      }

      50% {
        transform: translate(-20px, 20px) scale(0.9);
      }

      75% {
        transform: translate(20px, 30px) scale(1.05);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--accent-soft);
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--accent);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 24px;
      animation: badge-pulse 2s ease-in-out infinite;
    }

    @keyframes badge-pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -2px;
    }

    .hero-text p {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* Benefícios com animação typewriter */
    .benefit-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .benefit-icon {
      font-size: 2rem;
      filter: drop-shadow(0 0 10px rgba(217, 102, 255, 0.5));
    }

    .benefit-text {
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid var(--accent);
      animation: blink-caret 0.75s step-end infinite;
      min-height: 1.2em;
    }

    .benefit-text.typing-complete {
      border-right: none;
      animation: none;
    }

    @keyframes blink-caret {

      from,
      to {
        border-color: transparent;
      }

      50% {
        border-color: var(--accent);
      }
    }

    /* Hero Image - floating cards */
    .hero-image {
      position: relative;
      height: 550px;
    }

    .floating-card {
      position: absolute;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      transition: transform 0.3s ease;
    }

    .floating-card:hover {
      transform: translateY(-10px) !important;
    }

    .card-1 {
      width: 380px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: fc1 6s ease-in-out infinite;
      border-radius: 24px;
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .card-1 img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .card-1-body {
      padding: 20px;
    }

    .card-1-body h4 {
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .card-1-body p {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .card-2 {
      width: 250px;
      top: 5%;
      right: 0;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 20px;
      animation: fc2 7s ease-in-out infinite;
    }

    .card-3 {
      width: 280px;
      bottom: 5%;
      left: -10px;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 20px;
      animation: fc3 8s ease-in-out infinite;
    }

    @keyframes fc1 {

      0%,
      100% {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      50% {
        transform: translate(-50%, -45%) rotate(1deg);
      }
    }

    @keyframes fc2 {

      0%,
      100% {
        transform: translateY(0) rotate(-3deg);
      }

      50% {
        transform: translateY(-15px) rotate(-1deg);
      }
    }

    @keyframes fc3 {

      0%,
      100% {
        transform: translateY(0) rotate(3deg);
      }

      50% {
        transform: translateY(-12px) rotate(1deg);
      }
    }

    .metric-preview {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .metric-icon {
      font-size: 2rem;
    }

    .metric-title {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .metric-value {
      font-size: 1.4rem;
      font-weight: 700;
      color: #4ade80;
    }

    .chat-preview {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .chat-bubble {
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 0.85rem;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
    }

    .chat-bubble.bot {
      background: var(--gradient);
      color: #fff;
      align-self: flex-end;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 0.8rem;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(-10px);
      }
    }

    .mouse {
      width: 22px;
      height: 36px;
      border: 2px solid var(--muted);
      border-radius: 11px;
      position: relative;
    }

    .wheel {
      width: 3px;
      height: 7px;
      background: var(--muted);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: wheel-scroll 2s ease-in-out infinite;
    }

    @keyframes wheel-scroll {

      0%,
      100% {
        opacity: 1;
        top: 6px;
      }

      50% {
        opacity: 0.4;
        top: 18px;
      }
    }

    /* ===================================
       SECTION SHARED
    =================================== */
    .section {
      padding: 120px 0;
    }

    .section-alt {
      background: var(--bg-alt);
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--accent-soft);
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===================================
       📱 WHATSAPP SECTION
    =================================== */
    .whatsapp-demo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .phone-frame {
      width: 320px;
      height: 650px;
      background: #111;
      border-radius: 40px;
      padding: 12px;
      box-shadow: var(--shadow-xl);
      position: relative;
      margin: 0 auto;
    }

    .phone-notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 130px;
      height: 26px;
      background: #111;
      border-radius: 0 0 18px 18px;
      z-index: 2;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: #0b141a;
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .wa-header {
      background: #1f2c33;
      padding: 36px 14px 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e9edef;
    }

    .wa-header img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
    }

    .wa-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .wa-status {
      font-size: 0.7rem;
      color: #8696a0;
    }

    .wa-messages {
      flex: 1;
      padding: 14px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .msg {
      display: flex;
      flex-direction: column;
      max-width: 80%;
    }

    .msg.user {
      align-self: flex-end;
    }

    .msg.bot {
      align-self: flex-start;
    }

    .msg-bubble {
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .msg.user .msg-bubble {
      background: #005c4b;
      color: #e9edef;
      border-radius: 8px 8px 0 8px;
    }

    .msg.bot .msg-bubble {
      background: #1f2c33;
      color: #e9edef;
      border-radius: 8px 8px 8px 0;
    }

    .msg-time {
      font-size: 0.6rem;
      color: #8696a0;
      margin-top: 3px;
      align-self: flex-end;
    }

    .wa-input {
      background: #1f2c33;
      padding: 10px 14px;
      display: flex;
      align-items: center;
    }

    .wa-input span {
      flex: 1;
      font-size: 0.82rem;
      color: #8696a0;
    }

    .wpp-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .wpp-feat {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 22px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      transition: all 0.3s ease;
    }

    .wpp-feat:hover {
      transform: translateX(8px);
      border-color: var(--border-strong);
    }

    .wpp-feat-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .wpp-feat h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .wpp-feat p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* ===================================
       🎨 FEATURES
    =================================== */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .feat-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.35s ease;
    }

    .feat-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--border-strong);
    }

    .feat-visual {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .feat-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .feat-card:hover .feat-visual img {
      transform: scale(1.1);
    }

    .feat-info {
      padding: 28px;
    }

    .feat-info .icon-lg {
      font-size: 2.2rem;
      margin-bottom: 14px;
    }

    .feat-info h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feat-info p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .feat-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .feat-list li {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .feat-list li::before {
      content: '✓ ';
      color: var(--accent);
      font-weight: bold;
    }

    /* ===================================
       🔄 HOW IT WORKS
    =================================== */
    .steps-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .step {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 36px;
      align-items: start;
    }

    .step-num {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step-num span {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gradient);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 800;
      box-shadow: var(--shadow-primary);
      position: relative;
      z-index: 2;
    }

    .step-line {
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 80px;
      background: linear-gradient(180deg, var(--primary), transparent);
    }

    .step-body {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 28px;
      border-radius: 24px;
      transition: all 0.3s ease;
    }

    .step-body:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--border-strong);
    }

    .step-body .icon {
      font-size: 2.5rem;
      margin-bottom: 14px;
    }

    .step-body h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-body p {
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===================================
       💰 PLANS
    =================================== */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .plan-card {
      background: linear-gradient(180deg, rgba(138, 0, 204, 0.05), rgba(20, 7, 31, 0.4));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: var(--primary);
    }

    .plan-card.featured {
      background: linear-gradient(180deg, rgba(138, 0, 204, 0.18), rgba(20, 7, 31, 0.6));
      border: 1px solid rgba(217, 102, 255, 0.4);
      transform: scale(1.05);
      z-index: 2;
    }

    .plan-card.featured:hover {
      transform: scale(1.05) translateY(-8px);
    }

    .plan-tag {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--gradient);
      padding: 6px 14px;
      border-radius: 99px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .plan-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--muted);
    }

    .plan-price {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 12px 0 6px;
      color: #fff;
    }

    .plan-price span {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 500;
    }

    .plan-period {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .plan-commitment {
      font-size: 0.85rem;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .plan-discount {
      display: inline-block;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 6px 14px;
      border-radius: 12px;
      font-size: 0.85rem;
      margin-bottom: 20px;
    }

    .plan-benefits {
      list-style: none;
      margin-bottom: 24px;
    }

    .plan-benefits li {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .plan-benefits li strong {
      color: #fff;
    }

    .plan-benefits li::before {
      content: '✓';
      color: var(--accent);
      font-weight: bold;
    }

    .plan-note {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      opacity: 0.7;
    }

    /* ===================================
       ⭐ TESTIMONIALS
    =================================== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .test-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 28px;
      border-radius: 24px;
      transition: all 0.3s ease;
    }

    .test-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--border-strong);
    }

    .test-stars {
      font-size: 1.1rem;
      margin-bottom: 14px;
    }

    .test-card>p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .test-author img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-name {
      font-weight: 700;
      font-size: 0.95rem;
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ===================================
       🚀 CTA FINAL
    =================================== */
    .cta-section {
      padding: 120px 24px;
      text-align: center;
      background: radial-gradient(circle at 50% 50%, rgba(138, 0, 204, 0.15) 0%, transparent 70%);
    }

    .cta-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-section>.container>p {
      font-size: 1.15rem;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .cta-trust {
      display: flex;
      gap: 28px;
      justify-content: center;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* ===================================
       🦶 FOOTER
    =================================== */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 0 28px;
      text-align: center;
      color: var(--muted);
      font-size: 0.85rem;
    }

    /* ===================================
       🔄 LOADING
    =================================== */
    #loading-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 3, 20, 0.95);
      backdrop-filter: blur(10px);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .loader {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      border-top-color: var(--accent);
      animation: spin 0.8s ease-in-out infinite;
    }

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

    /* Scroll progress */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--gradient);
      z-index: 9998;
      width: 0;
      transition: width 0.1s ease;
    }

    /* ===================================
       ✨ SCROLL REVEAL
    =================================== */
    .reveal-up,
    .reveal-left,
    .reveal-right {
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-up {
      transform: translateY(40px);
    }

    .reveal-left {
      transform: translateX(-40px);
    }

    .reveal-right {
      transform: translateX(40px);
    }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* ===================================
       📱 RESPONSIVE
    =================================== */
    @media (max-width: 1024px) {

      .hero-content,
      .whatsapp-demo {
        grid-template-columns: 1fr;
      }

      .hero-image {
        height: 400px;
      }

      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .plans-grid {
        grid-template-columns: 1fr;
      }

      .plan-card.featured {
        transform: scale(1);
      }

      .plan-card.featured:hover {
        transform: translateY(-8px);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .hero-text h1 {
        font-size: 2.4rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-stats {
        flex-direction: column;
        gap: 16px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .step {
        grid-template-columns: 70px 1fr;
        gap: 20px;
      }

      .step-num span {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    /* MOBILE SMALL (480px) */
    @media (max-width: 480px) {
      .navbar {
        padding: 10px 0;
      }

      .nav-container {
        padding: 0 12px;
      }

      .nav-logo img {
        width: 28px;
        height: 28px;
      }

      .nav-logo span {
        font-size: 1rem;
      }

      .hero {
        padding: 100px 16px 40px;
      }

      .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .hero-text p {
        font-size: 0.9rem;
      }

      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        text-align: center;
      }

      .hero-image {
        height: 280px;
        border-radius: 16px;
      }

      .hero-stats {
        gap: 12px;
      }

      .stat-item {
        padding: 12px;
      }

      .stat-number {
        font-size: 1.4rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.85rem;
      }

      section {
        padding: 40px 16px;
      }

      .feature-card {
        padding: 20px;
      }

      .step {
        grid-template-columns: 50px 1fr;
        gap: 14px;
      }

      .step-num span {
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }

      .step-content h3 {
        font-size: 1rem;
      }

      .step-content p {
        font-size: 0.85rem;
      }

      .whatsapp-demo {
        padding: 16px;
        border-radius: 16px;
      }

      .phone-mockup {
        min-height: 280px;
        border-radius: 14px;
      }

      .testimonial-card {
        padding: 18px;
      }

      .plan-card {
        padding: 20px;
      }

      .plan-price {
        font-size: 2rem;
      }

      .cta-section h2 {
        font-size: 1.6rem;
      }

      .cta-buttons a {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
        text-align: center;
      }

      .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 12px;
      }
    }