/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #faf8f4;
  --bg-warm: #f5f1ea;
  --fg: #0e1b2e;
  --fg-muted: #6b6b6b;
  --accent: #e8541a;
  --accent-warm: #f07040;
  --navy: #0e1b2e;
  --teal: #1a8c8c;
  --border: #e8e4dc;
  --card-bg: #ffffff;
  --green: #2d9a6a;
  --blue: #2563eb;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  background: var(--accent);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-warm); }

/* ===== HERO ===== */
.hero {
  padding: 160px 40px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta-note {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* Hero Right: cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(14, 27, 46, 0.06);
}
.hero-card--logo {
  border-left: 4px solid var(--accent);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.card-dot--green { background: var(--green); }
.card-dot--blue { background: var(--blue); }
.card-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.post-item:last-child { border-bottom: none; }
.post-item--done { opacity: 0.5; }
.post-platform {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}
.post-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.logo-mock {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-shape {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-shape--coral { background: var(--accent); }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.logo-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 40px;
  background: var(--bg-warm);
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  padding-top: 48px;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 40px;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 27, 46, 0.08);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
  background: var(--navy);
}
.pricing .section-label { color: var(--accent-warm); }
.pricing .section-headline { color: #ffffff; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.pricing-card--featured {
  background: rgba(232, 84, 26, 0.12);
  border-color: var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== PRICING CTA ===== */
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pricing-cta:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.pricing-cta--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.pricing-cta--primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: #fff;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 40px;
  background: var(--bg-warm);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.closing-final {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px;
  background: var(--fg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { padding-top: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card--featured { order: -1; }
  .closing-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .hero { padding: 120px 24px 60px; }
  .howitworks, .services, .pricing, .closing { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .stat-number { font-size: 56px; }
  .closing-final { font-size: 20px; }
  .nav { padding: 0 24px; }
}