/* ============================================================
   CSS VARIABLES — matching the Next.js oklch design system
   ============================================================ */
:root {
  --primary: oklch(0.385 0.148 264.5);
  --primary-fg: oklch(0.985 0 0);
  --accent:  oklch(0.82 0.152 83.6);
  --accent-fg: oklch(0.145 0 0);
  --bg:      oklch(1 0 0);
  --fg:      oklch(0.145 0 0);
  --card:    oklch(0.98 0.002 254.8);
  --muted:   oklch(0.93 0 0);
  --muted-fg: oklch(0.556 0 0);
  --border:  oklch(0.92 0.002 254.8);
  --destructive: oklch(0.577 0.245 27.325);
  --radius:  0.625rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }

/* ============================================================
   UTILITY
   ============================================================ */
.container      { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.container-wide { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.section        { padding: 5rem 1rem; }
.bg-muted-light { background: oklch(0.93 0 0 / 0.3); }
.bg-gradient-subtle {
  background: linear-gradient(to bottom, var(--bg), oklch(0.93 0 0 / 0.05), var(--bg));
}
.bg-gradient-integration {
  background: linear-gradient(to bottom, var(--bg), oklch(0.385 0.148 264.5 / 0.05), var(--bg));
}
.text-muted  { color: var(--muted-fg); }
.text-accent { color: var(--accent); }
.text-white  { color: #fff; }
.text-primary { color: var(--primary); }
.small       { font-size: 0.875rem; }
.mt-2        { margin-top: 0.5rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-title  { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; text-wrap: balance; text-align: center; }
.section-sub    { font-size: 1.125rem; color: var(--muted-fg); max-width: 40rem; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.875rem;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--primary); color: var(--primary-fg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: oklch(0.42 0.148 264.5); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-sm  { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.btn-lg  { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: oklch(1 0 0 / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; height: 4rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo-img { height: 3rem; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.nav-logo-sub { font-size: 0.65rem; font-weight: 600; color: #2563EB; letter-spacing: 0.03em; line-height: 1.2; }
.nav-links { display: none; gap: 2rem; }
.nav-link { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.nav-link:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-hamburger { display: flex; padding: 0.5rem; color: var(--fg); }
.mobile-menu { display: none; padding: 0 1rem 1rem; }
.mobile-link { display: block; padding: 0.5rem 0.75rem; font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.mobile-link:hover { color: var(--fg); }
.mobile-menu.open { display: block; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-logo-text { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo-text { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 5rem 1rem; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transform: scale(1.05);
  transition: transform 0.7s ease-out;
}
.hero-overlay  { position: absolute; inset: 0; background: rgba(255,255,255,0.5); z-index: -1; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, oklch(0.145 0 0 / 0.6) 0%, oklch(0.145 0 0 / 0.5) 50%, oklch(0.145 0 0 / 0.3) 100%);
  z-index: -1;
}
.hero-orb {
  position: absolute; width: 24rem; height: 24rem;
  border-radius: 50%; filter: blur(60px); z-index: -1; animation: pulse 4s ease-in-out infinite;
}
.hero-orb-tr { top: 2.5rem; right: 2.5rem; background: radial-gradient(oklch(0.385 0.148 264.5 / 0.2), oklch(0.385 0.148 264.5 / 0.05)); }
.hero-orb-bl { bottom: 0; left: 0; background: radial-gradient(oklch(0.82 0.152 83.6 / 0.2), oklch(0.82 0.152 83.6 / 0.05)); animation-delay: 1s; }
.hero-content { max-width: 72rem; width: 100%; margin: 0 auto; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  background: oklch(0.385 0.148 264.5 / 0.1); color: var(--primary);
  font-size: 0.875rem; font-weight: 500; border: 1px solid oklch(0.385 0.148 264.5 / 0.2);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  width: fit-content; transition: all 0.3s; cursor: default;
}
.hero-badge:hover {
  background: oklch(0.385 0.148 264.5 / 0.2);
  border-color: oklch(0.385 0.148 264.5 / 0.4);
  transform: scale(1.05);
}
.pulse-dot { animation: pulse 2s ease-in-out infinite; }
.hero-heading h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; }
.hero-heading .text-accent { color: #facc15; }
.hero-desc { font-size: 1.125rem; color: #fff; max-width: 36rem; line-height: 1.7; }
.hero-trust { padding-top: 2rem; border-top: 1px solid oklch(1 0 0 / 0.15); }
.trust-label { font-size: 0.875rem; color: #e5e7eb; margin-bottom: 1rem; }
.trust-items { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: #e5e7eb;
  transition: all 0.3s; cursor: default;
}
.trust-item:hover { color: var(--primary); transform: scale(1.1); }
.trust-icon {
  padding: 0.375rem; border-radius: 0.5rem;
  background: oklch(0.385 0.148 264.5 / 0.1); color: var(--primary);
}
.trust-item:hover .trust-icon { background: oklch(0.385 0.148 264.5 / 0.2); }

/* Hero right floating shapes */
.hero-right { display: none; position: relative; height: 20rem; }
@media (min-width: 1024px) { .hero-right { display: block; } }
.floating-shape { position: absolute; transition: transform 0.7s ease-out; }
.shape-square {
  top: 5rem; right: 5rem; width: 5rem; height: 5rem;
  border: 2px solid oklch(0.385 0.148 264.5 / 0.2);
  border-radius: 0.5rem; transform: rotate(45deg);
}
.shape-circle {
  bottom: 5rem; left: 5rem; width: 4rem; height: 4rem;
  border: 2px solid oklch(0.385 0.148 264.5 / 0.15); border-radius: 50%;
}
.shape-rect {
  top: 50%; right: 2.5rem; width: 3rem; height: 3rem;
  background: oklch(0.385 0.148 264.5 / 0.1);
  border-radius: 0.5rem; transform: rotate(12deg);
}

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.problem-section { position: relative; overflow: hidden; }
.problem-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: start; position: relative;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1px 1fr; }
}
.problem-divider { display: none; }
@media (min-width: 768px) {
  .problem-divider { display: block; background: var(--border); width: 1px; align-self: stretch; }
}
.problem-col { padding-right: 0; }
.solution-col { padding-left: 0; }
@media (min-width: 768px) {
  .problem-col  { padding-right: 3rem; }
  .solution-col { padding-left: 3rem;  }
}
.problem-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.problem-header h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.problem-header p  { font-size: 0.9375rem; }
.icon-destructive { color: var(--destructive); flex-shrink: 0; margin-top: 0.125rem; }
.icon-accent      { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.dot-list { display: flex; flex-direction: column; gap: 0.75rem; }
.dot-item { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-fg); font-size: 0.9375rem; }
.dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; flex-shrink: 0; }
.dot-destructive { background: var(--destructive); }
.dot-accent      { background: var(--accent); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  border-color: oklch(0.385 0.148 264.5 / 0.3);
  box-shadow: var(--shadow-lg); transform: scale(1.02);
}
.feature-img-wrap { height: 12rem; overflow: hidden; background: var(--muted); }
.feature-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feature-card:hover .feature-img { transform: scale(1.08); }
.feature-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.feature-icon { color: var(--primary); margin-bottom: 0.75rem; }
.feature-body h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-body p  { font-size: 0.9375rem; padding-bottom: 0.5rem; }

/* ============================================================
   OFFLINE CAPABILITY
   ============================================================ */
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: oklch(0.385 0.148 264.5 / 0.1);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  color: var(--primary); margin-bottom: 1.5rem;
}
.offline-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .offline-grid { grid-template-columns: 1fr 1fr; } }

.card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: border-color 0.3s;
}
.card.border-2 { border-width: 2px; }
.card.border-accent { border-color: oklch(0.82 0.152 83.6 / 0.5); }
.card.border-2:hover { border-color: oklch(0.385 0.148 264.5 / 0.5); }
.card.border-accent:hover { border-color: oklch(0.82 0.152 83.6); }

.card-header-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.icon-box { padding: 0.75rem; border-radius: 0.5rem; flex-shrink: 0; }
.icon-box-destructive { background: oklch(0.577 0.245 27.325 / 0.1); color: var(--destructive); }
.icon-box-accent      { background: oklch(0.82 0.152 83.6 / 0.1); color: var(--accent); }
.card-title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.125rem; }
.card-desc  { font-size: 0.875rem; color: var(--muted-fg); }

.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; }
.check-item svg { flex-shrink: 0; margin-top: 0.125rem; }
.icon-primary { color: var(--primary); }

.offline-benefits { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .offline-benefits { grid-template-columns: 1fr 1fr 1fr; } }
.benefit-card {
  padding: 1.5rem; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.3s;
}
.benefit-card:hover { border-color: oklch(0.385 0.148 264.5 / 0.3); }
.benefit-emoji { font-size: 1.875rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-weight: 600; margin-bottom: 0.5rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr 1fr; } }

.step-card {
  position: relative; padding: 2rem 1.5rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: scale(1.03); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--primary); color: var(--primary-fg);
  font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}
.step-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.9375rem; }
.step-arrow {
  display: none; position: absolute;
  top: 50%; right: -34px; transform: translateY(-50%);
  background: var(--card); padding: 0.25rem; z-index: 1;
}
@media (min-width: 768px) { .step-arrow { display: flex; } }

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 5rem;
}
.integration-card {
  flex: 0 0 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem);
  border: 2px solid oklch(0.92 0.002 254.8 / 0.4); border-radius: var(--radius);
  background: oklch(0.98 0.002 254.8 / 0.5); text-align: center; padding: 1.5rem 1rem;
  position: relative; overflow: hidden; cursor: default;
  transition: all 0.3s ease;
}
@media (min-width: 640px)  { .integration-card { flex: 0 0 calc(33.333% - 1rem); max-width: calc(33.333% - 1rem); } }
@media (min-width: 1024px) { .integration-card { flex: 0 0 calc(25% - 1.125rem); max-width: calc(25% - 1.125rem); } }
.integration-card.hovered { border-color: oklch(0.385 0.148 264.5 / 0.4); background: oklch(0.385 0.148 264.5 / 0.05); box-shadow: var(--shadow-md); }
.integration-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); }
.integration-icon-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.integration-icon-wrap div { padding: 0.75rem; border-radius: 0.5rem; background: oklch(0.385 0.148 264.5 / 0.1); }
.integration-card.hovered .integration-icon-wrap div { background: oklch(0.385 0.148 264.5 / 0.15); }
.integration-name { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.integration-cat  { font-size: 0.75rem; color: var(--muted-fg); }
.integration-card.hovered .integration-cat { color: var(--fg); font-weight: 500; }

.api-box {
  border-radius: 1rem; border: 1px solid oklch(0.385 0.148 264.5 / 0.3);
  background: linear-gradient(135deg, oklch(0.385 0.148 264.5 / 0.1), var(--bg), oklch(0.82 0.152 83.6 / 0.1));
  padding: 2rem;
  backdrop-filter: blur(20px);
}
@media (min-width: 768px) { .api-box { padding: 3rem; } }
.api-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .api-grid { grid-template-columns: 1fr 1fr; } }
.api-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: var(--primary); font-weight: 600; font-size: 0.875rem; font-family: 'Space Grotesk', sans-serif; }
.api-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--primary); }
.api-heading { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.api-actions { margin-top: 1.5rem; }
.api-right { display: none; justify-content: center; }
@media (min-width: 768px) { .api-right { display: flex; } }
.api-visual { position: relative; width: 12rem; height: 12rem; }
.api-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid oklch(0.385 0.148 264.5 / 0.3);
}
.api-ring-outer { inset: 0; }
.api-ring-inner { inset: 1rem; border-color: oklch(0.385 0.148 264.5 / 0.2); }
.api-zap {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.api-zap div {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-box-wrap { max-width: 48rem; margin: 0 auto; }
.pricing-box {
  padding: 2.5rem; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .pricing-box { padding: 3rem; } }
.pricing-box-header { text-align: center; margin-bottom: 2.5rem; }
.pricing-box-title { font-size: 1.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.pricing-benefits { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.benefit-row { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon-wrap {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: oklch(0.385 0.148 264.5 / 0.1); border: 1px solid oklch(0.385 0.148 264.5 / 0.2);
  display: flex; align-items: center; justify-content: center;
}
.benefit-row h4 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.25rem; }
.benefit-row p  { font-size: 0.9375rem; }
.pricing-cta { text-align: center; }
.pricing-contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.125rem; font-weight: 600; color: var(--primary);
  font-family: 'Space Grotesk', sans-serif; transition: opacity 0.2s;
}
.pricing-contact-link:hover { opacity: 0.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testimonial-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  display: flex; flex-direction: column; height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: scale(1.03); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star { color: var(--accent); }
.testimonial-quote { color: var(--fg); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: oklch(0.385 0.148 264.5 / 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
}
.author-name { font-weight: 600; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resources-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .resources-grid { grid-template-columns: 1fr 1fr 1fr; } }
.resource-card-link { display: block; }
.resource-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.resource-card:hover { border-color: oklch(0.385 0.148 264.5 / 0.3); transform: scale(1.03); box-shadow: var(--shadow-md); }
.resource-img-wrap { height: 10rem; overflow: hidden; background: var(--muted); }
.resource-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.resource-card:hover .resource-img { transform: scale(1.08); }
.resource-body { padding: 1.5rem; flex: 1; }
.resource-icon { color: var(--primary); margin-bottom: 1rem; }
.resource-body h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }

.cta-box {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); padding: 2rem; text-align: center;
}
.cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.cta-box p  { margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: oklch(0.93 0 0 / 0.3); }
.footer-inner { max-width: 72rem; margin: 0 auto; padding: 3rem 1rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo-img { height: 3rem; width: auto; }
.footer-logo-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; display: block; }
.footer-logo-sub { font-size: 0.65rem; font-weight: 600; color: #2563EB; letter-spacing: 0.03em; display: block; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-fg); font-size: 0.875rem; }
.footer-address { align-items: flex-start; }
.footer-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 2rem; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 100;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.5);
}
.modal-backdrop.open { display: flex; }
.modal-box {
  position: relative; width: 100%; max-width: 28rem; margin: 1rem;
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  max-height: 90svh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.5rem; border-radius: 0.5rem; color: var(--fg);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--muted); }
.modal-body { padding: 2rem; }
.modal-body h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-body > p { color: var(--muted-fg); margin-bottom: 1.5rem; }

.demo-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-input {
  width: 100%; padding: 0.5rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9375rem;
  background: var(--bg); color: var(--fg); transition: box-shadow 0.2s, border-color 0.2s;
}
.form-input:focus { outline: none; box-shadow: 0 0 0 2px oklch(0.385 0.148 264.5 / 0.4); border-color: var(--primary); }

.recaptcha-wrap { display: flex; justify-content: center; }
.error-msg { padding: 0.75rem; background: oklch(0.577 0.245 27.325 / 0.1); border: 1px solid oklch(0.577 0.245 27.325 / 0.2); border-radius: var(--radius); font-size: 0.875rem; color: var(--destructive); }
.success-msg { text-align: center; padding: 2rem 0; }
.success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: #16a34a;
}
.success-msg h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
@keyframes pulse       { 0%,100% { opacity:.8; } 50% { opacity:1; } }
@keyframes spin        { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-fade-in-up  { animation: fadeInUp  0.6s ease-out both; }
.animate-fade-in-left  { animation: fadeInLeft  0.6s ease-out both; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease-out both; }
.animate-fade-in { animation: fadeIn 0.6s ease-out both; }
.animate-pulse   { animation: pulse 2s ease-in-out infinite; }
.animate-spin    { animation: spin  1s linear infinite; }

/* Elements start hidden and animate in when .revealed is added by JS */
.scroll-reveal, .scroll-reveal-up, .scroll-reveal-left, .scroll-reveal-right {
  opacity: 0;
}
.scroll-reveal.revealed        { animation: fadeInUp  0.6s ease-out both; }
.scroll-reveal-up.revealed     { animation: fadeInUp  0.6s ease-out both; }
.scroll-reveal-left.revealed   { animation: fadeInLeft 0.6s ease-out both; }
.scroll-reveal-right.revealed  { animation: fadeInRight 0.6s ease-out both; }
