:root {
  --bg: #0A0A0C;
  --bg-2: #111117;
  --fg: #F0F0F5;
  --fg-muted: #8888A0;
  --blue: #0A84FF;
  --amber: #F59E0B;
  --border: rgba(240,240,245,0.08);
  --card-bg: rgba(255,255,255,0.03);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--blue); color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 8px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.8; }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10,132,255,0.1);
  border: 1px solid rgba(10,132,255,0.25);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.strikethrough {
  text-decoration: line-through;
  color: var(--fg-muted);
  font-size: 0.75em;
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.proof-item { display: flex; flex-direction: column; gap: 0.2rem; }
.proof-number { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--fg); }
.proof-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* HERO VISUAL */
.hero-visual { display: flex; flex-direction: column; gap: 1.2rem; justify-content: center; }
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}
.vc-left { border-left: 3px solid var(--fg-muted); }
.vc-right { border-left: 3px solid var(--blue); background: rgba(10,132,255,0.04); }
.vc-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.6rem; }
.vc-bar { height: 8px; background: var(--fg-muted); border-radius: 4px; margin-bottom: 0.4rem; }
.vc-bar-blue { background: var(--blue); }
.vc-meta { font-size: 0.8rem; color: var(--fg-muted); }
.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(10,132,255,0.08);
  border: 1px solid rgba(10,132,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
}

/* COUNTER */
.counter {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}
.counter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.counter-block { text-align: center; }
.counter-number { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--blue); margin-bottom: 0.5rem; }
.counter-label { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.services-header { margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.section-sub { color: var(--fg-muted); font-size: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(10,132,255,0.3); }
.sc-2 { border-top: 2px solid var(--amber); }
.sc-3 { border-top: 2px solid rgba(10,132,255,0.4); }
.sc-icon { margin-bottom: 0.5rem; }
.sc-number { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.sc-title { font-size: 1.15rem; font-weight: 700; margin: 0.25rem 0 0.5rem; }
.sc-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; flex: 1; }
.sc-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.sc-deliverables span {
  font-size: 0.72rem;
  background: rgba(10,132,255,0.08);
  border: 1px solid rgba(10,132,255,0.15);
  color: var(--blue);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* PITCH */
.pitch {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.pitch-inner { max-width: 1100px; margin: 0 auto; }
.pitch-quote { text-align: center; margin-bottom: 4rem; }
.pitch-quote blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--fg-muted);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.4;
}
.cta-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.pkg {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  position: relative;
  text-align: center;
}
.pkg-featured {
  border-color: var(--blue);
  background: rgba(10,132,255,0.04);
}
.pkg-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.pkg-price span { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pkg-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.5; }

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-muted);
}
.closing-amp {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* LEAD FORM */
.lead-form {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.lead-form-inner { max-width: 700px; margin: 0 auto; }
.lf-header { text-align: center; margin-bottom: 2.5rem; }
.lf-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
}
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 580px) { .lf-row { grid-template-columns: 1fr; } }
.lf-field { display: flex; flex-direction: column; gap: 0.5rem; }
.lf-field label {
  font-size: 0.75rem; font-weight: 500; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.lf-field input, .lf-field select {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px;
  color: var(--fg); font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.95rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s;
}
.lf-field input:focus, .lf-field select:focus { border-color: rgba(10,132,255,0.6); }
.lf-field input::placeholder { color: rgba(136,136,160,0.5); }
.lf-field select { cursor: pointer; appearance: none; }
.lf-error {
  background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.25);
  color: #FF8080; padding: 0.85rem 1rem; border-radius: 10px; margin-top: 1rem;
  font-size: 0.88rem;
}
.lf-submit {
  width: 100%; background: var(--blue); color: #fff; border: none;
  border-radius: 12px; font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  padding: 1rem; cursor: pointer; margin-top: 1.5rem; transition: opacity 0.2s;
}
.lf-submit:hover { opacity: 0.85; }
.lf-success {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--blue); font-size: 1rem; font-weight: 500;
  padding: 1rem 0;
}
.lf-form { display: flex; flex-direction: column; gap: 0; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: rgba(136,136,160,0.5); }
.footer-copy a { color: var(--fg-muted); text-decoration: none; }
.footer-copy a:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .counter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .counter-block { text-align: left; }
  .cta-packages { grid-template-columns: 1fr; gap: 1rem; }
  .hero-proof { gap: 1.2rem; }
  .nav-tagline { display: none; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .closing-headline br { display: none; }
}
@media (max-width: 480px) {
  .proof-number { font-size: 1.1rem; }
  .pkg-price { font-size: 1.8rem; }
  .closing-tagline { font-size: 1.1rem; }
}