/* Base */
:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7D9;
  --surface: #FFFFFF;
  --fg: #0D1B2A;
  --fg-muted: #4a5568;
  --accent: #FF5C3A;
  --navy: #1a3a5c;
  --navy-light: #264b6e;
}

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

/* Hero */
.hero {
  padding: 100px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

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

/* Phone mockup */
.hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 360px;
  background: #0D1B2A;
  border-radius: 36px;
  padding: 16px;
  position: relative;
  box-shadow: 0 40px 80px rgba(13,27,42,0.25), 0 8px 20px rgba(13,27,42,0.15);
}

.phone-screen {
  background: #1a3a5c;
  border-radius: 26px;
  height: 100%;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mock-avatar {
  position: relative;
}

.mock-avatar-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  position: absolute;
  top: -4px;
  left: -4px;
}

.mock-avatar-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-stats {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mock-stat-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5F0E8;
}

.mock-stat-label {
  font-size: 10px;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.05em;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #0D1B2A;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone-home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
}

.badge-1 { top: 20px; right: -20px; }
.badge-2 { bottom: 60px; right: -30px; }
.badge-3 { bottom: 20px; left: -20px; }

/* Manifesto */
.manifesto {
  background: #0D1B2A;
  padding: 100px 48px;
}

.manifesto-inner { max-width: 900px; margin: 0 auto; }

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.manifesto-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.4;
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  max-width: 680px;
}

/* Services */
.services {
  padding: 100px 48px;
  background: var(--bg);
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-header { margin-bottom: 64px; }

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

.services-sub {
  font-size: 17px;
  color: var(--fg-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(13,27,42,0.08);
}

.service-icon {
  margin-bottom: 20px;
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Pricing */
.pricing {
  background: var(--navy);
  padding: 100px 48px;
}

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

.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #F5F0E8;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}

.pricing-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  text-align: left;
}

.price-point {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: #F5F0E8;
}

.price-period {
  font-size: 22px;
  color: rgba(245,240,232,0.5);
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-includes li {
  font-size: 14px;
  color: rgba(245,240,232,0.85);
  padding-left: 20px;
  position: relative;
}

.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-need {
  font-size: 14px;
  color: rgba(245,240,232,0.5);
}

/* Niches */
.niches {
  padding: 80px 48px;
  background: var(--bg);
  border-top: 1px solid rgba(13,27,42,0.08);
}

.niches-inner { max-width: 1100px; margin: 0 auto; }

.niches-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

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

.niche-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(13,27,42,0.08);
  text-align: center;
}

.niche-icon {
  opacity: 0.8;
}

.niche-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

/* Closing */
.closing {
  background: var(--bg-alt);
  padding: 100px 48px;
}

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

.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

.closing-voice {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  background: #0D1B2A;
  padding: 60px 48px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #F5F0E8;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245,240,232,0.4);
}

.footer-note {
  font-size: 13px;
  color: rgba(245,240,232,0.35);
  max-width: 500px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-graphic { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-breakdown { flex-direction: column; align-items: center; }
  .manifesto, .services, .pricing, .closing, .footer { padding: 70px 24px; }
}

@media (max-width: 480px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
}