/* =====================
   TOKENS & RESET
   ===================== */
:root {
  --bg: #0D1B2A;
  --bg-surface: #112236;
  --bg-card: #152840;
  --fg: #FFFFFF;
  --fg-muted: #8FA3BF;
  --accent: #FF6B35;
  --accent-hover: #FF5722;
  --accent-light: rgba(255, 107, 53, 0.12);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}
.cta-pill {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.dot { color: var(--accent); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  width: fit-content;
  overflow: hidden;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 36px;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
}
.hero-results {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
  width: 100%;
}

/* =====================
   SOCIAL PROOF BAR
   ===================== */
.social-proof-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 4px 12px;
}

/* =====================
   PROCESS
   ===================== */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,53,0.03) 50%, transparent 100%);
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.step:first-child { padding-left: 0; }
.step-last { border-right: none; padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-arrow {
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 8px;
  opacity: 0.4;
}

/* =====================
   PRICING
   ===================== */
.pricing {
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.pricing-card.popular {
  background: linear-gradient(160deg, #1a2f4a 0%, var(--bg-card) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(255,107,53,0.1);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.plan-price {
  margin-bottom: 12px;
}
.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg-muted);
  vertical-align: top;
}
.amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.period {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-left: 4px;
}
.plan-roi {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 12px;
}
.plan-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-features { margin-bottom: 28px; }
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.feature.included { color: var(--fg); }
.feature.included svg { color: var(--accent); }
.feature.excluded { color: var(--fg-muted); opacity: 0.5; }
.feature.excluded svg { color: var(--fg-muted); }
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.plan-cta:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.plan-cta.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.plan-cta.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 20px;
}
.quote {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* =====================
   FAQ
   ===================== */
.faq {
  padding: 100px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,53,0.04) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-meta { display: flex; flex-direction: column; gap: 12px; }
.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.form-group input:focus { border-color: var(--accent); }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-hover); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  text-align: center;
  margin-bottom: 24px;
}
.footer-brand .logo {
  justify-content: center;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .services-grid,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: 40px; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 40px; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .step-arrow { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .services-grid,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-pill { width: 100%; text-align: center; }
  .trust-badges { gap: 16px; }
  .contact-form { padding: 28px; }
}