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

:root {
  --bg-primary: #0C0A09;
  --bg-secondary: #1C1917;
  --bg-card: #1C1917;
  --text-primary: #FAF9F6;
  --text-secondary: #A8A29E;
  --text-muted: #78716C;
  --accent: #D4A574;
  --accent-light: #E8C9A8;
  --accent-glow: rgba(212, 165, 116, 0.15);
  --border: #292524;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  background: var(--bg-secondary);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  font-weight: 400;
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.25);
}

.hero-cta svg { transition: transform 0.2s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

.proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.proof-avatars { display: flex; }

.proof-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.proof-avatars span:first-child { margin-left: 0; background: #4a3728; color: var(--accent); }
.proof-avatars span:nth-child(2) { background: #2d3a2d; color: #6ee7b7; }
.proof-avatars span:nth-child(3) { background: #2d2d3a; color: #93c5fd; }

/* SECTIONS */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

/* PROBLEM */
.problem {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.problem h2 { margin-bottom: 3rem; max-width: 600px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  transition: border-color 0.3s ease;
}

.problem-card:hover { border-color: var(--accent); }

.problem-card .stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.problem-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.problem-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* HOW IT WORKS */
.how {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.how .section-desc {
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 500px;
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  line-height: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.65; }

/* BENEFITS */
.benefits {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.benefits h2 { margin-bottom: 3rem; max-width: 500px; }

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: var(--bg-secondary);
  border-color: rgba(212, 165, 116, 0.2);
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}

.benefit-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.benefit-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* VERTICALS GRID (homepage) */
.verticals {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.verticals h2 { margin-bottom: 1rem; }

.verticals .section-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 520px;
  font-size: 1.05rem;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.vertical-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.vertical-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vertical-card .v-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.vertical-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vertical-card .v-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.vertical-card:hover .v-link svg { transform: translateX(3px); }
.vertical-card .v-link svg { transition: transform 0.2s ease; }

/* CTA / FORM */
.cta-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-box > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-group input, .form-group select {
  padding: 0.9rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input::placeholder, .form-group select { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-primary); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}

.submit-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.success-message {
  display: none;
  padding: 2rem;
  text-align: center;
}

.success-message.show { display: block; }

.success-message h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.success-message p { color: var(--text-secondary); }

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer .logo { display: inline-block; margin-bottom: 0.75rem; }
footer p { color: var(--text-muted); font-size: 0.8rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text-secondary); }

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  nav { padding: 1rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .problem, .how, .benefits, .verticals, .cta-section { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .proof { flex-direction: column; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero::before { display: none; }
  @keyframes pulse { 0%, 100% { opacity: 1; } }
}
