﻿/* ============================================================
   SceneReady — Landing Page Stylesheet (landing.css)
   Bold, modern, conversion-focused design
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --blue-950: #0a1628;
  --blue-900: #0f2344;
  --blue-800: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --red-600: #dc2626;
  --green-500: #22c55e;
  --orange-500: #f97316;
  --amber-400: #fbbf24;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.20);
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ── Landing Nav ──────────────────────────────────────────── */
.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.land-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}

.land-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.land-nav__brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.land-nav__logo {
  height: 3.5rem;
  object-fit: contain;
}

.land-nav__name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue-700);
  letter-spacing: -0.03em;
}

.land-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.land-nav__links a { transition: color 0.15s; }
.land-nav__links a:hover { color: var(--blue-600); }

@media (min-width: 768px) { .land-nav__links { display: flex; } }

.land-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn-ghost {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s;
  display: none;
}
.nav-btn-ghost:hover { color: var(--blue-600); }
@media (min-width: 640px) { .nav-btn-ghost { display: inline; } }

.nav-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5625rem 1.25rem;
  border-radius: var(--radius-md);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.nav-btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.40);
}

/* ── Mobile Nav Hamburger ─────────────────────────────────── */
.land-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.25rem;
}
.land-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}
.land-nav.scrolled .land-nav__hamburger span {
  background: var(--gray-700);
}
@media (min-width: 768px) {
  .land-nav__hamburger { display: none; }
}
/* Animate to X when open */
.land-nav--open .land-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.land-nav--open .land-nav__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.land-nav--open .land-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer ────────────────────────────────────────── */
.land-nav__mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.5rem 1.5rem 1.25rem;
}
.land-nav.scrolled .land-nav__mobile-drawer {
  background: rgba(255,255,255,0.97);
}
@media (min-width: 768px) {
  .land-nav__mobile-drawer { display: none !important; }
}
.land-nav--open .land-nav__mobile-drawer {
  display: flex;
}
.land-nav__mobile-drawer a {
  padding: 0.8rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.land-nav.scrolled .land-nav__mobile-drawer a {
  color: var(--gray-700);
  border-color: var(--gray-100);
}
.land-nav__mobile-drawer a:hover {
  color: var(--cyan-400);
}
.land-nav.scrolled .land-nav__mobile-drawer a:hover {
  color: var(--blue-600);
}
.land-nav__mobile-drawer .mobile-nav-signin {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.land-nav__mobile-drawer .mobile-nav-demo {
  margin-top: 0.75rem;
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: var(--radius-md);
  text-align: center;
  padding: 0.75rem !important;
  border: none !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

/* Animated gradient bg */
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.6) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(6,182,212,0.25) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 10% 60%, rgba(29,78,216,0.35) 0%, transparent 60%);
}

/* Grid pattern overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(37,99,235,0.3);
  top: -100px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(6,182,212,0.2);
  bottom: -80px; right: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: rgba(139,92,246,0.15);
  top: 50%; right: 20%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    padding: 8rem 1.5rem 5rem;
  }
}

.hero__left {
  color: var(--white);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.3);
  border: 1px solid rgba(96,165,250,0.4);
  color: var(--blue-300);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fade-up 0.6s ease both;
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease 0.1s both;
}

.hero__title-line2 {
  background: linear-gradient(135deg, var(--cyan-300) 0%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--blue-200);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-up 0.6s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.5);
}
.btn-hero-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fade-up 0.6s ease 0.4s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--blue-300);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Hero Dashboard Preview ───────────────────────────────── */
.hero__right {
  animation: slide-in-right 0.8s ease 0.3s both;
}

.dashboard-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  padding: 1.25rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.dash-preview-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dash-preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-preview-dot--red   { background: #ff5f56; }
.dash-preview-dot--amber { background: #febc2e; }
.dash-preview-dot--green { background: #28c840; }

.dash-preview-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

.dash-preview-body {
  display: flex;
  gap: 0.75rem;
}

.dash-preview-sidebar {
  width: 120px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.dash-preview-nav-item {
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  gap: 0.375rem;
}
.dash-preview-nav-item.active {
  background: rgba(37,99,235,0.4);
  color: rgba(255,255,255,0.9);
}

.dash-preview-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-preview-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.dash-preview-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.dash-preview-stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.dash-preview-stat-lbl {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-preview-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}

.dash-preview-bar-item {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(37,99,235,0.5);
  transition: height 1s ease;
}
.dash-preview-bar-item.highlight {
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-500));
}

.dash-preview-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.dash-preview-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
}
.dash-preview-row:last-child { border-bottom: none; }

.dash-preview-badge {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 600;
}
.dash-preview-badge--green {
  background: rgba(34,197,94,0.2);
  color: #4ade80;
}
.dash-preview-badge--yellow {
  background: rgba(251,191,36,0.2);
  color: #fcd34d;
}
.dash-preview-badge--blue {
  background: rgba(96,165,250,0.2);
  color: #93c5fd;
}

/* ── Scroll Indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  animation: float 1.5s ease-in-out infinite;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--gray-900);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan-300), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar__label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Section Shared ───────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
}

.section--dark { background: var(--gray-900); }
.section--darker { background: var(--blue-950); }
.section--light { background: var(--gray-50); }
.section--white { background: var(--white); }
.section--blue-grad {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 50%, #0369a1 100%);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}

.section--dark .section__label,
.section--darker .section__label {
  color: var(--cyan-400);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section--dark .section__title,
.section--darker .section__title,
.section--blue-grad .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 38rem;
  line-height: 1.7;
}

.section--dark .section__subtitle,
.section--darker .section__subtitle {
  color: var(--gray-400);
}
.section--blue-grad .section__subtitle {
  color: var(--blue-200);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Problem/Solution ─────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.problem-card__x {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.problem-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.problem-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.vs-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  gap: 1.5rem;
}

.vs-arrow__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200));
}

.vs-arrow__line--right {
  background: linear-gradient(90deg, var(--gray-200), transparent);
}

.vs-arrow__badge {
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
}

.solution-card {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.solution-card__check {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.solution-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.solution-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Feature Showcase (Tabs) ──────────────────────────────── */
.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  background: transparent;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
}

.feature-tab:hover {
  color: var(--blue-600);
  border-color: var(--blue-300);
  background: var(--gray-50);
}

.feature-tab.active {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.feature-tab__icon { font-size: 1rem; }

.feature-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-panel { grid-template-columns: 1fr 1fr; }
}

.feature-panel.active { display: grid; }

.feature-panel__text .feature-tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-panel__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-panel__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.feature-list__item::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23dbeafe'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center/contain;
}

.feature-panel__visual {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Feature visual mockups */
.mock-skill-tracker {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mock-skill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.mock-skill-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-skill-dot--green { background: var(--green-500); }
.mock-skill-dot--amber { background: var(--amber-400); }
.mock-skill-dot--gray  { background: var(--gray-300); }

.mock-skill-name {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--gray-700);
  font-weight: 500;
}

.mock-skill-bar-wrap {
  width: 80px;
  height: 6px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}

.mock-skill-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.mock-skill-count {
  font-size: 0.7rem;
  color: var(--gray-400);
  width: 32px;
  text-align: right;
}

/* ── Role Cards (Who It's For) ────────────────────────────── */
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .role-grid { grid-template-columns: repeat(3, 1fr); }
}

.role-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  opacity: 0;
  transition: opacity 0.2s;
}

.role-card:hover {
  border-color: rgba(96,165,250,0.3);
  transform: translateY(-4px);
}

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

.role-card__icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.role-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.role-card__subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.role-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.role-card__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.role-check {
  color: var(--cyan-400);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Comparison Table ─────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--gray-50);
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-200);
}

.compare-table th.col-sr {
  background: var(--blue-600);
  color: var(--white);
  text-align: center;
}

.compare-table th.col-sr .th-badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 0.125rem;
}

.compare-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.compare-table td.col-sr {
  text-align: center;
  background: rgba(37,99,235,0.04);
  font-weight: 600;
}

.compare-table td.col-comp {
  text-align: center;
  color: var(--gray-400);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: var(--gray-50); }
.compare-table tr:hover td.col-sr { background: rgba(37,99,235,0.07); }

.cmp-yes { color: var(--green-500); font-size: 1.125rem; }
.cmp-no  { color: var(--gray-300); font-size: 1.125rem; }
.cmp-partial { color: var(--amber-400); font-size: 0.8rem; font-weight: 600; }

/* ── How It Works Steps ───────────────────────────────────── */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .steps-wrap { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-card__connector {
  display: none;
  position: absolute;
  top: 2.75rem;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,99,235,0.3), rgba(37,99,235,0.1));
  z-index: 0;
}

.step-card:not(:last-child) .step-card__connector { display: block; }

@media (max-width: 767px) {
  .step-card__connector { display: none !important; }
}

.step-card__num-wrap {
  position: relative;
  z-index: 1;
  width: 3.5rem; height: 3.5rem;
  margin: 0 auto 1.25rem;
}

.step-card__num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.step-card__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.25);
  animation: pulse-ring 2.5s ease-out infinite;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ── Pricing Section ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--blue-600);
  border-color: var(--blue-600);
  position: relative;
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__feature-item {
  color: var(--blue-200);
}

.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-400);
  color: var(--gray-900);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
}

.pricing-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card__divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 1.25rem;
}

.pricing-card--featured .pricing-card__divider {
  background: rgba(255,255,255,0.15);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-card__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-card__feature-check {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.9rem;
}

.pricing-card--featured .pricing-card__feature-check { color: #86efac; }

.pricing-card__btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all 0.2s;
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.pricing-card__btn:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
}

.pricing-card--featured .pricing-card__btn {
  background: var(--white);
  color: var(--blue-700);
}
.pricing-card--featured .pricing-card__btn:hover {
  background: var(--blue-50, #eff6ff);
}

/* ── Testimonials / Social Proof ──────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  color: var(--amber-400);
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  user-select: none;
  transition: background 0.15s;
}

.faq-item__q:hover { background: var(--gray-100); }

.faq-item__chevron {
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-item__a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-item__a { display: block; }

/* ── Contact / CTA Section ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-950) 0%, #0f2060 50%, var(--blue-900) 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.0625rem;
  color: var(--blue-200);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9375rem 2.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-cta-primary:hover {
  background: var(--blue-50, #eff6ff);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9375rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* ── Contact Form (in CTA) ────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 680px;
  margin: 3rem auto 0;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.contact-form-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 540px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-label .req { color: var(--red-600); }

.form-control {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.6875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 0.75rem;
  grid-column: 1 / -1;
}

/* ── Flash Messages ───────────────────────────────────────── */
.flash {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.flash--error { background: #fef2f2; border: 1px solid #fecaca; color: var(--red-600); }
.flash--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }

/* ── Success Panel ────────────────────────────────────────── */
.success-panel {
  text-align: center;
  padding: 2rem 0;
}
.success-panel__icon { font-size: 3rem; margin-bottom: 1rem; }
.success-panel__title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.success-panel__body { color: var(--gray-600); font-size: 0.9375rem; }
.success-panel__body a { color: var(--blue-600); text-decoration: underline; }

/* ── Landing Footer ───────────────────────────────────────── */
.land-footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 3rem 1.5rem;
}

.land-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .land-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.land-footer__brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.land-footer__logo {
  height: 2rem;
  object-fit: contain;
}

.land-footer__name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
}

.land-footer__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.land-footer__links a {
  color: var(--gray-500);
  transition: color 0.15s;
}
.land-footer__links a:hover { color: var(--white); }

.land-footer__copy {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* ── Scroll Progress Bar ──────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Typewriter cursor ────────────────────────────────────── */
.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--cyan-400);
  animation: blink 0.9s step-end infinite;
  margin-left: 2px;
}

/* ── Floating Sticky CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.sticky-cta__btn:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.6);
}
.sticky-cta__sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.15s;
}
.sticky-cta__sub:hover {
  background: rgba(0,0,0,0.7);
}
@media (max-width: 480px) {
  .sticky-cta { bottom: 1rem; right: 1rem; }
  .sticky-cta__sub { display: none; }
}


