/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0D2B1A;
  --bg-mid:     #122F1F;
  --fg:         #F4F8F2;
  --fg-muted:   #8FAA92;
  --accent:     #BFFF00;
  --accent-dim:  #9ACC00;
  --card:       #122C1E;
  --border:     rgba(191,255,0,0.12);

  --font-head:  'Syne', system-ui, sans-serif;
  --font-body:  'Figtree', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
}

html { scroll-behavior: smooth; }

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

/* ─── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13,43,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobDrift 12s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2D6A4F 0%, transparent 70%);
  top: -100px; right: 10%;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #BFFF00 0%, transparent 70%);
  bottom: -80px; left: 5%;
  opacity: 0.08;
  animation-delay: -6s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,255,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Phone mockup ─────────────────────────────────────── */
.hero-phone {
  flex-shrink: 0;
}

.phone-bezel {
  width: 240px;
  height: 480px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(191,255,0,0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
}

.quote-card {
  padding: 20px;
  flex: 1;
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.quote-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote-time {
  font-size: 11px;
  color: var(--fg-muted);
}

.quote-service {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.quote-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.quote-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.quote-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.quote-status.confirmed { color: var(--accent); }

/* ─── Section shared ───────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ─── Pipeline ─────────────────────────────────────────── */
.pipeline {
  padding: 120px 48px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pipeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.pipeline-card:hover {
  border-color: rgba(191,255,0,0.3);
  transform: translateY(-4px);
}

.pipeline-icon {
  margin-bottom: 24px;
}

.pipeline-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.pipeline-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pipeline-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(191,255,0,0.08);
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ─── How it works ─────────────────────────────────────── */
.howitworks {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.howitworks-inner {
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-left: 39px;
  opacity: 0.4;
}

/* ─── Quotes section ───────────────────────────────────── */
.quotes-section {
  padding: 120px 48px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.quotes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Quote bubble visual */
.quotes-graphic {
  position: relative;
}

.quote-bubble {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
}

.quote-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px; left: 40px;
  width: 24px; height: 24px;
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.bubble-lines { margin-bottom: 24px; }

.bubble-line {
  height: 10px;
  background: rgba(191,255,0,0.15);
  border-radius: 4px;
  margin-bottom: 10px;
}

.w-60 { width: 60%; }
.w-80 { width: 80%; }
.w-40 { width: 40%; }

.bubble-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.bubble-currency {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.bubble-amount {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.bubble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bubble-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
}

.bubble-tag.lime {
  background: rgba(191,255,0,0.15);
  color: var(--accent);
  font-weight: 600;
}

.quote-tracks {
  margin-top: 32px;
  padding: 0 8px;
}

.track-line {
  height: 2px;
  background: var(--border);
  margin-bottom: 12px;
  position: relative;
}

.track-dots {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.track-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(191,255,0,0.15);
  border: 2px solid var(--border);
}

.track-dot.booked {
  background: var(--accent);
  border-color: var(--accent);
}

.track-dot.pending {
  background: transparent;
  border-color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.track-label {
  font-size: 12px;
  color: var(--fg-muted);
}

.quotes-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.2;
}

.quotes-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}

.testimonial-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-mark { opacity: 0.5; }

blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
}

.featured blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(191,255,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}

.author-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.testimonial-stat {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ts-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.ts-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.testimonial-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── Pricing ──────────────────────────────────────────── */
.pricing {
  padding: 120px 48px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing .section-title { margin-bottom: 56px; }

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid rgba(191,255,0,0.2);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  text-align: left;
}

.pricing-header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.pricing-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 20px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--fg);
}

/* ─── Closing ──────────────────────────────────────────── */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.closing-shape {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-cta { display: flex; flex-direction: column; gap: 8px; }

.cta-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}

.cta-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  flex: 1;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 80px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-phone { display: none; }
  .pipeline { padding: 80px 24px; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 80px 24px; }
  .quotes-section { padding: 80px 24px; }
  .quotes-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 24px; }
  .pricing-card { padding: 40px 28px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
