:root {
  --bg: #0a0a0c;
  --bg-elevated: #131318;
  --bg-card: #1a1a22;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #00e87b;
  --accent-dim: rgba(0, 232, 123, 0.12);
  --accent-glow: rgba(0, 232, 123, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 232, 123, 0.2);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---- STATS STRIP ---- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg-elevated);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(0, 232, 123, 0.3);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

/* ---- SERVICES ---- */
.services {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

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

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer .footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 70vh; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .how-it-works, .services-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}

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

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 232, 123, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(0, 232, 123, 0.2);
  border-color: rgba(0, 232, 123, 0.45);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: #00cc6a;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

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

/* ---- HERO ACTIONS ---- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ---- CLOSING ACTIONS ---- */
.closing-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ---- PRICING PAGE ---- */
.pricing-page {
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 100vh;
}

.pricing-header {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 4rem;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.plan-card:hover {
  border-color: rgba(0, 232, 123, 0.2);
  transform: translateY(-2px);
}

.plan-card--featured {
  border-color: rgba(0, 232, 123, 0.35);
  background: linear-gradient(160deg, rgba(0, 232, 123, 0.06) 0%, var(--bg-card) 60%);
}

.plan-card--featured:hover {
  border-color: rgba(0, 232, 123, 0.55);
}

.plan-selected {
  border-color: rgba(0, 232, 123, 0.5) \!important;
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.plan-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-period {
  color: var(--fg-muted);
  font-size: 1rem;
}

.plan-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  min-height: 4rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg);
}

.check {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

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

.plan-cta--primary:hover {
  background: #00cc6a;
  box-shadow: 0 0 20px var(--accent-glow);
}

.plan-cta--outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg);
}

.plan-cta--outline:hover {
  border-color: rgba(0, 232, 123, 0.35);
  color: var(--accent);
}

.pricing-footer-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ---- AUDIT FORM ---- */
.audit-page {
  min-height: 100vh;
  padding: 8rem 2rem 5rem;
}

.audit-inner {
  max-width: 760px;
  margin: 0 auto;
}

.audit-intro {
  margin-bottom: 3.5rem;
}

.audit-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.audit-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
}

.form-error-banner {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff7070;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-section-sub {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: -0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

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

.optional {
  color: var(--fg-muted);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 232, 123, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 232, 123, 0.08);
}

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

.form-group option {
  background: var(--bg-card);
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: #00cc6a;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- SUCCESS STATE ---- */
.audit-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 232, 123, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 2rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 2rem;
  transition: color 0.2s;
}

.btn-back:hover {
  color: var(--fg);
}

/* ---- RESPONSIVE: pricing & audit ---- */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan-desc { min-height: unset; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .audit-page { padding-top: 6rem; }
  .pricing-header { padding: 3rem 1.5rem 2rem; }
  .hero-actions, .closing-actions { flex-direction: column; align-items: flex-start; }
}
