/* ===== BASE ===== */
:root {
  --bg: #FDF8F0;
  --bg-card: #F5EFE4;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --teal: #0D6B5F;
  --teal-light: #0D6B5F1A;
  --amber: #F59E0B;
  --amber-light: #F59E0B1A;
  --border: #E2D9CA;
  --card-shadow: 0 4px 24px rgba(26,26,26,0.07);
}

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

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

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

/* ===== NAV ===== */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--teal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: 68px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Visual Card */
.hero-visual {
  position: relative;
}
.visual-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.card-dot { width: 12px; height: 12px; border-radius: 50%; }
.card-dot.red { background: #FF5F57; }
.card-dot.yellow { background: #FFBD2E; }
.card-dot.green { background: #28C840; }
.card-title { font-size: 13px; font-weight: 500; color: var(--fg-muted); margin-left: 8px; }
.card-body { padding: 20px; }
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.metric-row:last-of-type { border-bottom: none; }
.metric-label { font-size: 14px; color: var(--fg-muted); }
.metric-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
.metric-val.teal { color: var(--teal); }
.metric-val.amber { color: var(--amber); }
.metric-bar {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  margin: 12px 0;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #3ABFAA);
  border-radius: 3px;
}
.card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.svc-chip {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 20px;
  font-weight: 500;
}
.visual-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-icon { font-size: 20px; }
.badge-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.badge-sub { font-size: 11px; opacity: 0.75; }

/* ===== SERVICES ===== */
.services {
  padding: 96px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-heading {
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}
.svc-icon {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 16px;
}
.svc-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.svc-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== HOW ===== */
.how {
  padding: 96px 48px;
}
.how-intro {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 56px;
  margin-top: -40px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-step {
  margin-bottom: 40px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.how-step h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-proof {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.proof-block {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.proof-block:last-child { border-bottom: none; }
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
}
.proof-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
}
.price-tier {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  background: var(--bg);
  position: relative;
}
.price-tier.featured {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 28px;
}
.tier-price span { font-size: 18px; font-weight: 400; opacity: 0.7; }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-features li {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.price-tier.featured .tier-features li::before { color: #fff; }

/* ===== CLOSING ===== */
.closing {
  padding: 96px 48px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-icon { font-size: 48px; margin-bottom: 32px; }
.closing-headline {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.footer-links span { font-size: 13px; color: var(--fg-muted); }
.footer-links .dot { color: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  .nav, .hero, .services, .how, .pricing, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-headline, .section-heading, .closing-headline { font-size: 42px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding: 0 0 16px; width: 50%; }
}
@media (max-width: 480px) {
  .hero-headline, .section-heading, .closing-headline { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-num { font-size: 36px; }
}