*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --forest:#1A3A2A;
  --forest-mid:#2D5940;
  --sage:#4A7C59;
  --mint:#5DB87A;
  --mint-light:rgba(93,184,122,0.12);
  --cream:#F8F6F1;
  --warm:#FDFCFA;
  --bark:#6B4F3A;
  --gold:#C9A84C;
  --text:#1C1C1A;
  --text2:#5A5A55;
  --text3:#6E6E68;
  --border:rgba(26,58,42,0.10);
  --border2:rgba(26,58,42,0.18);
  --radius:10px;
  --radius-lg:14px;
  --radius-xl:20px;
  --font:'Inter',system-ui,sans-serif;
  --max:1180px;
  --nav-h:60px;
}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:var(--font);background:var(--warm);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
button{cursor:pointer;font-family:var(--font);}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

/* â”€â”€ REVEAL ANIMATIONS â”€â”€ */
.reveal{opacity:0;transform:translateY(20px);transition:opacity 0.55s cubic-bezier(0.4,0,0.2,1),transform 0.55s cubic-bezier(0.4,0,0.2,1);}
.reveal.visible{opacity:1;transform:none;}
.reveal-delay-1{transition-delay:0.08s;}
.reveal-delay-2{transition-delay:0.16s;}
.reveal-delay-3{transition-delay:0.24s;}
.reveal-delay-4{transition-delay:0.32s;}
.reveal-delay-5{transition-delay:0.40s;}
.reveal-delay-6{transition-delay:0.48s;}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none;}}

/* ── NAV ── */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:var(--nav-h);
  display:flex;align-items:center;
  padding:0 32px;
  background:rgba(253,252,250,0.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:background 0.2s;
}
.nav-inner{width:100%;max-width:var(--max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.nav-logo{display:flex;align-items:center;gap:10px;flex:1;}
.nav-logo-mark{
  height:44px;
  max-width:168px;
}
.footer-logo-mark{
  height:40px;
  max-width:150px;
}

/* Brand logo — knock out baked-in white PNG backgrounds */
.treeos-brand-logo-wrap{
  display:inline-flex;
  align-items:center;
  line-height:0;
  background:var(--warm);
}
.footer-logo-row .treeos-brand-logo-wrap{background:var(--cream);}
.treeos-brand-logo{
  width:auto;
  object-fit:contain;
  display:block;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  mix-blend-mode:multiply;
}
.nav-logo-text{font-size:20px;font-weight:600;color:var(--text);letter-spacing:-0.03em;}
.nav-links{display:flex;align-items:center;justify-content:center;gap:16px;margin:0;padding:0;list-style:none;}
.nav-links li{margin:0;}
.nav-link{
  padding:6px 10px;border-radius:7px;
  font-size:13.5px;color:var(--text2);font-weight:450;
  transition:background 0.15s,color 0.15s;
  white-space:nowrap;
}
.nav-link:hover{background:var(--cream);color:var(--text);}
.nav-ctas{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex:1;}
.btn-ghost-sm{
  padding:7px 14px;border-radius:8px;
  font-size:13px;font-weight:500;color:var(--text2);
  border:1px solid var(--border2);background:transparent;
  transition:all 0.15s;
  white-space:nowrap;
}
.btn-ghost-sm:hover{background:var(--cream);color:var(--text);border-color:var(--border2);}
.btn-primary-sm{
  padding:7px 16px;border-radius:8px;
  font-size:13px;font-weight:500;color:#fff;
  background:var(--forest);border:none;
  transition:background 0.15s,transform 0.1s,box-shadow 0.15s;
  box-shadow:0 1px 3px rgba(26,58,42,0.25);
  white-space:nowrap;
}
.btn-primary-sm:hover{background:var(--forest-mid);box-shadow:0 3px 10px rgba(26,58,42,0.3);transform:translateY(-1px);}
.btn-primary-sm:active{transform:scale(0.97);}
.nav-mobile-btn{display:none;background:none;border:none;padding:6px;color:var(--text);font-size:22px;}
.mobile-menu{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;
  background:var(--warm);border-bottom:1px solid var(--border);
  padding:16px 24px 24px;z-index:99;
  flex-direction:column;gap:4px;
  animation:slideDown 0.2s ease;
}
.mobile-menu.open{display:flex;}
.mobile-menu-links{list-style:none;margin:0;padding:0;}
.mobile-menu-links li{margin:0;}
@keyframes slideDown{from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:none;}}
.mobile-link{display:block;padding:10px 12px;border-radius:8px;font-size:15px;color:var(--text2);}
.mobile-link:hover{background:var(--cream);}
.mobile-cta-row{display:flex;flex-direction:column;gap:8px;margin-top:12px;padding-top:12px;border-top:1px solid var(--border);}

/* â”€â”€ SHARED â”€â”€ */
.section{padding:96px 32px;}
.section-inner{max-width:var(--max);margin:0 auto;}
.eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11.5px;font-weight:600;letter-spacing:1px;text-transform:uppercase;
  color:var(--sage);margin-bottom:18px;
}
.eyebrow::before{content:'';display:block;width:16px;height:1.5px;background:var(--mint);}
h1,h2,h3,h4{color:var(--text);}
.headline-xl{
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:500;letter-spacing:-0.04em;line-height:1.1;
  color:var(--text);
}
.headline-lg{
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:500;letter-spacing:-0.03em;line-height:1.15;
}
.headline-md{font-size:clamp(1.3rem,2.5vw,1.8rem);font-weight:500;letter-spacing:-0.02em;line-height:1.25;}
.body-lg{font-size:clamp(1rem,1.5vw,1.15rem);color:var(--text2);line-height:1.7;}
.body-md{font-size:0.9375rem;color:var(--text2);line-height:1.6;}
.accent-mint{color:var(--mint);}

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 26px;border-radius:10px;
  font-size:15px;font-weight:500;color:#fff;
  background:var(--forest);border:none;
  transition:background 0.15s,transform 0.1s,box-shadow 0.2s;
  box-shadow:0 2px 6px rgba(26,58,42,0.25);
}
.btn-primary:hover{background:var(--forest-mid);box-shadow:0 6px 18px rgba(26,58,42,0.28);transform:translateY(-2px);}
.btn-primary:active{transform:scale(0.97);}
.btn-secondary{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 24px;border-radius:10px;
  font-size:15px;font-weight:500;color:var(--text);
  background:transparent;border:1.5px solid var(--border2);
  transition:all 0.15s;
}
.btn-secondary:hover{border-color:var(--sage);color:var(--sage);background:rgba(74,124,89,0.05);}
.btn-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;}

/* â”€â”€ HERO â”€â”€ */
.hero{
  padding:calc(var(--nav-h) + 72px) 32px 80px;
  background:var(--warm);
}
.hero-inner{max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.hero-left{}
.hero-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(93,184,122,0.10);
  border:1px solid rgba(93,184,122,0.22);
  color:var(--forest-mid);
  font-size:12px;font-weight:500;
  padding:5px 12px;border-radius:20px;
  margin-bottom:22px;
}
.hero-tag-dot{width:6px;height:6px;border-radius:50%;background:var(--mint);}
.hero-h1{
  font-size:clamp(2.4rem,4.5vw,3.8rem);
  font-weight:500;letter-spacing:-0.045em;
  line-height:1.08;color:var(--text);
  margin-bottom:22px;
}
.hero-h1 em{font-style:normal;color:var(--sage);}
.hero-sub{
  font-size:1.0625rem;color:var(--text2);line-height:1.7;
  max-width:480px;margin-bottom:32px;
}
.hero-trust{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  margin-top:22px;
}
.trust-item{
  display:flex;align-items:center;gap:6px;
  font-size:12.5px;color:var(--text3);
}
.trust-check{width:16px;height:16px;border-radius:50%;background:rgba(93,184,122,0.15);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.trust-check svg{width:9px;height:9px;stroke:var(--mint);stroke-width:2.5;}
.hero-right{position:relative;}
.browser-frame{
  background:var(--warm);border-radius:var(--radius-xl);
  border:1px solid var(--border2);
  box-shadow:0 24px 64px rgba(26,58,42,0.14),0 4px 12px rgba(26,58,42,0.06);
  overflow:hidden;
  transform:perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition:transform 0.4s ease;
}
.browser-frame:hover{transform:perspective(1000px) rotateY(0) rotateX(0);}
.browser-bar{
  height:36px;background:var(--cream);
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;padding:0 14px;gap:6px;
}
.bb-dot{width:10px;height:10px;border-radius:50%;}
.bb-dot-r{background:#F09595;}
.bb-dot-y{background:#FAC775;}
.bb-dot-g{background:#C0DD97;}
.bb-url{
  margin:0 10px;flex:1;
  background:var(--warm);border:1px solid var(--border);border-radius:6px;
  padding:4px 10px;font-size:11px;color:var(--text3);
  display:flex;align-items:center;gap:6px;
}
.browser-content{padding:0;}

/* Mini dashboard inside browser */
.mini-dash{display:flex;height:280px;overflow:hidden;}
.mini-sidebar{width:120px;background:var(--forest);padding:12px 8px;flex-shrink:0;}
.mini-logo-row{display:flex;align-items:center;gap:6px;padding:0 4px 12px;border-bottom:1px solid rgba(255,255,255,0.08);margin-bottom:8px;}
.mini-logo-dot{width:20px;height:20px;border-radius:5px;background:rgba(93,184,122,0.2);display:flex;align-items:center;justify-content:center;font-size:10px;}
.mini-logo-txt{font-size:10px;font-weight:500;color:#F0EDE8;}
.mini-nav-item{display:flex;align-items:center;gap:5px;padding:5px 6px;border-radius:5px;color:rgba(255,255,255,0.4);font-size:9.5px;margin-bottom:1px;}
.mini-nav-item.active{background:rgba(93,184,122,0.14);color:#5DB87A;}
.mini-nav-icon{width:12px;height:12px;border-radius:2px;background:currentColor;opacity:0.5;flex-shrink:0;}
.mini-nav-item.active .mini-nav-icon{opacity:1;}
.mini-main{flex:1;background:var(--cream);padding:10px;}
.mini-topbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;}
.mini-page-title{font-size:12px;font-weight:600;color:var(--text);}
.mini-btn{background:var(--forest);color:#fff;border:none;border-radius:5px;padding:3px 8px;font-size:9px;font-weight:500;}
.mini-kpi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-bottom:8px;}
.mini-kpi{background:var(--warm);border:1px solid var(--border);border-radius:7px;padding:8px;position:relative;overflow:hidden;}
.mini-kpi::after{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--accent,var(--mint));}
.mini-kpi-label{font-size:8px;color:var(--text3);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:3px;}
.mini-kpi-val{font-size:14px;font-weight:500;color:var(--text);letter-spacing:-0.5px;}
.mini-card{background:var(--warm);border:1px solid var(--border);border-radius:7px;padding:8px;margin-bottom:6px;}
.mini-card-label{font-size:8px;font-weight:500;color:var(--text2);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px;}
.mini-job-row{display:flex;align-items:center;gap:6px;padding:4px 0;border-bottom:1px solid var(--border);}
.mini-job-row:last-child{border-bottom:none;}
.mini-job-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0;}
.mini-job-name{font-size:9px;font-weight:500;color:var(--text);flex:1;}
.mini-job-status{font-size:8px;padding:1px 5px;border-radius:10px;}
.s-done{background:rgba(74,124,89,0.12);color:#2D5940;}
.s-active{background:rgba(201,168,76,0.12);color:#8B6914;}

/* â”€â”€ SOCIAL PROOF â”€â”€ */
.social-proof{
  padding:48px 32px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--cream);
}
.sp-inner{max-width:var(--max);margin:0 auto;}
.sp-label{font-size:12px;color:var(--text3);text-align:center;font-weight:500;letter-spacing:0.5px;text-transform:uppercase;margin:0 0 28px;}
.sp-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:0;padding:0;list-style:none;}
.sp-metric{text-align:center;padding:0 24px;border-right:1px solid var(--border);}
.sp-metric:last-child{border-right:none;}
.sp-metric-val{font-size:2.2rem;font-weight:500;color:var(--text);letter-spacing:-0.05em;line-height:1;}
.sp-metric-label{font-size:12px;color:var(--text3);margin-top:5px;}
.sp-reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:36px;}
.review-card{
  background:var(--warm);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:18px 20px;
  transition:box-shadow 0.2s,transform 0.2s,border-color 0.2s;
}
.review-card:hover{box-shadow:0 6px 24px rgba(26,58,42,0.08);transform:translateY(-2px);border-color:var(--border2);}
.review-stars{display:flex;gap:3px;margin-bottom:10px;}
.review-star{width:13px;height:13px;background:var(--gold);border-radius:2px;}
.review-text{font-size:13.5px;color:var(--text2);line-height:1.6;margin-bottom:12px;}
.review-author{display:flex;align-items:center;gap:9px;}
.review-avatar{width:30px;height:30px;border-radius:50%;background:var(--forest);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:500;color:#fff;flex-shrink:0;}
.review-name{font-size:12.5px;font-weight:500;color:var(--text);}
.review-role{font-size:11px;color:var(--text3);}

/* â”€â”€ PROBLEM â”€â”€ */
.problem{padding:96px 32px;background:var(--warm);}
.problem-inner{max-width:var(--max);margin:0 auto;}
.problem-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:48px;}
.problem-card{
  background:var(--cream);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:22px 22px;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.problem-card:hover{border-color:var(--border2);box-shadow:0 4px 16px rgba(26,58,42,0.07);}
.problem-icon{
  width:36px;height:36px;border-radius:9px;
  background:rgba(192,57,43,0.08);border:1px solid rgba(192,57,43,0.15);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.problem-icon svg{width:16px;height:16px;stroke:#C0392B;stroke-width:1.8;fill:none;}
.problem-title{font-size:14px;font-weight:500;color:var(--text);margin-bottom:6px;}
.problem-desc{font-size:13px;color:var(--text2);line-height:1.55;}

/* â”€â”€ FEATURES â”€â”€ */
.features{padding:96px 32px;background:var(--cream);}
.features-inner{max-width:var(--max);margin:0 auto;}
.features-header{max-width:560px;margin-bottom:52px;}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.feature-card{
  background:var(--warm);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:22px 22px 20px;
  transition:box-shadow 0.2s,transform 0.2s,border-color 0.2s;
  cursor:default;
}
.feature-card:hover{box-shadow:0 8px 28px rgba(26,58,42,0.09);transform:translateY(-3px);border-color:var(--border2);}
.feature-icon-wrap{
  width:38px;height:38px;border-radius:10px;
  background:rgba(74,124,89,0.10);border:1px solid rgba(74,124,89,0.18);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.feature-icon-wrap svg{width:17px;height:17px;stroke:var(--sage);stroke-width:1.8;fill:none;}
.feature-card-title{font-size:14px;font-weight:500;color:var(--text);margin-bottom:6px;letter-spacing:-0.1px;}
.feature-card-desc{font-size:13px;color:var(--text2);line-height:1.6;}

/* â”€â”€ WORKFLOW â”€â”€ */
.workflow{padding:96px 32px;background:var(--warm);}
.workflow-inner{max-width:var(--max);margin:0 auto;}
.workflow-header{text-align:center;max-width:540px;margin:0 auto 60px;}
.workflow-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;position:relative;}
.workflow-steps::before{
  content:'';position:absolute;
  top:28px;left:calc(16.66% + 20px);right:calc(16.66% + 20px);
  height:1px;background:linear-gradient(90deg,var(--mint),rgba(93,184,122,0.3));
}
.step{padding:0 20px;text-align:center;}
.step-num{
  width:56px;height:56px;border-radius:50%;
  background:var(--warm);border:1.5px solid var(--border2);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
  font-size:14px;font-weight:500;color:var(--text2);
  position:relative;z-index:1;
  transition:border-color 0.2s,background 0.2s,color 0.2s;
}
.step:hover .step-num{border-color:var(--mint);background:rgba(93,184,122,0.08);color:var(--sage);}
.step-title{font-size:14px;font-weight:500;color:var(--text);margin-bottom:6px;}
.step-desc{font-size:13px;color:var(--text2);line-height:1.55;}
.workflow-row2{margin-top:32px;}

/* â”€â”€ PRICING â”€â”€ */
.pricing{padding:96px 32px;background:var(--cream);}
.pricing-inner{max-width:600px;margin:0 auto;}
.pricing-header{text-align:center;margin-bottom:36px;}
.pricing-card{
  background:var(--forest);border-radius:var(--radius-xl);
  padding:36px;overflow:hidden;position:relative;
}
.pricing-card::before{
  content:'';position:absolute;
  top:-60px;right:-60px;
  width:220px;height:220px;
  background:radial-gradient(circle,rgba(93,184,122,0.10) 0%,transparent 70%);
  pointer-events:none;
}
.pricing-plan-label{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(93,184,122,0.15);border:1px solid rgba(93,184,122,0.25);
  color:#5DB87A;font-size:11px;font-weight:500;
  padding:4px 10px;border-radius:20px;margin-bottom:16px;
  letter-spacing:0.3px;
}
.pricing-name{font-size:1.8rem;font-weight:500;color:#F0EDE8;letter-spacing:-0.03em;margin-bottom:6px;}
.pricing-tagline{font-size:13.5px;color:rgba(240,237,232,0.72);margin-bottom:28px;}
.pricing-price-row{display:flex;align-items:baseline;gap:6px;margin-bottom:8px;}
.price-amt{font-size:3.5rem;font-weight:500;color:#F0EDE8;letter-spacing:-0.05em;line-height:1;}
.price-per{font-size:14px;color:rgba(240,237,232,0.65);}
.pricing-divider{height:1px;background:rgba(255,255,255,0.08);margin:24px 0;}
.pricing-features{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:28px;}
.pf-item{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:rgba(240,237,232,0.8);}
.pf-check{width:18px;height:18px;border-radius:50%;background:rgba(93,184,122,0.18);border:1px solid rgba(93,184,122,0.3);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;}
.pf-check svg{width:9px;height:9px;stroke:#5DB87A;stroke-width:2.5;fill:none;}
.pricing-btns{display:flex;gap:10px;}
.btn-pricing-primary{
  flex:1;padding:13px 20px;border-radius:10px;
  font-size:14px;font-weight:500;color:var(--forest);
  background:#5DB87A;border:none;
  transition:background 0.15s,transform 0.1s;
  font-family:var(--font);
}
.btn-pricing-primary:hover{background:#70C98A;transform:translateY(-1px);}
.btn-pricing-primary:active{transform:scale(0.98);}
.btn-pricing-secondary{
  padding:13px 20px;border-radius:10px;
  font-size:14px;font-weight:500;color:rgba(240,237,232,0.75);
  background:transparent;border:1px solid rgba(255,255,255,0.15);
  transition:all 0.15s;font-family:var(--font);
}
.btn-pricing-secondary:hover{border-color:rgba(255,255,255,0.3);color:rgba(240,237,232,0.9);}
.pricing-note{text-align:center;font-size:12.5px;color:var(--text3);margin-top:16px;}

/* â”€â”€ SECURITY â”€â”€ */
.security{padding:96px 32px;background:var(--warm);}
.security-inner{max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.security-right{}
.security-items{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:32px;}
.sec-item{background:var(--cream);border:1px solid var(--border);border-radius:var(--radius);padding:16px;}
.sec-item-icon{width:32px;height:32px;border-radius:8px;background:var(--forest);display:flex;align-items:center;justify-content:center;margin-bottom:10px;}
.sec-item-icon svg{width:15px;height:15px;stroke:#5DB87A;stroke-width:1.8;fill:none;}
.sec-item-title{font-size:13px;font-weight:500;color:var(--text);margin-bottom:4px;}
.sec-item-desc{font-size:12px;color:var(--text2);line-height:1.5;}
.sec-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--cream);border:1px solid var(--border2);
  border-radius:10px;padding:12px 16px;
  font-size:13px;color:var(--text2);margin-top:24px;
}

/* â”€â”€ FAQ â”€â”€ */
.faq{padding:96px 32px;background:var(--cream);}
.faq-inner{max-width:680px;margin:0 auto;}
.faq-header{text-align:center;margin-bottom:44px;}
.faq-list{display:flex;flex-direction:column;gap:2px;}
.faq-item{background:var(--warm);border:1px solid var(--border);border-radius:var(--radius);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 18px;cursor:pointer;
  font-size:14.5px;font-weight:500;color:var(--text);
  gap:16px;
}
.faq-q:hover{color:var(--sage);}
.faq-icon{width:20px;height:20px;border-radius:50%;border:1px solid var(--border2);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform 0.2s,background 0.2s;}
.faq-icon svg{width:10px;height:10px;stroke:var(--text3);stroke-width:2;fill:none;transition:stroke 0.2s;}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--cream);}
.faq-item.open .faq-icon svg{stroke:var(--sage);}
.faq-a{
  display:none;padding:0 18px 16px;
  font-size:13.5px;color:var(--text2);line-height:1.65;
  border-top:1px solid var(--border);margin-top:0;padding-top:14px;
}
.faq-item.open .faq-a{display:block;}

/* â”€â”€ CTA â”€â”€ */
.cta-section{
  padding:96px 32px;
  background:var(--forest);position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;top:-80px;right:-80px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(93,184,122,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.cta-inner{max-width:680px;margin:0 auto;text-align:center;position:relative;}
.cta-h2{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:500;color:#F0EDE8;letter-spacing:-0.03em;line-height:1.15;margin-bottom:16px;}
.cta-sub{font-size:1.0625rem;color:rgba(240,237,232,0.72);margin-bottom:32px;}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;}
.btn-cta-primary{
  padding:14px 28px;border-radius:10px;
  font-size:15px;font-weight:500;color:var(--forest);
  background:var(--mint);border:none;
  transition:background 0.15s,transform 0.1s;
  font-family:var(--font);
}
.btn-cta-primary:hover{background:#70C98A;transform:translateY(-1px);}
.btn-cta-secondary{
  padding:13px 24px;border-radius:10px;
  font-size:15px;font-weight:500;color:rgba(240,237,232,0.75);
  background:transparent;border:1px solid rgba(255,255,255,0.18);
  transition:all 0.15s;font-family:var(--font);
}
.btn-cta-secondary:hover{border-color:rgba(255,255,255,0.35);color:rgba(240,237,232,0.9);}

/* â”€â”€ FOOTER â”€â”€ */
footer{background:var(--cream);border-top:1px solid var(--border);padding:64px 32px 40px;}
.footer-inner{max-width:var(--max);margin:0 auto;}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr;gap:48px;margin-bottom:52px;}
.footer-brand{}
.footer-logo-row{display:flex;align-items:center;gap:9px;margin-bottom:14px;}
.footer-logo-name{font-size:15px;font-weight:500;color:var(--text);}
.footer-desc{font-size:13px;color:var(--text3);line-height:1.6;max-width:220px;}
.footer-col-title{font-size:12px;font-weight:600;color:var(--text);letter-spacing:0.3px;margin-bottom:14px;text-transform:uppercase;}
.footer-links{display:flex;flex-direction:column;gap:9px;}
.footer-link{font-size:13px;color:var(--text3);transition:color 0.15s;}
.footer-link:hover{color:var(--text);}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:28px;border-top:1px solid var(--border);}
.footer-copy{font-size:12px;color:var(--text3);}
.footer-social{display:flex;gap:10px;}
.social-link{
  width:32px;height:32px;border-radius:8px;
  background:var(--warm);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:var(--text3);
  transition:all 0.15s;
}
.social-link:hover{border-color:var(--border2);color:var(--text);background:var(--warm);}
.social-link svg{width:14px;height:14px;stroke:currentColor;stroke-width:1.8;fill:none;}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:48px;}
  .hero-right{display:none;}
  .sp-metrics{grid-template-columns:repeat(2,1fr);}
  .sp-metric{border-right:none;border-bottom:1px solid var(--border);padding:16px 0;}
  .sp-metric:nth-child(2n){padding-left:24px;}
  .problem-grid{grid-template-columns:1fr 1fr;}
  .features-grid{grid-template-columns:1fr 1fr;}
  .workflow-steps{grid-template-columns:repeat(2,1fr);}
  .workflow-steps::before{display:none;}
  .security-inner{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .section,.hero,.problem,.features,.workflow,.pricing,.security,.faq,.cta-section{padding-left:20px;padding-right:20px;}
  .nav-links,.nav-ctas .btn-ghost-sm{display:none;}
  .nav-mobile-btn{display:flex;}
  .sp-reviews{grid-template-columns:1fr;}
  .problem-grid,.features-grid{grid-template-columns:1fr;}
  .workflow-steps{grid-template-columns:1fr;}
  .pricing-features{grid-template-columns:1fr;}
  .security-items{grid-template-columns:1fr;}
  .sp-metrics{grid-template-columns:1fr 1fr;}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px;}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center;}
}

/* ── INNER PAGES ── */
.page-shell{padding-top:calc(var(--nav-h) + 56px);padding-bottom:80px;}
.page-shell .section-inner{max-width:760px;}
.page-lead{margin-top:18px;max-width:640px;}
.page-card{margin-top:32px;border:1px solid var(--border);border-radius:var(--radius-xl);background:#fff;padding:32px;box-shadow:0 1px 4px rgba(26,58,42,0.06);}
.page-content{color:var(--text2);font-size:0.9375rem;line-height:1.7;}
.page-content p{margin-bottom:1em;}
.page-content h2{margin-top:2em;margin-bottom:0.75em;font-size:1.15rem;font-weight:500;color:var(--text);}
.page-content ul{margin:1em 0 1.25em;padding-left:1.25em;}
.page-content li{margin-bottom:0.5em;}
.page-grid{display:grid;gap:16px;margin-top:24px;}
@media(min-width:768px){.page-grid.two-col{grid-template-columns:1fr 1fr;}}
.info-tile{border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--cream);padding:20px;}
.info-tile h3{font-size:0.95rem;font-weight:500;color:var(--text);margin-bottom:6px;}
.info-tile p{font-size:0.875rem;color:var(--text2);margin:0;}
.page-cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px;}

/* ── MARKETING LIVE CHAT WIDGET ── */
.chat-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(26,58,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s, background 0.2s;
}
.chat-toggle-btn:hover {
    transform: scale(1.05);
    background: var(--forest-mid);
}
.chat-unread-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #E74C3C;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
.chat-widget-container {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 340px;
    height: 480px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid var(--border);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}
.chat-widget-header {
    background: var(--forest);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-widget-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: white;
}
#close-chat-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}
#close-chat-btn:hover { opacity: 1; }
.chat-widget-body {
    flex: 1;
    background: var(--cream);
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-msg-admin {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg-guest {
    background: var(--forest);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-msg-time {
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
}
.chat-widget-footer {
    padding: 16px;
    background: white;
    border-top: 1px solid var(--border);
}
#chat-form {
    display: flex;
    gap: 8px;
}
#chat-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
}
#chat-input:focus { border-color: var(--mint); }
#chat-send-btn {
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#chat-send-btn:hover { background: var(--forest-mid); }
#chat-init-form { display: flex; flex-direction: column; gap: 10px; }
#chat-init-form p { font-size: 13px; color: var(--text2); margin-bottom: 4px; text-align: center; }
#chat-init-form input {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
}
@media (max-width: 400px) {
    .chat-widget-container {
        width: calc(100% - 32px);
        height: 60vh;
        right: 16px;
        bottom: 88px;
    }
}
