:root {
  --bg: #0D0D0D;
  --bg-elevated: #161616;
  --bg-card: #1A1A1A;
  --fg: #F5F0EB;
  --fg-muted: #A09B95;
  --accent: #FF4D4D;
  --accent-glow: rgba(255, 77, 77, 0.15);
  --accent-soft: #FF6B6B;
  --border: rgba(245, 240, 235, 0.08);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1140px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

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

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  align-self: center;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ===== PROOF ===== */
.proof {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.proof h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.proof p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.proof-highlight {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg) !important;
}

.price-comparison {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-bar {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  position: relative;
}

.bar-them {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  width: 100%;
}

.bar-budget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  width: 60%;
}

.bar-us {
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 77, 0.4);
  width: 80%;
}

.bar-label { font-weight: 500; }
.bar-price { color: var(--fg-muted); font-size: 0.8rem; }
.bar-us .bar-price { color: var(--accent); font-weight: 600; }

.bar-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

/* ===== VERTICALS ===== */
.verticals {
  padding: var(--space-xl) var(--space-md);
}

.verticals-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.verticals h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  font-size: 1rem;
  line-height: 1.7;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
  transition: border-color 0.2s;
}

.vertical-card:hover {
  border-color: rgba(255, 77, 77, 0.3);
}

.v-icon {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.vertical-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

/* ===== PROCESS ===== */
.process {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-lg);
}

.step {
  flex: 1;
  padding: 0 var(--space-sm);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

.step-connector {
  width: 1px;
  min-height: 100px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.2;
  margin-top: 1rem;
}

/* ===== PACKAGES ===== */
.packages {
  padding: var(--space-xl) var(--space-md);
}

.packages-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.packages h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
  position: relative;
}

.package-card.featured {
  border-color: rgba(255, 77, 77, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 77, 77, 0.05) 100%);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
  color: var(--fg-muted);
}

.pkg-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-md);
}

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

.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.package-card li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.package-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-mark {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.manifesto h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.manifesto p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

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

.footer-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto var(--space-md);
  opacity: 0.5;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: var(--space-xl) var(--space-sm); }
  .hero-stats { flex-direction: column; gap: var(--space-sm); }
  .stat-divider { width: 40px; height: 1px; }
  .proof-inner { grid-template-columns: 1fr; }
  .bar-them, .bar-budget, .bar-us { width: 100%; }
  .verticals-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: var(--space-md); }
  .step-connector { width: 40px; height: 1px; min-height: auto; margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; }
  .manifesto { padding: var(--space-xl) var(--space-sm); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
}