*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--green:#0d7c4a;--green-dark:#096338;--green-light:#e8f5ef;--white:#ffffff;--charcoal:#2d2d2d;--grey-100:#f7f8f9;--grey-200:#e9ecef;--grey-400:#adb5bd;--grey-600:#6c757d;--shadow:0 2px 16px rgba(0,0,0,.08);--shadow-hover:0 8px 32px rgba(13,124,74,.15);--radius:10px;--transition:all .3s cubic-bezier(.4,0,.2,1)}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;color:var(--charcoal);line-height:1.7;background:var(--white);overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--green);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--green-dark)}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}
h1,h2,h3,h4{line-height:1.3;font-weight:700}
h2{font-size:1.5rem;margin-bottom:.5rem}
p{margin-bottom:1rem}
p,li{margin-bottom:1rem}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 32px;border-radius:50px;font-weight:600;font-size:.95rem;cursor:pointer;transition:var(--transition);border:none;text-align:center;gap:8px}
.btn-primary{background:var(--green);color:var(--white)}
.btn-primary:hover{background:var(--green-dark);color:var(--white);transform:translateY(-2px);box-shadow:0 6px 20px rgba(13,124,74,.3)}
.btn-outline{background:transparent;color:var(--white);border:2px solid var(--white)}
.btn-outline:hover{background:var(--white);color:var(--green)}
.section-label{display:inline-block;background:var(--green-light);color:var(--green);padding:6px 18px;border-radius:50px;font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.section-title{font-size:1.8rem;margin-bottom:12px;color:var(--charcoal)}
.section-subtitle{color:var(--grey-600);font-size:1.05rem;max-width:600px;margin:0 auto 40px}
.text-center{text-align:center}

/* HEADER */
.header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(255,255,255,.97);transition:var(--transition);padding:12px 0}
.header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.1);padding:8px 0}
.header .container{display:flex;align-items:center;justify-content:space-between}
.logo{font-size:1.6rem;font-weight:800;color:var(--green);letter-spacing:-1px}
.logo span{color:var(--charcoal)}
.nav{display:none;position:absolute;top:100%;left:0;width:100%;background:var(--white);box-shadow:var(--shadow);padding:20px}
.nav.active{display:block}
.nav ul{list-style:none;display:flex;flex-direction:column;gap:4px}
.nav a{display:block;padding:10px 20px;color:var(--charcoal);font-weight:500;border-radius:var(--radius);transition:var(--transition)}
.nav a:hover,.nav a.active{color:var(--green);background:var(--green-light)}
.header-cta{display:none}
.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2.5px;background:var(--charcoal);border-radius:2px;transition:var(--transition)}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:120px 20px 80px}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(160deg,rgba(13,124,74,.75) 0%,rgba(45,45,45,.85) 100%)}
.hero-content{position:relative;z-index:2;text-align:center;max-width:760px}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);backdrop-filter:blur(10px);padding:8px 20px;border-radius:50px;color:var(--white);font-size:.85rem;font-weight:500;margin-bottom:24px;border:1px solid rgba(255,255,255,.2)}
.hero-badge svg{width:18px;height:18px}
.hero h1{font-size:2.2rem;color:var(--white);margin-bottom:20px;line-height:1.2;font-weight:800}
.hero p{color:rgba(255,255,255,.9);font-size:1.05rem;margin-bottom:32px;line-height:1.8}
.hero-btns{display:flex;flex-direction:column;gap:14px;align-items:center}

/* STATS BAR */
.stats{background:linear-gradient(135deg,var(--green) 0%,#0a6b3f 50%,var(--green-dark) 100%);padding:40px 0;position:relative;overflow:hidden}
.stats::before{content:'';position:absolute;top:-50%;left:-20%;width:60%;height:200%;background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%);pointer-events:none}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;text-align:center}
.stat-item{color:var(--white);padding:16px 8px}
.stat-number{font-size:2.2rem;font-weight:800;line-height:1;margin-bottom:6px;font-variant-numeric:tabular-nums}
.stat-label{font-size:.85rem;opacity:.85;font-weight:500}

/* SERVICES */
.services{padding:80px 0}
.services-grid{display:grid;grid-template-columns:1fr;gap:24px}
.service-card{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);padding:32px 24px;transition:var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:var(--green);transform:scaleX(0);transform-origin:left;transition:var(--transition)}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);border-color:transparent}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{width:56px;height:56px;background:var(--green-light);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;transition:var(--transition)}
.service-card:hover .service-icon{background:var(--green)}
.service-icon svg{width:28px;height:28px;fill:var(--green);transition:var(--transition)}
.service-card:hover .service-icon svg{fill:var(--white)}
.service-card h3{font-size:1.15rem;margin-bottom:10px;color:var(--charcoal)}
.service-card p{color:var(--grey-600);font-size:.92rem;margin-bottom:0;line-height:1.7}

/* INDUSTRIES */
.industries{padding:80px 0;background:var(--grey-100)}
.industries-scroll{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:16px;cursor:grab;scrollbar-width:none;-ms-overflow-style:none}
.industries-scroll::-webkit-scrollbar{display:none}
.industry-card{flex:0 0 260px;scroll-snap-align:start;background:var(--white);border-radius:var(--radius);padding:32px 24px;text-align:center;transition:var(--transition);border:1px solid var(--grey-200);user-select:none}
.industry-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:var(--green)}
.industry-icon{width:64px;height:64px;background:var(--green-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;transition:var(--transition)}
.industry-card:hover .industry-icon{background:var(--green)}
.industry-icon svg{width:30px;height:30px;fill:var(--green);transition:var(--transition)}
.industry-card:hover .industry-icon svg{fill:var(--white)}
.industry-card h3{font-size:1.05rem;margin-bottom:8px;color:var(--charcoal)}
.industry-card p{font-size:.85rem;color:var(--grey-600);margin-bottom:0}

/* WHY US */
.why-us{padding:80px 0}
.why-grid{display:grid;grid-template-columns:1fr;gap:16px;max-width:700px;margin:0 auto}
.why-item{display:flex;align-items:flex-start;gap:16px;padding:20px;background:var(--white);border-radius:var(--radius);border:1px solid var(--grey-200);transition:var(--transition)}
.why-item:hover{border-color:var(--green);box-shadow:var(--shadow)}
.why-check{flex-shrink:0;width:36px;height:36px;background:var(--green-light);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:var(--transition)}
.why-item:hover .why-check{background:var(--green)}
.why-check svg{width:18px;height:18px;fill:var(--green);transition:var(--transition)}
.why-item:hover .why-check svg{fill:var(--white)}
.why-item h3{font-size:1.05rem;margin-bottom:4px;color:var(--charcoal)}
.why-item p{font-size:.9rem;color:var(--grey-600);margin-bottom:0}

/* ABOUT */
.about{padding:80px 0;background:var(--grey-100)}
.about-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center}
.about-img{border-radius:var(--radius);overflow:hidden;position:relative}
.about-img img{width:100%;height:auto;display:block}
.about-img-badge{position:absolute;bottom:20px;left:20px;background:var(--green);color:var(--white);padding:12px 24px;border-radius:var(--radius);font-weight:700;font-size:1.1rem}
.about-text h2{font-size:1.8rem;margin-bottom:16px}
.about-text p{color:var(--grey-600);line-height:1.8}
.about-values{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.about-value{display:inline-flex;align-items:center;gap:6px;background:var(--green-light);color:var(--green);padding:8px 16px;border-radius:50px;font-size:.85rem;font-weight:600}
.about-value svg{width:16px;height:16px;fill:var(--green)}

/* TESTIMONIALS */
.testimonials{padding:80px 0}
.testimonials-grid{display:grid;grid-template-columns:1fr;gap:24px}
.testimonial-card{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);padding:32px 28px;transition:var(--transition);position:relative}
.testimonial-card:hover{box-shadow:var(--shadow-hover);border-color:transparent}
.testimonial-quote{color:var(--green);font-size:2.5rem;line-height:1;margin-bottom:12px;font-family:Georgia,serif}
.testimonial-card blockquote{font-size:.95rem;color:var(--grey-600);line-height:1.8;margin-bottom:20px;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:14px}
.testimonial-avatar{width:48px;height:48px;background:var(--green-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--green);font-size:1.1rem}
.testimonial-name{font-weight:700;font-size:.95rem;color:var(--charcoal)}
.testimonial-role{font-size:.82rem;color:var(--grey-600)}
.testimonial-company{font-size:.8rem;color:var(--green);font-weight:600;margin-top:2px}

/* CTA BANNER */
.cta-banner{background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);padding:60px 0;text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:-30%;right:-10%;width:50%;height:160%;background:radial-gradient(circle,rgba(255,255,255,.08) 0%,transparent 70%);pointer-events:none}
.cta-banner h2{color:var(--white);font-size:1.8rem;margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,.9);margin-bottom:28px;font-size:1.05rem}
.cta-banner .btn-outline{border-color:var(--white);color:var(--white)}
.cta-banner .btn-outline:hover{background:var(--white);color:var(--green)}

/* CONTACT */
.contact{padding:80px 0;background:var(--grey-100)}
.contact-grid{display:grid;grid-template-columns:1fr;gap:40px}
.contact-form{background:var(--white);border-radius:var(--radius);padding:32px 24px;box-shadow:var(--shadow)}
.form-row{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:16px}
.form-group{display:flex;flex-direction:column}
.form-group label{font-weight:600;font-size:.88rem;margin-bottom:6px;color:var(--charcoal)}
.form-group input,.form-group textarea,.form-group select{padding:13px 16px;border:1.5px solid var(--grey-200);border-radius:8px;font-size:.95rem;font-family:inherit;transition:var(--transition);background:var(--white);color:var(--charcoal)}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(13,124,74,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.consent-group{display:flex;align-items:flex-start;gap:10px;margin:20px 0}
.consent-group input[type="checkbox"]{margin-top:4px;accent-color:var(--green);width:18px;height:18px;cursor:pointer}
.consent-group label{font-size:.85rem;color:var(--grey-600);cursor:pointer}
.contact-info{display:flex;flex-direction:column;gap:20px}
.contact-info-card{background:var(--white);border-radius:var(--radius);padding:24px;display:flex;align-items:flex-start;gap:16px;border:1px solid var(--grey-200)}
.contact-info-icon{width:48px;height:48px;background:var(--green-light);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-icon svg{width:22px;height:22px;fill:var(--green)}
.contact-info-card h4{font-size:.95rem;margin-bottom:4px}
.contact-info-card p{font-size:.9rem;color:var(--grey-600);margin-bottom:0}
.contact-info-card a{color:var(--green);font-weight:500}
.contact-map{background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid var(--grey-200);min-height:250px;display:flex;align-items:center;justify-content:center;color:var(--grey-400);font-size:.9rem;position:relative}
.contact-map iframe{width:100%;height:100%;min-height:250px;border:0}

/* FOOTER */
.footer{background:var(--charcoal);color:rgba(255,255,255,.8);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:36px;padding-bottom:40px}
.footer h4{color:var(--white);font-size:1rem;margin-bottom:16px;position:relative;padding-bottom:10px}
.footer h4::after{content:'';position:absolute;bottom:0;left:0;width:30px;height:2px;background:var(--green)}
.footer p{font-size:.9rem;line-height:1.7}
.footer-links{list-style:none}
.footer-links li{margin-bottom:8px}
.footer-links a{color:rgba(255,255,255,.7);font-size:.9rem;transition:var(--transition);display:inline-flex;align-items:center;gap:6px}
.footer-links a:hover{color:var(--green);padding-left:4px}
.footer-contact-item{display:flex;align-items:center;gap:10px;margin-bottom:12px;font-size:.9rem}
.footer-contact-item svg{width:18px;height:18px;fill:var(--green);flex-shrink:0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:20px 0;display:flex;flex-direction:column;gap:12px;align-items:center;text-align:center;font-size:.82rem}
.footer-bottom a{color:rgba(255,255,255,.6);transition:var(--transition)}
.footer-bottom a:hover{color:var(--green)}
.footer-legal{display:flex;gap:20px;flex-wrap:wrap;justify-content:center}

/* COOKIE */
.cookie-banner{position:fixed;bottom:0;left:0;width:100%;background:var(--charcoal);color:var(--white);padding:20px;z-index:9999;transform:translateY(100%);transition:transform .4s ease;display:flex;flex-direction:column;gap:16px;align-items:center}
.cookie-banner.show{transform:translateY(0)}
.cookie-banner p{font-size:.88rem;margin-bottom:0;text-align:center;line-height:1.6}
.cookie-banner a{color:var(--green);text-decoration:underline}
.cookie-btns{display:flex;gap:10px}
.cookie-btns button{padding:10px 24px;border-radius:50px;font-weight:600;font-size:.85rem;cursor:pointer;border:none;transition:var(--transition)}
.cookie-accept{background:var(--green);color:var(--white)}
.cookie-accept:hover{background:var(--green-dark)}
.cookie-decline{background:rgba(255,255,255,.15);color:var(--white)}
.cookie-decline:hover{background:rgba(255,255,255,.25)}

/* REVEAL */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ============================================
   LEGAL PAGES (privacy-policy, terms-of-use, gdpr)
   ============================================ */
.legal-hero{background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);padding:120px 0 60px;text-align:center;color:var(--white)}
.legal-hero h1{font-size:2rem;margin-bottom:8px}
.legal-hero p{opacity:.9;font-size:1rem}
.legal-content{max-width:800px;margin:0 auto;padding:60px 20px 80px}
.legal-content h2{font-size:1.4rem;margin:40px 0 16px;padding-top:20px;border-top:1px solid var(--grey-200);color:var(--charcoal)}
.legal-content h2:first-of-type{border-top:none;margin-top:0;padding-top:0}
.legal-content h3{font-size:1.1rem;margin:24px 0 12px;color:var(--charcoal)}
.legal-content p{color:var(--grey-600);line-height:1.8}
.legal-content ul,.legal-content ol{padding-left:24px;color:var(--grey-600)}
.legal-content li{line-height:1.8}
.legal-content a{color:var(--green);text-decoration:underline}

/* ============================================
   GDPR PAGE — specific styles
   ============================================ */
.gdpr-principle{background:var(--green-light);border-left:4px solid var(--green);padding:16px 20px;border-radius:0 var(--radius) var(--radius) 0;margin:16px 0}
.gdpr-principle strong{color:var(--green);display:block;margin-bottom:4px}
.gdpr-principle p{margin-bottom:0;color:var(--charcoal)}

/* RESPONSIVE */
@media(min-width:576px){
  .hero h1{font-size:2.8rem}
  .hero-btns{flex-direction:row;justify-content:center}
  .form-row{grid-template-columns:1fr 1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(4,1fr)}
  .stat-number{font-size:2.5rem}
  .why-grid{grid-template-columns:1fr 1fr}
}
@media(min-width:768px){
  h2{font-size:1.8rem}
  .section-title{font-size:2.2rem}
  .legal-hero h1{font-size:2.5rem}
  .nav{display:flex;position:static;width:auto;background:none;box-shadow:none;padding:0}
  .nav ul{flex-direction:row;gap:0}
  .nav a{padding:8px 16px;font-size:.9rem}
  .hamburger{display:none}
  .header-cta{display:inline-flex}
  .about-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:992px){
  .hero h1{font-size:3.2rem}
  .section-title{font-size:2.5rem}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .testimonials-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:2fr 1fr 1fr 1.2fr}
  .contact-form{padding:40px 36px}
}
@media(min-width:1200px){
  .container{padding:0 40px}
  .hero h1{font-size:3.5rem}
}
