:root {
  --bg: #0D0D0D;
  --bg-warm: #141210;
  --fg: #F5F0EB;
  --fg-muted: #A8A097;
  --accent: #D4A843;
  --accent-glow: #E8C36A;
  --accent-deep: #B8922E;
  --surface: #1A1816;
  --surface-border: #2A2622;
  --gradient-warm: linear-gradient(135deg, #1A1510 0%, #0D0D0D 50%, #0F1015 100%);
}

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

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--gradient-warm);
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent-deep);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  letter-spacing: 0.01em;
}

.hero-cta--primary {
  background: var(--accent);
  color: #0D0D0D;
}

.hero-cta--primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.hero-cta--secondary {
  background: transparent;
  border: 1px solid var(--surface-border);
  color: var(--fg);
}

.hero-cta--secondary:hover {
  border-color: var(--accent-deep);
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--surface-border);
}

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

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--surface-border);
}

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

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

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

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

.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-deep);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 72px;
}

.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.services-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
}

.service-item {
  padding: 48px 40px;
  background: var(--surface);
  transition: background 0.3s;
}

.service-item:hover {
  background: #1E1C19;
}

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.pricing-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.pricing-text > p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--accent-deep);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.price-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.price-amount span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.closing-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--surface-border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { width: 48px; height: 1px; }
  
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-left h2 { position: static; }
  
  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 36px 28px; }
  
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
  
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}