:root{
  --primary:#0B6B4F;
  --secondary:#1F2933;
  --accent:#F4B740;
  --bg:#F7F7F5;
  --surface:#FFFFFF;
  --link:#1E5AA8;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family: "Segoe UI", Arial, sans-serif;
  color:var(--secondary);
  background:var(--bg);
  line-height:1.6;
}
a{color:var(--link);text-decoration:none;}
img{max-width:100%;height:auto;display:block;}
.container{width:92%;max-width:1200px;margin:0 auto;}
.site-header{
  background:var(--surface);
  border-bottom:1px solid #e5e5e5;
  position:sticky;
  top:0;
  z-index:100;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.logo{max-height:50px;}
.logo-footer{max-height:100px;}
.menu-toggle{display:none;}
.menu-icon{display:none;background:var(--primary);color:#fff;padding:8px 12px;border-radius:4px;cursor:pointer;}
.site-nav{display:flex;gap:24px;align-items:center;}
.site-nav a{color:var(--secondary);font-weight:600;}
.site-nav a:hover{color:var(--primary);}

.hero{
  background:var(--surface);
  padding:64px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}
.hero h1{font-size:2.5rem;color:var(--secondary);margin-bottom:16px;}
.hero p{margin-bottom:16px;}
.hero-keywords{font-size:0.95rem;color:#39424e;}
.cta-row{display:flex;gap:16px;flex-wrap:wrap;}

.page-hero{
  background:var(--surface);
  padding:56px 0;
  border-bottom:1px solid #e5e5e5;
}
.page-hero h1{font-size:2.3rem;margin-bottom:12px;}

.section{padding:56px 0;}
.section h2{font-size:2rem;margin-bottom:16px;color:var(--secondary);}
.section p{margin-bottom:12px;}
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:var(--surface);
  border:1px solid #e8e8e8;
  padding:24px;
  border-radius:8px;
}
.checklist{list-style:none;margin-top:12px;}
.checklist li{padding-left:22px;position:relative;margin-bottom:8px;}
.checklist li:before{
  content:"✓";
  position:absolute;left:0;color:var(--primary);font-weight:bold;
}
.editorial{
  background:#eef3f1;
}
.editorial-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:40px;
  align-items:center;
}
.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
}
.metrics h4{color:var(--primary);margin-bottom:6px;}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.faq-item{
  background:var(--surface);
  border:1px solid #e8e8e8;
  padding:20px;
  border-radius:6px;
}

.contact-cta{
  background:var(--surface);
  border-top:1px solid #e5e5e5;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
.form-card{
  background:var(--surface);
  border:1px solid #e8e8e8;
  padding:24px;
  border-radius:8px;
}
form label{display:block;margin-bottom:6px;font-weight:600;}
form input, form textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:4px;
  margin-bottom:14px;
  font-family:inherit;
}
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:4px;
  font-weight:600;
  border:none;
  cursor:pointer;
}
.btn.primary{background:var(--primary);color:#fff;}
.btn.secondary{background:var(--accent);color:#1F2933;}

.site-footer{
  background:var(--secondary);
  color:#fff;
  padding:40px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
}
.footer-nav a{display:block;color:#fff;margin-bottom:6px;}
.footer-bottom{border-top:1px solid #3a4652;margin-top:24px;padding-top:16px;text-align:center;}

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#ffffff;
  border-top:1px solid #e5e5e5;
  padding:16px;
  display:none;
  z-index:200;
}
.cookie-content{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cookie-actions{display:flex;gap:10px;}

.image-row{margin-top:16px;}
.responsive-img{border-radius:8px;}
.card img{border-radius:8px;}

@media (max-width: 900px){
  .hero-grid, .split-grid, .editorial-grid, .contact-grid{grid-template-columns:1fr;}
  .card-grid{grid-template-columns:1fr 1fr;}
  .metrics{grid-template-columns:1fr;}
  .faq-grid{grid-template-columns:1fr;}
  .menu-icon{display:block;}
  .site-nav{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    background:var(--surface);
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:20px;
  }
  .menu-close{
    position:absolute;
    top:20px;
    right:20px;
    font-size:32px;
    cursor:pointer;
  }
  .menu-toggle:checked + .menu-icon + .site-nav{display:flex;}
}
@media (max-width: 600px){
  .card-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .hero h1{font-size:2rem;}
}