/* ═══════════════════════════════════════════════════════════
   Vekaro Marketing Site — Shared Styles
   ═══════════════════════════════════════════════════════════ */

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

/* ─── Variables ─── */
:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-darker: #0B5E56;
  --teal-light: #CCFBF1;
  --teal-50: #F0FDFA;
  --teal-glow: rgba(13, 148, 136, 0.15);
  --dark: #161619;
  --dark-800: #1E1E23;
  --light: #F4F5F7;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --green: #16A36C;
  --amber: #D4960A;
  --red: #DC3545;
  --plate-yellow: #FFD700;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --nav-height: 64px;
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
  --transition-fast: 0.15s ease;
  --transition-med: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base ─── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 1000;
  padding: 12px 24px; background: var(--teal); color: white;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--gray-900); }
h1 { font-size: 56px; letter-spacing: -0.03em; }
h2 { font-size: 40px; letter-spacing: -0.02em; }
h3 { font-size: 24px; letter-spacing: -0.01em; }
h4 { font-size: 20px; }
p { color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 24px; font-weight: 700; color: var(--teal);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.8; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--gray-600);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gray-900); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 1px;
  transform: scaleX(0); transition: transform var(--transition-med);
  transform-origin: center;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.nav-login {
  font-size: 15px; font-weight: 500; color: var(--gray-600);
  transition: color var(--transition-fast);
}
.nav-login:hover { color: var(--gray-900); }

/* Hamburger */
.nav-hamburger {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 200;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: all var(--transition-med);
  position: absolute;
}
.nav-hamburger span:nth-child(1) { transform: translateY(-6px); }
.nav-hamburger span:nth-child(3) { transform: translateY(6px); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 150;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.3); z-index: 140;
  opacity: 0; transition: opacity var(--transition-med);
  pointer-events: none;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 18px; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: 16px; text-align: center; display: block; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none; border: none;
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-md { padding: 10px 24px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-darker));
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--gray-400);
  color: var(--gray-900);
  background: var(--gray-50);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  font-weight: 600;
}
.btn-ghost:hover { background: var(--teal-50); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.section-gray { background: var(--gray-50); }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, var(--teal-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 40%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D9488' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-size: 56px; font-weight: 700;
  color: #1A1C22;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-text h1 span {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 20px; font-weight: 400;
  color: #5A5D6A;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-500); font-weight: 500;
}
.hero-social-proof svg { flex-shrink: 0; }

/* Hero dashboard mockup */
.hero-mockup {
  position: relative;
  perspective: 1000px;
}
.hero-mockup-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-mockup:hover .hero-mockup-inner {
  transform: rotateY(-1deg) rotateX(1deg);
}

/* Subpage hero (shorter) */
.hero-sub {
  min-height: auto;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
}
.hero-sub h1 { font-size: 48px; margin-bottom: 16px; }
.hero-sub p {
  font-size: 20px; color: var(--gray-500);
  max-width: 600px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  white-space: nowrap;
}
.trust-item svg {
  width: 20px; height: 20px; color: var(--teal); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: background var(--transition-med), transform var(--transition-med);
}
.card:hover .card-icon {
  background: var(--teal-light);
  transform: scale(1.05);
}
.card h3 {
  margin-bottom: 12px; font-size: 20px;
}
.card p {
  font-size: 15px; line-height: 1.65; color: var(--gray-500);
}

.cards-grid {
  display: grid; gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ═══════════════════════════════════════════════════════════
   STEPPER (How It Works)
   ═══════════════════════════════════════════════════════════ */
.stepper {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.stepper::before {
  content: ''; position: absolute;
  top: 28px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 2px; background: var(--gray-200);
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.step h3 { margin-bottom: 10px; font-size: 18px; }
.step p { font-size: 15px; color: var(--gray-500); max-width: 320px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   ALTERNATING FEATURES
   ═══════════════════════════════════════════════════════════ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 60px 0;
}
.feature-row:not(:last-child) {
  border-bottom: 1px solid var(--gray-100);
}
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text h2 {
  font-size: 32px; margin-bottom: 16px; letter-spacing: -0.02em;
}
.feature-text p {
  font-size: 16px; line-height: 1.7; color: var(--gray-500);
}
.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM / SOLUTION
   ═══════════════════════════════════════════════════════════ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.split-card {
  padding: 48px; border-radius: var(--radius-lg);
}
.split-card h2 {
  font-size: 28px; margin-bottom: 16px;
}
.split-card p {
  font-size: 16px; line-height: 1.7;
}
.split-problem {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.split-problem h2 { color: var(--gray-800); }
.split-problem p { color: var(--gray-600); }
.split-solution {
  background: linear-gradient(135deg, var(--teal-50), var(--white));
  border: 1px solid var(--teal-light);
}
.split-solution h2 { color: var(--teal-dark); }
.split-solution p { color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.pricing-toggle span {
  font-size: 15px; font-weight: 600; color: var(--gray-400);
  transition: color var(--transition-fast);
}
.pricing-toggle span.active { color: var(--gray-900); }
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--gray-300);
  border-radius: 14px; cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}
.toggle-switch.active { background: var(--teal); }
.toggle-switch::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: white; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform var(--transition-fast);
}
.toggle-switch.active::after { transform: translateX(24px); }
.save-badge {
  font-size: 12px; font-weight: 700;
  background: var(--teal-light); color: var(--teal-dark);
  padding: 3px 10px; border-radius: 20px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: all var(--transition-med);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px;
  letter-spacing: 0.02em;
}
.pricing-name {
  font-size: 20px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 14px; color: var(--gray-500); margin-bottom: 20px;
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
}
.pricing-currency { font-size: 24px; font-weight: 700; color: var(--gray-900); }
.pricing-value {
  font-size: 48px; font-weight: 800; color: var(--gray-900);
  letter-spacing: -0.03em; line-height: 1;
}
.pricing-period { font-size: 16px; color: var(--gray-400); font-weight: 500; }
.pricing-annual-save {
  display: none;
  font-size: 13px; font-weight: 600;
  color: var(--teal-dark); background: var(--teal-50);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 16px; width: fit-content;
}
.annual-active .pricing-annual-save { display: inline-block; }
.pricing-features {
  flex: 1; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-600); line-height: 1.5;
}
.pricing-features li svg {
  width: 18px; height: 18px; color: var(--teal);
  flex-shrink: 0; margin-top: 2px;
}
.pricing-card .btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}
.faq-item {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: var(--teal-light); }
.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--gray-900);
  text-align: left; background: none; border: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: transform var(--transition-med), color var(--transition-fast);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); color: var(--teal);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px; line-height: 1.7; color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, var(--teal-darker) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: white; font-size: 32px; margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark); color: var(--gray-400);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
  margin-top: 12px;
}
.footer-tagline {
  font-size: 16px; font-weight: 500; color: var(--gray-300);
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--gray-300);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block; padding: 6px 0;
  font-size: 14px; color: var(--gray-500);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 13px; color: var(--gray-500);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left {
  display: flex; align-items: center; gap: 8px;
}
.footer-social {
  display: flex; gap: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--teal); color: white;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-800);
  padding: 16px 0; z-index: 200;
  border-top: 1px solid rgba(255,255,255,0.06);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text {
  font-size: 14px; color: var(--gray-400);
}
.cookie-text a {
  color: var(--teal-light); text-decoration: underline;
}
.cookie-actions { display: flex; gap: 12px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-in.visible {
  opacity: 1; transform: translateY(0);
}
.animate-in:nth-child(2) { transition-delay: 0.08s; }
.animate-in:nth-child(3) { transition-delay: 0.16s; }
.animate-in:nth-child(4) { transition-delay: 0.24s; }

/* Slide from left/right for feature rows */
.animate-slide-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-slide-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-slide-left.visible,
.animate-slide-right.visible {
  opacity: 1; transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD MOCKUP COMPONENTS
   ═══════════════════════════════════════════════════════════ */
.mockup {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; font-size: 13px;
}
.mockup-header {
  padding: 16px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot-red { background: #FF5F56; }
.mockup-dot-yellow { background: #FFBD2E; }
.mockup-dot-green { background: #27C93F; }
.mockup-body { padding: 20px; }
.mockup-greeting {
  font-size: 16px; font-weight: 600; color: var(--gray-800);
  margin-bottom: 16px;
}
.mockup-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 16px;
}
.mockup-kpi {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 12px; text-align: center;
}
.mockup-kpi-value {
  font-size: 22px; font-weight: 700; color: var(--gray-900);
}
.mockup-kpi-label {
  font-size: 11px; color: var(--gray-500); margin-top: 2px;
}
.mockup-kpi.green .mockup-kpi-value { color: var(--green); }
.mockup-kpi.amber .mockup-kpi-value { color: var(--amber); }
.mockup-kpi.red .mockup-kpi-value { color: var(--red); }
.mockup-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mockup-donut {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 16px; display: flex; align-items: center; justify-content: center;
}
.mockup-strip {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 16px;
}
.mockup-strip-title {
  font-size: 11px; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.mockup-days {
  display: flex; gap: 6px;
}
.mockup-day {
  flex: 1; height: 32px;
  background: var(--gray-100); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--gray-500);
}
.mockup-day.active { background: var(--teal-light); color: var(--teal-dark); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   FEATURES LIST (features page)
   ═══════════════════════════════════════════════════════════ */
.feature-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-100);
}
.feature-section:last-child { border-bottom: none; }
.feature-section-inner {
  display: grid; grid-template-columns: auto 1fr 340px;
  gap: 40px; align-items: start;
}
.feature-section-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.feature-section-mockup .mockup-body {
  font-size: 13px;
}
.feature-section-icon {
  width: 56px; height: 56px;
  background: var(--teal-50); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.feature-section h2 {
  font-size: 28px; margin-bottom: 4px;
}
.feature-section .feature-subtitle {
  font-size: 16px; color: var(--teal); font-weight: 500;
  margin-bottom: 16px;
}
.feature-bullets {
  display: grid; gap: 10px; margin-top: 16px;
}
.feature-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--gray-600); line-height: 1.6;
}
.feature-bullets li svg {
  width: 18px; height: 18px; color: var(--teal);
  flex-shrink: 0; margin-top: 3px;
}
.feature-highlight {
  background: linear-gradient(135deg, var(--teal-50), rgba(13, 148, 136, 0.04));
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: -1px;
}
.feature-highlight .feature-section-icon {
  background: var(--teal-light);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-label .optional {
  font-weight: 400; color: var(--gray-400);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-success {
  display: none; padding: 20px;
  background: var(--teal-50); border: 1px solid var(--teal-light);
  border-radius: var(--radius-md);
  color: var(--teal-dark); font-weight: 500; text-align: center;
}
.form-success.show { display: block; }

.contact-info {
  padding-top: 16px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--teal-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 15px; margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px; color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--transition-med);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-image {
  height: 200px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 14px; font-weight: 500;
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 12px; font-weight: 600; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 18px; margin-bottom: 8px; line-height: 1.35;
}
.blog-card-body p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}
.blog-card-date {
  font-size: 13px; color: var(--gray-400); margin-top: 12px;
}

.subscribe-form {
  display: flex; gap: 12px; max-width: 460px; margin: 0 auto;
}
.subscribe-form .form-input { flex: 1; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 780px; margin: 0 auto;
  padding: 48px 24px 100px;
}
.legal-content h1 {
  font-size: 40px; margin-bottom: 8px;
}
.legal-updated {
  font-size: 14px; color: var(--gray-400); margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 22px; margin-top: 48px; margin-bottom: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p {
  font-size: 15px; line-height: 1.8; color: var(--gray-600);
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 16px; padding-left: 0;
}
.legal-content li {
  font-size: 15px; line-height: 1.8; color: var(--gray-600);
  padding-left: 20px; position: relative; margin-bottom: 4px;
}
.legal-content li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.legal-content a {
  color: var(--teal); text-decoration: underline;
}
.legal-content strong { color: var(--gray-800); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-story {
  max-width: 740px; margin: 0 auto;
  font-size: 17px; line-height: 1.85;
}
.about-story p {
  margin-bottom: 24px; color: var(--gray-600); font-size: 17px;
}

/* Values */
.value-card {
  text-align: center; padding: 40px 32px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--gray-500); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: var(--teal-50); color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   LINK ARROW
   ═══════════════════════════════════════════════════════════ */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--teal);
  transition: gap var(--transition-fast);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroMockupIn {
  from { opacity: 0; transform: translateX(60px) rotateY(-6deg) rotateX(2deg); }
  to { opacity: 1; transform: translateX(0) rotateY(-4deg) rotateX(2deg); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-8px, 10px) scale(0.97); }
}
@keyframes floatOrbSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -22px) scale(1.08); }
}
@keyframes ctaGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25), inset 0 1px 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 2px 20px rgba(13, 148, 136, 0.45), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 24px rgba(13, 148, 136, 0.2); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes donutFill {
  from { stroke-dasharray: 0 201.1; }
}
@keyframes trustPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ═══════════════════════════════════════════════════════════
   HERO ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
/* Staggered hero entrance */
.hero-text h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-subtitle {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-ctas {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero-social-proof {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}
.hero-mockup {
  animation: heroMockupIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Hero CTA pulse */
.hero-ctas .btn-primary {
  animation: pulseGlow 3s ease-in-out 2s infinite;
}
.hero-ctas .btn-primary:hover {
  animation: none;
}

/* Floating decorative orbs */
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, var(--teal-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 40%);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  top: 10%; right: 5%;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  bottom: 15%; left: 8%;
  animation: floatOrbSlow 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  top: 25%; left: 45%;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.trust-item svg {
  animation: trustPulse 3s ease-in-out infinite;
}
.trust-item:nth-child(2) svg { animation-delay: 0.5s; }
.trust-item:nth-child(3) svg { animation-delay: 1s; }
.trust-item:nth-child(4) svg { animation-delay: 1.5s; }
.trust-items {
  gap: 0;
}
.trust-item {
  padding: 0 48px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gray-300);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM / SOLUTION ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.split-problem {
  border-left: 4px solid var(--red);
  position: relative;
}
.split-problem::before {
  content: '';
  position: absolute; top: 28px; left: 28px;
  width: 40px; height: 40px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.split-solution {
  border-left: 4px solid var(--teal);
  position: relative;
}
.split-solution::before {
  content: '';
  position: absolute; top: 28px; left: 28px;
  width: 40px; height: 40px;
  background: var(--teal-glow);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════
   CARD HOVER ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.card:hover {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(13, 148, 136, 0.08);
}
.card .card-icon {
  transition: background var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
}
.card:hover .card-icon {
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
  animation: iconFloat 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   STEPPER ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.stepper::before {
  background: linear-gradient(90deg, var(--gray-200) 0%, var(--teal-light) 50%, var(--gray-200) 100%);
  height: 2px;
}
.step-number {
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   FEATURE VISUAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.feature-visual {
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.feature-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(13, 148, 136, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   MOCKUP ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.hero-mockup-inner {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-mockup:hover .hero-mockup-inner {
  box-shadow: var(--shadow-xl), 0 0 40px rgba(13, 148, 136, 0.08), 0 0 0 1px rgba(0,0,0,0.04);
}

/* Donut chart animation */
.mockup-donut svg circle:nth-child(2) {
  transition: stroke-dasharray 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.mockup-donut.animated svg circle:nth-child(2) {
  animation: donutFill 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ═══════════════════════════════════════════════════════════
   PRICING ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.pricing-card {
  transition: all var(--transition-med), box-shadow var(--transition-med);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(13, 148, 136, 0.08);
}
.pricing-card.popular:hover {
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-xl), 0 0 40px rgba(13, 148, 136, 0.15);
}
.pricing-card.popular::before {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark), var(--teal), var(--teal-dark));
  background-size: 300% 100%;
  animation: shimmer 3s linear infinite;
}
.pricing-value {
  transition: color var(--transition-fast);
}
.pricing-card:hover .pricing-value {
  color: var(--teal-dark);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 25%, var(--teal-darker) 50%, var(--teal-dark) 75%, var(--teal) 100%);
  background-size: 200% 200%;
  animation: ctaGradientShift 6s ease infinite;
}
.cta-banner .btn-white {
  transition: all var(--transition-fast);
}
.cta-banner .btn-white:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════
   SECTION TRANSITIONS
   ═══════════════════════════════════════════════════════════ */
.section-divider-top {
  position: relative;
}
.section-divider-top::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   SVG ILLUSTRATIONS & IMAGERY
   ═══════════════════════════════════════════════════════════ */

/* Hero route line decoration */
.hero-route-line {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-route-line svg {
  width: 100%;
  height: 100%;
}
.hero-route-line .route-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawRoute 3s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

/* Problem/Solution card illustrations */
.split-card-illustration {
  position: absolute;
  top: 24px; right: 24px;
  width: 64px; height: 64px;
  opacity: 0.12;
}
.split-card {
  position: relative;
  overflow: hidden;
}
.split-problem .split-card-illustration { opacity: 0.10; }
.split-solution .split-card-illustration { opacity: 0.12; }

/* Problem card background pattern — scattered warning triangles */
.split-problem::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M160 170l-12-20h24l-12 20z' fill='%23DC3545' fill-opacity='0.06'/%3E%3Cpath d='M120 140l-8-14h16l-8 14z' fill='%23DC3545' fill-opacity='0.04'/%3E%3Cpath d='M170 120l-6-10h12l-6 10z' fill='%23DC3545' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Solution card background pattern — scattered checkmarks */
.split-solution::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='160' cy='160' r='16' fill='%230D9488' fill-opacity='0.06'/%3E%3Cpath d='M153 160l4 4 8-8' stroke='%230D9488' stroke-opacity='0.08' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='120' cy='130' r='10' fill='%230D9488' fill-opacity='0.04'/%3E%3Cpath d='M115 130l3 3 5-5' stroke='%230D9488' stroke-opacity='0.06' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='170' cy='110' r='8' fill='%230D9488' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Step illustrations */
.step-illustration {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-illustration svg {
  width: 80px; height: 80px;
}
.step-illustration::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  z-index: -1;
  animation: iconFloat 4s ease-in-out infinite;
}
.step:nth-child(2) .step-illustration::after { animation-delay: 0.5s; }
.step:nth-child(3) .step-illustration::after { animation-delay: 1s; }

/* Feature card background illustrations */
.card {
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}
.card:hover::after {
  opacity: 1;
}

/* CTA banner fleet silhouettes */
.cta-fleet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cta-fleet svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

/* Section gray background with subtle grid dot pattern */
.section-gray {
  position: relative;
}
.section-gray::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%230D9488' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.section-gray > .container {
  position: relative;
  z-index: 1;
}

/* How It Works section — dashed route line behind steps */
.stepper-route {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.stepper {
  position: relative;
  z-index: 1;
}

/* Pricing section decorative background */
.pricing-bg-decoration {
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Footer topography-style lines */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='200' viewBox='0 0 600 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q150 40 300 80 T600 80' stroke='%230D9488' stroke-opacity='0.04' stroke-width='1' fill='none'/%3E%3Cpath d='M0 120 Q150 80 300 120 T600 120' stroke='%230D9488' stroke-opacity='0.03' stroke-width='1' fill='none'/%3E%3Cpath d='M0 160 Q150 120 300 160 T600 160' stroke='%230D9488' stroke-opacity='0.02' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 600px 200px;
  background-repeat: repeat-x;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.footer .nav-logo {
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}
.footer .nav-logo:hover {
  text-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
}
.footer-social a {
  transition: all var(--transition-med);
}
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { max-width: 560px; }
  .hero-mockup-inner { transform: none; }
  .hero-mockup:hover .hero-mockup-inner { transform: none; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 48px; }
  .feature-section-inner { grid-template-columns: auto 1fr 280px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 48px); padding-bottom: 48px; }
  .hero-subtitle { font-size: 17px; }
  .hero-sub { padding: calc(var(--nav-height) + 48px) 0 48px; }
  .hero-sub h1 { font-size: 32px; }
  .hero-orb { display: none; }
  .hero-route-line { display: none; }
  .step-illustration { width: 60px; height: 60px; }
  .step-illustration svg { width: 60px; height: 60px; }
  .cta-fleet { opacity: 0.3; }
  .split-card-illustration { width: 48px; height: 48px; }
  .trust-item { padding: 0 24px; }
  .trust-item::after { display: none; }
  .animate-slide-left, .animate-slide-right {
    transform: translateY(24px);
  }

  /* Nav mobile */
  .nav-links, .nav-right .nav-login, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-overlay { display: block; }

  /* Grids go single column */
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 24px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }
  .stepper { grid-template-columns: 1fr; gap: 32px; }
  .stepper::before { display: none; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-items { gap: 24px; }
  .mockup-kpis { grid-template-columns: repeat(2, 1fr); }
  .feature-section-inner { grid-template-columns: 1fr; gap: 20px; }
  .feature-section-mockup { margin-top: 8px; }

  /* Pricing cards */
  .pricing-card.popular { transform: none; }
  .pricing-toggle { margin-bottom: 32px; }

  /* Subscribe */
  .subscribe-form { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .split-card { padding: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
