:root {
  --bg: #0a0c10;
  --bg-alt: #111318;
  --fg: #f0ede8;
  --fg-muted: #8a8a8a;
  --accent: #f05d23;
  --accent-dim: rgba(240, 93, 35, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(12px);
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-stripe {
  position: absolute;
  right: -120px;
  width: 600px;
  height: 2px;
  opacity: 0.15;
  transform: rotate(-12deg);
}

.hero-stripe.s1 { top: 25%; background: var(--accent); }
.hero-stripe.s2 { top: 50%; background: var(--accent); width: 400px; }
.hero-stripe.s3 { top: 72%; background: var(--accent); width: 250px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 80px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  gap: 48px;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
}

.proof-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.how {
  background: var(--bg-alt);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 72px;
  font-weight: 300;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

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

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.services {
  padding: 120px 48px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  padding: 48px 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.difference {
  background: var(--bg-alt);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.diff-list {
  list-style: none;
  margin-top: 32px;
}

.diff-list li {
  font-size: 16px;
  color: var(--fg-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.diff-list li::before {
  content: '—';
  color: var(--accent);
  margin-right: 12px;
  font-family: 'Syne', sans-serif;
}

.diff-cta {
  text-align: right;
  padding-top: 16px;
}

.diff-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: -2px;
}

.diff-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: right;
  margin-top: 4px;
}

.closing {
  padding: 120px 48px;
}

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

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 40px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.footer-location {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 0 24px; padding-top: 80px; }
  .how { padding: 80px 24px; }
  .services { padding: 80px 24px; }
  .difference { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
  .hero-headline { letter-spacing: -1.5px; }
  .how-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; }
  .diff-cta { text-align: left; }
  .diff-number { font-size: 40px; }
  .diff-label { text-align: left; }
  .hero-proof { flex-direction: column; gap: 20px; }
}