/* ===== VARIABLES ===== */
:root {
  --bg: #0d1117;
  --bg-card: #161b22;
  --bg-card-hover: #1c2129;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --accent: #b4ff00;
  --accent-dim: rgba(180, 255, 0, 0.08);
  --accent-border: rgba(180, 255, 0, 0.3);
  --border: #30363d;
  --radius: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 60px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}
@keyframes fadeIn { from { opacity: 0; transform: scaleY(0.5); } to { opacity: 1; transform: scaleY(1); } }

.hero-content {
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.6s ease 0.1s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.6s ease 0.2s forwards;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUp 0.6s ease 0.3s forwards;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: slideUp 0.6s ease 0.4s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label { font-size: 12px; color: var(--fg-muted); }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Automation Diagram */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}
.automation-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 360px;
}
.ad-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}
.ad-node-lead { border-color: var(--accent-border); color: var(--accent); }
.ad-node-ai { border-color: rgba(255,255,255,0.1); }
.ad-node-book { border-color: rgba(255,255,255,0.1); }
.ad-node-done { border-color: var(--accent-border); color: var(--accent); }
.ad-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.ad-icon-ai { background: rgba(255,255,255,0.04); color: var(--fg); }
.ad-arrow { display: flex; justify-content: center; padding: 2px 0; }

/* ===== SHARED ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--fg);
  max-width: 600px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ===== PROBLEM ===== */
.problem { padding: 80px 0; border-top: 1px solid var(--border); }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.problem-header { margin-bottom: 48px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.problem-text { font-size: 15px; color: var(--fg-muted); line-height: 1.5; padding-top: 2px; }
.problem-quote {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.quote-text { font-size: 17px; font-style: italic; color: var(--fg); line-height: 1.6; margin-bottom: 8px; }
.quote-source { font-size: 13px; color: var(--fg-muted); }

/* ===== SERVICES ===== */
.services { padding: 80px 0; border-top: 1px solid var(--border); }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.services-header { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.service-card:hover { border-color: rgba(180,255,0,0.2); }
.service-card-highlight { background: var(--accent-dim); border-color: var(--accent-border); }
.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.service-icon-lime { background: var(--accent-dim); color: var(--accent); }
.service-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { padding: 80px 0; border-top: 1px solid var(--border); }
.process-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.process-header { margin-bottom: 56px; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}
.process-step { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.process-connector {
  height: 1px;
  background: var(--border);
  align-self: center;
  margin: 0 4px;
}

/* ===== RESULTS ===== */
.results { padding: 80px 0; border-top: 1px solid var(--border); }
.results-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.results-header { margin-bottom: 48px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.result-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.result-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }
.results-cta { display: flex; justify-content: center; }
.results-quote {
  max-width: 600px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.rq-text { font-size: 17px; font-style: italic; color: var(--fg); line-height: 1.6; margin-bottom: 12px; }
.rq-attr { font-size: 13px; color: var(--fg-muted); }

/* ===== PRICING — 3-TIER ===== */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover { border-color: rgba(180,255,0,0.15); transform: translateY(-2px); }
.pricing-card-featured {
  background: var(--accent-dim);
  border-color: var(--accent-border);
}
.pricing-card-featured:hover { border-color: var(--accent-border); }

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-tier-bronze { color: #c9a96e; }
.pricing-tier-silver { color: #a0a8b8; }
.pricing-tier-gold { color: #f0c040; }

.pricing-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(180,255,0,0.12);
  border: 1px solid rgba(180,255,0,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-price-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.pricing-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  color: var(--accent);
  border-radius: 50%;
  background: rgba(180,255,0,0.12);
  flex-shrink: 0;
}

.pricing-retainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-card-featured .pricing-retainer { border-color: rgba(180,255,0,0.2); }
.retainer-label { font-size: 13px; color: var(--fg-muted); }
.retainer-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); }
.retainer-note { font-size: 13px; font-weight: 400; color: var(--fg-muted); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent);
  color: #0d1117;
  transition: opacity 0.2s ease;
}
.pricing-cta:hover { opacity: 0.88; }
.pricing-cta-bronze {
  background: transparent;
  border: 1px solid rgba(180,255,0,0.3);
  color: var(--accent);
}
.pricing-cta-bronze:hover { background: var(--accent-dim); }
.pricing-cta-gold {
  background: #f0c040;
  color: #0d1117;
}
.pricing-cta-gold:hover { opacity: 0.85; }

/* Client Profiles Row */
.pricing-profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.profile-item { display: flex; flex-direction: column; gap: 8px; }
.profile-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.profile-tier-bronze { color: #c9a96e; }
.profile-tier-silver { color: #a0a8b8; }
.profile-tier-gold { color: #f0c040; }
.profile-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

.pricing-note { font-size: 14px; color: var(--fg-muted); text-align: center; }
.pricing-note strong { color: var(--fg); }
.pricing-note-link { color: var(--accent); text-decoration: none; }
.pricing-note-link:hover { text-decoration: underline; }

/* ===== CLOSING ===== */
.closing { padding: 100px 0 80px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body { font-size: 17px; color: var(--fg-muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.65; }
.closing-vision { display: flex; flex-direction: column; gap: 14px; max-width: 340px; margin: 0 auto; text-align: left; }
.vision-line { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--fg-muted); }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: flex-start; }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); max-width: 280px; margin-top: 4px; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; border-top: 1px solid var(--border); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.testimonials-header { margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { display: flex; gap: 4px; }
.testimonial-text { font-size: 14px; color: var(--fg-muted); line-height: 1.65; flex: 1; }
.testimonial-attr { display: flex; flex-direction: column; gap: 2px; }
.testimonial-attr strong { font-size: 14px; font-weight: 600; color: var(--fg); }
.testimonial-attr span { font-size: 12px; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 40px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .pricing-profiles { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero-inner, .problem-inner, .services-inner, .process-inner, .results-inner, .pricing-inner, .closing-inner { padding: 0 20px; }
}