:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --accent-soft: rgba(255, 107, 43, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', 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: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

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

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

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

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

.problem-label,
.services-label,
.how-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

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

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

.problem-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

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

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.service-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.service-item:hover {
  border-color: rgba(255, 107, 43, 0.25);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 43, 0.15);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ===== HOW ===== */
.how {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 43, 0.15);
  border-radius: 50%;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  position: relative;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: auto;
  }

  .problem,
  .services,
  .how,
  .closing {
    padding: 64px 24px;
  }

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

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

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
  }

  .site-footer {
    padding: 40px 24px;
  }
}

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

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}

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

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

.nav-cta {
  flex-shrink: 0;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

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

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ===== HERO CTA BUTTONS ===== */
.hero {
  padding-top: 140px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 13px 24px;
  border-radius: 10px;
  transition: color 0.15s, border-color 0.15s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-social-proof {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

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

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(255, 107, 43, 0.4);
  background: linear-gradient(160deg, rgba(255,107,43,0.06) 0%, var(--bg-card) 60%);
}

.plan-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.plan-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}

.check {
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.check.muted {
  color: var(--fg-muted);
  opacity: 0.4;
}

.muted-text {
  color: var(--fg-muted);
  opacity: 0.5;
}

.plan-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.plan-cta--primary {
  background: var(--accent);
  color: #fff;
}

.plan-cta--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.plan-cta--secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.plan-cta--secondary:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
}

.pricing-link {
  color: var(--accent);
  text-decoration: none;
}

.pricing-link:hover {
  text-decoration: underline;
}

/* ===== AUDIT PAGE ===== */
.audit-hero {
  padding: 140px 40px 60px;
  border-bottom: 1px solid var(--border);
}

.audit-hero-inner {
  max-width: 720px;
}

.audit-form-section {
  padding: 80px 40px 100px;
}

.audit-form-wrap {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  gap: 40px;
  align-items: start;
}

.audit-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  grid-column: 1;
  grid-row: 1 / 3;
}

.audit-form-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-sub {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.form-row--2 > .form-group {
  flex: 1;
}

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

.form-row .form-group {
  margin-bottom: 0;
}

label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 107, 43, 0.5);
}

input::placeholder,
textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

select option {
  background: var(--bg-elevated);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-submit:hover:not(:disabled) {
  opacity: 0.88;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 14px;
  opacity: 0.7;
}

.audit-success {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

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

.audit-success p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}

.audit-benefits {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  grid-column: 2;
  grid-row: 1;
}

.audit-benefits h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-list p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav--open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav--open .nav-cta {
    display: block;
    margin-top: 8px;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 0 24px;
    position: relative;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .pricing {
    padding: 64px 24px;
  }

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

  .audit-hero {
    padding: 100px 24px 40px;
  }

  .audit-form-section {
    padding: 40px 24px 60px;
  }

  .audit-form-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .audit-form-card {
    grid-column: 1;
    grid-row: 1;
    padding: 28px 20px;
  }

  .audit-benefits {
    grid-column: 1;
    grid-row: 2;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row .form-group {
    margin-bottom: 24px;
  }
}
