/* BundleBox Landing Page Theme */
:root {
  --bg: #F7F4EF;
  --bg-alt: #EDEBE5;
  --fg: #1A1917;
  --fg-muted: #6A6860;
  --accent: #0B5E4A;
  --accent-light: #E8F4F1;
  --accent-text: #fff;
  --warm: #C8601A;
  --warm-light: #FDF0E8;
}

* { 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;
}

/* Header */
.site-header {
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26, 25, 23, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid rgba(26, 25, 23, 0.15);
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.meta-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
}
.meta-sep {
  width: 1px;
  height: 32px;
  background: rgba(26, 25, 23, 0.15);
}

/* Problem */
.problem {
  background: var(--fg);
  color: #F7F4EF;
  padding: 96px 48px;
}
.problem-inner {
  max-width: 900px;
}
.problem-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
  margin-bottom: 40px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.problem-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F7F4EF;
}
.problem-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 244, 239, 0.7);
  margin-bottom: 20px;
}
.problem-body.highlight {
  color: #F7F4EF;
  font-weight: 500;
  font-size: 17px;
}

/* Services */
.services {
  padding: 96px 48px;
  max-width: 1100px;
}
.services-header {
  margin-bottom: 64px;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.services-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 25, 23, 0.1);
  border: 1px solid rgba(26, 25, 23, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  padding: 36px 32px;
  background: var(--bg);
  transition: background 0.2s;
}
.service-card:hover {
  background: #F0EDE8;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.pricing-inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card {
  background: var(--bg);
  border: 1px solid rgba(26, 25, 23, 0.1);
  border-radius: 16px;
  padding: 28px 28px 32px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
}
.price-card-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.price-card-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.price-card-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.price-per {
  font-size: 20px;
  font-weight: 500;
}
.price-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.math-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(26, 25, 23, 0.1);
}
.math-note strong {
  color: var(--fg);
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 96px 48px;
}
.closing-inner {
  max-width: 720px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-body:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

/* Footer */
.site-footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(26, 25, 23, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid rgba(26, 25, 23, 0.15);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header, .hero, .problem, .services, .pricing, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .services, .problem, .pricing, .closing { padding-top: 64px; padding-bottom: 64px; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .footer-tagline { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .wordmark { font-size: 16px; }
  .tagline { display: none; }
}