/* Base */
:root {
  --bg: #faf6f0;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e0d9cf;
  --green: #1a3a2a;
  --green-light: #f0f5f1;
  --amber: #d4a843;
  --amber-light: #fdf6e3;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 18px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

/* Hero */
.hero {
  padding: 80px 40px 0;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

/* Desk mockup */
.desk-mockup {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,58,42,0.08);
}
.mockup-header {
  background: var(--green);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: block;
}
.mockup-title {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', sans-serif;
}
.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--green-light);
  border-radius: 8px;
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot.green { background: #2ea44f; }
.mock-dot.amber { background: var(--amber); }
.mock-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.mock-status {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
  font-family: 'DM Sans', sans-serif;
  text-align: right;
}
.mock-status.busy { color: #2ea44f; font-weight: 500; }

/* Hero bottom stats */
.hero-bottom {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.services h2, .proof h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--fg);
  max-width: 500px;
  margin-bottom: 48px;
}

/* Services */
.services {
  padding: 100px 40px;
  background: #ffffff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
}
.pricing h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 16px;
}
.pricing-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 8px 40px rgba(26,58,42,0.1);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.pricing-amount span {
  font-size: 22px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.pricing-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg);
  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-best {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.pricing-footnote {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-top: 40px;
  padding: 20px;
  background: var(--green-light);
  border-radius: 10px;
  border: 1px solid rgba(26,58,42,0.1);
}

/* Proof */
.proof {
  padding: 100px 40px;
  background: var(--green);
}
.proof h2 {
  color: #ffffff;
  max-width: 480px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
}
.proof-quote {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.proof-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: var(--amber-light);
  border-top: 1px solid rgba(212,168,67,0.2);
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 16px;
}
.closing-sub {
  font-size: 16px !important;
  color: var(--green) !important;
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 20px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-lede { font-size: 17px; }
  .services { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 70px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof { padding: 70px 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 20px; }
  .stat-row { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 32px; }
  .hero-bottom { margin-top: 40px; }
}