:root {
  --bg: #080810;
  --surface: #0f0f1a;
  --surface2: #13131f;
  --border: #1e1e35;
  --text: #e8e8f0;
  --muted: #6b6b8a;
  --accent: #7c6ff7;
  --accent-glow: rgba(124, 111, 247, 0.15);
  --green: #00d4aa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 400; overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* URGENCY BAR */
.urgency-bar {
  background: var(--accent); padding: 10px 32px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
}
.urgency-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 13px; font-weight: 500; color: #fff;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.urgency-link {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px;
  background: rgba(255,255,255,0.2); padding: 3px 12px; border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s; white-space: nowrap;
}
.urgency-link:hover { background: rgba(255,255,255,0.35); }

/* NAV */
nav {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,16,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: #fff; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 600;
  padding: 9px 20px; letter-spacing: 0.5px; transition: opacity 0.2s; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 160px 32px 80px; position: relative; overflow: hidden;
  max-width: 1100px; margin: 0 auto;
}
.hero-grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.3; z-index: -1;
}
.hero-grid-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, var(--accent-glow), transparent 70%);
}
.hero-inner { max-width: 760px; }
.eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 10vw, 112px);
  line-height: 0.92; letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, #9090c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px; color: #a0a0c0; line-height: 1.7;
  max-width: 580px; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 28px; transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  color: var(--text); font-size: 15px; padding: 14px 4px;
  border-bottom: 1px solid var(--border); transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.social-proof { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.proof-stat { font-size: 13px; color: var(--muted); }
.proof-stat span { color: #fff; font-weight: 600; font-size: 15px; margin-right: 4px; }
.proof-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

/* WHO WE HELP */
.who {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 40px 0;
}
.who-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.who-chip {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px;
  color: var(--muted); border: 1px solid var(--border); padding: 6px 14px;
  text-transform: uppercase; transition: border-color 0.2s, color 0.2s;
}
.who-chip:hover { border-color: var(--accent); color: var(--accent); }

/* SHARED SECTION STYLES */
section { padding: 100px 0; }
.section-label {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px);
  line-height: 1; letter-spacing: 1px; margin-bottom: 48px;
  background: linear-gradient(135deg, #fff 0%, #9090c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* $99 QUICK WIN */
.quickwin { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quickwin-inner { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center; }
.quickwin-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px);
  line-height: 1; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #9090c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.quickwin-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.qw-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.qw-bullets li {
  font-size: 13px; color: #a0a0c0; display: flex; gap: 10px; align-items: flex-start;
}
.qw-bullets li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }

.qw-card {
  background: var(--surface2); border: 1px solid var(--accent);
  padding: 32px; position: relative;
  box-shadow: 0 0 40px rgba(124,111,247,0.1);
}
.qw-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--accent);
  line-height: 1; letter-spacing: 2px;
}
.qw-name { font-size: 13px; color: var(--muted); font-family: 'DM Mono', monospace; margin-bottom: 20px; letter-spacing: 1px; }
.qw-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.qw-item { font-size: 13px; color: #a0a0c0; padding: 8px 0; border-bottom: 1px solid var(--border); }
.qw-item:last-of-type { border-bottom: none; }
.qw-guarantee {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--green);
  letter-spacing: 1px; margin: 16px 0; padding: 10px; background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
}
.btn-submit-full {
  display: block; width: 100%; background: var(--accent); color: #fff; border: none;
  font-weight: 700; font-size: 15px; padding: 14px; text-align: center;
  cursor: pointer; transition: opacity 0.2s; margin-top: 16px;
}
.btn-submit-full:hover { opacity: 0.85; }

/* SERVICES */
.services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px; background: var(--border);
}
.service-card {
  background: var(--surface); padding: 32px; position: relative; overflow: hidden;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface2); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.service-card.featured::before { background: linear-gradient(90deg, var(--accent), #ff6b35); }
.service-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600; font-family: 'DM Mono', monospace;
  letter-spacing: 2px; padding: 3px 10px; text-transform: uppercase; margin-bottom: 16px;
}
.service-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--accent);
  opacity: 0.08; position: absolute; top: 12px; right: 16px; line-height: 1;
}
.service-tag { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; margin-bottom: 4px; }
.service-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--accent); margin-bottom: 16px; }
.service-price span { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); font-weight: 300; }
.service-desc { font-size: 13px; color: #a0a0c0; line-height: 1.6; margin-bottom: 16px; }
.service-includes { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.service-includes li { font-size: 12px; color: #8080a0; display: flex; gap: 8px; align-items: flex-start; }
.service-includes li::before { content: '→'; color: var(--accent); opacity: 0.6; flex-shrink: 0; }
.service-ideal { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 1px; margin-bottom: 20px; border-left: 2px solid var(--accent); padding-left: 8px; }
.service-cta { font-size: 13px; font-weight: 600; color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; padding-bottom: 2px; }
.service-cta:hover { border-color: var(--accent); }

/* PACKAGE COMPARE */
.compare-wrap { margin-top: 32px; background: var(--surface); border: 1px solid var(--border); padding: 24px 32px; }
.compare-title { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.compare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.compare-col {}
.compare-label { font-size: 13px; color: #a0a0c0; margin-bottom: 4px; }
.compare-arrow { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 1px; }

/* RESULTS */
.results { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; background: var(--border); }
.result-card { background: var(--surface2); padding: 28px; transition: background 0.2s; }
.result-card:hover { background: var(--bg); }
.result-icon { font-size: 28px; margin-bottom: 12px; }
.result-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.result-title { font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.result-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* PROCESS */
.process { background: var(--bg); }
.steps { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; display: flex; gap: 16px; align-items: flex-start; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--accent); opacity: 0.3; line-height: 1; flex-shrink: 0; }
.step-title { font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-arrow { color: var(--accent); font-size: 24px; opacity: 0.4; margin-top: 12px; flex-shrink: 0; }

/* DELIVERABLES */
.deliverables { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.deliv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.deliv-block { background: var(--surface2); padding: 32px; }
.deliv-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--accent); margin-bottom: 20px; }
.deliv-list { display: flex; flex-direction: column; gap: 12px; }
.deliv-item { display: flex; gap: 12px; font-size: 13px; color: #a0a0c0; line-height: 1.5; }
.deliv-item span { flex-shrink: 0; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
.faq-item { background: var(--surface); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface2); }
.faq-arrow { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-left: 16px; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 0 24px; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { padding: 0 24px 20px; }

/* AUDIT FORM */
.audit { background: var(--bg); }
.audit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.audit-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.audit-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.bullet { font-size: 13px; color: #a0a0c0; display: flex; gap: 10px; }
.audit-urgency {
  font-size: 13px; color: var(--text); font-weight: 600;
  padding: 12px 16px; background: rgba(124,111,247,0.08);
  border: 1px solid rgba(124,111,247,0.25); margin-bottom: 24px;
}
.contact-direct { display: flex; flex-direction: column; gap: 8px; }
.contact-label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.contact-link { font-size: 13px; color: var(--accent); transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.7; }

.form-header { margin-bottom: 24px; }
.form-header-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; margin-bottom: 6px; }
.form-header-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
input, select, textarea {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 12px 14px;
  outline: none; transition: border-color 0.2s; width: 100%; border-radius: 0; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--muted); }
select { cursor: pointer; }
select option { background: var(--surface); }
textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  background: var(--accent); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  padding: 16px 28px; cursor: pointer; transition: opacity 0.2s, transform 0.2s;
  text-align: center; margin-top: 4px;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-guarantee { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 1px; text-align: center; }
.form-success { background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.3); color: #00d4aa; font-size: 13px; padding: 14px 16px; line-height: 1.5; }
.form-error { background: rgba(255,51,51,0.08); border: 1px solid rgba(255,51,51,0.3); color: #ff5555; font-size: 13px; padding: 14px 16px; line-height: 1.5; }

/* FOOTER */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .quickwin-inner { grid-template-columns: 1fr; gap: 40px; }
  .audit-inner { grid-template-columns: 1fr; gap: 48px; }
  .deliv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 160px 20px 60px; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .urgency-inner { font-size: 12px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .results-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
