:root {
  --green: #009900;
  --green-dark: #006f00;
  --green-deep: #004b12;
  --mint: #eaf8eb;
  --mint-2: #f4fbf4;
  --ink: #102118;
  --muted: #66736b;
  --line: rgba(16, 33, 24, .10);
  --white: #fff;
  --shadow: 0 24px 70px rgba(0, 70, 0, .12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.page-loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--green); transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-cross { color: white; font-size: 72px; font-weight: 200; animation: loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse { 50% { transform: rotate(90deg) scale(1.15); opacity: .65; } }

.top-note { background: #003d0d; color: rgba(255,255,255,.78); padding: 8px 20px; text-align: center; font-size: 12px; letter-spacing: .02em; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px); border-bottom: 1px solid rgba(16,33,24,.07);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 12px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 15px; }
.brand-copy span { font-size: 11px; color: var(--muted); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after { content:""; position:absolute; left:0; right:100%; bottom:-7px; height:2px; background:var(--green); transition:.3s; }
.nav-links a:not(.nav-cta):hover::after { right:0; }
.nav-cta { background: var(--green); color: white; padding: 12px 18px; border-radius: 999px; box-shadow: 0 10px 30px rgba(0,153,0,.2); }
.menu-toggle { display:none; border:0; background:none; padding:10px; }
.menu-toggle span { width:24px; height:2px; background:var(--ink); display:block; margin:5px 0; }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7fbf7 100%); }
.hero::before { content:"+"; position:absolute; right:-4vw; top:-11vw; font-size:38vw; line-height:1; color:rgba(0,153,0,.035); font-weight:200; pointer-events:none; }
.hero-grid { display:grid; grid-template-columns: 1.06fr .94fr; align-items:center; gap:80px; }
.eyebrow, .section-kicker { display:flex; align-items:center; gap:10px; color:var(--green-dark); text-transform:uppercase; letter-spacing:.16em; font-weight:800; font-size:11px; }
.eyebrow span { width:28px; height:2px; background:var(--green); }
.hero h1 { font-size: clamp(48px, 6vw, 82px); line-height:.98; letter-spacing:-.055em; max-width:820px; margin:22px 0 24px; }
.hero-copy > p { font-size:18px; line-height:1.75; color:var(--muted); max-width:650px; }
.hero-actions { display:flex; gap:12px; margin:34px 0 36px; flex-wrap:wrap; }
.btn { min-height:52px; padding:0 23px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; transition:.28s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background:var(--green); color:white; box-shadow:0 15px 35px rgba(0,153,0,.24); }
.btn-outline { border:1px solid rgba(16,33,24,.16); background:white; }
.hero-mini-info { display:flex; gap:30px; flex-wrap:wrap; padding-top:20px; border-top:1px solid var(--line); }
.hero-mini-info div { display:flex; flex-direction:column; gap:4px; }
.hero-mini-info b { font-size:12px; }
.hero-mini-info span { font-size:12px; color:var(--muted); }
.hero-visual { min-height:550px; position:relative; display:grid; place-items:center; }
.visual-card { width:min(470px, 100%); aspect-ratio:.88; border-radius:40px; background:linear-gradient(155deg, rgba(255,255,255,.96), rgba(236,249,237,.8)); border:1px solid rgba(255,255,255,.75); box-shadow:var(--shadow); display:flex; flex-direction:column; align-items:center; justify-content:center; padding:50px; position:relative; overflow:hidden; }
.visual-card::after { content:""; position:absolute; inset:auto -25% -45% -25%; height:70%; background:radial-gradient(circle, rgba(0,153,0,.18), transparent 60%); }
.hero-logo { width:190px; border-radius:34px; box-shadow:0 20px 55px rgba(0,153,0,.15); z-index:2; animation: logoFloat 5s ease-in-out infinite; }
@keyframes logoFloat { 50% { transform:translateY(-12px) rotate(-1deg); } }
.visual-copy { z-index:2; display:flex; flex-direction:column; align-items:center; text-align:center; margin-top:28px; }
.visual-copy small { color:var(--green-dark); font-weight:800; }
.visual-copy strong { font-size:24px; margin:7px 0; }
.visual-copy span { color:var(--muted); font-size:12px; letter-spacing:.05em; }
.plus-pattern { position:absolute; top:12px; right:24px; font-size:170px; color:rgba(0,153,0,.05); line-height:1; }
.orb { position:absolute; border-radius:50%; filter:blur(4px); }
.orb-a { width:200px; height:200px; background:rgba(0,153,0,.12); top:15px; right:-20px; animation:orb 7s ease-in-out infinite alternate; }
.orb-b { width:120px; height:120px; background:rgba(0,153,0,.08); bottom:35px; left:-10px; animation:orb 5s ease-in-out infinite alternate-reverse; }
@keyframes orb { to { transform:translate(22px, -18px) scale(1.08); } }
.floating-tag { position:absolute; z-index:3; background:white; border:1px solid rgba(0,153,0,.12); box-shadow:0 16px 40px rgba(0,70,0,.10); border-radius:999px; padding:12px 16px; font-size:12px; font-weight:800; animation: tagFloat 5s ease-in-out infinite; }
.tag-one { top:11%; left:-2%; }
.tag-two { right:-8%; top:47%; animation-delay:-1.8s; }
.tag-three { left:4%; bottom:10%; animation-delay:-3s; }
@keyframes tagFloat { 50% { transform:translateY(-10px); } }
.scroll-line { position:absolute; bottom:25px; left:50%; width:1px; height:52px; background:rgba(0,153,0,.15); overflow:hidden; }
.scroll-line span { display:block; width:100%; height:50%; background:var(--green); animation:scrollLine 1.7s linear infinite; }
@keyframes scrollLine { from{ transform:translateY(-110%); } to{ transform:translateY(220%); } }

.trust-strip { background:var(--green); color:white; overflow:hidden; border-top:1px solid rgba(255,255,255,.15); border-bottom:1px solid rgba(255,255,255,.15); }
.marquee { padding:17px 0; overflow:hidden; }
.marquee-track { display:flex; width:max-content; align-items:center; gap:28px; animation:marquee 24s linear infinite; }
.marquee-track span { font-size:12px; font-weight:900; letter-spacing:.15em; }
.marquee-track i { font-size:28px; font-style:normal; opacity:.65; }
@keyframes marquee { to { transform:translateX(-50%); } }

.split-section { display:grid; grid-template-columns:1fr .95fr; gap:90px; align-items:start; }
.section-kicker { margin-bottom:18px; }
.section-kicker.light { color:#c8f4c9; }
.section-copy h2, .section-head h2, .faq-intro h2, .sticky-title h2 { font-size:clamp(36px, 4.2vw, 58px); line-height:1.05; letter-spacing:-.045em; margin:0 0 24px; }
.section-copy p, .section-head p, .faq-intro p, .sticky-title p { color:var(--muted); line-height:1.8; font-size:16px; }
.text-link { margin-top:16px; display:inline-flex; gap:12px; align-items:center; color:var(--green-dark); font-weight:800; }
.text-link span { transition:.25s; }
.text-link:hover span { transform:translateX(5px); }
.stats-panel { background:var(--mint-2); padding:28px; border-radius:var(--radius-xl); display:grid; grid-template-columns:1fr 1fr; gap:14px; border:1px solid rgba(0,153,0,.08); }
.stat-card { background:white; border-radius:22px; padding:26px; box-shadow:0 15px 40px rgba(0,70,0,.06); min-height:170px; }
.stat-card strong { font-size:46px; letter-spacing:-.06em; }
.stat-card > span { font-size:28px; color:var(--green); font-weight:900; }
.stat-card p { color:var(--muted); font-size:13px; line-height:1.6; }
.stat-card.wide { grid-column:1/-1; min-height:auto; background:var(--green); color:white; }
.stat-card.wide strong { font-size:20px; letter-spacing:-.02em; }
.stat-card.wide p { color:rgba(255,255,255,.8); margin-bottom:0; }
.stats-panel > small { grid-column:1/-1; color:var(--muted); padding:2px 6px; }

.services { background:#f7fbf7; }
.section-head { max-width:780px; margin-bottom:44px; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-card { position:relative; min-height:320px; border-radius:var(--radius-lg); padding:30px; background:white; border:1px solid rgba(0,153,0,.08); overflow:hidden; transition:.35s ease; }
.service-card::after { content:"+"; position:absolute; right:-6px; bottom:-50px; font-size:150px; color:rgba(0,153,0,.035); font-weight:200; transition:.35s; }
.service-card:hover { transform:translateY(-8px); box-shadow:0 25px 65px rgba(0,70,0,.10); border-color:rgba(0,153,0,.16); }
.service-card:hover::after { transform:rotate(90deg) scale(1.08); color:rgba(0,153,0,.065); }
.service-icon { width:56px; height:56px; border-radius:16px; display:grid; place-items:center; background:var(--mint); color:var(--green-dark); font-weight:900; font-size:20px; }
.service-card h3 { font-size:22px; margin:52px 0 12px; }
.service-card p { color:var(--muted); line-height:1.7; font-size:14px; }
.service-card > span { position:absolute; top:32px; right:30px; color:#9aa79e; font-size:12px; }
.accent-card { background:var(--green); color:white; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.accent-card::after { color:rgba(255,255,255,.06); }
.accent-card small { color:rgba(255,255,255,.75); }
.accent-card h3 { margin:8px 0 0; max-width:220px; }
.round-arrow { width:58px; height:58px; border-radius:50%; background:white; color:var(--green-dark); display:grid; place-items:center; font-size:24px; flex:0 0 auto; transition:.3s; }
.round-arrow:hover { transform:rotate(45deg) scale(1.05); }

.feature-band { background:var(--green-deep); color:white; }
.feature-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; align-items:start; }
.sticky-title { position:sticky; top:130px; }
.sticky-title p { color:rgba(255,255,255,.64); }
.feature-list { border-top:1px solid rgba(255,255,255,.14); }
.feature-item { display:grid; grid-template-columns:80px 1fr; gap:20px; padding:34px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.feature-item > span { color:#8cd18f; font-size:12px; }
.feature-item h3 { font-size:23px; margin:0 0 9px; }
.feature-item p { color:rgba(255,255,255,.64); line-height:1.75; margin:0; }

.journey { overflow:hidden; }
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; position:relative; }
.steps::before { content:""; position:absolute; left:10%; right:10%; top:44px; height:1px; background:linear-gradient(90deg, transparent, rgba(0,153,0,.35), transparent); }
.step { background:var(--mint-2); border:1px solid rgba(0,153,0,.08); padding:30px; border-radius:24px; position:relative; min-height:210px; }
.step b { width:44px; height:44px; border-radius:50%; background:var(--green); color:white; display:grid; place-items:center; position:relative; z-index:2; font-size:12px; }
.step h3 { margin:38px 0 8px; }
.step p { margin:0; color:var(--muted); line-height:1.65; font-size:14px; }

.faq { background:#f7fbf7; }
.faq-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; }
.accordion { background:white; border-radius:var(--radius-lg); padding:10px 26px; border:1px solid rgba(0,153,0,.08); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item:last-child { border-bottom:0; }
.faq-item button { width:100%; display:flex; justify-content:space-between; gap:20px; align-items:center; padding:24px 0; background:none; border:0; text-align:left; font-weight:800; color:var(--ink); cursor:pointer; }
.faq-item button b { color:var(--green); font-size:22px; }
.answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.answer p { color:var(--muted); line-height:1.7; margin:0; padding:0 40px 24px 0; }
.faq-item.active .answer { max-height:160px; }

.contact { background:white; }
.contact-shell { background:linear-gradient(135deg, #007d00, #004b12); color:white; border-radius:40px; padding:60px; display:grid; grid-template-columns:1fr 1fr; gap:70px; position:relative; overflow:hidden; box-shadow:0 28px 80px rgba(0,70,0,.16); }
.contact-shell::before { content:"+"; position:absolute; right:-40px; bottom:-170px; font-size:380px; color:rgba(255,255,255,.05); font-weight:100; line-height:1; }
.contact-copy, .contact-list { position:relative; z-index:2; }
.contact-copy h2 { font-size:clamp(40px,5vw,64px); margin:0 0 16px; letter-spacing:-.05em; line-height:1; }
.contact-copy p { color:rgba(255,255,255,.75); line-height:1.7; }
.contact-actions { display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.btn-white { background:white; color:var(--green-deep); }
.btn-ghost { border:1px solid rgba(255,255,255,.35); color:white; }
.contact-list { display:grid; gap:1px; align-content:center; }
.contact-list div { padding:20px 0; border-bottom:1px solid rgba(255,255,255,.15); display:flex; flex-direction:column; gap:7px; }
.contact-list small { color:#bceabc; }
.contact-list strong { font-size:16px; }

footer { padding:32px 0; border-top:1px solid var(--line); }
.footer-grid { display:flex; align-items:center; justify-content:space-between; gap:25px; }
.footer-brand { display:flex; align-items:center; gap:11px; }
.footer-brand img { width:42px; border-radius:10px; }
.footer-brand div { display:flex; flex-direction:column; gap:3px; }
.footer-brand strong { font-size:13px; }
.footer-brand span, footer p, footer a { color:var(--muted); font-size:11px; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; }
.delay-2 { transition-delay:.24s; }

@media (max-width: 980px) {
  .section-pad { padding:82px 0; }
  .hero { min-height:auto; }
  .hero-grid, .split-section, .feature-layout, .faq-grid, .contact-shell { grid-template-columns:1fr; gap:52px; }
  .hero-grid { padding-top:20px; }
  .hero-visual { min-height:500px; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .sticky-title { position:relative; top:auto; }
  .steps { grid-template-columns:1fr; }
  .steps::before { display:none; }
  .contact-shell { padding:44px; }
  .nav-links { position:fixed; top:111px; left:20px; right:20px; background:white; box-shadow:var(--shadow); border-radius:24px; padding:22px; flex-direction:column; align-items:stretch; opacity:0; transform:translateY(-12px); pointer-events:none; transition:.25s; }
  .nav-links.open { opacity:1; transform:none; pointer-events:auto; }
  .menu-toggle { display:block; }
}

@media (max-width: 640px) {
  .container { width:min(100% - 28px, 1180px); }
  .top-note { font-size:10px; }
  .site-header { top:0; }
  .nav-wrap { min-height:70px; }
  .brand-copy span { display:none; }
  .brand img { width:42px; height:42px; }
  .nav-links { top:103px; }
  .hero { padding-top:64px; }
  .hero h1 { font-size:48px; }
  .hero-copy > p { font-size:16px; }
  .hero-actions .btn { width:100%; }
  .hero-mini-info { gap:18px; }
  .hero-visual { min-height:420px; }
  .visual-card { width:88%; padding:34px; border-radius:30px; }
  .hero-logo { width:145px; }
  .tag-one { left:0; top:6%; }
  .tag-two { right:-4%; }
  .tag-three { left:0; bottom:3%; }
  .floating-tag { font-size:10px; padding:10px 12px; }
  .section-copy h2, .section-head h2, .faq-intro h2, .sticky-title h2 { font-size:38px; }
  .stats-panel { grid-template-columns:1fr; }
  .stat-card.wide, .stats-panel > small { grid-column:auto; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:280px; }
  .feature-item { grid-template-columns:50px 1fr; }
  .contact-shell { padding:34px 26px; border-radius:28px; }
  .contact-copy h2 { font-size:44px; }
  .contact-actions .btn { width:100%; }
  .footer-grid { flex-direction:column; align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.001ms !important; }
}
