:root {
  --bg: #FAFAF5;
  --fg: #111110;
  --green: #0A4D2E;
  --green-light: #0F6B3C;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --muted: #6B6B5E;
  --border: #E2E2D8;
  --white: #FFFFFF;
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 77, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(10, 77, 46, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--green);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  max-width: 120px;
  margin-top: 4px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 280px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.hero-card-1 {
  top: 0; left: 0;
  width: 200px;
}
.hero-card-2 {
  top: 40px; right: 0;
  width: 220px;
}
.hero-card-3 {
  bottom: 0; left: 20px;
  width: 180px;
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.card-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}
.card-line-lg { height: 14px; width: 80%; }
.card-line-sm { width: 60%; }
.card-color-swatch {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px;
  margin-top: 12px;
}
.browser-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.browser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.browser-content { padding: 4px 0; }
.browser-hero-line {
  height: 16px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}
.browser-row {
  display: flex;
  gap: 8px;
}
.browser-block {
  flex: 1;
  height: 40px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.card-social {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.social-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

/* SECTIONS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

/* SERVICES */
.services { padding: 80px 32px; background: var(--white); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-3px); }
.service-icon {
  width: 44px; height: 44px;
  background: rgba(10, 77, 46, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.service-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* WHY */
.why { padding: 100px 32px; background: var(--bg); }
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-points { display: flex; flex-direction: column; gap: 16px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.point-marker {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text { font-size: 15px; color: var(--fg); font-weight: 500; }

.why-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.why-stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--green);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.why-stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* PRICING */
.pricing { padding: 100px 32px; background: var(--white); }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.pricing-card-featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.pricing-badge {
  display: inline-block;
  background: var(--amber);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-tier {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.pricing-card-featured .pricing-price { color: var(--white); }
.pricing-per {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.pricing-card-featured .pricing-per { color: rgba(255,255,255,0.7); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card-featured .pricing-features li::before { background: var(--amber); }
.pricing-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--green);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 20px;
}
.closing-vision {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* FOOTER */
.footer {
  background: #071A0F;
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 20px 80px; }
  .services, .why, .pricing, .closing { padding-left: 20px; padding-right: 20px; }
}