:root{
    --green-950:#0f2c1a;
    --green-900:#14331d;
    --green-800:#1c4527;
    --green-700:#276138;
    --green-600:#2f7344;
    --green-500:#61a375;
    --green-400:#84bd95;
    --green-300:#aad4b6;
    --green-200:#d0e8d6;
    --green-100:#e7f2eb;
    --green-50:#f2f9f4;

    --ink-900:#1a2820;
    --ink-700:#3c4a42;
    --ink-600:#4f5e55;
    --ink-500:#6b7a72;
    --ink-300:#b9c3bd;
    --ink-200:#dde4e0;
    --ink-100:#eef2f0;
    --ink-50:#f6f8f7;
    --white:#ffffff;

    --brand:var(--green-700);
    --brand-strong:var(--green-800);
    --brand-accent:var(--green-500);
    --brand-soft:var(--green-100);
    --brand-tint:var(--green-50);
    --text-strong:var(--ink-900);
    --text-heading:var(--green-700);
    --text-body:var(--ink-600);
    --text-muted:var(--ink-500);
    --border-subtle:var(--ink-100);
    --border-default:var(--ink-200);
    --border-brand:var(--green-500);

    --font-display:'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --radius-sm:8px;
    --radius-md:12px;
    --radius-lg:16px;
    --radius-pill:999px;

    --shadow-sm:0 1px 3px rgba(15,42,26,0.08), 0 1px 2px rgba(15,42,26,0.05);
    --shadow-md:0 4px 12px rgba(15,42,26,0.08), 0 2px 4px rgba(15,42,26,0.05);
    --shadow-lg:0 12px 28px rgba(15,42,26,0.10), 0 4px 10px rgba(15,42,26,0.05);
    --shadow-brand:0 10px 24px rgba(39,97,56,0.22);

    --ease-out:cubic-bezier(0.22,1,0.36,1);
    --transition-base:all 200ms var(--ease-out);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:var(--font-body);
    color:var(--text-body);
    background:var(--white);
    line-height:1.65;
  }
  a{color:var(--brand);}
  h1,h2,h3{font-family:var(--font-display);color:var(--text-heading);}

  .eyebrow{
    display:inline-block;
    font-family:var(--font-body);
    font-weight:700;
    font-size:0.8rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--brand-accent);
  }

  header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 6%;
    border-bottom:1px solid var(--border-subtle);
    position:sticky;
    top:0;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    z-index:100;
  }
  header .logo-link{display:inline-flex;align-items:center;}
  header img{height:42px;}
  nav{display:flex;}
  nav a{
    margin-left:32px;
    text-decoration:none;
    font-weight:600;
    font-size:0.95rem;
    color:var(--text-strong);
    transition:color .2s;
    padding-bottom:2px;
    border-bottom:2px solid transparent;
  }
  nav a:hover{color:var(--brand);}

  .header-right{
    display:flex;
    align-items:center;
    gap:24px;
    position:relative;
  }
  .support-btn{
    background:var(--brand-strong);
    color:#fff !important;
    padding:10px 20px;
    border-radius:var(--radius-md);
    text-decoration:none;
    font-weight:700;
    font-size:0.85rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    white-space:nowrap;
    box-shadow:var(--shadow-brand);
    transition:var(--transition-base);
  }
  .support-btn:hover{filter:brightness(1.08);transform:translateY(-1px);}

  .lang-switch{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:var(--radius-sm);
    border:1px solid var(--border-default);
    color:var(--text-strong);
    text-decoration:none;
    font-weight:700;
    font-size:0.8rem;
    letter-spacing:0.03em;
    transition:var(--transition-base);
  }
  .lang-switch:hover{background:var(--brand-soft);border-color:var(--border-brand);color:var(--brand);}

  .menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:32px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
  }
  .menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:var(--brand);
    border-radius:2px;
    transition:transform .2s, opacity .2s;
  }
  .menu-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

  @media(max-width:768px){
    .menu-toggle{display:flex;}
    header img{height:34px;}
    .support-btn{padding:8px 12px;font-size:0.75rem;}
    .lang-switch{width:30px;height:30px;font-size:0.75rem;}
    nav{
      position:absolute;
      top:100%;
      left:0;
      right:0;
      flex-direction:column;
      background:#fff;
      border-bottom:1px solid var(--border-subtle);
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
    }
    nav.open{max-height:300px;}
    nav a{
      margin:0;
      padding:14px 6%;
      border-top:1px solid var(--border-subtle);
      border-bottom:none;
    }
  }

  .hero{
    text-align:center;
    padding:96px 6% 88px;
    background:linear-gradient(180deg, var(--green-50) 0%, var(--white) 78%);
  }
  .hero h1{
    font-size:clamp(2.4rem, 6vw, 3.6rem);
    font-weight:800;
    letter-spacing:-0.025em;
    line-height:1.06;
    margin-bottom:20px;
  }
  .hero p{
    max-width:600px;
    margin:0 auto 32px;
    font-size:1.1rem;
    color:var(--text-body);
  }
  .btn{
    display:inline-block;
    background:var(--brand-strong);
    color:#fff;
    padding:16px 32px;
    border-radius:var(--radius-md);
    text-decoration:none;
    font-weight:700;
    font-family:var(--font-body);
    box-shadow:var(--shadow-brand);
    transition:var(--transition-base);
  }
  .btn:hover{filter:brightness(1.08);transform:translateY(-1px);}
  .btn-secondary{
    background:transparent;
    color:var(--brand);
    border:1px solid var(--border-brand);
    box-shadow:none;
  }
  .btn-secondary:hover{background:var(--brand-soft);filter:none;}

  .hero-btns{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-stats{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .hero-stats div{text-align:center;}
  .hero-stats .num{
    font-family:var(--font-display);
    font-weight:800;
    font-size:1.5rem;
    color:var(--brand);
  }
  .hero-stats .label{font-size:0.85rem;color:var(--text-muted);}

  section{padding:88px 6%;}
  h2{
    font-size:1.9rem;
    font-weight:700;
    margin-bottom:12px;
    text-align:center;
  }
  .lead{
    text-align:center;
    color:var(--text-body);
    max-width:680px;
    margin:0 auto 48px;
    font-size:1.05rem;
  }
  .section-head{text-align:center;max-width:640px;margin:0 auto 48px;}
  .section-head .eyebrow{display:block;margin-bottom:12px;}
  .section-head h2{margin-bottom:12px;}
  .section-head p{color:var(--text-body);font-size:1.05rem;margin:0;}

  .services{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
  }
  @media(max-width:1100px){
    .services{grid-template-columns:repeat(3,1fr);}
  }
  @media(max-width:700px){
    .services{grid-template-columns:repeat(2,1fr);}
  }
  @media(max-width:480px){
    .services{grid-template-columns:1fr;}
  }
  .card{
    display:flex;
    flex-direction:column;
    gap:16px;
    background:var(--white);
    border:1px solid var(--border-subtle);
    border-radius:var(--radius-lg);
    padding:24px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition-base);
  }
  .card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
  .card .icon{
    width:46px;height:46px;flex-shrink:0;
    background:var(--brand-soft);
    color:var(--brand);
    border-radius:var(--radius-md);
    display:flex;align-items:center;justify-content:center;
    transition:var(--transition-base);
  }
  .card:hover .icon{background:var(--brand);color:#fff;}
  .card .icon svg{width:22px;height:22px;}
  .card h3{
    font-size:1.05rem;
    font-weight:700;
    line-height:1.25;
  }
  .card p{font-size:0.92rem;color:var(--text-body);}

  .about-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
  }
  .about-wrap ul{list-style:none;}
  .about-wrap li{
    padding:14px 0 14px 34px;
    position:relative;
    border-bottom:1px solid var(--border-subtle);
    font-weight:500;
    color:var(--text-strong);
  }
  .about-wrap li:last-child{border-bottom:none;}
  .about-wrap li::before{
    content:"";
    position:absolute;left:0;top:14px;
    width:22px;height:22px;
    background:var(--brand-soft);
    border-radius:50%;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23276138' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:center;
    background-size:12px;
  }
  .about-img{
    background:var(--green-50);
    border:1px solid var(--border-subtle);
    border-radius:var(--radius-lg);
    padding:40px;
    text-align:center;
  }
  .about-img img{max-width:100%;height:auto;}

  @media(max-width:768px){
    .about-wrap{grid-template-columns:1fr;}
  }

  .contact-section{
    padding:88px 6%;
    background:var(--white);
  }
  .contact-grid{
    max-width:1080px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
  }
  .contact-copy .eyebrow{display:block;margin-bottom:12px;}
  .contact-h2{font-size:1.9rem;margin-bottom:16px;}
  .contact-lead{color:var(--text-body);font-size:1.05rem;margin-bottom:28px;}
  .contact-details{display:flex;flex-direction:column;gap:14px;}
  .contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:600;
    color:var(--text-strong);
  }
  .contact-icon{
    width:36px;height:36px;flex-shrink:0;
    background:var(--brand-soft);
    color:var(--brand);
    border-radius:var(--radius-md);
    display:inline-flex;align-items:center;justify-content:center;
  }
  .contact-icon svg{width:18px;height:18px;}
  .contact-item a{color:var(--text-strong);text-decoration:none;}
  .contact-item a:hover{color:var(--brand);}

  .contact-card{
    background:#fff;
    border:1px solid var(--border-subtle);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
    padding:36px;
  }

  form{display:flex;flex-direction:column;}
  .field{margin-bottom:18px;}
  label{display:block;font-weight:600;margin-bottom:6px;font-size:0.9rem;color:var(--text-strong);}
  input, textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--border-default);
    border-radius:var(--radius-sm);
    font-family:inherit;
    font-size:0.95rem;
    background:#fff;
    color:var(--text-strong);
    transition:var(--transition-base);
  }
  input:focus, textarea:focus{
    outline:none;
    border-color:var(--brand-accent);
    box-shadow:0 0 0 3px rgba(97,163,117,0.35);
  }
  textarea{resize:vertical;min-height:120px;}
  .submit-btn{
    background:var(--brand-strong);
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:var(--radius-md);
    font-weight:700;
    font-size:1rem;
    font-family:var(--font-body);
    cursor:pointer;
    box-shadow:var(--shadow-brand);
    transition:var(--transition-base);
  }
  .submit-btn:hover{filter:brightness(1.08);transform:translateY(-1px);}
  .form-note{
    font-size:0.85rem;
    color:var(--text-muted);
    margin-top:10px;
    display:none;
  }
  .form-note.show{display:block;}

  @media(max-width:768px){
    .contact-grid{grid-template-columns:1fr;}
    .contact-card{padding:28px;}
  }

  .site-footer{
    background:var(--green-900);
    color:rgba(255,255,255,0.78);
    padding:64px 6% 32px;
  }
  .footer-inner{max-width:1240px;margin:0 auto;}
  .footer-cols{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
  }
  .footer-brand .footer-logo{height:26px;margin-bottom:16px;}
  .footer-brand p{font-size:0.9rem;line-height:1.6;max-width:280px;}
  .footer-head{
    font-weight:700;
    color:#fff;
    margin-bottom:16px;
    font-size:0.85rem;
    letter-spacing:0.04em;
    text-transform:uppercase;
  }
  .footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
  .footer-col a{color:rgba(255,255,255,0.78);font-size:0.9rem;text-decoration:none;}
  .footer-col a:hover{color:#fff;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.14);
    margin-top:40px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px;
    font-size:0.8rem;
    color:rgba(255,255,255,0.6);
  }

  @media(max-width:768px){
    .footer-cols{grid-template-columns:1fr 1fr;}
  }
  @media(max-width:480px){
    .footer-cols{grid-template-columns:1fr;}
  }
#scroll-top{
    position:fixed;
    bottom:24px;
    right:24px;
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--brand-strong);
    color:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow-brand);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .25s, transform .25s, background .2s;
    z-index:200;
  }
  #scroll-top svg{width:20px;height:20px;}
  #scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
  #scroll-top:hover{filter:brightness(1.08);}

.section-tint{background:var(--green-50);}
.form-error-note{color:#b3261e;}
.form-success{display:none;text-align:center;padding:40px 0;}
.form-success.show{display:block;}
.form-success-icon{
  background:var(--brand-soft);
  width:64px;height:64px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  color:var(--brand);
}
.form-success-icon svg{width:32px;height:32px;}
.form-success h3{margin-bottom:10px;}
.form-success p{color:var(--text-body);}

.is-hidden{display:none;}

.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:200;
  background:#fff;
  border:1px solid var(--border-default);
  border-radius:var(--radius-md);
  box-shadow:0 8px 30px rgba(28,69,39,0.18);
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:20px;
  max-width:720px;
  margin:0 auto;
}
.cookie-banner p{margin:0;font-size:0.9rem;color:var(--text-body);flex:1;}
.cookie-banner a{color:var(--brand);font-weight:600;}
.cookie-actions{display:flex;gap:10px;flex-shrink:0;}
.cookie-accept,.cookie-decline{
  font-family:inherit;
  font-size:0.85rem;
  font-weight:700;
  padding:10px 18px;
  border-radius:var(--radius-md);
  cursor:pointer;
  transition:var(--transition-base);
}
.cookie-accept{background:var(--brand-strong);color:#fff;border:1px solid var(--brand-strong);}
.cookie-accept:hover{filter:brightness(1.08);}
.cookie-decline{background:#fff;color:var(--text-strong);border:1px solid var(--border-default);}
.cookie-decline:hover{background:var(--green-50);}
@media(max-width:600px){
  .cookie-banner{flex-direction:column;align-items:stretch;text-align:left;}
  .cookie-actions{justify-content:flex-end;}
}

.legal{
  max-width:820px;
  margin:0 auto;
  padding:60px 6% 80px;
}
.legal h1{margin-bottom:8px;}
.legal .legal-updated{color:var(--text-muted);font-size:0.9rem;margin-bottom:36px;}
.legal h2{font-size:1.25rem;margin:36px 0 12px;}
.legal p,.legal li{color:var(--text-body);line-height:1.7;}
.legal ul{padding-left:22px;margin:12px 0;}
.legal li{margin-bottom:6px;}
.legal table{border-collapse:collapse;width:100%;margin:16px 0;font-size:0.92rem;}
.legal th,.legal td{border:1px solid var(--border-default);padding:10px 12px;text-align:left;vertical-align:top;}
.legal th{background:var(--green-50);font-weight:700;}

.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden;}
