:root {
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #E8621A;
  --accent-warm: #F7E4D6;
  --border: #E8E3DA;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* HERO */
.hero {
  padding: 96px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero .lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.content-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 140px;
  height: 100px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}

.content-card:hover { transform: translateY(-4px); }

.card-1 { background: #FFF3E8; color: #C44D0A; }
.card-2 { background: #E8F3FF; color: #1A5FC8; }
.card-3 { background: #EDF7EE; color: #1B7A38; }
.card-4 { background: #F3EDFB; color: #7A1FC8; }
.card-5 { background: #FFF8E8; color: #8B5A00; }
.card-6 { background: #FFE8EE; color: #C81A4D; }

.card-icon { font-size: 28px; }
.card-label { opacity: 0.8; }

/* SERVICES */
.services {
  background: #FFFFFF;
  padding: 96px 40px;
  border-top: 1px solid var(--border);
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item { }

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 16px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 96px 40px;
  background: var(--bg);
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.25;
}

.niches-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.niche-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.2s ease;
}

.niche-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.niche-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 96px 40px;
  background: #1A1A1A;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 56px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #252525;
  border: 1px solid #3A3A3A;
  border-radius: 20px;
  padding: 36px 32px;
}

.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.7); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.6;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.9); }

/* PROCESS */
.process {
  padding: 96px 40px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step { }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 96px 40px;
  background: var(--bg);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.2;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.75;
}

/* FOOTER */
footer {
  background: #1A1A1A;
  padding: 48px 40px 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2A2A2A;
}

.footer-brand { }

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-links span { cursor: default; }

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 40px; }
  .hero-visual { gap: 12px; }
  .content-card { width: 100px; height: 80px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
  .niches { padding: 64px 24px; }
  .niches-row { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-row { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .niches-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}