:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #161616;
  --fg: #f0f0f0;
  --fg-dim: #888888;
  --fg-muted: #555555;
  --accent: #4ade80;
  --accent-dim: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --gold: #fbbf24;
  --radius: 12px;
  --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: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 900;
  color: rgba(74, 222, 128, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-price-flash {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding: 24px 40px;
  background: var(--bg-surface);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.flash-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flash-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.flash-label {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.flash-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* ---- PRICES ---- */
.prices {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.prices-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prices-sub {
  color: var(--fg-dim);
  font-size: 17px;
  margin-top: 12px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}

.price-card:hover {
  border-color: rgba(74, 222, 128, 0.2);
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.06) 0%, var(--bg-card) 100%);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-weight {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.card-compare {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: line-through;
}

/* ---- WHY ---- */
.why {
  padding: 80px 24px 100px;
  background: var(--bg-surface);
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

.why h2 .accent {
  color: var(--accent);
}

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

.why-item {
  padding: 32px 24px;
}

.why-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(74, 222, 128, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.8;
}

.closing-location {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-price-flash {
    gap: 20px;
    padding: 20px 24px;
  }

  .flash-price {
    font-size: 28px;
  }

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

@media (max-width: 480px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-price-flash {
    flex-direction: column;
    gap: 16px;
  }

  .flash-divider {
    width: 40px;
    height: 1px;
  }
}
