:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e6e3;
  --fg-muted: #8a8694;
  --accent: #4ade80;
  --accent-dim: rgba(74, 222, 128, 0.12);
  --accent-glow: rgba(74, 222, 128, 0.25);
  --warm: #f59e0b;
  --danger: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #6ee79a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.trust-icon {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 180px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--fg-muted), transparent);
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 16px;
  opacity: 0.7;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature-block {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-elevated);
}

.feature-right {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.features-cta {
  text-align: center;
}

/* ========== PROCESS ========== */
.process {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.process-inner {
  max-width: 700px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content {
  padding-bottom: 8px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent), rgba(74,222,128,0.15));
  margin-left: 21px;
}

.process-cta {
  text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 24px;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(74, 222, 128, 0.2);
}

.testimonial-quote {
  color: var(--fg);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Credibility bar */
.credibility-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.cred-icon {
  font-size: 1.1rem;
}

.cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing h2 .accent {
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-sub {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.closing-location {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: column; }
  .trust-bar { gap: 14px; padding: 14px 16px; }
  .trust-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  .feature-block,
  .feature-right {
    flex-direction: column;
    text-align: left;
  }
  .feature-number {
    font-size: 3rem;
    min-width: auto;
    text-align: left;
  }

  .problem, .features, .process, .testimonials { padding: 60px 20px; }
  .closing { padding: 80px 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .credibility-bar { gap: 16px; }
  .cred-divider { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .problem-card { padding: 24px 20px; }
  .feature-block { padding: 28px 20px; }
  .btn-large { padding: 16px 28px; font-size: 1rem; }
}
