:root {
  --bg: #0a0a0c;
  --bg-elevated: #111116;
  --bg-card: #16161c;
  --fg: #e8e6e3;
  --fg-muted: #8a8880;
  --accent: #f0c040;
  --accent-dim: #c49a20;
  --accent-glow: rgba(240, 192, 64, 0.15);
  --border: #2a2a30;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, var(--accent-glow) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(240, 192, 64, 0.05) 0%, transparent 50%),
              var(--bg);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--fg);
  margin-bottom: 24px;
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

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

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.problem h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 56px;
}

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

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

.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 10px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

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

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s;
}

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

.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240, 192, 64, 0.04) 100%);
  border-color: var(--accent-dim);
}

.feature-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 56px;
}

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 70%),
              var(--bg);
}

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

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-bold {
  color: var(--accent) !important;
  font-weight: 500;
  font-size: 1.15rem !important;
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-column: span 1;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .step {
    flex-direction: column;
    gap: 12px;
  }
}

/* HERO CTA & EXTRAS */
.hero-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--fg-muted);
  font-size: 0.85rem;
  text-align: center;
}

.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: var(--accent-glow);
  padding: 5px 16px;
  border-radius: 100px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0c;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-large {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* WHY SECTION (replaces problem) */
.why {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.why-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* COMPARISON TABLE */
.comparison {
  padding: 100px 24px;
  background: var(--bg);
}

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

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

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

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  color: var(--fg-muted);
  white-space: nowrap;
}

.comparison-table thead th.rundesk-col {
  color: var(--accent);
}

.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  vertical-align: middle;
}

.comparison-table tbody td.rundesk-col {
  font-weight: 600;
  color: var(--fg);
}

.comparison-table tbody tr.highlight-row {
  background: rgba(240, 192, 64, 0.04);
}

.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.check {
  color: #4caf50;
  text-align: center;
  font-size: 1.1rem;
}

.cross {
  color: #555;
  text-align: center;
  font-size: 0.9rem;
}

.partial {
  color: #e09a2a;
  font-size: 0.8rem;
  text-align: center;
}

.check-icon {
  font-weight: 700;
}

.rundesk-col.check {
  color: var(--accent);
}

.comparison-table td.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.comparison-table td.price span {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.comparison-cta {
  text-align: center;
}

.comparison-footnote {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* CLOSING / PRICING */
.pricing-highlight {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 40px auto 48px;
  max-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-tier {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
}

.pricing-tier:first-child {
  border-right: 1px solid var(--border);
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.pricing-divider {
  display: none;
}

.closing-sub {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.closing-inner > a.btn-primary {
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-column: span 1;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .step {
    flex-direction: column;
    gap: 12px;
  }
  .pricing-highlight {
    flex-direction: column;
    max-width: 320px;
  }
  .pricing-tier:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .comparison-table {
    font-size: 0.8rem;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    padding: 60px 16px;
  }
  .why, .features, .how, .closing {
    padding: 72px 16px;
  }
  .why-card, .feature-card {
    padding: 24px;
  }
  .btn-large {
    padding: 16px 28px;
    font-size: 1rem;
  }
}