/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1a4d2e;
  --green-dark: #143d24;
  --green-mid: #2d7a4a;
  --green-light: #e8f0eb;
  --amber: #c97d2a;
  --amber-light: #f0e4d0;
  --cream: #faf8f4;
  --cream-dark: #f2efe8;
  --ink: #1a1a18;
  --ink-light: #4a4a45;
  --ink-faint: #8a8a82;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 77, 46, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-demo-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid var(--green-mid);
  transition: all 0.15s;
}
.nav-demo-link:hover {
  background: var(--green-deep);
  color: white;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 7rem 2rem 6rem;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 122, 74, 0.6) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 125, 42, 0.25) 0%, transparent 70%);
  bottom: -80px;
  left: 15%;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 20%;
  left: 5%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(201, 125, 42, 0.15);
  border: 1px solid rgba(201, 125, 42, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-lede {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}

.hero-stat {
  padding: 0 2.5rem 0 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  max-width: 140px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  margin-right: 2.5rem;
}

/* === PROBLEM === */
.problem {
  padding: 8rem 2rem;
  background: var(--cream);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.problem-label, .services-label, .pricing-label, .how-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.2rem;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.8rem;
}

.problem-body p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.problem-body p:last-child { margin-bottom: 0; }

.problem-aside { padding-top: 0.5rem; }

.problem-quote {
  border-left: 3px solid var(--green-mid);
  padding-left: 1.8rem;
}

.problem-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: var(--green-light);
  display: block;
  margin-bottom: 0.5rem;
}

.problem-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.65;
}

/* === SERVICES === */
.services {
  padding: 8rem 2rem;
  background: var(--cream-dark);
}

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

.services-header {
  margin-bottom: 4rem;
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(26, 77, 46, 0.12);
  border: 1.5px solid rgba(26, 77, 46, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: var(--white); }

.service-card-featured {
  grid-column: span 2;
  background: var(--green-deep);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.service-card-featured:hover { background: var(--green-dark); }

.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(26, 77, 46, 0.15);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card-featured .service-num {
  color: rgba(255,255,255,0.2);
  margin-bottom: 0;
  font-size: 4rem;
  align-self: start;
  margin-top: 0.2rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.service-card-featured .service-title {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 0;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.65;
}

.service-card-featured .service-desc {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.service-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  align-self: center;
  white-space: nowrap;
}

/* === PRICING === */
.pricing {
  padding: 8rem 2rem;
  background: var(--cream);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-header { margin-bottom: 4rem; }

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 580px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--cream-dark);
  border: 1.5px solid rgba(26, 77, 46, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--green-deep);
  border-color: var(--green-mid);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.pricing-tier-featured { color: var(--white); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-setup {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.pricing-tier-featured ~ .pricing-setup { color: rgba(255,255,255,0.5); }

.pricing-setup-label { font-weight: 400; }

.pricing-retainer {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card-featured .pricing-retainer { color: var(--white); }

.pricing-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.pricing-card-featured .pricing-per { color: rgba(255,255,255,0.5); }

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--ink-light);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card-featured .pricing-features li::before { background: var(--amber); }

.pricing-cta {
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.5;
  border-top: 1px solid rgba(26, 77, 46, 0.1);
  padding-top: 1.2rem;
}

.pricing-card-featured .pricing-cta { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.1); }

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 77, 46, 0.1);
}

.pricing-card-featured .pricing-buttons { border-top-color: rgba(255,255,255,0.1); }

.pricing-buttons .btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-buttons .btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.pricing-buttons .btn-primary:hover {
  background: var(--green-deep);
}

.pricing-buttons .btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-mid);
}
.pricing-buttons .btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.pricing-card-featured .pricing-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.pricing-card-featured .pricing-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.pricing-monthly-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

.pricing-card-featured .pricing-monthly-note { color: rgba(255,255,255,0.4); }

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === HOW === */
.how {
  padding: 8rem 2rem;
  background: var(--green-deep);
}

.how-inner { max-width: 1200px; margin: 0 auto; }

.how-header { margin-bottom: 4rem; }

.how-label { color: rgba(255,255,255,0.4) !important; }

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.how-step { padding: 0; }

.how-step-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.how-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.how-step-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.how-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}

.how-tools-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.how-tool {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.how-tool-sep { color: rgba(255,255,255,0.2); }

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  background: var(--cream-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 77, 46, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  background: var(--green-deep);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-sep { color: rgba(255,255,255,0.15); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; }
  .service-card-featured { grid-template-columns: auto 1fr; }
  .service-tag { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { order: -1; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-stat-divider { height: 40px; }
  .hero-stats { gap: 0.5rem; }
}

@media (max-width: 600px) {
  .hero { padding: 5rem 1.5rem 4rem; }
  .problem, .services, .pricing, .how, .closing { padding: 5rem 1.5rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-stat-divider { width: 40px; height: 1px; margin: 0; }
  .hero-stat { padding: 0; }
  .nav-tagline { display: none; }
  .service-card-featured { flex-direction: column; align-items: flex-start; }
}