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

:root{
  --bg:#faf8f5;
  --surface:#f2ede6;
  --surface2:#e8e0d5;
  --border:#d9d0c5;
  --text:#2a2420;
  --text-muted:#6b6560;
  --forest:#1a3d2e;
  --forest-light:#2a5240;
  --amber:#c97d3a;
  --amber-light:#e8a052;
  --warm:#8b6f4e;
  --font-head:'Sora',sans-serif;
  --font-body:'DM Sans',sans-serif;
  --max-w:1200px;
  --radius:14px;
  --radius-sm:8px
}

html{scroll-behavior:smooth}

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

/* NAV */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 48px;
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,248,245,0.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border)
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-icon{
  width:32px;height:32px;
  background:var(--forest);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0
}
.brand-name{font-family:var(--font-head);font-weight:700;font-size:18px;color:var(--forest);letter-spacing:-0.02em}
.nav-links{display:flex;align-items:center;gap:32px}
.nav-link{font-size:14px;font-weight:500;color:var(--text-muted);text-decoration:none;transition:color 0.2s}
.nav-link:hover{color:var(--forest)}
.nav-cta{
  display:inline-block;
  padding:10px 22px;
  background:var(--forest);
  color:#fff;
  font-family:var(--font-head);
  font-size:14px;
  font-weight:600;
  border-radius:var(--radius-sm);
  text-decoration:none;
  transition:background 0.2s,transform 0.15s
}
.nav-cta:hover{background:var(--forest-light);transform:translateY(-1px)}

@media(max-width:768px){
  .nav{padding:16px 24px}
  .nav-links{display:none}
}

/* HERO */
.hero{
  padding:90px 48px 80px;
  max-width:var(--max-w);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:100px;
  padding:6px 14px;
  font-size:13px;
  font-weight:500;
  color:var(--forest);
  margin-bottom:28px
}
.hero-badge-dot{
  width:6px;height:6px;
  background:var(--amber);
  border-radius:50%;
  animation:pulse 2.5s infinite
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
.hero-headline{
  font-family:var(--font-head);
  font-size:clamp(34px,4.5vw,56px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-0.03em;
  color:var(--forest);
  margin-bottom:24px
}
.hero-sub{
  font-size:18px;
  color:var(--text-muted);
  line-height:1.75;
  max-width:480px;
  margin-bottom:28px
}
.hero-bullets{display:flex;flex-direction:column;gap:10px;margin-bottom:32px}
.hero-bullet{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--text);line-height:1.5;
  font-weight:500
}
.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.btn-primary{
  display:inline-block;
  padding:14px 32px;
  background:var(--forest);
  color:#fff;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  border-radius:var(--radius-sm);
  text-decoration:none;
  transition:background 0.2s,transform 0.15s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(26,61,46,0.2)
}
.btn-primary:hover{background:var(--forest-light);transform:translateY(-2px);box-shadow:0 6px 20px rgba(26,61,46,0.28)}
.btn-secondary{
  display:inline-block;
  padding:14px 32px;
  background:transparent;
  color:var(--forest);
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  text-decoration:none;
  transition:border-color 0.2s,background 0.2s
}
.btn-secondary:hover{border-color:var(--forest);background:var(--surface)}
.hero-meta{
  display:flex;
  align-items:center;
  gap:32px;
  margin-top:36px
}
.meta-stat{display:flex;flex-direction:column;gap:2px}
.meta-value{font-family:var(--font-head);font-size:20px;font-weight:700;color:var(--forest);letter-spacing:-0.02em}
.meta-label{font-size:12px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.06em}
.meta-divider{width:1px;height:36px;background:var(--border)}

.hero-visual{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(42,36,32,0.08)
}
.hero-image{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block
}
.hero-image-caption{
  padding:20px 24px;
  border-top:1px solid var(--border)
}
.caption-pillar{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px
}
.caption-pillar:last-child{margin-bottom:0}
.pillar-dot{
  width:10px;height:10px;
  border-radius:50%;
  flex-shrink:0
}
.caption-name{font-size:14px;font-weight:600;color:var(--forest)}
.caption-sub{font-size:13px;color:var(--text-muted)}

@media(max-width:768px){
  .hero{padding:60px 24px 60px;grid-template-columns:1fr;gap:40px}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .hero-meta{gap:20px}
}

/* PILLARS */
.pillars-section{
  padding:80px 48px;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border)
}
.section-inner{max-width:var(--max-w);margin:0 auto}
.section-header{text-align:center;margin-bottom:56px}
.section-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:16px
}
.section-title{
  font-family:var(--font-head);
  font-size:clamp(26px,3vw,40px);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.12;
  color:var(--forest);
  margin-bottom:16px
}
.section-sub{font-size:16px;color:var(--text-muted);max-width:560px;margin:0 auto;line-height:1.7}

.pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}
.pillar-card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  transition:border-color 0.2s,box-shadow 0.2s,transform 0.2s;
  cursor:default
}
.pillar-card:hover{
  border-color:var(--forest);
  box-shadow:0 8px 28px rgba(26,61,46,0.1);
  transform:translateY(-2px)
}
.pillar-number{
  font-family:var(--font-head);
  font-size:11px;
  font-weight:700;
  color:var(--text-muted);
  letter-spacing:0.06em;
  margin-bottom:14px
}
.pillar-icon-wrap{
  width:44px;height:44px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  font-size:22px
}
.pillar-name{
  font-family:var(--font-head);
  font-size:17px;
  font-weight:700;
  color:var(--forest);
  margin-bottom:8px;
  letter-spacing:-0.01em
}
.pillar-desc{font-size:14px;color:var(--text-muted);line-height:1.6}

@media(max-width:900px){
  .pillars-grid{grid-template-columns:repeat(2,1fr)}
  .pillars-section{padding:60px 24px}
}
@media(max-width:580px){
  .pillars-grid{grid-template-columns:1fr}
}

/* EMAIL CAPTURE */
.email-section{
  padding:80px 48px;
  background:var(--forest);
  color:#fff
}
.email-inner{
  max-width:640px;
  margin:0 auto;
  text-align:center
}
.email-eyebrow{
  font-size:11px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--amber-light);
  margin-bottom:16px
}
.email-title{
  font-family:var(--font-head);
  font-size:clamp(26px,3.5vw,42px);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.12;
  margin-bottom:16px
}
.email-sub{font-size:16px;opacity:0.75;line-height:1.7;margin-bottom:40px}
.email-form{display:flex;gap:10px;max-width:480px;margin:0 auto}
.email-input{
  flex:1;
  padding:14px 18px;
  background:rgba(255,255,255,0.12);
  border:1.5px solid rgba(255,255,255,0.2);
  border-radius:var(--radius-sm);
  color:#fff;
  font-family:var(--font-body);
  font-size:15px;
  outline:none;
  transition:border-color 0.2s
}
.email-input::placeholder{color:rgba(255,255,255,0.5)}
.email-input:focus{border-color:rgba(255,255,255,0.5)}
.email-btn{
  padding:14px 28px;
  background:var(--amber);
  color:#fff;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  border:none;
  border-radius:var(--radius-sm);
  cursor:pointer;
  white-space:nowrap;
  transition:background 0.2s,transform 0.15s
}
.email-btn:hover{background:var(--amber-light);transform:translateY(-1px)}
.email-note{font-size:12px;opacity:0.55;margin-top:14px}
.email-success{
  display:none;
  padding:20px;
  background:rgba(255,255,255,0.1);
  border-radius:var(--radius-sm);
  font-size:16px;font-weight:500
}
.email-error{color:#ff9f7a;font-size:13px;margin-top:10px;display:none}

@media(max-width:580px){
  .email-section{padding:60px 24px}
  .email-form{flex-direction:column}
  .email-btn{width:100%}
}

/* PRODUCT SECTION */
.product-section{
  padding:80px 48px;
  max-width:var(--max-w);
  margin:0 auto
}
.product-inner{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.product-badge{
  display:inline-block;
  background:#fef3e2;
  color:var(--amber);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:100px;
  margin-bottom:20px
}
.product-title{
  font-family:var(--font-head);
  font-size:clamp(26px,3vw,40px);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.12;
  color:var(--forest);
  margin-bottom:20px
}
.product-desc{font-size:16px;color:var(--text-muted);line-height:1.7;margin-bottom:32px}
.product-features{list-style:none;margin-bottom:36px}
.product-feature{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px}
.feature-check{
  width:22px;height:22px;
  background:var(--forest);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px
}
.feature-text{font-size:15px;color:var(--text)}
.product-price{display:flex;align-items:baseline;gap:10px;margin-bottom:20px}
.price-amount{font-family:var(--font-head);font-size:40px;font-weight:800;color:var(--forest);letter-spacing:-0.03em}
.price-from{font-size:14px;color:var(--text-muted)}
.price-note{font-size:13px;color:var(--text-muted);margin-top:12px}
.product-cta{
  display:inline-block;
  padding:14px 32px;
  background:var(--amber);
  color:#fff;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  border-radius:var(--radius-sm);
  text-decoration:none;
  transition:background 0.2s,transform 0.15s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(201,125,58,0.3);
  cursor:pointer
}
.product-cta:hover{background:var(--amber-light);transform:translateY(-2px);box-shadow:0 6px 20px rgba(201,125,58,0.38)}

.product-visual{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px;
  text-align:center;
  box-shadow:0 20px 60px rgba(42,36,32,0.06)
}
.product-visual-icon{
  font-size:64px;
  margin-bottom:20px;
  display:block
}
.product-visual-title{
  font-family:var(--font-head);
  font-size:20px;
  font-weight:700;
  color:var(--forest);
  margin-bottom:10px
}
.product-visual-sub{font-size:14px;color:var(--text-muted);line-height:1.6}

@media(max-width:768px){
  .product-section{padding:60px 24px}
  .product-inner{grid-template-columns:1fr;gap:40px}
}

/* SOCIAL PROOF */
.proof-section{
  padding:80px 48px;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border)
}
.proof-inner{max-width:var(--max-w);margin:0 auto}
.proof-header{text-align:center;margin-bottom:48px}
.proof-header .section-title{margin-bottom:0}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.stat-card{background:var(--bg);padding:36px 24px;text-align:center}
.stat-val{font-family:var(--font-head);font-size:36px;font-weight:800;color:var(--forest);letter-spacing:-0.03em;margin-bottom:4px}
.stat-lbl{font-size:13px;color:var(--text-muted);line-height:1.5}

@media(max-width:768px){
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .proof-section{padding:60px 24px}
}

/* CLOSING */
.closing-section{padding:100px 48px;text-align:center;background:var(--forest);color:#fff}
.closing-inner{max-width:600px;margin:0 auto}
.closing-inner h2{
  font-family:var(--font-head);
  font-size:clamp(28px,4vw,48px);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.1;
  margin-bottom:20px
}
.closing-inner p{font-size:17px;opacity:0.75;line-height:1.7;margin-bottom:40px}
.closing-cta{
  display:inline-block;
  padding:16px 40px;
  background:var(--amber);
  color:#fff;
  font-family:var(--font-head);
  font-size:16px;
  font-weight:700;
  border-radius:var(--radius-sm);
  text-decoration:none;
  transition:background 0.2s,transform 0.15s,box-shadow 0.2s;
  box-shadow:0 4px 20px rgba(201,125,58,0.35)
}
.closing-cta:hover{background:var(--amber-light);transform:translateY(-2px);box-shadow:0 6px 24px rgba(201,125,58,0.45)}

@media(max-width:768px){
  .closing-section{padding:80px 24px}
}

/* FOOTER */
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 48px;
  border-top:1px solid var(--border);
  background:var(--bg)
}
.footer-brand{display:flex;align-items:center;gap:8px}
.footer-brand-name{font-family:var(--font-head);font-weight:700;font-size:15px;color:var(--forest)}
.footer-copy{font-size:13px;color:var(--text-muted)}

@media(max-width:580px){
  .footer{flex-direction:column;gap:12px;padding:24px;text-align:center}
}