*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
--black:#0e0f0c;
--green:#9fe870;
--green-dark:#163300;
--green-light:#e2f6d5;
--green-pastel:#cdffad;
--gray:#868685;
--gray-dark:#454745;
--surface:#f7faf5;
--white:#ffffff;
--radius-pill:9999px;
--radius-lg:40px;
--radius-md:30px;
--radius-sm:16px;
--shadow-ring:rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Inter',Helvetica,Arial,sans-serif;font-feature-settings:"calt";color:var(--black);background:var(--white);line-height:1.44;font-weight:400}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}

.site-nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,0.95);backdrop-filter:blur(8px);border-bottom:1px solid rgba(14,15,12,0.08)}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:64px;gap:24px}
.nav-logo{font-size:1.25rem;font-weight:900;letter-spacing:-0.02em;color:var(--black)}
.nav-logo span{color:var(--green-dark)}
.nav-links{display:flex;gap:4px;align-items:center}
.nav-links li a{padding:8px 14px;border-radius:var(--radius-pill);font-size:.9rem;font-weight:600;color:var(--black);transition:background .18s}
.nav-links li a:hover{background:rgba(211,242,192,0.4);text-decoration:none}
.nav-links li a.active{background:var(--green-light);color:var(--green-dark)}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--black);border-radius:2px;transition:transform .2s}

.hero{background:var(--surface);padding:80px 24px 64px;text-align:center}
.hero-inner{max-width:800px;margin:0 auto}
.hero-tag{display:inline-block;background:var(--green-light);color:var(--green-dark);font-size:.8rem;font-weight:600;padding:4px 14px;border-radius:var(--radius-pill);margin-bottom:20px;letter-spacing:.04em;text-transform:uppercase}
.hero h1{font-size:clamp(2.2rem,5vw,4rem);font-weight:900;line-height:.9;letter-spacing:-0.02em;color:var(--black);margin-bottom:20px}
.hero-lead{font-size:1.1rem;font-weight:400;color:var(--gray-dark);max-width:580px;margin:0 auto 32px;line-height:1.6}
.hero-meta{font-size:.8rem;color:var(--gray);margin-top:12px}

.section{padding:64px 24px}
.section-inner{max-width:1200px;margin:0 auto}
.section-title{font-size:clamp(1.6rem,3vw,2.5rem);font-weight:900;line-height:.9;letter-spacing:-0.02em;margin-bottom:8px}
.section-sub{font-size:1rem;color:var(--gray-dark);margin-bottom:40px;max-width:560px}

.cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px}
.card{background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-ring);overflow:hidden;transition:transform .2s}
.card:hover{transform:translateY(-4px);text-decoration:none}
.card-img{width:100%;height:200px;object-fit:cover}
.card-body{padding:24px}
.card-tag{font-size:.75rem;font-weight:600;color:var(--green-dark);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}
.card-title{font-size:1.1rem;font-weight:700;line-height:1.25;margin-bottom:8px;color:var(--black)}
.card-excerpt{font-size:.9rem;color:var(--gray-dark);line-height:1.5}
.card-date{font-size:.78rem;color:var(--gray);margin-top:12px}

.article-hero{background:var(--surface);padding:60px 24px 0}
.article-hero-inner{max-width:800px;margin:0 auto}
.article-breadcrumb{font-size:.8rem;color:var(--gray);margin-bottom:20px}
.article-breadcrumb a{color:var(--gray-dark)}
.article-breadcrumb a:hover{color:var(--black)}
.article-meta{display:flex;gap:16px;font-size:.82rem;color:var(--gray);margin-top:16px;padding-bottom:40px;flex-wrap:wrap}
.article-meta span{display:flex;align-items:center;gap:4px}
.article-cover{width:100%;max-height:460px;object-fit:cover;border-radius:var(--radius-lg);margin:0 auto;display:block}

.article-body{max-width:800px;margin:48px auto;padding:0 24px}
.article-body h2{font-size:clamp(1.4rem,2.5vw,2rem);font-weight:900;line-height:.95;margin-top:48px;margin-bottom:16px}
.article-body h3{font-size:1.2rem;font-weight:700;margin-top:32px;margin-bottom:12px}
.article-body p{font-size:1rem;line-height:1.72;margin-bottom:18px;color:#1a1b19}
.article-body ul,.article-body ol{padding-left:1.4em;margin-bottom:18px}
.article-body ul li,.article-body ol li{font-size:1rem;line-height:1.7;margin-bottom:6px;color:#1a1b19}
.article-body ul li::marker{color:var(--green-dark)}
.article-body blockquote{border-left:3px solid var(--green);padding:12px 20px;margin:24px 0;background:var(--green-light);border-radius:0 var(--radius-sm) var(--radius-sm) 0}
.article-body blockquote p{color:var(--green-dark);font-weight:600;margin:0}
.article-body a{color:var(--green-dark);text-decoration:underline}
.article-body figure{margin:32px 0}
.article-body figure img{border-radius:var(--radius-sm);width:100%}
.article-body figcaption{font-size:.78rem;color:var(--gray);margin-top:8px;text-align:center}

.related{background:var(--surface);padding:48px 24px}
.related-inner{max-width:1200px;margin:0 auto}

.page-content{max-width:800px;margin:0 auto;padding:64px 24px}
.page-content h1{font-size:clamp(1.8rem,3vw,2.8rem);font-weight:900;line-height:.9;margin-bottom:24px}
.page-content h2{font-size:1.3rem;font-weight:700;margin-top:36px;margin-bottom:12px}
.page-content p{font-size:1rem;line-height:1.72;margin-bottom:16px;color:#1a1b19}
.page-content ul{padding-left:1.4em;margin-bottom:16px}
.page-content ul li{font-size:1rem;line-height:1.7;margin-bottom:5px}

.features-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;margin-top:32px}
.feature-card{background:var(--white);border-radius:var(--radius-sm);box-shadow:var(--shadow-ring);padding:28px 24px}
.feature-card h3{font-size:1rem;font-weight:700;margin-bottom:8px}
.feature-card p{font-size:.9rem;color:var(--gray-dark);line-height:1.6}

.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 22px;border-radius:var(--radius-pill);font-size:1rem;font-weight:600;cursor:pointer;border:none;font-family:'Inter',Helvetica,Arial,sans-serif;font-feature-settings:"calt";transition:transform .18s}
.btn:hover{transform:scale(1.05);text-decoration:none}
.btn:active{transform:scale(0.95)}
.btn-primary{background:var(--green);color:var(--green-dark)}
.btn-secondary{background:rgba(22,51,0,0.08);color:var(--black)}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--black);color:var(--white);padding:18px 24px;z-index:999;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.cookie-banner p{font-size:.88rem;line-height:1.5;max-width:600px}
.cookie-banner p a{color:var(--green);text-decoration:underline}
.cookie-actions{display:flex;gap:12px;flex-shrink:0}
.cookie-accept{background:var(--green);color:var(--green-dark);padding:8px 18px;border-radius:var(--radius-pill);border:none;font-weight:600;font-size:.88rem;cursor:pointer;transition:transform .18s}
.cookie-accept:hover{transform:scale(1.05)}
.cookie-reject{background:transparent;color:var(--white);padding:8px 18px;border-radius:var(--radius-pill);border:1px solid rgba(255,255,255,0.3);font-weight:600;font-size:.88rem;cursor:pointer;transition:transform .18s}
.cookie-reject:hover{transform:scale(1.05)}

.site-footer{background:var(--black);color:var(--white);padding:64px 24px 32px}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-cols{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:40px;margin-bottom:48px}
.footer-brand{font-size:1.3rem;font-weight:900;color:var(--white);margin-bottom:10px}
.footer-brand span{color:var(--green)}
.footer-tagline{font-size:.88rem;color:rgba(255,255,255,0.55);line-height:1.6;margin-bottom:16px}
.footer-address{font-size:.82rem;color:rgba(255,255,255,0.55);line-height:1.8;font-style:normal}
.footer-address a{color:rgba(255,255,255,0.7)}
.footer-address a:hover{color:var(--green);text-decoration:none}
.footer-col h3{font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,0.4);margin-bottom:16px}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{font-size:.88rem;color:rgba(255,255,255,0.65);transition:color .18s}
.footer-col ul li a:hover{color:var(--white);text-decoration:none}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:24px;display:flex;flex-direction:column;gap:8px}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,0.4)}
.footer-disclaimer{font-size:.75rem;color:rgba(255,255,255,0.3);max-width:700px;line-height:1.6}

.footer-contact{display:flex;flex-direction:column;gap:10px}
.footer-contact label{font-size:.78rem;color:rgba(255,255,255,0.5);display:flex;flex-direction:column;gap:4px}
.footer-contact input{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);border-radius:10px;padding:8px 12px;color:var(--white);font-size:.88rem;font-family:inherit;outline:none;transition:border-color .18s}
.footer-contact input:focus{border-color:var(--green)}
.footer-contact button{margin-top:4px;background:var(--green);color:var(--green-dark);border:none;border-radius:var(--radius-pill);padding:9px 18px;font-weight:600;font-size:.88rem;cursor:pointer;transition:transform .18s;font-family:inherit}
.footer-contact button:hover{transform:scale(1.05)}

.about-hero{background:var(--surface);padding:64px 24px}
.about-hero-inner{max-width:800px;margin:0 auto}

.table-compare{width:100%;border-collapse:collapse;margin-top:24px;border-radius:var(--radius-sm);overflow:hidden;box-shadow:var(--shadow-ring)}
.table-compare thead{background:var(--green-light)}
.table-compare th{padding:14px 16px;font-size:.85rem;font-weight:700;text-align:left;color:var(--green-dark)}
.table-compare td{padding:12px 16px;font-size:.88rem;border-top:1px solid rgba(14,15,12,0.08)}
.table-compare tr:hover td{background:rgba(159,232,112,0.05)}

@media(max-width:992px){
.footer-cols{grid-template-columns:1fr 1fr}
.cards-grid{grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
}

@media(max-width:576px){
.nav-links{display:none;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:var(--white);padding:16px;border-bottom:1px solid rgba(14,15,12,0.1);gap:4px}
.nav-links.open{display:flex}
.nav-toggle{display:flex}
.hero h1{font-size:2rem}
.footer-cols{grid-template-columns:1fr}
.cookie-banner{flex-direction:column;align-items:flex-start}
}
