:root{
  --bg0:#0b0f0c;
  --bg1:#0f1511;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:#e9efe9;
  --muted:rgba(233,239,233,.78);
  --muted2:rgba(233,239,233,.62);

  --green:#2f6a36;
  --green2:#3f8a49;
  --greenGlow:rgba(70, 170, 95, .30);
  --line:rgba(255,255,255,.14);

  --shadow:0 16px 40px rgba(0,0,0,.45);
  --radius:14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 50% -200px, rgba(90,140,100,.25), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,14,11,.74);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px 0;
}


.page {
	  width: 100%;
    height: 88%;
    overflow-y: scroll;
    scrollbar-color: rgb(255, 255, 255, .5) rgb(0, 0, 0, 0);
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:170px;
}
.brand__logo{ width:28px; height:28px; object-fit:contain; }
.brand__text{
  font-weight:700;
  letter-spacing:.2px;
  color:rgba(233,239,233,.92);
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex:1;
  justify-content:center;
}
.nav__link{
  font-size:14px;
  color:rgba(233,239,233,.78);
  padding:8px 10px;
  border-radius:10px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.06);
  color:rgba(233,239,233,.95);
}
.nav__link.is-active{
  color:rgba(233,239,233,.98);
  position:relative;
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:4px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(86,190,112,.95), transparent);
  opacity:.8;
}

.topbar__cta{ white-space:nowrap; }

.navToggle{
  display:none;
  width:44px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  cursor:pointer;
}
.navToggle span{
  display:block;
  height:2px;
  width:18px;
  background:rgba(233,239,233,.9);
  margin:5px auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(233,239,233,.92);
  font-weight:650;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background:linear-gradient(180deg, rgba(64,150,82,.95), rgba(38,98,49,.95));
  border-color: rgba(95,205,124,.28);
  box-shadow: 0 14px 26px rgba(0,0,0,.35), 0 0 0 6px var(--greenGlow);
}
.btn--ghost{
  background:rgba(255,255,255,.08);
}
.btn--light{
  background:rgba(255,255,255,.92);
  color:#111;
  border-color:rgba(255,255,255,.65);
}
.btn--pill{ border-radius:999px; }
.btn--wide{ padding:12px 22px; }
.btn__arrow{ opacity:.85; }

/* Hero */
.hero{
  position:relative;
  min-height:560px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero__carousel{
  position:relative;
  min-height:560px;
  overflow:hidden;
}
.hero__slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .55s ease, transform 1.8s ease;
  will-change: opacity, transform;
}
.hero__slide.is-active{
  opacity:1;
  transform: scale(1.0);
}

.hero__overlay{
  position:relative;
  min-height:560px;
  background:
    linear-gradient(90deg, rgba(8,12,9,.10) 0%, rgba(8,12,9,0.4) 30%, rgba(8,12,9,.05) 60%, rgba(8,12,9,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.15))
}
.hero__content{
  min-height:560px;
  display:flex;
  align-items:center;
}
.hero__copy{
  max-width:560px;
  padding:36px 0;
}
.hero__eyebrow{
  color:rgba(123, 215, 145, .92);
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:12px;
  min-height:16px;
}
.hero__title{
  margin:0 0 12px 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.04;
  letter-spacing:-.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.hero__subtitle{
  margin:0 0 22px 0;
  font-size:16px;
  color:var(--muted);
  max-width:520px;
  line-height:1.6;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:rgba(233,239,233,.95);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:28px;
  box-shadow: var(--shadow);
  transition: background .15s ease, transform .15s ease;
}
.hero__arrow:hover{
  background:rgba(0,0,0,.50);
  transform: translateY(-50%) scale(1.03);
}
.hero__arrow--prev{ left:18px; }
.hero__arrow--next{ right:18px; }

.hero__dots{
  position:absolute;
  left:0;
  right:0;
  bottom:16px;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:3;
}
.hero__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.12);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.hero__dot.is-active{
  background:rgba(120, 220, 145, .95);
  border-color:rgba(120, 220, 145, .75);
  transform: scale(1.15);
}

/* Sections */
.section{
  padding:62px 0;
  position:relative;
}
.section__head{
  text-align:center;
  margin-bottom:28px;
}
.section__title{
  margin:0;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing:-.01em;
}
.section__subtitle{
  margin:10px 0 0 0;
  color:var(--muted);
}
.section__micro{
  margin:10px auto 0;
  max-width:650px;
  color:var(--muted2);
  font-size:14px;
  line-height:1.6;
}
.section__rule{
  height:1px;
  margin:18px auto 0;
  width:min(720px, 92%);
  background:linear-gradient(90deg, transparent, var(--line), transparent);
}
.section__cta{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.cards{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.cards--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
  min-height:140px;
  margin: 12px;
}
.card--icon{
  text-align:center;
  padding-top:22px;
}
.card__icon{
  width:52px;
  height:52px;
  margin:0 auto 12px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(70,160,90,.9), rgba(35,85,44,.95));
  box-shadow: 0 10px 22px rgba(0,0,0,.35), 0 0 0 6px rgba(70,170,95,.18);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.card__icon img{ width:26px; height:26px; object-fit:contain; }
.card__title{
  margin:0 0 8px 0;
  font-size:16px;
  letter-spacing:-.01em;
}
.card__text{
  margin:0;
  color:var(--muted2);
  font-size:13px;
  line-height:1.55;
}

/* Services tiles */
.section--services{
  padding-top:56px;
}
.tiles{
  display:grid;
  gap:18px;
  margin-top:26px;
}
.tiles--3{ grid-template-columns: repeat(3, 1fr); }

.tile{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  position:relative;
  min-height:220px;
  display:flex;
  align-items:flex-end;
}
.tile__img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.01);
}
.tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72));
}
.tile__label{
  position:relative;
  z-index:2;
  width:100%;
  padding:14px 14px;
  font-weight:750;
  letter-spacing:.2px;
  text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

/* Research band */
.band{
  position:relative;
  min-height:340px;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.band__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
}
.band__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70)),
    radial-gradient(900px 400px at 50% 20%, rgba(70,170,95,.15), transparent 60%);
}
.band__content{
  position:relative;
  z-index:2;
  padding:62px 0;
  text-align:center;
}
.band__title{
  margin:0;
  font-size: clamp(26px, 2.6vw, 40px);
}
.band__subtitle{
  margin:8px 0 0;
  color:var(--muted);
}

.stats{
  display:grid;
  gap:18px;
  margin:26px auto 20px;
  width:min(980px, 100%);
}
.stats--3{ grid-template-columns: repeat(3, 1fr); }

.stat{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px 14px;
  box-shadow: var(--shadow);
}
.stat__big{
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight:800;
  letter-spacing:-.02em;
}
.stat__small{
  margin-top:6px;
  color:var(--muted2);
  font-size:13px;
}

.band__cta{ margin-top:8px; display:flex; justify-content:center; }

/* Contact */
.section--contact{
  padding:56px 0 62px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.contactActions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Footer */
.footer{
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(10,14,11,.65);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer__trust{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(233,239,233,.78);
  font-size:13px;
}
.footer__trust img{ width:22px; height:22px; object-fit:contain; opacity:.9; }

.footer__right{
  display:flex;
  gap:10px;
  align-items:center;
}
.social{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  display:grid;
  place-items:center;
}
.social img{ width:16px; height:16px; opacity:.9; }

/* Info Bar */
.infobar{
  background: rgba(8,12,9,.85);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:8px 0;
}
.infobar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.infobar__phones{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.infobar__phone{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:rgba(233,239,233,.75);
  transition: color .15s ease;
}
.infobar__phone:hover{
  color:rgba(123, 215, 145, .95);
}
.infobar__phone svg{
  opacity:.8;
}

.infobar__login{
  display:flex;
  align-items:center;
  gap:8px;
}
.infobar__input{
  padding:6px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:13px;
  width:120px;
  transition: border-color .15s ease, background .15s ease;
}
.infobar__input::placeholder{
  color:rgba(233,239,233,.45);
}
.infobar__input:focus{
  outline:none;
  border-color:rgba(95,205,124,.35);
  background:rgba(255,255,255,.08);
}
.infobar__btn{
  padding:6px 16px;
  border-radius:8px;
  border:1px solid rgba(95,205,124,.28);
  background:linear-gradient(180deg, rgba(64,150,82,.95), rgba(38,98,49,.95));
  color:rgba(233,239,233,.92);
  font-size:13px;
  font-weight:650;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.infobar__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}


.aboutIntro__media {
    display: flex;
    justify-content: center;
}



article.teamCard {
    padding: 16px;
    margin: 32px 0px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.teamCard__img {
    width: 256px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.aboutIntro__img {
    box-shadow: var(--shadow);
    border-radius: 12px;
    margin: 24px 0px;
    width: 80%;
    min-width: 300px;
}




/* Responsive */
@media (max-width: 980px){
  .infobar__inner{
    flex-direction:column;
    gap:12px;
  }
  .infobar__phones{
    gap:12px;
    font-size:12px;
  }
  .infobar__login{
    width:100%;
    justify-content:center;
  }
  .infobar__input{
    flex:1;
    max-width:140px;
  }
  
  .cards--3, .tiles--3, .stats--3{ grid-template-columns: 1fr; }
  /* rest of responsive styles remain the same */

/* Responsive */
@media (max-width: 980px){
  .cards--3, .tiles--3, .stats--3{ grid-template-columns: 1fr; }
  .nav{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:64px;
    background: rgba(10,14,11,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding:10px;
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav.is-open{ display:flex; }
  .nav__link{ padding:12px 12px; }
  .navToggle{ display:inline-block; margin-left:auto; }
  .topbar__cta{ display:none; }

  .hero__arrow{ display:none; }
  .hero__overlay{
    background:
      linear-gradient(180deg, rgba(8,12,9,.65), rgba(8,12,9,.75));
  }
}







/* Slight section backing to match your dark/glow bands */
.section--soft{
  background:
    radial-gradient(900px 500px at 50% 0px, rgba(110,170,120,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}

/* Clickable cards */
.cards--action{
  margin-top: 18px;
}

.card--action{
  display:block;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card--action::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(520px 170px at 50% 0px, rgba(70,170,95,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  opacity:.85;
  pointer-events:none;
}

.card--action > *{ position:relative; z-index:1; }

.card--action:hover{
  transform: translateY(-2px);
  border-color: rgba(120, 220, 145, .22);
  background: rgba(255,255,255,.07);
}

/* Optional accent cards (for the green flowchart boxes) */
.card--accent{
  background:
    linear-gradient(180deg, rgba(64,150,82,.16), rgba(255,255,255,.04));
  border-color: rgba(95,205,124,.22);
}

.card--accent::before{
  background:
    radial-gradient(560px 190px at 50% 0px, rgba(120, 220, 145, .22), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

/* Make sure titles look “modern-bold” */
.card__title{
  font-weight: 850;
  letter-spacing: -.01em;
}






























