/* ─────────────────────────────────────────────
   AdSenpai — Vibrant Cobalt Blue Dark Mode
   ───────────────────────────────────────────── */

/* Unified Font Overhaul to mirror Geometric Logo Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --cobalt: #1E4FFD;
  --cobalt-bright: #3D6BFF;
  --cobalt-glow: #2255FF;
  --cobalt-dim: #1338CC;
  --cobalt-pale: rgba(30, 79, 253, 0.12);
  --cobalt-border: rgba(61, 107, 255, 0.22);
  --bg-base: #060810;
  --bg-card: #0B0F1C;
  --bg-card2: #0F1427;
  --bg-border: rgba(255, 255, 255, 0.07);
  --txt-primary: #F0F4FF;
  --txt-secondary: #8B97BB;
  --txt-muted: #4A5578;
  --cyan: #00C8FF;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 4px 40px rgba(30, 79, 253, 0.18);
  --shadow-lg: 0 8px 80px rgba(30, 79, 253, 0.28);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.35s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-base);
  color: var(--txt-primary);
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* ── NEW: LOGO DEPTH STYLING ── */
.logo-depth-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;

  /* Pure, high-end depth shadows to make your white text and blue symbol pop */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0px 8px 20px rgba(30, 79, 253, 0.3)) drop-shadow(0px 16px 32px rgba(6, 8, 16, 0.6));

  transition: filter 0.4s ease;
}

.logo-depth-container:hover {
  transform: scale(1.04) translateY(-1px);
}

.logo-depth-container:hover .logo-img {
  /* Intensifies the neon blue ambient glow behind the logo on hover */
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0px 12px 28px rgba(61, 107, 255, 0.65)) drop-shadow(0px 20px 40px rgba(30, 79, 253, 0.45));
}

.footer-logo-wrap {
  margin-bottom: 8px;
}

.footer-logo-wrap .logo-img {
  height: 34px;
  /* Perfectly scaled down for the footer columns */
}

/* ── NEW: NATIVE BRAND COLOR ICON WRAPPERS ── */
.native-brand-icon {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.native-brand-icon svg {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.platform-card:hover .native-brand-icon svg {
  transform: scale(1.08) translateY(-2px);
}

/* Individual brand bloom properties on card highlights */
.platform-meta:hover .native-brand-icon svg {
  filter: drop-shadow(0 8px 25px rgba(24, 119, 242, 0.6));
}

.platform-tiktok:hover .native-brand-icon svg {
  filter: drop-shadow(0 8px 25px rgba(105, 201, 208, 0.45));
}

.platform-google:hover .native-brand-icon svg {
  filter: drop-shadow(0 8px 25px rgba(234, 67, 53, 0.4));
}

.platform-pinterest:hover .native-brand-icon svg {
  filter: drop-shadow(0 8px 25px rgba(230, 0, 35, 0.6));
}

.platform-snapchat:hover .native-brand-icon svg {
  filter: drop-shadow(0 8px 25px rgba(255, 252, 0, 0.5));
}

/* Ensure all interactive elements have pointer cursor */
a,
button,
[role="button"] {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── CONTAINER ── */
.container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  min-height: 44px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 0 24px rgba(30, 79, 253, 0.45);
}

.btn-primary:hover {
  background: var(--cobalt-bright);
  box-shadow: 0 0 40px rgba(30, 79, 253, 0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--txt-primary);
  border: 1.5px solid var(--cobalt-border);
}

.btn-ghost:hover {
  border-color: var(--cobalt-bright);
  color: var(--cobalt-bright);
  transform: translateY(-2px);
}

.btn-nav-glow {
  padding: 10px 20px !important; /* Kept compact to fit perfectly within the navbar rows */
  font-size: 0.85rem !important;
  background: var(--cobalt) !important; /* Inherits the exact background color as Chat Now[cite: 3] */
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(30, 79, 253, 0.5) !important; /* Initial baseline glow match[cite: 3] */
}

.btn-nav-glow:hover {
  background: var(--cobalt-bright) !important; /* High-contrast hover color match[cite: 3] */
  box-shadow: 0 8px 30px rgba(30, 79, 253, 0.7) !important; /* Deep ambient glow lift on hover[cite: 3] */
  transform: translateY(-2px);
}

.btn-nav:hover {
  background: var(--cobalt);
  color: #fff;
  border-color: var(--cobalt);
}

.btn-tg {
  background: rgba(30, 79, 253, 0.15);
  color: var(--cobalt-bright);
  border: 1.5px solid var(--cobalt-border);
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-tg:hover {
  background: var(--cobalt);
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cobalt-bright);
  border: 1px solid var(--cobalt-border);
  background: var(--cobalt-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--txt-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  max-width: min(560px, 100%);
  margin-bottom: 56px;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--cobalt-bright) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

.navbar.scrolled {
  background: rgba(6, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
}

.nav-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  margin-right: auto;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--txt-secondary);
  transition: color 0.25s, background 0.25s;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--txt-primary);
  background: rgba(255, 255, 255, 0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 79, 253, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 79, 253, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 79, 253, 0.25) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
  top: 20%;
  right: -100px;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 79, 253, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 79, 253, 0.12);
  border: 1px solid var(--cobalt-border);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cobalt-bright);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt-bright);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 107, 255, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(61, 107, 255, 0);
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  color: var(--txt-secondary);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  max-width: min(560px, 100%);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item>span:first-child,
.trust-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--txt-primary);
  display: inline;
}

.trust-num+span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--cobalt-bright);
}

.trust-item p {
  font-size: 0.78rem;
  color: var(--txt-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: var(--bg-border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--txt-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cobalt-bright), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.5);
  }
}

/* ──────────────────────────────────────────
   MARQUEE
────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  background: rgba(30, 79, 253, 0.04);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-secondary);
  white-space: nowrap;
}

.marquee-track .sep {
  color: var(--cobalt-bright);
}

/* ──────────────────────────────────────────
   PLATFORMS
────────────────────────────────────────── */
.platforms {
  padding: 120px 0;
}

.platforms .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.platform-card,
.feature-card,
.testi-card,
.price-card,
.stat-block,
.step-item {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cobalt-border), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.platform-card:hover {
  border-color: var(--cobalt-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--txt-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.platform-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-perks li {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--txt-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-perks li::before {
  content: '✓';
  color: var(--cobalt-bright);
  font-weight: 700;
  font-size: 0.8rem;
}

.platform-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cobalt);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ──────────────────────────────────────────
   FEATURES
────────────────────────────────────────── */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 79, 253, 0.03) 50%, transparent 100%);
}

.features .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  grid-column: span 4;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--cobalt-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feat-large {
  grid-column: span 8;
}

.feat-wide {
  grid-column: span 8;
}

.feat-dark {
  background: var(--bg-card2);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--txt-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.feat-shield {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--cobalt-border);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.ring-2 {
  width: 120px;
  height: 120px;
  animation-delay: 0.6s;
}

.ring-3 {
  width: 160px;
  height: 160px;
  animation-delay: 1.2s;
}

@keyframes ringPulse {

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

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

.shield-core {
  color: var(--cobalt-bright);
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 0 0 20px var(--cobalt);
  position: relative;
  z-index: 1;
}

.feat-bar-visual {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-bar {
  background: rgba(30, 79, 253, 0.1);
  border: 1px solid var(--cobalt-border);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.feat-bar::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: inherit;
  background: rgba(30, 79, 253, 0.12);
}

.feat-bar span {
  color: var(--txt-secondary);
}

.feat-bar strong {
  color: var(--cobalt-bright);
  font-weight: 700;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.payment-icons span {
  background: rgba(30, 79, 253, 0.1);
  border: 1px solid var(--cobalt-border);
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cobalt-bright);
}

/* ──────────────────────────────────────────
   STATS SECTION
────────────────────────────────────────── */
.stats-section {
  padding: 120px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30, 79, 253, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats-section .section-label,
.stats-section .section-title {
  align-self: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-border);
  margin-top: 60px;
}

.stat-block {
  background: var(--bg-card);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: background 0.3s;
}

.stat-block:hover {
  background: var(--bg-card2);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--cobalt-bright);
  line-height: 1;
}

.stat-num span:last-child {
  color: var(--txt-muted);
  font-size: 1.3rem;
}

.stat-block p {
  font-size: 0.85rem;
  color: var(--txt-secondary);
  line-height: 1.4;
  max-width: 160px;
}

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.how-it-works {
  padding: 40px 0 120px 0;
}

.how-it-works .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.steps-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 48px;
  border-bottom: 1px solid var(--bg-border);
  background: var(--bg-card);
  transition: background 0.3s;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item:hover {
  background: var(--bg-card2);
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cobalt-border);
  flex-shrink: 0;
  line-height: 1;
  width: 80px;
  transition: color 0.3s;
}

.step-item:hover .step-num {
  color: var(--cobalt-bright);
}

.step-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-body p {
  color: var(--txt-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.inline-link {
  color: var(--cobalt-bright);
  border-bottom: 1px solid var(--cobalt-border);
  transition: border-color 0.2s;
}

.inline-link:hover {
  border-color: var(--cobalt-bright);
}

/* ──────────────────────────────────────────
   PRICING
────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(30, 79, 253, 0.04), transparent);
}

.pricing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing .section-title,
.pricing .section-label,
.pricing .section-sub {
  align-self: center;
}

.pricing .section-sub {
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: left;
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.price-card:hover {
  border-color: var(--cobalt-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-featured {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 1px var(--cobalt), var(--shadow-lg);
  transform: scale(1.04);
}

.price-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cobalt);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--txt-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency {
  font-size: 1.5rem;
  color: var(--cobalt-bright);
}

.period {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--txt-muted);
  margin-left: 4px;
}

.price-desc {
  color: var(--txt-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cobalt-pale);
  border: 1px solid var(--cobalt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cobalt-bright);
}

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.testi-card:hover {
  border-color: var(--cobalt-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-stars {
  color: var(--cobalt-bright);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-card p {
  color: var(--txt-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cobalt-dim);
  border: 2px solid var(--cobalt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--txt-muted);
}

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq {
  padding: 120px 0;
}

.faq .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--cobalt-border);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--txt-primary);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
}

.faq-arrow {
  color: var(--cobalt-bright);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-answer.visible {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--txt-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   CTA SECTION
────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-border);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 79, 253, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 79, 253, 0.12);
  border: 1px solid var(--cobalt-border);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt-bright);
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-sub {
  color: var(--txt-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  max-width: 560px;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--bg-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--txt-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}

.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  transition: color 0.2s;
  padding: 4px 0;
  display: inline-block;
}

.footer-links-col a:hover {
  color: var(--cobalt-bright);
}

.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--txt-muted);
}

/* ──────────────────────────────────────────
   FLOATING TG BUTTON
────────────────────────────────────────── */
.float-tg {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cobalt);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 30px rgba(30, 79, 253, 0.5);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  touch-action: manipulation;
  min-height: 52px;
}

.float-tg:hover {
  background: var(--cobalt-bright);
  box-shadow: 0 8px 50px rgba(30, 79, 253, 0.7);
  transform: translateY(-3px) scale(1.03);
}

/* ──────────────────────────────────────────
   FLOATING SOCIAL LOGOS
────────────────────────────────────────── */
.floating-socials {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

.float-logo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  opacity: 0.65;
  filter: blur(0.5px);
  pointer-events: auto;
  will-change: transform, opacity;
  animation: floatDrift 12s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.float-logo svg {
  width: 100%;
  height: 100%;
}

@keyframes floatDrift {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-18px) rotate(3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }

  75% {
    transform: translateY(-22px) rotate(2deg);
  }

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

.float-logo-meta {
  animation-duration: 14s;
}

.float-logo-insta {
  animation-duration: 11s;
}

.float-logo-snap {
  animation-duration: 16s;
}

.float-logo-tiktok {
  animation-duration: 10s;
}

.float-logo-pinterest {
  animation-duration: 18s;
}

.float-logo-google {
  animation-duration: 13s;
}

.float-logo-x {
  animation-duration: 15s;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

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

/* ──────────────────────────────────────────
   MOBILE MENU
────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;[cite: 3]
    background: rgba(6,8,16,0.98);[cite: 3]
    backdrop-filter: blur(20px);[cite: 3]
    -webkit-backdrop-filter: blur(20px);[cite: 3]
    flex-direction: column;[cite: 3]
    align-items: center; justify-content: center;[cite: 3]
    gap: 8px;[cite: 3]
    transform: translateX(100%);[cite: 3]
    transition: transform 0.4s var(--ease);[cite: 3]
    z-index: 999;[cite: 3]
    
    /* CRITICAL ANDROID FIX: Stops the hidden mobile menu from swallowing touches when closed */
    pointer-events: none; 
    visibility: hidden;
  }
  
  /* Restores touch accessibility instantly when the menu class is toggled open via javascript */
  .nav-links.open { 
    transform: translateX(0);[cite: 3]
    pointer-events: auto;
    visibility: visible;
  }
  
  .nav-links a {
    font-size: 1.5rem; font-weight: 700;[cite: 3]
    padding: 18px 40px;[cite: 3]
    font-family: 'Montserrat', sans-serif;
    min-height: 48px; /* Ensures spacious target bounds for touch gestures */
  }
  .hamburger { display: flex; z-index: 1001; position: relative; }[cite: 3]
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }[cite: 3]
  .hamburger.open span:nth-child(2) { opacity: 0; }[cite: 3]
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }[cite: 3]
  .btn-nav { display: none; }[cite: 3]
}

/* ──────────────────────────────────────────
   ADDITIONAL ANDROID EXTRA OVERLAY ISOLATION
────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Forces the invisible background canvas layer to scale strictly inside the hero and footer views */
  .floating-socials {
    height: 100%;
    max-height: 100vh;
    display: block;
    z-index: 0 !important; /* Lowers the stack below footer text elements permanently */
  }
}

/* ──────────────────────────────────────────
   RESPONSIVE LAYOUT BREAKPOINTS
────────────────────────────────────────── */
@media (min-width: 1400px) {
  .platforms-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: min(92%, 1700px);
  }

  .nav-inner {
    max-width: min(92%, 1700px);
  }
}

@media (min-width: 2200px) {
  .container {
    max-width: min(90%, 2100px);
  }

  .nav-inner {
    max-width: min(90%, 2100px);
  }

  .platforms-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1399px) and (min-width: 1025px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    grid-column: span 1;
  }

  .feat-large,
  .feat-wide {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid .testi-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .price-featured {
    transform: none;
  }

  .price-featured:hover {
    transform: translateY(-6px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0 !important;
  }
  
  .stats-section { padding: 72px 0 20px 0 !important; }
  .how-it-works  { padding: 20px 0 72px 0 !important; }

  .hero {
    padding: 100px 0 60px !important;
    min-height: 100svh;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .platform-card {
    padding: 24px 20px;
  }

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

  .feature-card {
    grid-column: span 1;
  }

  .feat-large,
  .feat-wide {
    grid-column: span 1;
  }

  .feat-shield {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block {
    padding: 32px 16px;
  }

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

  .testi-grid .testi-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .step-item {
    padding: 24px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .step-num {
    font-size: 2rem;
    width: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .float-tg {
    bottom: 20px;
    right: 16px;
  }

  .float-logo {
    width: 36px;
    height: 36px;
  }

  .hero-trust {
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-glow-1 {
    width: 300px;
    height: 300px;
    left: -80px;
  }

  .hero-glow-2 {
    width: 250px;
    height: 250px;
    right: -60px;
  }

  .hero-glow-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;
  }

  html {
    font-size: 15px;
  }

  .container {
    width: 100%;
  }

  section {
    padding: 60px 0 !important;
  }
  
  .stats-section { padding: 60px 0 15px 0 !important; }
  .how-it-works  { padding: 15px 0 60px 0 !important; }

  .hero {
    padding: 88px 0 52px !important;
    min-height: 100svh;
  }

  .hero-glow-1 {
    width: 240px;
    height: 240px;
    left: -60px;
    top: -60px;
  }

  .hero-glow-2 {
    width: 200px;
    height: 200px;
    right: -50px;
  }

  .hero-glow-3 {
    display: none;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    gap: 2px;
  }

  .hero-sub {
    font-size: 0.93rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    align-items: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .platform-card {
    padding: 22px 18px;
  }

  .platform-card h3 {
    font-size: 1.05rem;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }

  .feat-shield {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-block {
    padding: 24px 10px;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .stat-num span:last-child {
    font-size: 1rem;
  }

  .stat-block p {
    font-size: 0.76rem;
  }

  .steps-list {
    border-radius: var(--radius-lg);
  }

  .step-item {
    padding: 20px 16px;
    gap: 10px;
  }

  .step-num {
    font-size: 1.7rem;
  }

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

  .testi-card {
    padding: 22px 18px;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .price-card {
    padding: 28px 20px;
  }

  .price-featured {
    transform: none;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 18px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-tg span {
    display: none;
  }

  .float-tg {
    padding: 14px;
    border-radius: 50%;
    bottom: 16px;
    right: 14px;
    min-height: 52px;
    min-width: 52px;
    justify-content: center;
  }

  .float-logo {
    width: 28px;
    height: 28px;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .cta-section {
    padding: 64px 0 !important;
  }

  .cta-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .cta-sub {
    font-size: 0.9rem;
  }

  .marquee-track span {
    font-size: 0.78rem;
  }

  .noise-overlay {
    width: 100vw;
  }
}

@media (hover: none) and (pointer: coarse) {

  .platform-card:hover,
  .feature-card:hover,
  .testi-card:hover,
  .price-card:hover {
    transform: none;
    box-shadow: none;
  }

  .platform-card:active,
  .feature-card:active,
  .testi-card:active {
    border-color: var(--cobalt-border);
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    opacity: 0.85;
  }

  * {
    touch-action: manipulation;
  }

  .nav-links a,
  .faq-question,
  .btn {
    min-height: 48px;
  }
}