:root {
  --bg-primary: #0c0a09;
  --bg-secondary: #1c1917;
  --bg-card: #292524;
  --fg-primary: #fafaf9;
  --fg-secondary: #a8a29e;
  --fg-muted: #78716c;
  --accent: #f59e0b;
  --accent-warm: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --accent-subtle: rgba(245, 158, 11, 0.08);
  --border: rgba(168, 162, 158, 0.1);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HERO ============ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ============ SERVICES ============ */
.services {
  padding: 100px 0;
  position: relative;
}

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

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  background: var(--bg-card);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
}

.step {
  position: relative;
  padding: 32px 0;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-subtle);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.2) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============ WHY ============ */
.why-section {
  padding: 100px 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.why-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--fg-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ============ CLOSING ============ */
.closing {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.closing .container {
  position: relative;
  z-index: 1;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.closing-sub {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg-primary);
}

.footer-brand .accent {
  color: var(--accent);
}

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

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand .accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--fg-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg-primary); }

/* Offset hero for fixed nav */
.hero { padding-top: 160px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  padding: 11px 22px;
}

.btn-primary {
  background: var(--accent);
  color: #0c0a09;
}

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

.btn-secondary {
  background: transparent;
  color: var(--fg-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: rgba(168, 162, 158, 0.3);
  background: var(--bg-secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--fg-primary);
  border-color: rgba(168, 162, 158, 0.3);
}

.btn-sm { padding: 7px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ============ HERO CTA ============ */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ============ CLOSING CTA ============ */
.closing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ============ PRICING ============ */
.pricing {
  padding: 100px 0;
  position: relative;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.pricing-featured {
  background: var(--bg-card);
  border-color: rgba(245, 158, 11, 0.3);
  /* Slightly larger — draws the eye */
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.08);
}

.plan-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--accent);
  color: #0c0a09;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg-primary);
}

.price-mo {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.plan-desc {
  color: var(--fg-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  color: var(--fg-secondary);
  font-size: 0.88rem;
  padding: 5px 0;
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.83rem;
  margin-top: 32px;
}

/* ============ CONSULTATION FORM PAGE ============ */
.consult-hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
}

.consult-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.consult-context {
  position: sticky;
  top: 100px;
}

.consult-sub {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.consult-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-subtle);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.benefit-item p {
  color: var(--fg-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ============ FORM STYLES ============ */
.consult-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-secondary);
  letter-spacing: 0.01em;
}

.required { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(245, 158, 11, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.services-check-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--fg-secondary);
  transition: color 0.2s;
}

.check-label:hover { color: var(--fg-primary); }

.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Hide the custom .check-box — accent-color handles the native checkbox */
.check-box { display: none; }

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
}

.form-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: -8px;
}

.form-note a { color: var(--fg-muted); }

.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--fg-secondary);
  line-height: 1.6;
}

.hidden { display: none !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .services, .how-it-works, .why-section {
    padding: 60px 0;
  }

  .closing {
    padding: 80px 0 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-featured {
    transform: none;
  }

  .consult-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consult-context {
    position: static;
  }

  .consult-hero {
    padding: 100px 0 60px;
  }

  .consult-form-wrap {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links .nav-link {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}