:root {
  --bg: #0a0a0a;
  --fg: #f5f5f0;
  --fg-muted: #a0a0a0;
  --accent: #ff4d00;
  --accent-glow: #ff6b2b;
  --surface: #141414;
  --surface-border: #252525;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

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

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

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

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

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.4;
}

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,77,0,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ═══════════ PROBLEM ═══════════ */
.problem {
  padding: 120px 40px;
  background: var(--surface);
}

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

.problem-label,
.services-label,
.process-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.problem h2,
.services h2,
.process h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s ease;
}

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

.problem-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.6;
}

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

/* ═══════════ SERVICES ═══════════ */
.services {
  padding: 120px 40px;
}

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

.services-marquee {
  overflow: hidden;
  margin: 60px -40px;
  padding: 24px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--fg);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.services-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-block {
  padding: 32px;
  border-left: 2px solid var(--accent);
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ═══════════ PROCESS ═══════════ */
.process {
  padding: 120px 40px;
  background: var(--surface);
}

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

.process-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--surface-border);
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ═══════════ CLOSING ═══════════ */
.closing {
  padding: 140px 40px;
  text-align: center;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.closing-text {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.closing-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 48px auto;
  border-radius: 2px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid var(--surface-border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

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

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
  .hero-sub { font-size: 1.05rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-num { font-size: 1.6rem; }

  .problem,
  .services,
  .process,
  .closing { padding: 80px 24px; }

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

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

  .step { flex-direction: column; gap: 12px; }
  .step-number { font-size: 2.5rem; width: auto; }

  .closing h2 { font-size: 2rem; }

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

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .problem h2,
  .services h2,
  .process h2 { font-size: 1.8rem; }
  .closing h2 { font-size: 1.7rem; }
  .marquee-item { font-size: 1.1rem; }
}