/* ============================================
   Talero — Premium Landing Page v3
   Wow-level design with gradient orbs, 
   SVG icons, and premium micro-interactions
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand Blue (distinctly blue, subtle indigo undertone) */
  --b-50: #EEF4FF;
  --b-100: #D9E5FF;
  --b-200: #BCCFFF;
  --b-300: #8DB0FF;
  --b-400: #5A8AF5;
  --b-500: #3B6EF0;
  --b-600: #2555DB;
  --b-700: #1E44B8;
  --b-800: #1D3A96;
  --b-900: #1D3476;

  /* Neutrals */
  --n-0: #FFFFFF;
  --n-25: #FCFCFD;
  --n-50: #F8FAFB;
  --n-100: #F1F3F6;
  --n-150: #E8EAED;
  --n-200: #DFE2E6;
  --n-300: #C2C6CC;
  --n-400: #9CA1AA;
  --n-500: #6E7480;
  --n-600: #535860;
  --n-700: #3B3F47;
  --n-800: #272A30;
  --n-900: #171A1F;
  --n-950: #0D0F12;

  --success: #10B981;
  --s-light: #ECFDF5;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1180px;
  --narrow: 720px;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px; --r-full: 9999px;
  --sh-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --sh-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --sh-xl: 0 24px 64px rgba(0,0,0,0.1);
  --sh-brand: 0 4px 20px rgba(59,110,240,0.3);
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-smooth: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--n-900); background: var(--n-0); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Utils ── */
.w { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.w-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 24px; }


/* ══════════════════════════════════════
   GRADIENT ORB BACKGROUNDS
   Reusable glow effects for wow factor
   ══════════════════════════════════════ */
.glow { position: relative; overflow: hidden; }
.glow::before,
.glow::after {
  content: ''; position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(100px); opacity: 0.5;
}
.glow::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,110,240,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.glow::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,110,240,0.08) 0%, transparent 70%);
  bottom: -150px; right: -100px;
}

/* Alt glow positions */
.glow-r::before { left: auto; right: -100px; }
.glow-center::before { left: 50%; transform: translateX(-50%); top: -100px; }

/* Subtle mesh for hero */
.mesh { position: relative; }
.mesh::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 30% -10%, rgba(59,110,240,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(59,110,240,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 95% 20%, rgba(139,92,246,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}


/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.9375rem; border-radius: var(--r-md);
  transition: all var(--t-fast); white-space: nowrap; cursor: pointer;
}
.btn-brand {
  padding: 13px 28px; background: var(--b-500); color: var(--n-0);
  box-shadow: var(--sh-brand);
}
.btn-brand:hover { background: var(--b-600); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(59,110,240,0.4); }
.btn-outline {
  padding: 13px 28px; background: var(--n-0); color: var(--n-800);
  border: 1.5px solid var(--n-200);
}
.btn-outline:hover { border-color: var(--n-300); background: var(--n-50); }
.btn-ghost { padding: 10px 18px; color: var(--n-500); }
.btn-ghost:hover { color: var(--n-800); }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 20px; font-size: 0.8125rem; }
.btn-white {
  padding: 16px 40px; background: var(--n-0); color: var(--b-600);
  font-weight: 700; font-size: 1.0625rem; border-radius: var(--r-lg);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }


/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo { font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em; color: var(--n-900); }
.nav-logo span { color: var(--b-500); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--n-500); border-radius: var(--r-md); transition: all var(--t-fast);
}
.nav-link:hover { color: var(--n-800); background: var(--n-50); }
.nav-link.active { color: var(--b-600); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-login { padding: 8px 14px; font-size: 0.875rem; font-weight: 500; color: var(--n-500); }
.nav-login:hover { color: var(--n-800); }
.mob-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mob-btn span { display: block; width: 20px; height: 2px; background: var(--n-800); border-radius: 2px; transition: all var(--t-fast); }
.mob-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--n-0); border-bottom: 1px solid var(--n-150);
  box-shadow: var(--sh-lg); padding: 12px 24px 24px; z-index: 999;
}
.mob-menu.open { display: block; }
.mob-menu a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; color: var(--n-800); border-bottom: 1px solid var(--n-100); }
.mob-menu a:last-child { border-bottom: none; }
.mob-menu .btn-brand { width: 100%; margin-top: 16px; text-align: center; }


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 6px;
  background: var(--n-0); border: 1px solid var(--n-200);
  border-radius: var(--r-full);
  font-size: 0.8125rem; font-weight: 500; color: var(--n-600);
  margin-bottom: 24px; box-shadow: var(--sh-sm);
}
.hero-tag-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--b-50); display: flex; align-items: center; justify-content: center;
}
.hero-tag-dot svg { width: 14px; height: 14px; color: var(--b-500); }

.hero h1 {
  font-size: 3.75rem; font-weight: 900;
  line-height: 1.06; letter-spacing: -0.04em;
  color: var(--n-950); margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--b-500), var(--b-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.1875rem; line-height: 1.7;
  color: var(--n-500); margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-note { font-size: 0.8125rem; color: var(--n-400); }

.hero-visual { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-xl); }
.hero-visual img { width: 100%; height: auto; display: block; }

/* Floating glow behind hero image */
.hero-visual::before {
  content: ''; position: absolute; top: -30%; left: -20%; width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(59,110,240,0.15) 0%, transparent 60%);
  z-index: -1; filter: blur(60px);
}


/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.trust { padding: 56px 0; border-bottom: 1px solid var(--n-100); }
.trust-inner { text-align: center; }
.trust p { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--n-400); margin-bottom: 24px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; background: var(--n-50);
  border-radius: var(--r-full); border: 1px solid var(--n-150);
  font-size: 0.8125rem; font-weight: 600; color: var(--n-600);
}
.trust-pill .tp-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-pill .tp-icon svg { width: 16px; height: 16px; }
.tp-green { background: var(--s-light); color: var(--success); }
.tp-blue { background: var(--b-50); color: var(--b-500); }


/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.sec { padding: 128px 0; }
.sec-soft { background: var(--n-50); }

.sec-head { text-align: center; margin-bottom: 64px; }
.sec-tag {
  display: inline-block; padding: 5px 14px; border-radius: var(--r-full);
  background: var(--b-50); color: var(--b-600);
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.sec-title {
  font-size: 2.75rem; font-weight: 800;
  line-height: 1.12; letter-spacing: -0.035em;
  color: var(--n-950); margin-bottom: 16px;
}
.sec-sub {
  font-size: 1.125rem; color: var(--n-500);
  max-width: 540px; margin: 0 auto; line-height: 1.7;
}


/* ══════════════════════════════════════
   BENTO FEATURES — enhanced wow cards
   ══════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
  background: var(--n-0);
  border: 1px solid var(--n-150);
  border-radius: var(--r-xl); padding: 40px 32px;
  transition: all var(--t-smooth); position: relative; overflow: hidden;
}

/* Gradient accent top bar */
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--b-300), var(--b-500), var(--b-600));
  background-size: 200% 100%;
  opacity: 0; transition: opacity var(--t-base);
}

/* Subtle shimmer glow on hover */
.bento-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,110,240,0.04), transparent);
  transition: none; pointer-events: none;
}
.bento-card:hover::after {
  animation: card-shimmer 0.8s ease forwards;
}
@keyframes card-shimmer {
  to { left: 150%; }
}

.bento-card:hover {
  border-color: var(--b-200);
  box-shadow: 0 8px 30px rgba(59,110,240,0.1), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-6px);
}
.bento-card:hover::before { opacity: 1; animation: gradient-slide 2s linear infinite; }
@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.bento-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--b-50), var(--b-100));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all var(--t-smooth);
}
.bento-card:hover .bento-icon {
  background: linear-gradient(135deg, var(--b-100), var(--b-200));
  transform: scale(1.08);
}
.bento-icon svg { width: 24px; height: 24px; color: var(--b-500); }

.bento-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--n-900); }
.bento-card p { font-size: 0.875rem; color: var(--n-500); line-height: 1.7; }

/* Staggered reveal for bento cards */
.bento-card:nth-child(1) { transition-delay: 0ms; }
.bento-card:nth-child(2) { transition-delay: 80ms; }
.bento-card:nth-child(3) { transition-delay: 160ms; }
.bento-card:nth-child(4) { transition-delay: 240ms; }
.bento-card:nth-child(5) { transition-delay: 320ms; }
.bento-card:nth-child(6) { transition-delay: 400ms; }


/* ══════════════════════════════════════
   SPLIT SECTIONS
   ══════════════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split.flip > .split-img { order: 2; }
.split.flip > .split-txt { order: 1; }

.split-img { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.split-img img { width: 100%; height: auto; display: block; }

.split-txt h2 {
  font-size: 2.375rem; font-weight: 800;
  line-height: 1.14; letter-spacing: -0.03em;
  color: var(--n-950); margin-bottom: 18px;
}
.split-txt > p { font-size: 1rem; color: var(--n-500); line-height: 1.75; margin-bottom: 20px; }

.ck-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ck-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: var(--n-700); }
.ck-list .ck {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--s-light); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ck-list .ck svg { width: 13px; height: 13px; }


/* ══════════════════════════════════════
   COMPETITOR COMPARISON
   ══════════════════════════════════════ */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.compare-card {
  border-radius: var(--r-xl); padding: 40px 28px; text-align: center;
  border: 1px solid var(--n-200); background: var(--n-0); transition: all var(--t-smooth);
}
.compare-card.hero-card {
  background: linear-gradient(135deg, var(--b-500), var(--b-600));
  color: var(--n-0); border-color: transparent;
  box-shadow: var(--sh-brand); transform: scale(1.05);
}
.compare-name { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; opacity: 0.6; }
.compare-price { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.compare-card:not(.hero-card) .compare-price { color: var(--n-400); text-decoration: line-through; text-decoration-color: var(--n-300); }
.compare-per { font-size: 0.75rem; opacity: 0.5; margin-bottom: 20px; }
.compare-desc { font-size: 0.875rem; line-height: 1.65; opacity: 0.85; }


/* ══════════════════════════════════════
   SWITCH SECTION
   ══════════════════════════════════════ */
.switch-card {
  background: linear-gradient(135deg, var(--n-950), var(--n-800));
  border-radius: var(--r-2xl); padding: 64px;
  color: var(--n-0); position: relative; overflow: hidden;
  max-width: 960px; margin: 0 auto;
}
.switch-card::before {
  content: ''; position: absolute;
  top: -50%; right: -30%; width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(59,110,240,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.switch-card::after {
  content: ''; position: absolute;
  bottom: -40%; left: -20%; width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.switch-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.switch-txt h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.switch-txt p { font-size: 1rem; opacity: 0.7; line-height: 1.7; margin-bottom: 28px; }

.switch-steps { display: flex; flex-direction: column; gap: 20px; }
.switch-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 20px;
}
.switch-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--b-500); color: var(--n-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700; flex-shrink: 0;
}
.switch-step h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.switch-step p { font-size: 0.8125rem; opacity: 0.6; margin: 0; line-height: 1.55; }


/* ══════════════════════════════════════
   SOCIAL PROOF — Draggable Carousel
   ══════════════════════════════════════ */
.carousel-wrap { position: relative; max-width: 1060px; margin: 0 auto; }
.carousel-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none; cursor: grab;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }

.proof-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--n-0); border: 1px solid var(--n-150);
  border-radius: var(--r-xl); padding: 36px;
  transition: all var(--t-smooth);
  user-select: none;
}
.proof-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.proof-stars { margin-bottom: 16px; display: flex; gap: 3px; }
.proof-stars svg { width: 18px; height: 18px; color: #F59E0B; fill: #F59E0B; }
.proof-card > p { font-size: 0.9375rem; color: var(--n-600); line-height: 1.75; margin-bottom: 24px; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--b-100), var(--b-200));
  color: var(--b-600); display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700;
}
.proof-name { font-size: 0.875rem; font-weight: 600; color: var(--n-800); }
.proof-role { font-size: 0.75rem; color: var(--n-400); }

/* Carousel nav dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--n-200); border: none; cursor: pointer;
  transition: all var(--t-fast); padding: 0;
}
.carousel-dot.active {
  background: var(--b-500); width: 24px; border-radius: 4px;
}

/* Carousel arrows */
.carousel-arrows {
  position: absolute; top: 50%; left: -16px; right: -16px;
  display: flex; justify-content: space-between;
  pointer-events: none; transform: translateY(-50%);
}
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--n-0); border: 1px solid var(--n-200);
  box-shadow: var(--sh-sm); display: flex; align-items: center;
  justify-content: center; pointer-events: all; cursor: pointer;
  transition: all var(--t-fast); color: var(--n-500);
}
.carousel-arrow:hover {
  box-shadow: var(--sh-md); border-color: var(--b-200); color: var(--b-500);
}
.carousel-arrow svg { width: 18px; height: 18px; }


/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 780px; margin: 0 auto; }
.price-card {
  border: 1.5px solid var(--n-200); border-radius: var(--r-xl);
  padding: 44px 36px; background: var(--n-0); position: relative; transition: all var(--t-smooth);
}
.price-card:hover { box-shadow: var(--sh-lg); }
.price-card.pop { border-color: var(--b-500); box-shadow: 0 0 0 1px var(--b-500), var(--sh-brand); }
.price-pop-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--b-500), var(--b-600));
  color: var(--n-0); padding: 4px 18px; border-radius: var(--r-full);
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.price-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.price-desc { font-size: 0.8125rem; color: var(--n-400); margin-bottom: 28px; }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amount { font-size: 3.25rem; font-weight: 900; letter-spacing: -0.04em; color: var(--n-950); }
.price-cur { font-size: 1rem; font-weight: 600; color: var(--n-500); }
.price-period { font-size: 0.75rem; color: var(--n-400); margin-bottom: 32px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pf { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--n-600); }
.pf .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--s-light); color: var(--success);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pf .ck svg { width: 11px; height: 11px; }
.pf .no {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--n-100); color: var(--n-300);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.6rem;
}
.price-card .btn { width: 100%; }


/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--n-950) 0%, #1a1e2e 50%, #161a2d 100%);
  color: var(--n-0);
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -60%; right: -15%; width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(59,110,240,0.18) 0%, transparent 50%);
  pointer-events: none; animation: orb-float 12s ease-in-out infinite;
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -60%; left: -10%; width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 50%);
  pointer-events: none; animation: orb-float 15s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(15px); }
}

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: 2.75rem; font-weight: 900;
  line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 16px;
}
.cta-inner p { font-size: 1.125rem; opacity: 0.6; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; }


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.foot { background: var(--n-950); color: var(--n-400); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand h3 { font-size: 1.375rem; font-weight: 800; color: var(--n-0); letter-spacing: -0.03em; margin-bottom: 10px; }
.foot-brand h3 span { color: var(--b-400); }
.foot-brand p { font-size: 0.8125rem; line-height: 1.7; color: var(--n-500); max-width: 280px; }
.foot-col h4 { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--n-300); margin-bottom: 18px; }
.foot-col a { display: block; padding: 3px 0; font-size: 0.8125rem; color: var(--n-500); transition: color var(--t-fast); }
.foot-col a:hover { color: var(--n-0); }
.foot-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--n-600); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--n-600); transition: color var(--t-fast); }
.foot-links a:hover { color: var(--n-400); }


/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--n-0); border: 1px solid var(--n-200);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
  padding: 16px 24px; display: flex; align-items: center; gap: 16px;
  z-index: 10000; max-width: 540px; width: calc(100% - 40px);
  animation: slideUp 0.4s ease;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 0.8125rem; color: var(--n-500); line-height: 1.5; }
.cookie-bar p a { color: var(--b-500); text-decoration: underline; }
.cookie-btns { display: flex; gap: 6px; flex-shrink: 0; }

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ═══ REVEAL + STAGGER ═══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children reveals */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* Number counter animation */
.num-counter {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth fade-in for images */
.split-img img {
  transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-img:hover img {
  transform: scale(1.03);
}


/* ═══ LEGAL PAGES ═══ */
.legal { padding: 140px 0 80px; }
.legal h1 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.legal .date { font-size: 0.8125rem; color: var(--n-400); margin-bottom: 48px; }
.legal h2 { font-size: 1.375rem; font-weight: 700; margin-top: 48px; margin-bottom: 14px; color: var(--n-900); }
.legal h3 { font-size: 1.0625rem; font-weight: 600; margin-top: 28px; margin-bottom: 10px; color: var(--n-800); }
.legal p, .legal li { font-size: 0.9375rem; line-height: 1.8; color: var(--n-600); margin-bottom: 14px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal ul li { margin-bottom: 6px; }


/* ═══ INTEGRATIONS ═══ */
.integ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.integ-card {
  background: var(--n-0); border: 1px solid var(--n-150);
  border-radius: var(--r-xl); padding: 32px; text-align: center; transition: all var(--t-smooth);
}
.integ-card:hover { border-color: var(--b-200); box-shadow: var(--sh-md); transform: translateY(-3px); }
.integ-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--b-50), var(--b-100)); display: flex; align-items: center; justify-content: center; }
.integ-icon svg { width: 28px; height: 28px; color: var(--b-500); }
.integ-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.integ-card p { font-size: 0.8125rem; color: var(--n-500); line-height: 1.6; }
.integ-badge { display: inline-block; margin-top: 10px; padding: 3px 10px; border-radius: var(--r-full); font-size: 0.6875rem; font-weight: 600; }
.integ-badge-ok { background: var(--s-light); color: var(--success); }
.integ-badge-soon { background: var(--b-50); color: var(--b-600); }


/* ═══ PRICING TABLE (Full page) ═══ */
.ptable { width: 100%; border-collapse: collapse; margin-top: 48px; }
.ptable th { text-align: left; padding: 10px 14px; font-size: 0.75rem; font-weight: 600; color: var(--n-400); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid var(--n-200); }
.ptable th:nth-child(2), .ptable th:nth-child(3) { text-align: center; }
.ptable td { padding: 12px 14px; font-size: 0.875rem; color: var(--n-600); border-bottom: 1px solid var(--n-100); }
.ptable td:nth-child(2), .ptable td:nth-child(3) { text-align: center; }
.ptable .tsec td { font-weight: 600; color: var(--n-800); background: var(--n-50); border-bottom: 1px solid var(--n-200); }


/* ═══ FAQ ═══ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--n-100); }
.faq-q { width: 100%; text-align: left; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.9375rem; font-weight: 600; color: var(--n-800); cursor: pointer; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--n-50); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; color: var(--n-400); transition: all var(--t-fast); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--b-50); color: var(--b-500); }
.faq-a { display: none; padding-bottom: 22px; font-size: 0.875rem; color: var(--n-500); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .sec { padding: 96px 0; }
  .hero h1 { font-size: 2.75rem; }
  .hero-inner { gap: 48px; }
  .sec-title { font-size: 2.25rem; }
  .split { gap: 48px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .switch-inner { grid-template-columns: 1fr; gap: 40px; }
  .switch-card { padding: 48px; }
  .carousel-arrows { display: none; }
  .proof-card { flex: 0 0 300px; }
}

@media (max-width: 768px) {
  .sec { padding: 72px 0; }
  .nav-links, .nav-right .nav-login { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 120px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-note { text-align: center; }
  .hero h1 { font-size: 2.25rem; }
  .sec-title { font-size: 2rem; }
  .bento { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.flip > .split-img { order: -1; }
  .split.flip > .split-txt { order: 2; }
  .compare-grid { grid-template-columns: 1fr; max-width: 340px; }
  .compare-card.hero-card { transform: none; }
  .price-grid { grid-template-columns: 1fr; }
  .proof-card { flex: 0 0 280px; }
  .carousel-arrows { display: none; }
  .integ-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-inner h2 { font-size: 2rem; }
  .switch-card { padding: 32px; }
  .switch-step { flex-direction: column; gap: 10px; }
  .cookie-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; }
  .sec-title { font-size: 1.625rem; }
  .cta-inner h2 { font-size: 1.75rem; }
  .split-txt h2 { font-size: 1.75rem; }
  .price-amount { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
