/* ─── Fonts ───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg: #09090b;
  --surface: #13131a;
  --surface-2: #1c1c26;
  --border: #27273a;
  --accent: #f4c542;
  --accent-dim: rgba(244, 197, 66, 0.12);
  --accent-hover: #f9d463;
  --text: #ededf4;
  --text-muted: #6b6b80;
  --text-dim: #4a4a5e;
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #0a0a0b; font-weight: 600;
  font-size: 0.875rem; padding: 8px 20px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 160px; padding-bottom: 96px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 600px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(244,197,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(244,197,66,0.25);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; margin-bottom: 28px; letter-spacing: -0.03em;
  max-width: 800px; line-height: 1.08;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 560px;
  margin-bottom: 48px; font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #0a0a0b; font-weight: 600;
  font-size: 1rem; padding: 14px 32px; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,197,66,0.25); }
.btn-secondary {
  background: var(--surface); color: var(--text); font-weight: 500;
  font-size: 1rem; padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--text-muted); transform: translateY(-2px); }
.hero-proof {
  margin-top: 64px; display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-proof-item { display: flex; flex-direction: column; gap: 2px; }
.hero-proof-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.75rem; color: var(--text); }
.hero-proof-label { font-size: 0.8rem; color: var(--text-muted); }
.hero-proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── Services (2-col grid) ─────────────────────────────────────────────────── */
.services-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.services-header h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.services-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(244,197,66,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; background: var(--accent-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ─── Pricing ──────────────────────────────────────────────────────────────── */
#pricing { background: var(--surface); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.pricing-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; position: relative;
}
.pricing-card.featured { border-color: rgba(244,197,66,0.4); background: linear-gradient(135deg, rgba(244,197,66,0.05) 0%, var(--bg) 60%); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0a0b; font-size: 0.7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase;
}
.pricing-tier { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
}
.pricing-features li::before {
  content: '→'; color: var(--green); font-weight: 600; flex-shrink: 0; margin-top: 1px;
}

/* ─── Lead Form ────────────────────────────────────────────────────────────── */
#contact { position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(244,197,66,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact-inner h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.contact-inner > p { color: var(--text-muted); margin-bottom: 48px; font-size: 1.05rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; padding: 12px 16px; border-radius: var(--radius-sm);
  transition: border-color 0.2s; width: 100%; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(244,197,66,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
select option { background: var(--surface-2); }

.form-submit { margin-top: 8px; }
.btn-submit {
  width: 100%; background: var(--accent); color: #0a0a0b;
  font-weight: 700; font-size: 1.05rem; padding: 16px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all 0.2s; letter-spacing: -0.01em;
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(244,197,66,0.2); }
.form-privacy { font-size: 0.78rem; color: var(--text-dim); margin-top: 12px; text-align: center; }

.form-success {
  display: none; padding: 48px; text-align: center;
  background: var(--surface); border: 1px solid var(--green-dim);
  border-radius: var(--radius); margin-top: 32px;
}
.form-success.show { display: block; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--green); }
.form-success p { color: var(--text-muted); }

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 40px 0;
  text-align: center; color: var(--text-dim); font-size: 0.85rem;
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--text-muted); margin-bottom: 8px; }
.footer-logo span { color: var(--accent); }

/* ─── Noise texture helper ────────────────────────────────────────────────── */
.blob-orbit {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,197,66,0.15) 0%, transparent 70%);
  pointer-events: none; animation: drift 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .services-grid, .pricing-cards, .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-proof { gap: 24px; }
  .pricing-cards { max-width: 480px; }
}