:root {
  --bg: #FAFAF8;
  --fg: #1C1C1C;
  --accent: #1A5C3A;
  --accent-light: #E8F0EC;
  --amber: #D4941C;
  --amber-light: #FEF3DC;
  --muted: #6B7280;
  --border: #E5E2DB;
  --card: #FFFFFF;
}

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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.navbar-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 160px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px;
}
.hero-visual {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.card-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 16px;
  text-transform: uppercase;
}
.card-label-before { background: #3A1010; color: #F5A0A0; }
.card-label-after { background: #0A2A1A; color: #8FD4A8; }
.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.card-image-before {
  background: linear-gradient(135deg, #C8C0B0 0%, #A09888 100%);
}
.card-image-after {
  background: linear-gradient(135deg, #C8D8C8 0%, #A8C8A8 100%);
}
.hero-arrow { flex-shrink: 0; }

/* Problem */
.problem {
  background: #F0EEE9;
  padding: 100px 40px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label, .services-label, .proof-label, .area-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-item {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.problem-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* Services */
.services { padding: 100px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-card-featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.service-card-featured .service-price { color: var(--amber); }
.service-card-featured p { color: rgba(250,250,248,0.75); }
.service-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-icon {
  margin-bottom: 16px;
}
.service-card-featured .service-icon svg path,
.service-card-featured .service-icon svg rect,
.service-card-featured .service-icon svg circle { stroke: #FAFAF8; }
.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Proof */
.proof {
  background: #0F2A1E;
  padding: 100px 40px;
  color: #FAFAF8;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof .proof-label { color: var(--amber); }
.proof-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.proof-card {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-right: none;
}
.proof-card:nth-child(odd) { border-left: none; }
.proof-card:nth-child(n+3) { border-bottom: none; }
.proof-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.proof-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.proof-card p {
  font-size: 15px;
  color: rgba(250,250,248,0.6);
  line-height: 1.65;
}

/* Area */
.area { padding: 100px 40px; }
.area-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.map-placeholder {
  aspect-ratio: 1;
  background: var(--accent-light);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
}
.map-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.area-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.area-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.area-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(26,92,58,0.15);
}
.area-cta {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-deco {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,148,28,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 720px; margin: 0 auto; position: relative; }
.closing-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #FAFAF8;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(250,250,248,0.75);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #0F2A1E;
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FAFAF8;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-brand p {
  color: rgba(250,250,248,0.4);
  font-size: 13px;
  margin-top: 4px;
}
.footer-meta p {
  color: rgba(250,250,248,0.35);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 120px 24px 60px; }
  .hero-visual { justify-content: center; }
  .hero-headline { font-size: 42px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .proof-card:last-child { border-bottom: none; }
  .area-inner { grid-template-columns: 1fr; }
  .map-placeholder { max-width: 300px; margin: 0 auto; }
  .navbar { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}