@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #fafaf9;
  color: #1c1917;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

::selection { background: rgba(59,130,246,0.15); color: #1d4ed8; }

/* ─── Typography ─────────────────────────────────────────────── */
h1 { color: #17A18C; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Hero Background ────────────────────────────────────────── */
.bg-grid {
  background-color: #fafaf9;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(23,161,140,0.05) 0%, transparent 60%),
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  background-position: center top;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250,250,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7e5e4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: #d6d3d1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img { width: 40px; height: 40px; opacity: 0.85; }

.nav-logo span {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1c1917;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #44403c;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: #1c1917; background: #f5f5f4; }
.nav-links a.active { color: #17A18C; background: #eff6ff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-contact {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #17A18C;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-contact:hover { color: #129e8a; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #17A18C;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(23,161,140,0.3);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #129e8a; box-shadow: 0 4px 12px rgba(23,161,140,0.35); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: #f8fafc; border-color: #cbd5e1; }

.btn-primary-lg {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(23,161,140,0.3);
}
.btn-secondary-lg {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
}

/* ─── Hamburger ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: #f1f5f9; }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fafaf9;
  z-index: 40;
  flex-direction: column;
  padding: 96px 24px 32px;
}
.mobile-menu.open { display: flex; }

.mobile-nav { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav a {
  padding: 12px 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #44403c;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: #1c1917; background: #f5f5f4; }
.mobile-nav a.active { color: #17A18C; background: #eff6ff; }
.mobile-nav a[href="contact.html"] { color: #17A18C; }

.mobile-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}
.mobile-cta .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #17A18C;
  margin-bottom: 24px;
}

.hero h1 .accent { color: #17A18C; }

.hero h1 .h1-subline, .page-hero h1 .h1-subline { color: #1c1917; font-size: 0.75em; white-space: nowrap; }

.hero-sub {
  font-size: 1.3rem;
  color: #57534e;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  font-size: 0.9375rem;
  color: #64748b;
}

/* ─── Terminal Card ───────────────────────────────────────────── */
.terminal-wrap {
  position: relative;
}

.terminal-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.12), transparent 70%);
  border-radius: 20px;
  pointer-events: none;
}

.terminal-card {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.terminal-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red   { background: rgba(239,68,68,0.6); }
.dot-yellow{ background: rgba(234,179,8,0.6); }
.dot-green { background: rgba(34,197,94,0.6); }

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terminal-body {
  padding: 32px;
  height: 380px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  position: relative;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.terminal-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  position: relative;
  z-index: 2;
}
.terminal-prompt .dollar { color: #60a5fa; }
.cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.terminal-steps {
  margin-top: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.terminal-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
}
.terminal-step svg { flex-shrink: 0; width: 14px; height: 14px; }
.step-blue   .icon { color: #60a5fa; }
.step-purple .icon { color: #a78bfa; }
.step-yellow .icon { color: #fbbf24; }
.step-green  { color: #4ade80; }

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

.terminal-lineage {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  opacity: 0;
  animation: fade-up 0.6s ease 3.5s forwards;
  position: relative;
  z-index: 2;
}

.lineage-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lineage-live { color: #4ade80; }

.lineage-nodes {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lineage-node {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}
.node-pg    { border: 1px solid rgba(96,165,250,0.3);  background: rgba(96,165,250,0.1);  color: #60a5fa; }
.node-dbt   { border: 1px solid rgba(167,139,250,0.3); background: rgba(167,139,250,0.1); color: #a78bfa; }
.node-snow  { border: 1px solid rgba(34,211,238,0.3);  background: rgba(34,211,238,0.1);  color: #22d3ee; }

.lineage-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,0.4), rgba(167,139,250,0.4));
  position: relative;
}
.lineage-ping {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: ping 1.5s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(2); opacity: 0; }
}

/* ─── Section Base ───────────────────────────────────────────── */
section { padding-block: 96px; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #17A18C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1c1917;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.25rem;
  color: #57534e;
  line-height: 1.7;
}

/* ─── Features ───────────────────────────────────────────────── */
.features { background: #fff; padding-top: 12px; }

.features-intro { text-align: center; margin-inline: auto; margin-bottom: 80px; }

.feature-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text {
  padding-left: 24px;
  border-left: 2px solid #bfdbfe;
  transition: border-color 0.4s;
}
.feature-row:hover .feature-text { border-left-color: #17A18C; }

.feature-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.75;
}

.feature-img-wrap {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: #fff;
  transition: box-shadow 0.4s, transform 0.4s;
}
.feature-row:hover .feature-img-wrap {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: scale(1.01);
}
.feature-img-wrap img { width: 100%; height: auto; display: block; opacity: 0.92; }
.feature-row:hover .feature-img-wrap img { opacity: 1; }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats { background: #f5f5f4; border-top: 1px solid #e7e5e4; border-bottom: 1px solid #e7e5e4; }

.stats-intro { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 56px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-block: 40px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-item { text-align: center; }
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.stat-label { font-size: 1rem; color: #334155; }

/* ─── CTA Strip ──────────────────────────────────────────────── */
.cta-strip { background: #fff; text-align: center; }
.cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 20px;
}
.cta-strip p { font-size: 1.25rem; color: #334155; max-width: 480px; margin-inline: auto; margin-bottom: 40px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.link-arrow:hover { color: #0f172a; }
.link-arrow svg { width: 16px; height: 16px; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding-block: 56px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #e2e8f0; }

.footer-socials { display: flex; align-items: center; gap: 20px; }
.footer-socials a {
  color: #64748b;
  transition: color 0.2s;
  text-decoration: none;
  display: flex; align-items: center;
}
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom {
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  font-size: 0.8125rem;
  color: #475569;
}
.footer-bottom a { color: #475569; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #94a3b8; }
.footer-status { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(74,222,128,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 680px;
  width: calc(100% - 48px);
  animation: slide-up-banner 0.4s ease forwards;
}
.cookie-banner.hidden { display: none; }

@keyframes slide-up-banner {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  flex: 1;
}
.cookie-text a { color: #60a5fa; text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.cookie-decline {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  background: transparent;
  border: 1px solid #334155;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-decline:hover { color: #e2e8f0; border-color: #475569; }

.cookie-accept {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #17A18C;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #129e8a; }

/* ─── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .terminal-wrap { display: none; } /* hide terminal on small screens */

  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-status { margin-left: 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary-lg,
  .hero-actions .btn-secondary-lg { width: 100%; justify-content: center; }
}

/* ─── Inner Page Layout ──────────────────────────────────────── */
.page-hero {
  padding-top: 140px;
  padding-bottom: 72px;
  border-bottom: 1px solid #f1f5f9;
}
.page-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.page-hero h1, .faq-intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1c1917;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 .accent { color: #17A18C; }
.page-hero .lead {
  font-size: 1.25rem;
  color: #57534e;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Card Grid ──────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.06); border-color: #d6d3d1; }

.card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.9375rem;
  color: #78716c;
  line-height: 1.7;
}
.card-accent { border-left: 3px solid #17A18C; }

/* ─── Page Section ───────────────────────────────────────────── */
.page-section { padding-block: 80px; }
.page-section-alt { background: #f5f5f4; }
.page-section + .page-section { border-top: 1px solid #e7e5e4; }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1c1917;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.125rem;
  color: #78716c;
  line-height: 1.7;
}

/* ─── Feature List ───────────────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}
.feature-list li::before {
  content: '→';
  color: #17A18C;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Pricing Cards ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.pricing-card.featured {
  border-color: #17A18C;
  box-shadow: 0 0 0 1px #17A18C, 0 8px 32px rgba(23,161,140,0.12);
}

.pricing-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
.pricing-header .card-tag { margin-bottom: 4px; }
.pricing-card.featured .pricing-header { background: #eff6ff; border-bottom-color: #dbeafe; }
.pricing-recommended {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #dbeafe;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.pricing-header p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

.pricing-body { padding: 24px; flex: 1; }
.pricing-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9375rem;
  color: #334155;
}
.pricing-body li::before { content: '→'; color: #17A18C; flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.pricing-footer { padding: 20px 24px 24px; }
.pricing-footer .btn-primary { width: 100%; justify-content: center; }
.pricing-footer .btn-secondary { width: 100%; justify-content: center; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px;
}
.faq-item h4 { font-size: 1rem; font-weight: 600; color: #0f172a; margin-bottom: 8px; }
.faq-item p { font-size: 0.9375rem; color: #475569; line-height: 1.7; }

/* ─── CTA Box ────────────────────────────────────────────────── */
.cta-box {
  background: #0f172a;
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-box p { font-size: 1.125rem; color: #94a3b8; max-width: 480px; margin-inline: auto; margin-bottom: 36px; }
.cta-box-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary-white:hover { background: #f1f5f9; }
.link-arrow-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.link-arrow-white:hover { color: #fff; }
.link-arrow-white svg { width: 16px; height: 16px; }

/* ─── Contact Form ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 700; color: #0f172a; margin-bottom: 16px; letter-spacing: -0.02em; }
.contact-info p { font-size: 1rem; color: #475569; line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: #334155; margin-bottom: 12px; }
.contact-detail svg { width: 18px; height: 18px; color: #17A18C; flex-shrink: 0; }

.contact-form { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #17A18C;
  box-shadow: 0 0 0 3px rgba(23,161,140,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 13px; }

@media (max-width: 768px) {
  .card-grid-2, .card-grid-3, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .page-hero { padding-top: 110px; }
}
