*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#12ba66;
  --green-dark:#0a9a52;
  --green-deep:#062d1a;
  --green-muted:#d4ede1;
  --blue:#1167b1;
  --blue-soft:#e7f1fa;
  --bg:#edf7f0;
  --white:#ffffff;
  --text:#052414;
  --muted:#3d5c4a;
  --border:#c5ddd0;
  --hh:120px;
}
html{scroll-behavior:smooth;color-scheme:light}
body{font-family:'Roboto Condensed',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;font-size:1.05rem}
a{color:inherit;text-decoration:none}
.wrap{width:min(1100px,92vw);margin:0 auto}

header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:var(--white);box-shadow:0 1px 8px rgba(5,36,20,.08);
}
.nav{
  display:flex;justify-content:space-between;align-items:center;
  height:var(--hh);width:min(1100px,92vw);margin:0 auto;padding:0 1rem;
}

.logo{display:flex;align-items:center;justify-content:center;min-height:100%}
.logo img{
  height:170px;width:auto;display:block;max-width:460px;
  background-color:transparent;padding:0;box-sizing:content-box;
}

#menu {
  display: flex;
  gap: 1.5rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#menu a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: .05em;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s;
}
#menu a:hover {
  color: var(--green);
}
.nav a.active{color:var(--green);border-bottom:2px solid var(--green);padding-bottom:.25rem}

.lang-switcher{display:flex;gap:.5rem;align-items:center}
.lang-btn{background:transparent;border:1px solid rgba(5,36,20,.12);border-radius:50%;width:38px;height:38px;display:grid;place-items:center;cursor:pointer;font-size:1.1rem;transition:background .2s,border-color .2s,color .2s}
.lang-btn:hover{border-color:var(--green);background:rgba(18,186,102,.12)}
.lang-btn.active{background:var(--green);border-color:var(--green);color:#fff}

.hero{
  min-height:88vh;display:flex;align-items:center;justify-content:center;text-align:center;
  padding:calc(var(--hh) + 2rem) 1rem 4rem;
  background:
    linear-gradient(rgba(5,36,20,.72),rgba(6,45,26,.55)),
    url('https://files.cdn-files-a.com/uploads/11660268/2000_gi-69807e1836527.jpg') center/cover no-repeat;
  color:var(--white);
}
.hero h1{font-size:clamp(2.2rem,6vw,3.4rem);font-weight:700;margin-bottom:.35rem;text-transform:capitalize}
.hero .sub{font-size:clamp(1.2rem,3vw,1.65rem);font-weight:400;font-style:italic;opacity:.95;margin-bottom:1.75rem;color:var(--blue-soft)}
.hero .intro{max-width:42rem;margin:0 auto 2rem;font-size:1.05rem;line-height:1.7;opacity:.92}
.hero-tag{display:inline-block;margin-bottom:1rem;padding:.35rem 1rem;background:rgba(18,186,102,.25);border:1px solid rgba(255,255,255,.25);font-size:.85rem;letter-spacing:.06em;text-transform:uppercase}

.btn{
  display:inline-block;padding:.75rem 1.75rem;border-radius:4px;
  font-family:inherit;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;
  transition:background .2s,transform .2s,box-shadow .2s,color .2s;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 24px rgba(0,0,0,.08)}
.btn:active{transform:scale(.98)}
.btn-primary{background:var(--green);color:var(--white)}
.btn-primary:hover{background:var(--green-dark)}
.btn-outline{border:2px solid var(--white);color:var(--white);margin-left:.6rem;background:transparent}
.btn-outline:hover{background:rgba(255,255,255,.18)}

section{padding:4.5rem 0}
.section-head{text-align:center;margin-bottom:2.5rem}
.section-head h2{
  font-size:clamp(1.75rem,4vw,2.25rem);font-weight:700;
  color:var(--blue);text-transform:capitalize;margin-bottom:.75rem;
}
.section-head p{color:var(--muted);max-width:36rem;margin:1rem auto 0}

#about{background:var(--bg)}
.about-inner{max-width:52rem;margin:0 auto;text-align:center;margin-bottom:3.5rem}
.about-inner p{color:var(--muted);font-size:1.08rem;margin-bottom:1.5rem}
.about-inner .highlight{font-size:1.2rem;color:var(--text);font-weight:700;font-style:italic}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.stat-box {
  background: var(--white);
  border-top: 4px solid var(--green);
  border-radius: 6px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(5,36,20,.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18,186,102,.12);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.98rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.service-card{text-align:center;padding:2rem 1.25rem;background:var(--white);border:1px solid var(--border);transition:box-shadow .25s,border-color .25s,transform .2s}
.service-card:hover{box-shadow:0 12px 32px rgba(18,186,102,.16);border-color:var(--blue);transform:translateY(-4px)}
.service-card .icon{
  width:64px;height:64px;margin:0 auto 1.25rem;border-radius:50%;
  background:var(--green-muted);color:var(--green);
  display:grid;place-items:center;
}
.service-card .icon svg{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{font-size:1.15rem;font-weight:700;margin-bottom:.65rem;color:var(--text)}
.service-card p{color:var(--muted);font-size:.98rem}

#refs{background:var(--bg)}
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonial{
  background:var(--white);border:1px solid var(--border);padding:1.75rem;
  text-align:center;position:relative;
}
.testimonial::before{
  content:'"';position:absolute;top:.5rem;left:50%;transform:translateX(-50%);
  font-size:3rem;line-height:1;color:var(--green);opacity:.35;font-family:Georgia,serif;
}
.testimonial .role{font-size:.88rem;color:var(--muted);margin-top:2rem;margin-bottom:.25rem}
.testimonial .name{font-size:1.05rem;font-weight:700;color:var(--text)}
.testimonial .quote{font-style:italic;color:var(--muted);font-size:.98rem;padding-top:.5rem}

.contact-wrap{display:grid;justify-items:center;grid-template-columns:1fr;gap:3rem;align-items:start}
form{background:var(--bg);border:1px solid var(--border);padding:2rem;max-width:600px;width:100%}
form h3{font-size:1.25rem;font-weight:700;margin-bottom:1.25rem;text-align:center;text-transform:capitalize}
form label{font-size:.9rem;color:var(--muted);display:block;margin-bottom:.2rem}
form input,form textarea,form select{
  width:100%;padding:.7rem .85rem;margin-bottom:.85rem;
  border:1px solid var(--border);background:var(--white);color:var(--text);
  font-family:inherit;font-size:1rem;border-radius:3px;
}
form textarea{min-height:110px;resize:vertical}
.f2col{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.f2col > div{margin-bottom:0}

footer{
  background:var(--green-deep);color:rgba(255,255,255,.85);
  padding:2.5rem 0;text-align:center;
}
footer .brand{font-size:1.25rem;font-weight:700;color:var(--white);margin-bottom:.5rem}
footer p{font-size:.9rem;opacity:.8}
footer .footer-links{margin-top:.75rem}
footer .footer-links a{color:rgba(255,255,255,.9);text-decoration:underline;opacity:.95}
footer .footer-bottom{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:1.5rem;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.15)}
footer .footer-bottom a{color:var(--white);font-weight:700;transition:color .2s,transform .2s}
footer .footer-bottom a:hover{color:rgba(255,255,255,.95);transform:translateY(-1px)}

.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--d,0s);
}
.reveal.reveal-left{transform:translateX(-36px)}
.reveal.reveal-right{transform:translateX(36px)}
.reveal.reveal-scale{transform:scale(.94)}
.reveal.show{
  opacity:1;
  transform:none;
}
.hero .reveal{transition-duration:.85s}
.hero .reveal.show{opacity:1}

@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
}

#burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
#burger svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
}

@media(max-width:1200px){
  .service-grid,.testimonials{grid-template-columns:repeat(2,minmax(240px,1fr))}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:900px){
  .service-grid,.testimonials,.contact-wrap,.f2col,.stats-grid{grid-template-columns:1fr}
  .btn-outline{margin-left:0;margin-top:.75rem}
  footer .footer-bottom{flex-direction:column;align-items:center;text-align:center}

  #burger {
    display: block;
  }

  #menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--hh);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(5,36,20,.1);
    gap: 1.25rem;
    text-align: center;
    z-index: 99;
  }

  #menu.show {
    display: flex;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 1rem;
  }
}

@media(max-width:768px){
  .logo img{height:90px}
  .hero{padding:calc(var(--hh) + 1.5rem) 1rem 2.5rem}
  .hero h1{font-size:clamp(2rem,8vw,2.8rem)}
  .hero .sub{font-size:1.05rem}
  .service-card,.testimonial,form{padding:1.5rem}
  .f2col{grid-template-columns:1fr}
}