@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0f0c;
  --green: #9fe870;
  --green-dark: #163300;
  --green-light: #e2f6d5;
  --green-mint: #cdffad;
  --gray: #868685;
  --gray-dark: #454745;
  --surface: #e8ebe6;
  --white: #ffffff;
  --radius-sm: 16px;
  --radius-md: 30px;
  --radius-lg: 40px;
  --radius-pill: 9999px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
  --font: 'Inter', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
  color: var(--black);
  background: var(--white);
  font-feature-settings: "calt";
}

a { color: var(--green-dark); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-ring);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-weight: 900;
  font-size: 22px;
  color: var(--black);
  letter-spacing: -0.5px;
  font-feature-settings: "calt";
}
.nav-logo span { color: var(--green-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: background .2s;
}
.nav-links > li > a:hover {
  background: rgba(211,242,192,0.4);
  opacity: 1;
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-ring), 0 8px 32px rgba(14,15,12,0.10);
  padding: 8px;
  min-width: 220px;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: background .2s;
}
.dropdown-menu li a:hover { background: var(--green-light); opacity: 1; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s;
  font-feature-settings: "calt";
  text-decoration: none;
}
.btn:hover { transform: scale(1.05); opacity: 1; }
.btn:active { transform: scale(0.95); }
.btn-outline {
  background: rgba(22,51,0,0.08);
  color: var(--black);
}

.hero {
  padding: 80px 24px 96px;
  background: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: -0.084px;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.85;
  color: var(--black);
  font-feature-settings: "calt";
  max-width: 800px;
  margin-bottom: 32px;
}
.hero h1 span { color: var(--green-dark); }
.hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-dark);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 520px;
  box-shadow: var(--shadow-ring);
}
.hero-img img { width: 100%; height: 520px; object-fit: cover; }

.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: -0.084px;
}
.section-title {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.85;
  color: var(--black);
  font-feature-settings: "calt";
  margin-bottom: 20px;
}
.section-desc {
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition: transform .25s;
}
.card:hover { transform: translateY(-4px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.39px;
  color: var(--black);
  margin-bottom: 10px;
  font-feature-settings: "calt";
}
.card-text {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}
.card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link::after { content: '→'; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  background: var(--green);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 22px;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-feature-settings: "calt";
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  font-feature-settings: "calt";
}
.step-content p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.55;
}

.info-band {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
}
.info-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-band h2 {
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.85;
  font-feature-settings: "calt";
  margin-bottom: 24px;
  color: var(--white);
}
.info-band h2 span { color: var(--green); }
.info-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 16px;
}
.info-band img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact-section {
  background: var(--surface);
  padding: 80px 24px;
}
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.85;
  font-feature-settings: "calt";
  margin-bottom: 16px;
}
.contact-inner p {
  color: var(--gray-dark);
  margin-bottom: 40px;
  font-size: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--black); }
.form-field input, .form-field textarea {
  border: 1px solid rgba(14,15,12,0.20);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }

.article-hero {
  padding: 64px 24px 48px;
  background: var(--white);
  max-width: 900px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-category {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}
.article-date { font-size: 14px; color: var(--gray); }
.article-hero h1 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.88;
  color: var(--black);
  font-feature-settings: "calt";
  margin-bottom: 24px;
}
.article-hero .lead {
  font-size: 20px;
  color: var(--gray-dark);
  line-height: 1.55;
  max-width: 700px;
}
.article-cover {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body h2 {
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 0.85;
  font-feature-settings: "calt";
  margin: 48px 0 20px;
  color: var(--black);
}
.article-body h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin: 32px 0 14px;
  font-feature-settings: "calt";
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: #2a2b28;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 17px;
  line-height: 1.65;
  color: #2a2b28;
  margin-bottom: 6px;
}
.article-body a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.article-body a:hover { opacity: .75; }
.article-body .highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-body .highlight-box p { margin: 0; font-weight: 600; }
.article-nav {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(14,15,12,0.12);
  padding-top: 40px;
  margin-top: 48px;
}
.article-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.page-header {
  background: var(--surface);
  padding: 64px 24px;
  text-align: center;
}
.page-header h1 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.85;
  font-feature-settings: "calt";
  margin-bottom: 16px;
}
.page-header p { font-size: 18px; color: var(--gray-dark); }
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.page-content h2 {
  font-weight: 900;
  font-size: 32px;
  line-height: 0.85;
  font-feature-settings: "calt";
  margin: 40px 0 16px;
}
.page-content p, .page-content li {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2b28;
  margin-bottom: 14px;
}
.page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 64px 24px 32px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.footer-logo span { color: var(--green); }
.footer-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 16px; }
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--green); opacity: 1; }
.footer-col p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-col p a { color: rgba(255,255,255,0.75); }
.footer-col p a:hover { color: var(--green); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-disclaimer { margin-top: 8px; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(14,15,12,0.18), var(--shadow-ring);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 600px;
  width: calc(100% - 48px);
  z-index: 9999;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text { font-size: 15px; color: var(--black); line-height: 1.5; flex: 1 1 300px; }
.cookie-text a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--green);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s;
}
.cookie-accept:hover { transform: scale(1.05); }
.cookie-reject {
  background: rgba(22,51,0,0.08);
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s;
}
.cookie-reject:hover { transform: scale(1.05); }

@media (max-width: 992px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .info-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px 24px; box-shadow: var(--shadow-ring); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; padding: 0 0 0 16px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .article-hero h1 { font-size: 34px; }
  .cookie-banner { flex-direction: column; }
}
