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

:root {
  --bg: #0c1220;
  --bg-alt: #111827;
  --fg: #f8fafc;
  --fg-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(12,18,32,0.85);
  backdrop-filter: blur(12px);
  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: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 13px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-contact {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-contact:hover {
  background: var(--accent-dim);
  border-color: rgba(245,158,11,0.6);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
/* Image carousel */
.hero-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-img.hero-img-active { opacity: 1; }
/* Dark overlay so text remains readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(12,18,32,0.82) 0%,
    rgba(12,18,32,0.55) 50%,
    rgba(12,18,32,0.72) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Clock visual replaced with image + lead cards */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
/* Carousel indicators */
.hero-carousel-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-indicator.hero-indicator-active {
  background: var(--accent);
  width: 48px;
}

/* Lead cards */
.lead-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  backdrop-filter: blur(8px);
  animation: card-float 5s ease-in-out infinite;
}
.lead-card-1 { top: 10px; right: -20px; animation-delay: 0s; }
.lead-card-2 { bottom: 60px; left: -30px; animation-delay: 1.5s; }
.lead-card-3 { top: 55%; right: -40px; animation-delay: 3s; }
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.lead-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(245,158,11,0.8);
}
.lead-dot-green { background: #34d399; box-shadow: 0 0 6px rgba(52,211,153,0.8); }
.lead-time { font-size: 11px; color: var(--fg-muted); font-family: monospace; }
.lead-type { font-weight: 500; }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  font-size: 13px;
  margin-top: 64px;
  justify-content: center;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── PROOF ── */
.proof {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.proof-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.proof-sub { color: var(--fg-muted); font-size: 17px; line-height: 1.6; }
.proof-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.proof-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.proof-icon { margin-bottom: 20px; }
.proof-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.proof-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; }

/* ── HOW ── */
.how { padding: 100px 24px; }
.how-header { text-align: center; max-width: 540px; margin: 0 auto 72px; }
.how-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.how-sub { color: var(--fg-muted); font-size: 17px; }
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.step { flex: 1; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; }
.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  flex-shrink: 0;
  margin: 0 24px;
  position: relative;
  top: -20px;
}

/* ── DIFFERENCE ── */
.difference { padding: 100px 24px; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.difference-header { text-align: center; max-width: 540px; margin: 0 auto 64px; }
.difference-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.compare {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.compare-col { padding: 40px; }
.compare-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.compare-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
}
.compare-col-old { border: 1px solid var(--border); border-radius: var(--radius); }
.compare-col-old .compare-headline { color: var(--fg-muted); }
.compare-col-new {
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius);
}
.compare-list-new li { color: var(--fg); }
.compare-list-new li::before { background: var(--accent); }
.compare-divider { display: flex; align-items: center; padding: 0 16px; }
.vs-badge {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PRICING ── */
.pricing { padding: 100px 24px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(245,158,11,0.3); border-radius: 20px; padding: 4px 12px; margin-bottom: 16px; }
.pricing-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.pricing-sub { color: var(--fg-muted); font-size: 17px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; position: relative; }
.pricing-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.pricing-card-featured { border-color: rgba(245,158,11,0.4); background: var(--accent-dim); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: #0c1220; border-radius: 12px; padding: 3px 12px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--fg); margin-bottom: 4px; line-height: 1.1; }
.pricing-price span { font-size: 20px; font-weight: 700; }
.pricing-price-unit { font-size: 14px !important; font-weight: 400 !important; color: var(--fg-muted); }
.pricing-fit { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.4; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.pricing-features li { font-size: 14px; color: var(--fg); padding-left: 16px; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.pricing-cta { display: inline-block; text-align: center; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; padding: 10px 20px; border: 1px solid rgba(245,158,11,0.4); border-radius: 20px; transition: background 0.2s, border-color 0.2s; margin-top: auto; }
.pricing-cta:hover { background: var(--accent-dim); border-color: rgba(245,158,11,0.7); }
.pricing-cta-featured { background: var(--accent); color: #0c1220; border-color: var(--accent); }
.pricing-cta-featured:hover { background: #d97706; border-color: #d97706; }
.pricing-note { text-align: center; color: var(--fg-muted); font-size: 14px; margin-top: 40px; }

/* ── MANIFESTO ── */
.manifesto { padding: 100px 24px; }
.manifesto-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-body { color: var(--fg-muted); font-size: 17px; line-height: 1.75; }

/* ── CLOSING ── */
.closing { padding: 100px 24px 120px; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,158,11,0.08) 0%, transparent 60%), var(--bg); }
.closing-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub { color: var(--fg-muted); font-size: 17px; line-height: 1.7; margin-bottom: 48px; }
.closing-cta {}
.cta-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 16px; }
.cta-price-main { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--accent); }
.cta-price-sub { font-size: 16px; color: var(--fg-muted); }
.cta-note { color: var(--fg-muted); font-size: 14px; font-style: italic; }
.closing-cta-link { display: inline-block; font-size: 15px; font-weight: 600; color: var(--accent); text-decoration: none; padding: 12px 28px; border: 1px solid rgba(245,158,11,0.4); border-radius: 24px; transition: background 0.2s, border-color 0.2s; margin-top: 8px; }
.closing-cta-link:hover { background: var(--accent-dim); border-color: rgba(245,158,11,0.7); }

/* ── FOOTER ── */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
.footer-tagline { color: var(--fg-muted); font-size: 13px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 260px; }
  .lead-card-3 { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .compare { grid-template-columns: 1fr; }
  .compare-divider { display: none; }
  .compare-col-old { border-radius: var(--radius) var(--radius) 0 0; }
  .compare-col-new { border-radius: 0 0 var(--radius) var(--radius); }
  .footer-inner { flex-direction: column; gap: 8px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { border-color: rgba(245,158,11,0.4); }
}