/* ============================================================
   CRMSocial — Landing Page Light Professional
   Design: Clean SaaS · Teal accent · Subtle FX
   Fonts: Syne (display headlines) + Outfit (body)
   ============================================================ */

/* ── Landing base ─────────────────────────────────────────── */
.landing-page {
  background: #f8fafc;
  color: #0a0f1e;
  font-family: 'Outfit', system-ui, sans-serif;
}

/* ── Background scene ─────────────────────────────────────── */
.bg-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,145,178,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 15%, transparent 70%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.bg-orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 65%);
  top: -320px;
  right: -180px;
  animation: orb-drift-1 24s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(15,118,110,0.09) 0%, transparent 65%);
  bottom: 0;
  left: -180px;
  animation: orb-drift-2 30s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,0.07) 0%, transparent 65%);
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  animation: orb-drift-3 20s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-80px, 100px) scale(1.12); }
}

@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(100px, -80px) scale(1.08); }
}

@keyframes orb-drift-3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.25); opacity: 0.6; }
}

/* ── Navbar ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  background: rgba(248,250,252,0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(8,145,178,0.1);
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(248,250,252,0.95);
  border-bottom-color: #e2e8f0;
  box-shadow: 0 1px 12px rgba(10,15,30,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: #0891b2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(8,145,178,0.35);
  transition: box-shadow 0.3s;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 4px 20px rgba(8,145,178,0.5);
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: #0a0f1e; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav-ghost {
  background: transparent;
  color: #475569;
  padding: 0.4375rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
}
.btn-nav-ghost:hover {
  color: #0a0f1e;
  border-color: #cbd5e1;
  background: #f1f5f9;
}

.btn-nav-primary {
  background: #0891b2;
  color: #fff;
  padding: 0.4375rem 1.125rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(8,145,178,0.32);
}
.btn-nav-primary:hover {
  background: #0e7490;
  color: #fff;
  box-shadow: 0 4px 18px rgba(8,145,178,0.45);
}

/* ── Theme toggle ─────────────────────────────────────────── */
.theme-toggle {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}
.theme-toggle:hover { color: #0a0f1e; border-color: #cbd5e1; background: #f1f5f9; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 130px clamp(1.5rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-inner {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0891b2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: #ecfeff;
  border: 1px solid rgba(8,145,178,0.2);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0891b2;
  box-shadow: 0 0 8px rgba(8,145,178,0.6);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(8,145,178,0.6); }
  50% { opacity: 0.5; transform: scale(0.65); box-shadow: 0 0 3px rgba(8,145,178,0.3); }
}

.hero-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-title .highlight {
  background: linear-gradient(110deg, #0891b2 0%, #0e7490 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.175rem);
  color: #64748b;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background: #0891b2;
  color: #fff;
  padding: 0.9375rem 2.25rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 20px rgba(8,145,178,0.38);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.16) 50%, transparent 100%);
  transform: translateX(-200%);
  transition: transform 0.7s ease;
}

.btn-hero-primary:hover::after { transform: translateX(200%); }

.btn-hero-primary:hover {
  background: #0e7490;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(8,145,178,0.48);
}

.btn-hero-primary:active { transform: translateY(0) scale(0.98); box-shadow: none; }

.btn-hero-secondary {
  background: #fff;
  color: #475569;
  padding: 0.9375rem 2.25rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 1px 4px rgba(10,15,30,0.06);
}

.btn-hero-secondary:hover {
  background: #f8fafc;
  color: #0a0f1e;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,15,30,0.1);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.hero-trust-avatars { display: flex; }

.avatar-xs {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #f8fafc;
  background: linear-gradient(135deg, #0891b2, #0f766e);
  margin-left: -7px;
}

.avatar-xs:first-child { margin-left: 0; }

.hero-trust strong { color: #475569; font-weight: 600; }

/* ── Floating mockup ──────────────────────────────────────── */
.hero-mockup-wrap {
  width: 100%;
  max-width: 720px;
  margin: 4rem auto 0;
  position: relative;
}

.hero-mockup-glow {
  position: absolute;
  bottom: -50px;
  left: 10%;
  right: 10%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(8,145,178,0.18) 0%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.mockup-window {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 90px -20px rgba(10,15,30,0.14),
    0 0 0 1px rgba(8,145,178,0.06);
  animation: mockup-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes mockup-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.mockup-titlebar {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.mockup-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mockup-kpi {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s;
}
.mockup-kpi:hover { border-color: rgba(8,145,178,0.3); }

.mockup-kpi-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.mockup-kpi-lbl {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 2px;
}

.mockup-chat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-msg { display: flex; gap: 0.5rem; align-items: flex-end; }
.mockup-msg.out { flex-direction: row-reverse; }

.mockup-bubble {
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  font-size: 0.75rem;
  max-width: 75%;
  line-height: 1.5;
}

.mockup-msg.in .mockup-bubble {
  background: #fff;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 3px;
}

.mockup-msg.out .mockup-bubble {
  background: #0891b2;
  color: #fff;
  border-bottom-right-radius: 3px;
  box-shadow: 0 2px 8px rgba(8,145,178,0.25);
}

.mockup-ai-tag {
  font-size: 0.6rem;
  font-weight: 700;
  color: #0891b2;
  background: #ecfeff;
  padding: 1px 6px;
  border-radius: 9999px;
  align-self: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  border: 1px solid rgba(8,145,178,0.2);
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}

.stats-bar-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 4px 24px rgba(10,15,30,0.07);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #e2e8f0;
}

.stat-val {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.stat-unit {
  font-size: 1.125rem;
  color: #0891b2;
  font-weight: 700;
}

.stat-lbl {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.375rem;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 5rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  color: #0891b2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  color: #0a0f1e;
  text-wrap: balance;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  text-wrap: pretty;
}

/* ── Feature bento grid ───────────────────────────────────── */
.features-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.features-bento-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(8,145,178,0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(8,145,178,0.3);
  box-shadow: 0 8px 40px -8px rgba(8,145,178,0.16), 0 2px 8px rgba(10,15,30,0.06);
  transform: translateY(-4px);
}

.feature-card:hover::after { opacity: 1; }

.feature-card.featured {
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 100%);
  border-color: rgba(8,145,178,0.22);
}

.feature-card-wide {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ecfeff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0891b2;
  box-shadow: 0 2px 10px rgba(8,145,178,0.14);
  border: 1px solid rgba(8,145,178,0.18);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  color: #0a0f1e;
}

.feature-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}

.feature-visual {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* ── Channels ─────────────────────────────────────────────── */
.channels-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,15,30,0.06);
}

.channels-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(8,145,178,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.channels-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.channel-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.channel-badge-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 16px rgba(10,15,30,0.12);
}

.channel-badge:hover .channel-badge-icon {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 14px 36px rgba(10,15,30,0.2);
}

.channel-badge-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  box-shadow: 0 1px 6px rgba(10,15,30,0.05);
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 40px -8px rgba(10,15,30,0.12);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #f0fdff 0%, #ecfeff 100%);
  border-color: rgba(8,145,178,0.35);
  box-shadow:
    0 0 0 1px rgba(8,145,178,0.15),
    0 16px 48px -12px rgba(8,145,178,0.22);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0891b2;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(8,145,178,0.4);
}

.pricing-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #0a0f1e;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0;
  font-family: 'Outfit', sans-serif;
}

.pricing-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pricing-divider {
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.pricing-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ecfeff;
  color: #0891b2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(8,145,178,0.2);
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  border: none;
}

.btn-plan-outline {
  background: transparent;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.btn-plan-outline:hover {
  background: #f8fafc;
  color: #0a0f1e;
  border-color: #cbd5e1;
}

.btn-plan-primary {
  background: #0891b2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(8,145,178,0.35);
}
.btn-plan-primary:hover {
  background: #0e7490;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.48);
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  border-radius: 24px;
  padding: 5.5rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdff 0%, #ecfeff 50%, #f0fdfa 100%);
  border: 1px solid rgba(8,145,178,0.22);
  box-shadow: 0 4px 32px rgba(8,145,178,0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(8,145,178,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,145,178,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
  text-wrap: balance;
  line-height: 1.12;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  margin-bottom: 2.25rem;
  text-wrap: pretty;
  line-height: 1.75;
}

.btn-cta {
  background: #0891b2;
  color: white;
  padding: 1.0625rem 2.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(8,145,178,0.42);
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: translateX(-200%);
  transition: transform 0.7s ease;
}
.btn-cta:hover::before { transform: translateX(200%); }
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(8,145,178,0.52);
  color: white;
  background: #0e7490;
}
.btn-cta:active { transform: translateY(0) scale(0.98); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid #e2e8f0;
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 2rem;
  position: relative;
  z-index: 1;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.75rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #475569; }

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }
.reveal-delay-5 { transition-delay: 0.56s; }
.reveal-delay-6 { transition-delay: 0.68s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-bento { grid-template-columns: 1fr; }
  .feature-card-wide { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .features-bento-secondary { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 3.5rem 1.25rem; }
  .features-bento-secondary { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .channels-grid { gap: 1.5rem; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.625rem; letter-spacing: -0.03em; }
  .btn-hero-primary, .btn-hero-secondary { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
  .hero-mockup-wrap { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}
