/* ============================================
   PURE BLISS — Landing Page Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #07070f;
  --bg-surface: #0e0e1c;
  --bg-card: #12121f;
  --bg-card-hover: #191930;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(99, 102, 241, 0.4);

  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --gold: #f59e0b;
  --gold-light: #fbbf24;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
  --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: 14px;
  top: -44px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAV
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-wrapper.scrolled {
  background: rgba(7, 7, 15, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.nav-mobile[hidden] {
  display: none !important;
}
.nav-mobile a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.12);
  top: -100px;
  left: -100px;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.1);
  top: 50px;
  right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.badge-pill {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
.proof-tile {
  background: rgba(8, 16, 30, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  text-align: left;
}
.proof-outcome {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.proof-meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 8px;
}
.proof-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-disclaimer {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 920px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   TOP 10 BENCHMARK
   ============================================ */
.benchmark {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.firm-card {
  background: linear-gradient(150deg, rgba(59,130,246,0.09), rgba(12,14,28,0.9));
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: var(--radius);
  padding: 20px 18px;
  min-height: 160px;
  transition: all 0.28s ease;
}
.firm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 14px 32px rgba(8, 24, 60, 0.35);
}

.firm-rank {
  display: inline-flex;
  background: rgba(6, 182, 212, 0.18);
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, 0.45);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.firm-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.firm-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.benchmark-note {
  margin-top: 26px;
  border-left: 3px solid rgba(59, 130, 246, 0.5);
  background: rgba(59,130,246,0.08);
  color: var(--text-secondary);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.mini-case-rotator {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.mini-case-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #67e8f9;
  margin-bottom: 8px;
}
.mini-case-rotator h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#miniCaseBody,
#miniCaseMeta,
#miniCaseSource {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
#miniCaseMeta {
  color: #bfdbfe;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#miniCaseSource {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.features .section-sub { margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card--hero {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 40px;
  row-gap: 12px;
  align-items: start;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
  border-color: rgba(59, 130, 246, 0.2);
}
.feature-card--hero .feature-icon-wrap {
  grid-row: span 3;
  align-self: center;
}
.feature-card--hero:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-card--hero .feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}
.feature-icon-wrap svg { width: 24px; height: 24px; }
.feature-card--hero .feature-icon-wrap svg { width: 32px; height: 32px; }

.feature-tag {
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  width: fit-content;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-bullets {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.feature-bullets li::before {
  content: "→";
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.how-it-works .section-sub { margin: 0 auto 60px; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ============================================
   SALES FUNNEL
   ============================================ */
.funnel {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.funnel-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.funnel-stage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all 0.28s ease;
}

.funnel-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
}

.stage-step {
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 8px;
}

.funnel-stage h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.funnel-stage p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.funnel-stage ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.funnel-stage li {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.funnel-stage li::before {
  content: "•";
  color: var(--cyan);
  position: absolute;
  left: 0;
}

.funnel-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.funnel-metric {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}

.funnel-metric span {
  font-size: 1.45rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funnel-metric p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}
.metric-source {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.funnel-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.testimonial-card--featured {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.06));
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-source {
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
  margin-top: -10px;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.results-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.result-stat {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   VERTICAL-SPECIFIC MESSAGING
   ============================================ */
.vertical-messaging {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(6,182,212,0.04) 0%, rgba(139,92,246,0.04) 100%);
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vertical-messaging[data-hidden="true"] {
  display: none;
}

.vertical-hero {
  text-align: center;
}

.vertical-badge {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.vertical-headline {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.vertical-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.vertical-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   TRUST & COMPLIANCE
   ============================================ */
.trust-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(59,130,246,0.03) 0%, transparent 100%);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.trust-badge:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.badge-content strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.badge-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-logos {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.trust-logos-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.logo-placeholder {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(180deg, rgba(59,130,246,0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 20px 60px rgba(59, 130, 246, 0.1);
}
.pricing-card--featured:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 20px 80px rgba(59, 130, 246, 0.2);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.price-dollar {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 4px;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.check {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   CTA / FORM
   ============================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 48px;
}

.cta-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 80px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-surface); }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.form-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status--info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.26);
  color: #93c5fd;
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #fca5a5;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--cyan);
  font-size: 0.95rem;
}
.form-success span { font-size: 1.4rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.faq-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.04rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--sticky-mobile-cta-offset, 0px));
  z-index: 60;
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  padding: 12px;
  background: rgba(8, 15, 28, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  justify-content: center;
  min-height: 50px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 60px;
  align-items: start;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benchmark-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--hero { grid-column: span 2; }
  .funnel-stages { grid-template-columns: repeat(2, 1fr); }
  .funnel-metrics { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .results-banner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .sticky-mobile-cta { display: grid; }

  .hero { padding: 130px 0 80px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--hero { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-card--hero .feature-icon-wrap { margin-bottom: 20px; }
  .faq-grid { grid-template-columns: 1fr; }

  .benchmark-grid { grid-template-columns: 1fr 1fr; }
  .funnel-stages { grid-template-columns: 1fr; }
  .funnel-metrics { grid-template-columns: 1fr 1fr; }

  .steps-grid { flex-direction: column; gap: 16px; }
  .step-connector { width: 100%; height: 1px; margin-top: 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .results-banner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .trust-badges { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .pricing-grid { grid-template-columns: 1fr; }

  .hero-trust { gap: 20px; }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .benchmark-grid { grid-template-columns: 1fr; }
  .results-banner { grid-template-columns: 1fr 1fr; }
  .funnel-metrics { grid-template-columns: 1fr; }
  .funnel-cta-row { flex-direction: column; }
  .funnel-cta-row .btn { width: 100%; justify-content: center; }
  .cta-form { padding: 24px; }
  .sticky-mobile-cta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
