
 * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: #1a1a1a; }
  .site { font-family: 'Segoe UI', sans-serif; background: #1a1a1a; color: #fff; min-height: 100vh; }

  /* FIXED FULL-PAGE BACKGROUND LOGO */
  .page-bg-logo {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
  }
  .page-bg-logo img {
    width: min(900px, 100vw);
    height: min(800px, 100vw);
    object-fit: contain;
    opacity: 0.02;
    filter: grayscale(100%) brightness(4);
    transition: opacity 0.6s ease;
  }
  .site { position: relative; z-index: 1; }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    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; }

  /* NAV */
  .nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px; border-bottom: 1px solid #222; background: rgba(26,26,26,0.92); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
  .nav-brand { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
  .nav-brand span { color: #c0c0c0; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: #aaa; font-size: 14px; text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta { background: linear-gradient(135deg, #9d711e, #0b0b0b); color: #000; border: none; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
  .nav-cta:hover { background: linear-gradient(135deg, #fff, #aaa); }

  /* HERO */
  .hero {
    text-align: center;
    padding: 90px 60px 70px;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
  }
  .hero-bg-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
  }
  .hero-bg-logo img {
    width: min(700px, 110vw);
    height: min(800px, 110vw);
    object-fit: contain;
    opacity: 0.18;
    filter: grayscale(100%) brightness(3);
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 70%),
      radial-gradient(ellipse 40% 30% at 50% 0%, rgba(180,180,180,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero > *:not(.hero-bg-logo) { position: relative; z-index: 2; }
  .hero-badge { display: inline-block; background: rgba(200,200,200,0.12); border: 1px solid rgba(200,200,200,0.3); color: #ccc; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 28px; }
  .hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
  .hero h1 span { color: #c8c8c8; text-shadow: 0 0 30px rgba(255,255,255,0.2); }
  .hero p { font-size: 17px; color: #888; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-gold { background: linear-gradient(135deg, #9d711e, #090909); color: #000; border: none; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
  .btn-gold:hover { background: linear-gradient(135deg, #fff, #aaa); transform: translateY(-1px); }
  .btn-outline { background: linear-gradient(135deg, #9d711e, #121212); color: #000; border: none; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
  .btn-outline:hover { border-color: #888; }

  /* STATS */
  .stats { display: flex; justify-content: center; gap: 0; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; background: #181818; }
  .stat { text-align: center; padding: 28px 48px; border-right: 1px solid #1a1a1a; }
  .stat:last-child { border-right: none; }
  .stat-num { font-size: 28px; font-weight: 800; color: #c0c0c0; }
  .stat-label { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

  /* SECTION */
  .section { padding: 70px 40px; max-width: 1100px; margin: 0 auto; }
  .section-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 10px; }
  .section-title span { color: #c0c0c0; }
  .section-sub { text-align: center; color: #666; font-size: 15px; margin-bottom: 52px; }
/* ── SPLIT PLATFORM SECTION ── */
    .platform-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .platform-side {
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
    }

    /* INSTAGRAM */
    .platform-side.ig-side {
      background: rgba(52, 50, 50, 0.06);
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .platform-side.ig-side::before {
      content: '';
      position: absolute;
      top: -100px; left: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
      pointer-events: none;
    }
    .platform-side.ig-side::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    /* TIKTOK */
    .platform-side.tt-side {
      background: rgba(52,50,50,0.06);
    }
    .platform-side.tt-side::before {
      content: '';
      position: absolute;
      top: -100px; right: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(52,50,50,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .platform-side.tt-side::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(52,50,50,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* platform header */
    .platform-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
    .platform-icon-wrap {
      width: 48px; height: 48px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 24px;
    }
    .ig-icon-wrap {
      background: radial-gradient(circle at 30% 107%, #3f3f3f 0%, #3f3f3e 5%, #3f3f3f 45%, #3f3f3f 60%, #3f3f3f 90%);
    }
    .tt-icon-wrap {
      background: #111;
      border: 1px solid #0a0909;
    }
    .platform-header-text h2 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin: 0 0 2px;
    }
    .platform-header-text p {
      font-size: 12px;
      color: rgba(255,255,255,0.1);
      margin: 0;
      letter-spacing: 0.04em;
    }

    /* cards inside split */
    .platform-side .bundles {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      z-index: 1;
    }
    .platform-side .bundle-card {
      background: rgba(52,50,50,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 22px 24px;
      position: relative;
    }
    .platform-side .bundle-card.featured {
      border-color: rgba(255,255,255,0.1);
    }
    .platform-side .bundle-name { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    .platform-side .bundle-tagline { font-size: 11px; color: rgba(234, 224, 224, 0.951); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
    .platform-side .bundle-price { font-size: 36px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 2px; }
    .platform-side .bundle-price sup { font-size: 18px; font-weight: 400; vertical-align: super; }
    .platform-side .bundle-period { font-size: 12px; color: rgb(243, 236, 236); margin-bottom: 14px; }
    .platform-side .bundle-divider { border: none; border-top: 1px solid rgb(252, 248, 248); margin: 14px 0; }
    .platform-side .bundle-features { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
    .platform-side .bundle-features li { font-size: 13px; color: rgb(242, 237, 237); display: flex; align-items: center; gap: 8px; }

    /* IG dot */
    .ig-side .bundle-features li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    /* TT dot */
    .tt-side .bundle-features li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #2c2d2d;
      flex-shrink: 0;
    }

    /* buttons inside split */
    .platform-side .bundle-btn {
      width: 100%;
      padding: 11px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      letter-spacing: 0.04em;
    }
    .ig-side .bundle-btn-outline {
      background: linear-gradient(90deg, rgba(240, 165, 24, 0.539), #0c0c0c);
      border: 1px solid rgba(240,165,24,0.539);
      color: #fff;
    }
    .ig-side .bundle-btn-gold {
      background: linear-gradient(90deg, rgba(240, 165, 24, 0.539), #0c0c0c);
      color: #fff;
    }
    .tt-side .bundle-btn-outline {
      background: transparent;
      border: 1px solid rgba(240,165,24,0.3);
      color: #0b0b0b;
    }
    .tt-side .bundle-btn-gold {
      background: rgba(240,165,24,0.3);
      color: #000;
    }

    /* featured badge */
    .platform-side .featured-badge {
      position: absolute;
      top: -1px; right: 16px;
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.7);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 0 0 8px 8px;
    }

    /* empty placeholder */
    .tt-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px;
      gap: 12px;
      opacity: 0.3;
      position: relative;
      z-index: 1;
    }
    .tt-empty-icon { font-size: 40px; }
    .tt-empty-text { font-size: 13px; color: rgb(247, 246, 246); text-align: center; letter-spacing: 0.04em; line-height: 1.6; }
  /* BUNDLES */
  .bundles { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .bundle-card { background: #1e1e1e; border: 1px solid #222; border-radius: 16px; padding: 28px 24px; transition: all 0.25s; position: relative; }
  .bundle-card:hover { border-color: #888; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(180,180,180,0.08); }
  .bundle-card.featured { border-color: #aaa; background: #1e1e1e; }
  .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #e0e0e0, #888); color: #000; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; padding: 4px 16px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; }
  .bundle-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
  .bundle-tagline { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
  .bundle-price { font-size: 42px; font-weight: 900; color: #c8c8c8; line-height: 1; }
  .bundle-price sup { font-size: 22px; vertical-align: super; }
  .bundle-period { font-size: 13px; color: #555; margin-bottom: 24px; }
  .bundle-divider { border: none; border-top: 1px solid #222; margin: 20px 0; }
  .bundle-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .bundle-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ccc; }
  .feat-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
  .icon-follow { background: rgba(55,138,221,0.2); color: #378add; }
  .icon-like { background: rgba(212,83,126,0.2); color: #d4537e; }
  .icon-view { background: rgba(99,153,34,0.2); color: #639922; }
  .icon-comment { background: rgba(29,158,117,0.2); color: #1d9e75; }
  .icon-star { background: rgba(200,200,200,0.15); color: #ccc; }
  .bundle-btn { width: 100%; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; }
  .bundle-btn-gold { background: linear-gradient(135deg, #e0e0e0, #888); color: #000; }
  .bundle-btn-gold:hover { background: linear-gradient(135deg, #fff, #aaa); }
  .bundle-btn-outline { background: transparent; color: #c0c0c0; border: 1px solid #666; }
  .bundle-btn-outline:hover { background: rgba(200,200,200,0.08); border-color: #aaa; }

  /* HOW IT WORKS */
  .how-section { background: #181818; padding: 80px 40px; position: relative; overflow: hidden; }
  .how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--logo-bg);
    background-repeat: no-repeat;
    background-position: center;
	width: min(1600px, 100vw);
    height: min(400px, 100vw);
    background-size: 400px;
    opacity: 0.05;
    filter: grayscale(100%) brightness();
    pointer-events: none;
  }
  .how-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; }
  .step { text-align: center; }
  .step-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,200,200,0.1); border: 2px solid rgba(200,200,200,0.3); color: #c0c0c0; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .step p { font-size: 13px; color: #666; line-height: 1.6; }

  /* CONTACT */
  .contact-section { text-align: center; padding: 70px 40px; max-width: 700px; margin: 0 auto; }
  .contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
  .contact-card { background: #1e1e1e; border: 1px solid #222; border-radius: 14px; padding: 24px 32px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 200px; text-decoration: none; transition: all 0.2s; }
  .contact-card:hover { border-color: #888; transform: translateY(-3px); }
  .contact-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .wa-icon { background: rgba(37,211,102,0.15); }
  .ig-icon { background: rgba(192,96,160,0.15); }
  .contact-label { font-size: 15px; font-weight: 700; color: #fff; }
  .contact-sub { font-size: 12px; color: #555; }

  /* FOOTER */
  .footer { border-top: 1px solid #2a2a2a; padding: 28px 40px; text-align: center; color: #333; font-size: 13px; position: relative; overflow: hidden; }
  .footer span { color: #c0c0c0; }

/* Fix navbar on mobile */
@media screen and (max-width: 768px) {
	.platform-tab {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
  }

  .platform-tab h2 {
    font-size: 16px !important;
    white-space: nowrap !important;
  }

  .platform-tab p {
    font-size: 12px !important;
  }
  nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    flex-wrap: nowrap !important;
  }

  .nav-links {
    display: none !important; /* Hide middle links on mobile */
  }

  .nav-logo {
    flex-shrink: 0 !important;
  }

  .nav-cta {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
  }
	.platform-split {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* 2 equal columns */
    width: 100% !important;
    gap: 10px !important;
  }

  .platform-side {
    width: 100% !important;
    padding: 12px 8px !important;
    box-sizing: border-box !important;
  }

  .card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fix tab headers so text doesn't get cut */
  .platform-tab h2 {
    font-size: 13px !important;
  }
	 .steps-container,
  .how-it-works-steps,
  .steps {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .step,
  .step-item,
  .how-step {
    flex: 1 !important;
    text-align: center !important;
    padding: 8px 4px !important;
  }

  .step p,
  .step-item p,
  .how-step p {
    font-size: 11px !important;
  }

  .step h3,
  .step-item h3,
  .how-step h3 {
    font-size: 12px !important;
  }
	
}
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site, #main-site {
  width: 100% !important;
  max-width: 100% !important;
}

/* Fix stats row */
.stats, .stats-row, .stats-container {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  justify-content: space-around !important;
}
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site, #main-site {
  width: 100% !important;
  max-width: 100% !important;
}

/* Fix stats row */
.stats, .stats-row, .stats-container {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  justify-content: space-around !important;
}

