*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --teal:#1a9e8a;
  --teal-dark:#0d6b5e;
  --teal-deeper:#073d35;
  --teal-light:#e0f5f1;
  --teal-mid:#3dbda6;
  --white:#ffffff;
  --off:#f7fafa;
  --text:#0f2320;
  --muted:#4a6860;
  --border:rgba(26,158,138,0.15);
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);line-height:1.6;font-size:15px}

/* NAV */
nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:0 48px;
  display:flex;align-items:center;justify-content:space-between;
  height:68px;
}
.nav-logo img{height:42px;display:block;width:auto}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  font-size:13px;font-weight:400;
  color:var(--muted);text-decoration:none;
  padding:4px 0;border-bottom:2px solid transparent;
  transition:color .15s,border-color .15s;
}
.nav-links a:hover{color:var(--teal);border-bottom-color:var(--teal)}
.nav-cta{
  background:var(--teal) !important;
  color:#fff !important;
  padding:8px 18px !important;
  border-radius:8px !important;
  border-bottom:none !important;
  font-weight:500 !important;
  transition:background .15s !important;
}
.nav-cta:hover{background:var(--teal-dark) !important}

/* HERO */
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(140deg, var(--teal-deeper) 0%, var(--teal-dark) 50%, #1aad97 100%);
  min-height:90vh;
  display:flex;align-items:center;
  padding:80px 48px 60px;
}
.hero-orb{position:absolute;border-radius:50%;pointer-events:none}
.hero-orb-1{
  width:600px;height:600px;right:-60px;top:-160px;
  background:radial-gradient(circle, rgba(61,189,166,0.2) 0%, transparent 65%);
}
.hero-orb-2{
  width:360px;height:360px;left:28%;bottom:-130px;
  background:radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr auto;
  align-items:center;gap:48px;
  max-width:1100px;width:100%;
}
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:40px;
  padding:6px 16px;
  font-size:11px;letter-spacing:1.2px;text-transform:uppercase;
  color:rgba(255,255,255,0.85);
  margin-bottom:26px;
}
.hero-pill-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--teal-mid);display:inline-block;
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(0.8)}}
.hero h1{
  font-family:'Sora',sans-serif;
  font-size:clamp(30px,4.2vw,54px);
  font-weight:700;line-height:1.12;
  color:#fff;margin-bottom:22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--teal-mid);
}
.hero p{
  font-size:15px;color:rgba(255,255,255,0.72);
  line-height:1.8;max-width:480px;margin-bottom:38px;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}

/* Hero buttons — no black text anywhere */
.btn-hero-primary{
  background:#fff;
  color:var(--teal-dark);
  padding:13px 28px;border-radius:8px;
  font-size:13px;font-weight:600;
  border:none;cursor:pointer;
  text-decoration:none;display:inline-block;
  transition:background .15s,transform .1s;
  letter-spacing:0.2px;
}
.btn-hero-primary:hover{background:var(--teal-light);transform:translateY(-2px)}

.btn-hero-outline{
  background:rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.92);
  padding:13px 28px;border-radius:8px;
  font-size:13px;font-weight:400;
  border:1.5px solid rgba(255,255,255,0.32);
  cursor:pointer;text-decoration:none;display:inline-block;
  transition:background .15s,border-color .15s,transform .1s;
}
.btn-hero-outline:hover{
  background:rgba(255,255,255,0.18);
  border-color:rgba(255,255,255,0.6);
  transform:translateY(-2px);
}

.hero-logo-side{
  opacity:0.13;
  flex-shrink:0;
  filter:brightness(0) invert(1);
}
.hero-logo-side img{width:280px;max-width:26vw;filter:none}

/* NUMBERS */
.numbers{
  background:var(--teal-light);
  padding:0 48px;
  display:grid;grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid rgba(26,158,138,0.18);
}
.num-item{
  padding:30px 16px;text-align:center;
  border-right:1px solid rgba(26,158,138,0.15);
}
.num-item:last-child{border-right:none}
.num-n{
  font-family:'Sora',sans-serif;
  font-size:34px;font-weight:700;
  color:var(--teal-dark);display:block;line-height:1;margin-bottom:6px;
}
.num-l{font-size:11px;color:var(--teal);letter-spacing:0.3px}

/* SECTIONS */
.section{padding:80px 48px}
.section-alt{background:var(--off)}
.eyebrow{
  font-size:11px;letter-spacing:1.6px;text-transform:uppercase;
  color:var(--teal);display:block;margin-bottom:10px;font-weight:500;
}
.section-title{
  font-family:'Sora',sans-serif;
  font-size:clamp(24px,3vw,34px);font-weight:700;
  color:var(--text);margin-bottom:12px;line-height:1.22;
}
.section-lead{
  font-size:15px;color:var(--muted);
  line-height:1.75;max-width:540px;margin-bottom:44px;
}

/* ABOUT */
.about-wrap{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:start}
.about-text p{font-size:14px;color:var(--muted);line-height:1.85;margin-bottom:16px}
.mvv-stack{display:flex;flex-direction:column;gap:14px}
.mvv-card{
  background:var(--white);
  border:1px solid var(--border);
  border-left:3px solid var(--teal);
  border-radius:10px;padding:20px 22px;
}
.mvv-card h4{
  font-size:13px;font-weight:600;
  color:var(--teal-dark);margin-bottom:6px;letter-spacing:0.3px;
}
.mvv-card p{font-size:13px;color:var(--muted);line-height:1.65}

/* SERVICES */
.srv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.srv-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;padding:28px 24px;
  transition:border-color .2s,box-shadow .2s;cursor:pointer;
}
.srv-card:hover{
  border-color:var(--teal);
  box-shadow:0 4px 28px rgba(26,158,138,0.1);
}
.srv-icon{
  width:48px;height:48px;border-radius:12px;
  background:var(--teal-light);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.srv-icon svg{width:22px;height:22px;stroke:var(--teal);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.srv-card h3{font-size:15px;font-weight:600;color:var(--text);margin-bottom:8px}
.srv-card p{font-size:13px;color:var(--muted);line-height:1.7}
.srv-link{
  display:inline-flex;align-items:center;gap:5px;
  margin-top:16px;font-size:12px;color:var(--teal);font-weight:500;text-decoration:none;
}
.srv-link svg{width:13px;height:13px;stroke:var(--teal);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* TEAM */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.team-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;padding:36px 20px 28px;text-align:center;
}
.team-av{
  width:68px;height:68px;border-radius:50%;
  background:var(--teal-light);
  border:2px solid var(--teal);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  font-family:'Sora',sans-serif;
  font-size:20px;font-weight:700;color:var(--teal-dark);
}
.team-card h4{font-size:15px;font-weight:600;color:var(--text);margin-bottom:5px}
.team-card p{font-size:13px;color:var(--muted)}

/* TRANSPARENCY */
.transp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.transp-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;padding:26px 22px;
  display:flex;align-items:flex-start;gap:16px;
}
.t-icon{
  width:42px;height:42px;flex-shrink:0;
  border-radius:10px;background:var(--teal-light);
  display:flex;align-items:center;justify-content:center;
}
.t-icon svg{width:20px;height:20px;stroke:var(--teal);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.transp-card h4{font-size:14px;font-weight:600;color:var(--text);margin-bottom:5px}
.transp-card p{font-size:13px;color:var(--muted);line-height:1.6}

/* WORK BANNER */
.work-banner{
  background:linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius:16px;padding:44px 48px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.work-banner h3{
  font-family:'Sora',sans-serif;
  font-size:24px;font-weight:700;color:#fff;margin-bottom:8px;
}
.work-banner p{font-size:14px;color:rgba(255,255,255,0.78)}
.btn-work{
  background:rgba(255,255,255,0.15);
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.42);
  padding:13px 28px;border-radius:8px;
  font-size:13px;font-weight:500;
  cursor:pointer;white-space:nowrap;flex-shrink:0;
  text-decoration:none;display:inline-block;
  transition:background .15s,border-color .15s,transform .1s;
}
.btn-work:hover{
  background:rgba(255,255,255,0.26);
  border-color:rgba(255,255,255,0.68);
  transform:translateY(-2px);
}

/* CONTACT */
.contact-wrap{display:grid;grid-template-columns:1fr 1.2fr;gap:52px;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:22px}
.c-item{display:flex;align-items:flex-start;gap:14px}
.c-ico{
  width:40px;height:40px;flex-shrink:0;
  border-radius:10px;background:var(--teal-light);
  display:flex;align-items:center;justify-content:center;
}
.c-ico svg{width:18px;height:18px;stroke:var(--teal);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.c-item h5{font-size:13px;font-weight:600;color:var(--text);margin-bottom:3px}
.c-item p{font-size:13px;color:var(--muted)}
.form{display:flex;flex-direction:column;gap:12px}
.form input,.form textarea{
  width:100%;border:1px solid var(--border);border-radius:8px;
  padding:11px 14px;font-size:13px;
  font-family:'Inter',sans-serif;
  background:var(--white);color:var(--text);
  outline:none;transition:border-color .15s;
}
.form input:focus,.form textarea:focus{border-color:var(--teal)}
.form textarea{height:108px;resize:none}
.btn-form{
  background:var(--teal);color:#fff;
  border:none;padding:12px 26px;
  border-radius:8px;font-size:13px;font-weight:500;
  cursor:pointer;align-self:flex-start;
  font-family:'Inter',sans-serif;
  transition:background .15s,transform .1s;
}
.btn-form:hover{background:var(--teal-dark);transform:translateY(-1px)}

/* FOOTER */
footer{background:var(--teal-deeper);padding:56px 48px 28px}
.footer-inner{display:grid;grid-template-columns:1.8fr 1fr 1fr;gap:40px;margin-bottom:44px}
.f-brand img{height:36px;opacity:0.9;width:auto}
.f-brand p{font-size:12px;color:rgba(255,255,255,0.4);line-height:1.75;margin-top:14px;max-width:240px}
.f-col h5{
  font-size:10px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
  color:rgba(255,255,255,0.5);margin-bottom:16px;
}
.f-col a{
  display:block;font-size:12px;color:rgba(255,255,255,0.36);
  margin-bottom:10px;text-decoration:none;transition:color .15s;
}
.f-col a:hover{color:var(--teal-mid)}
.social-row{display:flex;gap:10px;margin-top:16px}
.soc{
  width:34px;height:34px;border-radius:8px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background .15s,border-color .15s;
}
.soc:hover{background:rgba(26,158,138,0.3);border-color:rgba(26,158,138,0.5)}
.soc svg{width:15px;height:15px;stroke:rgba(255,255,255,0.48);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:22px;
  display:flex;justify-content:space-between;align-items:center;
}
.footer-bottom span{font-size:11px;color:rgba(255,255,255,0.24)}

/* DIVIDER */
hr.div{border:none;border-top:1px solid var(--border);margin:0 48px}

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

/* RESPONSIVE */
@media(max-width:900px){
  nav{padding:0 20px}
  .nav-links{display:none}
  .hero{padding:60px 20px 40px;min-height:auto}
  .hero-inner{grid-template-columns:1fr}
  .hero-logo-side{display:none}
  .numbers{grid-template-columns:repeat(2,1fr);padding:0 20px}
  .section{padding:52px 20px}
  .about-wrap,.contact-wrap{grid-template-columns:1fr}
  .srv-grid,.team-grid,.transp-grid{grid-template-columns:1fr}
  .work-banner{flex-direction:column;padding:32px 24px}
  footer{padding:40px 20px 24px}
  .footer-inner{grid-template-columns:1fr}
  hr.div{margin:0 20px}
}