/* ============================================================
   edothsoft — Design System v2
   Premium dark-mode marketing site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Dark palette */
  --bg:          #080c1a;
  --bg-2:        #0d1526;
  --bg-3:        #111d35;
  --surface:     #141f38;
  --surface-2:   #1b2a4a;
  --border:      rgba(99, 140, 255, 0.14);
  --border-2:    rgba(99, 140, 255, 0.22);

  /* Brand */
  --indigo:      #4f6fff;
  --indigo-2:    #6b87ff;
  --violet:      #8b5cf6;
  --teal:        #14b8a6;
  --amber:       #f59e0b;
  --rose:        #f43f5e;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #4f6fff 0%, #8b5cf6 50%, #14b8a6 100%);
  --grad-card:   linear-gradient(145deg, rgba(79,111,255,.08) 0%, rgba(139,92,246,.06) 100%);
  --grad-btn:    linear-gradient(120deg, #4f6fff 0%, #6b4fcd 100%);

  /* Text */
  --text:        #e8eeff;
  --text-2:      #a3b4d8;
  --text-3:      #6b80a8;

  /* Shadows */
  --glow-indigo: 0 0 40px rgba(79,111,255,.25);
  --glow-violet: 0 0 40px rgba(139,92,246,.2);
  --shadow-card: 0 20px 60px rgba(0,0,0,.45);
  --shadow-btn:  0 8px 24px rgba(79,111,255,.4);

  /* Layout */
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gradient {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-2);
  background: rgba(79,111,255,.1);
  border: 1px solid rgba(79,111,255,.25);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  margin-bottom: 1.1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 58ch;
  line-height: 1.75;
}

/* ── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 200;
  background: var(--indigo);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,12,26,.72);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(79,111,255,.12);
}
.nav-links a.active {
  color: var(--indigo-2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,12,26,.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--indigo-2); background: rgba(79,111,255,.1); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(79,111,255,.55);
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(79,111,255,.1);
  color: var(--indigo-2);
  border: 1px solid rgba(79,111,255,.25);
}
.btn-ghost:hover {
  background: rgba(79,111,255,.18);
  border-color: rgba(79,111,255,.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  color: var(--text);
  border-color: rgba(99,140,255,.4);
  background: rgba(79,111,255,.06);
}

.btn-nav {
  background: var(--grad-btn);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-btn);
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(79,111,255,.5); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,111,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 10rem 0 7rem;
  overflow: hidden;
}

/* Animated background blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobPulse 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #4f6fff 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 0; right: -100px;
  animation-delay: -3s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: -5s;
}

@keyframes blobPulse {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.08) translate(20px, -15px); }
  66%  { transform: scale(0.95) translate(-10px, 20px); }
  100% { transform: scale(1.05) translate(10px, 5px); }
}

/* Grid noise overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,111,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,111,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 { margin-bottom: 1.4rem; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.badge svg { width: 14px; height: 14px; stroke: var(--teal); }

/* Hero visual card */
.hero-visual {
  position: relative;
}

.hero-mockup {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card), var(--glow-indigo);
  position: relative;
  overflow: hidden;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-hero);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.mockup-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: var(--rose); }
.mockup-dot:nth-child(2) { background: var(--amber); }
.mockup-dot:nth-child(3) { background: var(--teal); }

.mockup-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-2);
  margin-bottom: 0.6rem;
}
.mockup-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mockup-text {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.mockup-stat {
  background: rgba(79,111,255,.08);
  border: 1px solid rgba(79,111,255,.15);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
}
.mockup-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--indigo-2);
}
.mockup-stat-label { font-size: 0.72rem; color: var(--text-3); margin-top: 0.15rem; }

.mockup-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.mockup-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(79,111,255,.12);
  color: var(--indigo-2);
  border: 1px solid rgba(79,111,255,.2);
}

/* Floating badges on hero visual */
.float-badge {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: floatBadge 4s ease-in-out infinite alternate;
  white-space: nowrap;
}
.float-badge-1 { top: -20px; right: -20px; animation-delay: 0s; color: var(--teal); }
.float-badge-2 { bottom: 20px; left: -30px; animation-delay: -2s; color: var(--violet); }

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg-2);
  padding: 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-top: 0.4rem;
}

/* ── PRODUCTS ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card.indigo::before  { background: linear-gradient(90deg, #4f6fff, #8b5cf6); }
.product-card.violet::before  { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.product-card.teal::before    { background: linear-gradient(90deg, #14b8a6, #4f6fff); }

.product-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.product-card:hover::before { opacity: 1; }

.product-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.product-icon.indigo { background: rgba(79,111,255,.15); }
.product-icon.violet { background: rgba(139,92,246,.15); }
.product-icon.teal   { background: rgba(20,184,166,.15); }

.product-card h3 { margin-bottom: 0.75rem; }

.product-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.product-features {
  margin: 1.4rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.indigo .product-features li::before { background: var(--indigo-2); }
.violet .product-features li::before { background: var(--violet); }
.teal   .product-features li::before { background: var(--teal); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section { background: var(--bg-2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--violet) 50%, var(--teal) 100%);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--indigo-2);
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.88rem; color: var(--text-2); }

/* ── WHY EDOTHSOFT ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(79,111,255,.1);
  border: 1px solid rgba(79,111,255,.2);
}
.why-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.why-item p  { font-size: 0.9rem; color: var(--text-2); }

/* Right side — visual */
.why-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card), var(--glow-violet);
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}
.platform-row:hover { border-color: var(--border-2); background: rgba(79,111,255,.05); }
.platform-row:last-child { margin-bottom: 0; }
.platform-dot {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dot-indigo { background: rgba(79,111,255,.18); }
.dot-violet { background: rgba(139,92,246,.18); }
.dot-teal   { background: rgba(20,184,166,.18); }
.platform-info { flex: 1; }
.platform-name { font-size: 0.9rem; font-weight: 700; }
.platform-sub  { font-size: 0.78rem; color: var(--text-3); }
.platform-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(20,184,166,.15);
  color: var(--teal);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--bg-3); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--indigo);
  opacity: 0.5;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name  { font-size: 0.88rem; font-weight: 700; }
.author-title { font-size: 0.78rem; color: var(--text-3); }

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

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: var(--border-2); }

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--indigo-2);
  transition: transform 0.25s;
  line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }

details p {
  padding: 0 1.4rem 1.4rem;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ── LEAD CAPTURE ────────────────────────────────────────── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-copy h2 { margin-bottom: 1rem; }
.cta-copy p  {
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
}
.cta-trust-item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(20,184,166,.15);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Contact Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.form-card h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field.full { grid-column: span 2; }
label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
input, textarea, select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(79,111,255,.5);
  box-shadow: 0 0 0 3px rgba(79,111,255,.12);
}
textarea { min-height: 110px; }
select option { background: var(--bg-3); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.shown { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h4    { margin-bottom: 0.5rem; }
.form-success p     { color: var(--text-2); font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-2);
  max-width: 30ch;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--indigo-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.83rem; color: var(--text-3); }

/* ── INDIVIDUAL PRODUCT PAGE ─────────────────────────────── */
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-blobs { opacity: 0.6; }

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { margin: 0.75rem 0 1.1rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.compare-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.compare-table tr:hover td { background: rgba(79,111,255,.04); }
.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .cross { color: var(--rose); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-btn);
  color: #fff;
}
.team-name  { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role  { font-size: 0.83rem; color: var(--text-3); margin-bottom: 0.75rem; }
.team-bio   { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--indigo);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-2); margin-bottom: 2rem; line-height: 1.75; }
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.2s;
}
.contact-channel:hover { border-color: var(--border-2); background: rgba(79,111,255,.05); }
.channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(79,111,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.channel-label { font-size: 0.78rem; color: var(--text-3); font-weight: 600; }
.channel-value { font-size: 0.9rem; font-weight: 700; color: var(--indigo-2); }

/* ── SCROLL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.section-header .eyebrow { display: inline-block; }
.section-header h2 { margin-top: 0.75rem; }
.section-header p  { color: var(--text-2); margin-top: 1rem; font-size: 1.05rem; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-wrapper { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger  { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual  { display: none; }

  .products-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .contact-split  { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .field-group    { grid-template-columns: 1fr; }
  .field.full     { grid-column: span 1; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .hero { padding: 8rem 0 4rem; }
  .section { padding: 4rem 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr; }
  .hero-cta    { flex-direction: column; align-items: flex-start; }
  .btn, .btn-ghost, .btn-outline { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
