:root {
  --primary: #1B6B4A;
  --primary-dark: #124A33;
  --primary-light: #2A9464;
  --accent: #F4A81D;
  --accent-light: #FBC845;
  --bg: #F7FAF8;
  --bg-alt: #EDF5F0;
  --text: #161F1A;
  --text-muted: #5A6B62;
  --border: #C8DDD3;
  --white: #FFFFFF;
  --shadow: 0 4px 28px rgba(27,107,74,0.10);
  --radius: 10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.55rem; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }

.navigation { display: none; }
.navigation ul { display: flex; gap: 28px; }
.navigation a {
  font-weight: 700; font-size: 0.93rem; color: var(--text);
  padding-bottom: 3px; border-bottom: 2px solid transparent; transition: all 0.2s;
}
.navigation a:hover { color: var(--primary); border-color: var(--primary); }

#menu-toggle { display: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 200; }
.hamburger .line { width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 14px 18px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block; padding: 12px 0;
  font-weight: 700; border-bottom: 1px solid var(--border);
  font-size: 0.97rem; color: var(--text);
}
.mobile-nav a:hover { color: var(--primary); }

#menu-toggle:checked ~ .mobile-nav { display: block; }
#menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .navigation { display: block; }
  .mobile-nav { display: none !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 13px 30px; border-radius: var(--radius);
  font-weight: 800; font-size: 0.97rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s; text-align: center;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-gold { background: var(--accent); color: var(--text); }
.btn-gold:hover { background: #D4900F; }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-green { background: var(--primary); color: var(--white); }

.tag {
  display: inline-block; background: var(--bg-alt); color: var(--primary);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 40px; margin-bottom: 12px;
}
.tag-white { background: rgba(255,255,255,0.15); color: #fff; }

.section-title { font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 0.97rem; color: var(--text-muted); max-width: 580px; margin-bottom: 36px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.section-dark .section-sub, .section-green .section-sub { color: rgba(255,255,255,0.78); }

/* ===== HERO (Asymmetric card layout) ===== */
.hero {
  background: var(--primary-dark);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(42,148,100,0.35) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.hero-text { color: var(--white); position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,168,29,0.18); border: 1px solid rgba(244,168,29,0.4);
  color: var(--accent-light); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px; margin-bottom: 18px;
}
.hero-title { font-size: clamp(1.85rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.hero-lead { font-size: 1rem; opacity: 0.88; margin-bottom: 28px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18); position: relative; z-index: 1;
}
.hero-card-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.hero-card-img img { width: 100%; height: 200px; object-fit: cover; }
@media (min-width: 768px) { .hero-card-img img { height: 220px; } }
.hero-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.hero-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stat { background: var(--bg-alt); border-radius: var(--radius); padding: 12px; text-align: center; }
.mini-stat-num { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.mini-stat-label { font-size: 0.72rem; color: var(--text-muted); }

/* ===== FEATURE ROW ===== */
.feature-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .feature-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .feature-row { grid-template-columns: repeat(3,1fr); } }
.feat-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 22px; background: var(--white); box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--primary-light); transform: translateY(-3px); }
.feat-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); opacity: 0.15; line-height: 1; margin-bottom: 4px; }
.feat-title { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.feat-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 900; margin-top: 2px;
}
.check-body { flex: 1; }
.check-title { font-weight: 800; margin-bottom: 3px; font-size: 0.97rem; }
.check-text { font-size: 0.88rem; color: var(--text-muted); }

/* ===== SPLIT ===== */
.split-2 { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 768px) { .split-2 { grid-template-columns: 1fr 1fr; } }
.split-2.reverse > :first-child { order: 0; }
@media (min-width: 768px) { .split-2.reverse > :first-child { order: 2; } }
.img-round { border-radius: var(--radius-lg); overflow: hidden; }
.img-round img { width: 100%; height: 340px; object-fit: cover; }

/* ===== BAND / BANNER ===== */
.band {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: #fff; padding: 36px 0;
}
.band-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.band-text h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 6px; }
.band-text p { font-size: 0.92rem; opacity: 0.85; max-width: 500px; }

/* ===== ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.acc-item input { display: none; }
.acc-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 20px; cursor: pointer; font-weight: 700; font-size: 0.95rem; gap: 12px;
}
.acc-label::after { content: '+'; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.acc-item input:checked ~ .acc-label::after { transform: rotate(45deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 0.9rem; color: var(--text-muted); padding: 0 20px;
}
.acc-item input:checked ~ .acc-body { max-height: 400px; padding: 0 20px 18px; }

/* ===== STEPS (numbered vertical) ===== */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 20px;
  padding-bottom: 28px; position: relative;
}
.step-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 19px; top: 44px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--bg-alt));
}
.step-circle {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.95rem; z-index: 1;
}
.step-title { font-weight: 800; margin-bottom: 5px; }
.step-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== QUOTE CARDS ===== */
.quotes-masonry { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .quotes-masonry { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .quotes-masonry { grid-template-columns: 1fr 1fr 1fr; } }
.quote-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 22px;
  border-top: 4px solid var(--accent); box-shadow: var(--shadow);
}
.quote-mark { font-size: 2.2rem; color: var(--accent); line-height: 1; margin-bottom: 6px; font-family: serif; }
.quote-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.quote-author { font-weight: 800; font-size: 0.88rem; }
.quote-place { font-size: 0.78rem; color: var(--text-muted); }

/* ===== ICON BOXES ===== */
.icon-boxes { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .icon-boxes { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .icon-boxes { grid-template-columns: repeat(4,1fr); } }
.icon-box {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px 18px; text-align: center;
  border: 1.5px solid var(--border); transition: background 0.2s;
}
.icon-box:hover { background: var(--white); }
.icon-box-icon { font-size: 2rem; margin-bottom: 10px; }
.icon-box-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 6px; color: var(--primary); }
.icon-box-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== HORIZONTAL STATS ===== */
.hstats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 768px) { .hstats { grid-template-columns: repeat(4,1fr); } }
.hstat { text-align: center; padding: 24px 16px; }
.hstat-num { font-size: 2rem; font-weight: 900; color: var(--accent-light); }
.hstat-label { font-size: 0.82rem; opacity: 0.82; margin-top: 4px; }

/* ===== TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th { background: var(--primary); color: #fff; padding: 13px 16px; text-align: left; font-weight: 700; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tr:nth-child(even) td { background: var(--bg-alt); }
.ok { color: var(--primary); font-weight: 700; }
.no { color: #B0382A; font-weight: 700; }

/* ===== FORM ===== */
.form-wrap {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow);
}
@media (min-width: 768px) { .form-wrap { padding: 48px 48px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-weight: 700; font-size: 0.88rem; }
.form-group input, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 15px; font-size: 0.97rem; font-family: inherit;
  width: 100%; background: var(--bg); transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-consent { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; margin-top: 6px; }
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

/* ===== HIGHLIGHT CTA ===== */
.cta-block {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg); padding: 44px 36px; color: #fff; text-align: center;
}
.cta-block h3 { font-size: 1.55rem; font-weight: 900; margin-bottom: 12px; }
.cta-block p { opacity: 0.88; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: #F0FAF4; border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: var(--radius);
  padding: 18px 22px; font-size: 0.84rem; color: var(--text-muted); margin-top: 36px;
}

/* ===== MANIFESTO / ORIGIN ===== */
.manifesto-block {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg); padding: 44px 38px; color: #fff;
}
.manifesto-block h3 { font-size: 1.45rem; font-weight: 900; margin-bottom: 18px; }
.manifesto-block p { opacity: 0.9; margin-bottom: 14px; line-height: 1.75; font-size: 0.97rem; }

/* ===== FOOTER ===== */
.site-footer { background: #0D1A12; color: rgba(255,255,255,0.82); padding: 44px 0 22px; }
.footer-layout { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
@media (min-width: 768px) { .footer-layout { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { color: var(--primary-light); font-size: 1.4rem; font-weight: 900; }
.footer-about { font-size: 0.86rem; margin-top: 10px; opacity: 0.68; line-height: 1.65; }
.footer-col h5 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 0.79rem; opacity: 0.52;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0D1A12; color: rgba(255,255,255,0.9);
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.88rem; }
#cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--primary); color: #fff; border: none;
  padding: 8px 18px; border-radius: 8px; font-weight: 800; font-size: 0.88rem; cursor: pointer;
}
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ===== LEGAL ===== */
.legal-body h2 { font-size: 1.2rem; font-weight: 800; margin: 28px 0 10px; color: var(--primary); }
.legal-body h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; }
.legal-body p { font-size: 0.93rem; margin-bottom: 12px; color: var(--text-muted); line-height: 1.7; }
.legal-body ul { padding-left: 20px; list-style: disc; margin-bottom: 12px; }
.legal-body ul li { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 5px; }

/* ===== THANK ===== */
.thank-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 18px; }
.thank-inner { text-align: center; max-width: 560px; }
.thank-icon { font-size: 3.8rem; margin-bottom: 18px; }
.thank-title { font-size: 1.9rem; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.thank-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; }
.next-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* ===== UTILS ===== */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}
.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.mb-32{margin-bottom:32px}.hidden{display:none!important}

/* INFO CONTACT */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .contact-info-grid { grid-template-columns: 1fr 1fr 1fr; } }
.cinfo-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow);
}
.cinfo-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cinfo-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--primary); margin-bottom: 6px; }
.cinfo-val { font-size: 0.95rem; color: var(--text); font-weight: 600; line-height: 1.55; }

@media (min-width: 768px) { .section { padding: 80px 0; } }
