:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --fg: #e8e8ec;
  --fg-muted: #8a8a96;
  --accent: #ff3d00;
  --accent-glow: rgba(255, 61, 0, 0.15);
  --accent-soft: #ff6b3d;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

* { 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;
  overflow-x: hidden;
}

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

.hero-inner {
  max-width: var(--max-width);
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 61, 0, 0.3);
  display: inline-block;
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

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

.hero .lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
}

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

/* NUMBERS */
.numbers {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* HOW / SERVICES */
.how {
  padding: 100px 24px;
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 61, 0, 0.25);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

/* TIERS */
.tiers {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

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

.tiers h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.tiers-sub {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 56px;
}

.tiers-track {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.tier {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.tier-connector {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tier-connector::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.tier-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.tier-revenue {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.tier-time {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tier ul {
  list-style: none;
}

.tier li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

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

/* CLOSING */
.closing {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

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

.closing-accent {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px !important;
}

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

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

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

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

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tiers-track {
    flex-direction: column;
  }

  .tier-connector {
    width: auto;
    height: 24px;
  }

  .tier-connector::after {
    width: 2px;
    height: 24px;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: 80vh;
  }

  .stat-value {
    font-size: 36px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 3px;
  transition: opacity 0.15s;
  letter-spacing: 0.3px;
}

.nav-cta:hover { opacity: 0.88; }

/* =========================================================
   HERO CTAs (landing page)
   ========================================================= */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-cta {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  transition: opacity 0.15s;
  display: inline-block;
}

.hero-cta:hover { opacity: 0.88; }

.hero-cta-ghost {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.hero-cta-ghost:hover { opacity: 0.7; }

/* =========================================================
   PAGE HERO (services + contact pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 80px 24px 60px;
  overflow: hidden;
}

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

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

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

/* =========================================================
   SERVICE CATALOG
   ========================================================= */
.catalog {
  padding: 20px 24px 100px;
}

.catalog-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.catalog-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.catalog-header .service-icon {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 6px;
  flex-shrink: 0;
}

.catalog-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.catalog-tagline {
  color: var(--accent-soft);
  font-size: 15px;
  font-weight: 500;
}

.catalog-desc {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
}

.catalog-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-bottom: 40px;
}

.catalog-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.catalog-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: rgba(255, 61, 0, 0.2); }

.pricing-card--featured {
  border-color: rgba(255, 61, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 61, 0, 0.15), 0 0 40px rgba(255, 61, 0, 0.06);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

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

.pricing-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  flex: 1;
}

.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 3px;
  margin-top: auto;
  transition: opacity 0.15s;
}

.pricing-cta--primary {
  background: var(--accent);
  color: var(--bg);
}

.pricing-cta--secondary {
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.pricing-cta:hover { opacity: 0.8; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section {
  padding: 20px 24px 100px;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

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

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}

.form-input:focus { border-color: rgba(255, 61, 0, 0.5); }
.form-input::placeholder { color: rgba(138, 138, 150, 0.5); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8a96' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  align-self: flex-start;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.form-submit:hover { opacity: 0.88; }

.form-error-banner {
  background: rgba(255, 61, 0, 0.1);
  border: 1px solid rgba(255, 61, 0, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

/* Contact success state */
.contact-success {
  text-align: center;
  padding: 80px 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 61, 0, 0.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.contact-success h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-success p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Aside info panel */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

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

.aside-value {
  font-size: 15px;
  color: var(--fg);
}

.aside-value a {
  color: var(--accent-soft);
  text-decoration: none;
}

.aside-value a:hover { text-decoration: underline; }

/* =========================================================
   RESPONSIVE — new components
   ========================================================= */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-aside { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .catalog-features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav-links { gap: 16px; }
  .page-hero { padding: 60px 20px 40px; }
  .catalog { padding: 20px 20px 80px; }
  .contact-aside { grid-template-columns: 1fr; }
}