  :root {
      --roxo-100: #ede9fe;
      --roxo-200: #c4b5fd;
      --roxo-300: #a78bfa;
      --roxo-400: #7c3aed;
      --roxo-500: #6d28d9;
      --roxo-600: #4c1d95;
      --roxo-700: #3b1579;
      --roxo-800: #2e1065;
      --roxo-900: #1e0a4a;
      --accent: #a855f7;
      --accent-bright: #c084fc;
      --neon: #7c3aed;
      font-family: 'DM Sans', sans-serif;
    }

    h1, h2, h3, h4, .font-display { font-family: 'Syne', sans-serif; }
    * { box-sizing: border-box; }

    body {
      background-color: #0d0520;
      background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(109, 40, 217, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
      background-attachment: fixed;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ===== HEADER ===== */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    #site-header.scrolled {
      background: rgba(14, 5, 32, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(124, 58, 237, 0.2);
    }

    /* ===== HERO ===== */
    .hero-section {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(109,40,217,0.4) 0%, transparent 70%);
      top: -200px; right: -100px;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, transparent 70%);
      bottom: -100px; left: -50px;
      animation: orbFloat 10s ease-in-out infinite reverse;
    }
    .orb-3 {
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(192,132,252,0.3) 0%, transparent 70%);
      top: 40%; left: 30%;
      animation: orbFloat 6s ease-in-out infinite;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.05); }
      66% { transform: translate(-15px, 25px) scale(0.95); }
    }

    .fiber-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .fiber-line {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,58,237,0.6), rgba(192,132,252,0.8), transparent);
      animation: fiberFlow 4s linear infinite;
      opacity: 0;
    }
    .fiber-line:nth-child(1) { top: 20%; width: 60%; left: -10%; animation-delay: 0s; animation-duration: 3.5s; }
    .fiber-line:nth-child(2) { top: 45%; width: 40%; left: -5%; animation-delay: 1s; animation-duration: 4.2s; }
    .fiber-line:nth-child(3) { top: 65%; width: 55%; left: -15%; animation-delay: 2s; animation-duration: 3.8s; }
    .fiber-line:nth-child(4) { top: 30%; width: 35%; right: -5%; animation-delay: 0.5s; animation-duration: 4.5s; transform: scaleX(-1); }
    .fiber-line:nth-child(5) { top: 75%; width: 45%; right: -10%; animation-delay: 1.8s; animation-duration: 3.2s; transform: scaleX(-1); }

    @keyframes fiberFlow {
      0% { opacity: 0; transform: translateX(-20px); }
      10% { opacity: 1; }
      80% { opacity: 1; }
      100% { opacity: 0; transform: translateX(40px); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(167, 139, 250, 0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--roxo-300);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--accent-bright);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 40%, #a78bfa 70%, #7c3aed 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .speed-ring { position: relative; width: 220px; height: 220px; }
    .speed-ring svg { transform: rotate(-90deg); }
    .speed-ring-track { fill: none; stroke: rgba(124,58,237,0.2); stroke-width: 8; }
    .speed-ring-progress {
      fill: none;
      stroke: url(#speedGradient);
      stroke-width: 8;
      stroke-linecap: round;
      stroke-dasharray: 565;
      stroke-dashoffset: 565;
      transition: stroke-dashoffset 2s ease-out;
    }
    .speed-ring-progress.animate { stroke-dashoffset: 70; }

    /* ===== SHARED SECTION STYLES ===== */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.12);
      border: 1px solid rgba(167, 139, 250, 0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--roxo-300);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
    }

    .section-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--roxo-400), var(--accent-bright));
      border-radius: 2px;
      margin: 20px auto;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
    }

    .glass-card-hover { transition: all 0.3s ease; }
    .glass-card-hover:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(167, 139, 250, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(109, 40, 217, 0.2);
    }

    /* ===== PLAN CARDS ===== */
    .plans-grid { display: grid; gap: 0; align-items: stretch; }
    .plan-wrapper { display: flex; flex-direction: column; position: relative; padding-top: 0; }
    .plan-wrapper.has-badge { padding-top: 28px; }

    .plan-card {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 0;
      padding: 36px 32px 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .plan-card.card-left  { border-radius: 24px 0 0 24px; }
    .plan-card.card-right { border-radius: 0 24px 24px 0; }
    .plan-card.card-mid   {
      border-radius: 0;
      background: linear-gradient(160deg, rgba(109,40,217,0.55), rgba(59,21,121,0.85));
      border-color: rgba(167,139,250,0.45);
      border-left-width: 2px;
      border-right-width: 2px;
      box-shadow: 0 0 60px rgba(109,40,217,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
      z-index: 2;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
      pointer-events: none;
    }

    .plan-card:hover { background: rgba(124,58,237,0.1); box-shadow: 0 24px 60px rgba(109,40,217,0.3); }
    .plan-card.card-mid:hover {
      background: linear-gradient(160deg, rgba(109,40,217,0.7), rgba(59,21,121,0.95));
      box-shadow: 0 30px 80px rgba(109,40,217,0.5), 0 0 40px rgba(124,58,237,0.2);
    }

    .plan-tier {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 20px;
      align-self: flex-start;
    }
    .plan-tier.tier-basic  { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--roxo-300); }
    .plan-tier.tier-premium { background: rgba(192,132,252,0.18); border: 1px solid rgba(192,132,252,0.4); color: #c084fc; }
    .plan-tier.tier-ultra  { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--roxo-300); }

    .plan-icon-wrap {
      width: 56px; height: 56px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
      border: 1px solid rgba(124,58,237,0.25);
      background: rgba(124,58,237,0.12);
    }
    .plan-card.card-mid .plan-icon-wrap {
      background: linear-gradient(135deg, var(--roxo-400), var(--accent));
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(109,40,217,0.4);
    }

    .plan-speed-number { font-family: 'Syne', sans-serif; font-size: 3.4rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 2px; }
    .plan-speed-unit { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
    .plan-card.card-mid .plan-speed-number { color: white; }
    .plan-card.card-mid .plan-speed-unit   { color: rgba(192,132,252,0.8); }

    .speed-bar-track { background: rgba(255,255,255,0.07); border-radius: 100px; height: 5px; overflow: hidden; margin-bottom: 28px; }
    .speed-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--roxo-400), var(--accent-bright)); transition: width 1.6s cubic-bezier(0.4,0,0.2,1); width: 0; }
    .speed-bar-fill.animate { width: var(--target-width); }

    .plan-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 24px; }
    .plan-card.card-mid .plan-desc { color: rgba(255,255,255,0.65); }

    .plan-divider { height: 1px; background: rgba(124,58,237,0.2); margin: 4px 0 20px; }

    .benefit-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
    .benefit-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.4; }
    .benefit-check { width: 18px; height: 18px; flex-shrink: 0; background: rgba(124,58,237,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .plan-card.card-mid .benefit-check { background: rgba(192,132,252,0.25); }

    .ott-strip { display: flex; gap: 8px; align-items: center; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 10px 14px; margin-bottom: 24px; }
    .ott-strip-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-right: 4px; white-space: nowrap; }
    .ott-logo { width: 32px; height: 32px; background: white; border-radius: 8px; padding: 4px; object-fit: cover; display: block; }

    .plan-price-wrap { margin-bottom: 20px; }
    .plan-price-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; letter-spacing: 0.04em; }
    .plan-price-row { display: flex; align-items: baseline; gap: 2px; }
    .plan-price-currency { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 500; }
    .plan-price-amount   { font-family: 'Syne', sans-serif; font-size: 3.6rem; font-weight: 800; color: white; line-height: 1; }
    .plan-price-cents    { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
    .plan-price-period   { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-left: 4px; align-self: flex-end; padding-bottom: 6px; }

    .btn-plan { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px; border-radius: 12px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; }
    .btn-plan-outline { background: transparent; border: 1px solid rgba(124,58,237,0.4); color: white; }
    .btn-plan-outline:hover { background: rgba(124,58,237,0.15); border-color: rgba(167,139,250,0.6); transform: translateY(-2px); }
    .btn-plan-solid { background: linear-gradient(135deg, #16a34a, #15803d); color: white; }
    .btn-plan-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,0.4); }
    .btn-plan-featured { background: white; color: #3b1579; }
    .btn-plan-featured:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

    .popular-float {
      position: absolute;
      top: -18px; left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      background: linear-gradient(135deg, var(--roxo-400), var(--accent));
      border-radius: 100px;
      padding: 6px 18px;
      display: flex; align-items: center; gap: 6px;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(109,40,217,0.5);
      animation: glowPulse 2.5s ease-in-out infinite;
    }

    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(109,40,217,0.5); }
      50% { box-shadow: 0 4px 30px rgba(167,139,250,0.8), 0 0 0 4px rgba(124,58,237,0.15); }
    }

    /* ===== STATS SECTION — REDESENHADA ===== */
    .stats-section {
      padding: 40px 0 100px;
      position: relative;
    }

    .stats-wrapper {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(124,58,237,0.2);
      background: rgba(255,255,255,0.015);
    }

    .stats-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(109,40,217,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 50%, rgba(168,85,247,0.08) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Top accent line */
    .stats-wrapper::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--roxo-400) 20%, var(--accent-bright) 50%, var(--roxo-400) 80%, transparent 100%);
    }

    .stats-inner {
      padding: 56px 48px;
      position: relative;
      z-index: 1;
    }

    /* Headline strip above the grid */
    .stats-headline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 48px;
    }

    .stats-headline-left h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      color: white;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .stats-headline-left p {
      color: rgba(255,255,255,0.45);
      font-size: 0.9rem;
    }

    .stats-live-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(74,222,128,0.08);
      border: 1px solid rgba(74,222,128,0.25);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 0.78rem;
      font-weight: 700;
      color: #4ade80;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .stats-live-badge .live-dot {
      width: 7px; height: 7px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(74,222,128,0.8);
      animation: pulse 2s ease-in-out infinite;
    }

    /* Main stats grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }

    .stat-item {
      position: relative;
      border-radius: 20px;
      padding: 32px 28px;
      border: 1px solid rgba(124,58,237,0.18);
      background: rgba(255,255,255,0.025);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      cursor: default;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--roxo-400), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .stat-item:hover {
      background: rgba(124,58,237,0.08);
      border-color: rgba(167,139,250,0.35);
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(109,40,217,0.2);
    }

    .stat-item:hover::before { transform: scaleX(1); }

    /* Featured large stat */
    .stat-item.stat-featured {
      grid-column: span 1;
      background: linear-gradient(160deg, rgba(109,40,217,0.35), rgba(59,21,121,0.5));
      border-color: rgba(167,139,250,0.35);
      box-shadow: 0 0 40px rgba(109,40,217,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .stat-item.stat-featured:hover {
      background: linear-gradient(160deg, rgba(109,40,217,0.5), rgba(59,21,121,0.7));
      box-shadow: 0 25px 60px rgba(109,40,217,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    }

    /* Wide item spans 2 cols */
    .stat-item.stat-wide {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .stat-wide-divider {
      width: 1px;
      height: 60px;
      background: rgba(124,58,237,0.25);
      flex-shrink: 0;
    }

    .stat-icon-ring {
      width: 52px; height: 52px;
      border-radius: 16px;
      background: rgba(124,58,237,0.18);
      border: 1px solid rgba(124,58,237,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-bottom: 16px;
    }

    .stat-item.stat-featured .stat-icon-ring {
      background: rgba(192,132,252,0.2);
      border-color: rgba(192,132,252,0.35);
    }

    .stat-value {
      font-family: 'Syne', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, white, var(--roxo-300));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-item.stat-featured .stat-value {
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      background: linear-gradient(135deg, white 20%, #c084fc 80%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    /* Featured number split: big number + suffix on separate line */
    .stat-value-split {
      display: flex;
      flex-direction: column;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-value-split .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.6rem, 4vw, 4rem);
      font-weight: 800;
      background: linear-gradient(135deg, white 20%, #c084fc 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .stat-value-split .stat-suffix-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      width: fit-content;
    }

    .stat-value-split .stat-suffix-badge span {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 800;
      color: #c084fc;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .stat-label {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.4;
    }

    .stat-sublabel {
      font-size: 0.72rem;
      color: rgba(167,139,250,0.6);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    /* Uptime bar visual */
    .uptime-bar-wrap {
      margin-top: 14px;
    }

    .uptime-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
    }

    .uptime-bar-track {
      height: 4px;
      background: rgba(255,255,255,0.08);
      border-radius: 100px;
      overflow: hidden;
    }

    .uptime-bar-fill {
      height: 100%;
      width: 0;
      border-radius: 100px;
      background: linear-gradient(90deg, #4ade80, #22c55e);
      transition: width 2s cubic-bezier(0.4,0,0.2,1);
    }

    .uptime-bar-fill.animate { width: 99.9%; }

    /* Bottom info strip */
    .stats-bottom-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
      padding-top: 28px;
      border-top: 1px solid rgba(124,58,237,0.15);
    }

    .strip-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(124,58,237,0.08);
      border: 1px solid rgba(124,58,237,0.2);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s ease;
    }

    .strip-pill:hover {
      background: rgba(124,58,237,0.15);
      color: white;
    }

    .strip-pill-icon {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-bright);
      flex-shrink: 0;
    }

    /* ===== CTA BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--roxo-400), var(--accent));
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent), var(--roxo-400)); opacity: 0; transition: opacity 0.3s ease; }
    .btn-primary:hover::before { opacity: 1; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(109, 40, 217, 0.5); }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.4);
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover { background: rgba(124, 58, 237, 0.25); border-color: rgba(167, 139, 250, 0.6); transform: translateY(-2px); }

    .btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: linear-gradient(135deg, #16a34a, #15803d); color: white; font-family: 'Syne', sans-serif; font-weight: 700; padding: 14px 24px; border-radius: 12px; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
    .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4); }

    /* ===== TESTIMONIALS ===== */
    .testimonial-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(124, 58, 237, 0.2); border-radius: 20px; padding: 28px; position: relative; transition: all 0.3s ease; }
    .testimonial-card:hover { background: rgba(124,58,237,0.07); border-color: rgba(167,139,250,0.35); transform: translateY(-4px); }
    .testimonial-card .quote-mark { position: absolute; top: 20px; right: 24px; font-size: 4rem; font-family: 'Syne', sans-serif; color: rgba(124,58,237,0.25); line-height: 1; }
    .stars { display: flex; gap: 4px; margin-bottom: 12px; }
    .star { color: #f59e0b; font-size: 1rem; }

    /* ===== FAQ ===== */
    .faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(124,58,237,0.2); border-radius: 14px; overflow: hidden; transition: border-color 0.3s ease; }
    .faq-item.open { border-color: rgba(167,139,250,0.4); }
    .faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; color: white; text-align: left; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; transition: color 0.2s ease; }
    .faq-trigger:hover { color: var(--roxo-300); }
    .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(124,58,237,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; color: var(--roxo-300); font-size: 1.2rem; }
    .faq-item.open .faq-icon { background: var(--roxo-400); color: white; transform: rotate(45deg); }
    .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .faq-content.open { max-height: 300px; }
    .faq-content p { padding: 0 24px 20px; color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }

    /* ===== PARTNERS ===== */
    .partners-track { display: flex; gap: 48px; align-items: center; animation: marquee 20s linear infinite; width: max-content; }
    .partners-track:hover { animation-play-state: paused; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .partner-logo { height: 40px; max-width: 120px; object-fit: contain; opacity: 0.6; filter: grayscale(100%) brightness(2); transition: all 0.3s ease; flex-shrink: 0; }
    .partner-logo:hover { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.1); }

    /* ===== CAROUSEL ===== */
    .carousel-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); border: 1px solid rgba(124,58,237,0.2); }

    /* ===== ENTERPRISE ===== */
    .enterprise-section-wrap { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid rgba(124,58,237,0.2); }
    .enterprise-section-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(109,40,217,0.18) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59,21,121,0.2) 0%, transparent 55%); pointer-events: none; }
    .enterprise-top-bar { background: linear-gradient(90deg, var(--roxo-600), rgba(59,21,121,0.9)); padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid rgba(124,58,237,0.3); }
    .enterprise-top-badge { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
    .enterprise-top-badge .dot-live { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.8); animation: pulse 2s ease-in-out infinite; }
    .enterprise-stat-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 6px 16px; }
    .enterprise-stat-pill strong { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 800; color: white; }
    .enterprise-stat-pill span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
    .enterprise-main-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
    .enterprise-content-pane { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
    .enterprise-image-pane { position: relative; min-height: 360px; overflow: hidden; }
    .enterprise-image-pane img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5; mix-blend-mode: luminosity; transition: opacity 0.4s ease; }
    .enterprise-image-pane:hover img { opacity: 0.65; }
    .enterprise-image-pane::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0d0520 0%, rgba(13,5,32,0.3) 60%, transparent 100%); z-index: 1; pointer-events: none; }
    .enterprise-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
    .ent-feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(124,58,237,0.18); border-radius: 16px; padding: 18px 20px; transition: all 0.3s ease; cursor: default; }
    .ent-feature-card:hover { background: rgba(124,58,237,0.1); border-color: rgba(167,139,250,0.35); transform: translateY(-3px); }
    .ent-feature-icon { width: 40px; height: 40px; background: linear-gradient(135deg, rgba(109,40,217,0.5), rgba(76,29,149,0.7)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 1px solid rgba(124,58,237,0.3); }
    .ent-feature-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 4px; }
    .ent-feature-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

    /* ===== APP SECTION ===== */
    .app-feature { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); border-radius: 12px; transition: all 0.2s ease; }
    .app-feature:hover { background: rgba(124,58,237,0.15); transform: translateX(4px); }
    .app-feature-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--roxo-400), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* ===== FLOATING ===== */
    .whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 50; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
    .whatsapp-btn { width: 56px; height: 56px; background: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(22,163,74,0.4); transition: all 0.3s ease; text-decoration: none; }
    .whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(22,163,74,0.6); }
    .back-top-btn { width: 44px; height: 44px; background: rgba(109,40,217,0.8); border: 1px solid rgba(167,139,250,0.3); backdrop-filter: blur(10px); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: white; }
    .back-top-btn.visible { display: flex; }
    .back-top-btn:hover { background: var(--roxo-400); transform: translateY(-2px); }

    /* ===== SPEEDTEST MODAL ===== */
    .speedtest-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 200; display: none; align-items: center; justify-content: center; }
    .speedtest-modal.open { display: flex; }

    /* ===== FOOTER ===== */
    .footer-section { background: rgba(255,255,255,0.02); border: 1px solid rgba(124,58,237,0.15); border-radius: 24px; margin: 0 auto; }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== MOBILE MENU ===== */
    .mobile-menu-overlay { position: fixed; inset: 0; background: rgba(14,5,32,0.95); backdrop-filter: blur(20px); z-index: 90; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
    .mobile-menu-overlay.open { display: flex; }
    .mobile-nav-link { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.7); text-decoration: none; padding: 12px 32px; border-radius: 12px; transition: all 0.2s ease; width: 280px; text-align: center; }
    .mobile-nav-link:hover { color: white; background: rgba(124,58,237,0.15); }

    /* ===== BENEFIT ICON ===== */
    .benefit-icon { width: 20px; height: 20px; flex-shrink: 0; }

    /* ===== CONTAINER ===== */
    .container { max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
    @media (max-width: 768px) { .container { padding-left: 1rem; padding-right: 1rem; } }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      #plansGrid { grid-template-columns: 1fr !important; border-radius: 20px !important; }
      .plan-card.card-left  { border-radius: 20px 20px 0 0 !important; }
      .plan-card.card-mid   { border-radius: 0 !important; }
      .plan-card.card-right { border-radius: 0 0 20px 20px !important; }
      .plan-wrapper.has-badge { padding-top: 32px; }
      .enterprise-main-grid { grid-template-columns: 1fr !important; }
      .enterprise-image-pane { min-height: 280px; }
      .enterprise-image-pane::before { background: linear-gradient(180deg, #0d0520 0%, transparent 40%, rgba(13,5,32,0.6) 100%); }
      .enterprise-features-grid { grid-template-columns: 1fr 1fr; }
      .enterprise-content-pane { padding: 36px 28px; }
      .stats-grid { grid-template-columns: 1fr 1fr !important; }
      .stat-item.stat-wide { grid-column: span 2; }
      .stat-item.stat-featured { grid-column: span 2; }
      .stats-inner { padding: 36px 24px; }
    }

    @media (max-width: 540px) {
      .stats-grid { grid-template-columns: 1fr !important; }
      .stat-item.stat-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 20px; }
      .stat-wide-divider { width: 40px; height: 1px; }
      .stat-item.stat-featured { grid-column: span 1; }
      .enterprise-features-grid { grid-template-columns: 1fr; }
      .enterprise-top-bar { flex-direction: column; align-items: flex-start; }
    }

    @media (min-width: 1024px) {
      .enterprise-main-grid { grid-template-columns: 1fr 1fr; }
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #0d0520; }
    ::-webkit-scrollbar-thumb { background: var(--roxo-600); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--roxo-400); }