:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #e8a44a;
  --accent-glow: rgba(232, 164, 74, 0.15);
  --border: #2a2a2a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', 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;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, var(--accent-glow), transparent),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(232, 164, 74, 0.06), transparent),
    var(--bg);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Phone + Desktop mockups */
.hero-visual {
  position: relative;
  height: 500px;
}

.phone-mockup {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 320px;
  background: var(--bg-card);
  border-radius: 24px;
  border: 2px solid var(--border);
  padding: 16px 12px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.phone-screen { display: flex; flex-direction: column; gap: 10px; }
.mock-header { height: 10px; width: 60%; background: var(--accent); border-radius: 4px; opacity: 0.7; }
.mock-img { height: 80px; background: var(--border); border-radius: 8px; }
.mock-text { height: 8px; width: 90%; background: var(--border); border-radius: 3px; }
.mock-text.short { width: 55%; }
.mock-btn { height: 24px; width: 70%; background: var(--accent); border-radius: 6px; opacity: 0.8; margin-top: 8px; }

.desktop-mockup {
  position: absolute;
  left: 0;
  top: 20px;
  width: 380px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.desktop-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.desktop-screen { padding: 16px; }
.mock-nav { height: 10px; width: 50%; background: var(--border); border-radius: 4px; margin-bottom: 16px; }
.mock-hero-block { height: 80px; background: linear-gradient(135deg, var(--accent-glow), var(--border)); border-radius: 8px; margin-bottom: 16px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-card { height: 60px; background: var(--border); border-radius: 6px; }

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

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.problem-card {
  padding: 32px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.problem-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

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

.problem-punchline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.service-item:hover {
  border-color: var(--accent);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(1.5);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

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

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

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
  min-width: 80px;
}

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

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

/* ===== CLOSING ===== */
.closing {
  padding: 140px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 60%, var(--accent-glow), transparent),
    var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-verticals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.vertical-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 100px;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 500;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

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

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 300px;
    display: flex;
    justify-content: center;
  }

  .desktop-mockup {
    position: relative;
    left: auto;
    top: auto;
    width: 260px;
  }

  .phone-mockup {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 120px;
    height: 240px;
  }

  .problem { padding: 80px 24px; }

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

  .services { padding: 80px 24px; }

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

  .process { padding: 80px 24px; }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 40px;
    min-width: auto;
  }

  .closing { padding: 80px 24px; }

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

@media (max-width: 480px) {
  body { font-size: 16px; }

  .hero h1 { font-size: 32px; }

  .problem-num { font-size: 36px; }

  .service-item { padding: 24px; }
}