:root{
  /* PESTECH colors */
  --teal:#006f86;
  --green:#29AB87;
  --bar:#9DC183;
  --accent:#fd8901;
  --text:#043927;

  /* Neutrals */
  --bg:#f6f8fb;
  --card:#ffffff;
  --muted: rgba(8,18,28,.65);

  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --shadow2: 0 12px 30px rgba(0,0,0,.10);
  --radius:18px;

  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; overflow-x:hidden; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color:#0b1a22;
  line-height:1.55;
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ===================== TOPBAR ===================== */
.topbar{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.topbar__left{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.topbar__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color: var(--teal);
}
.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(157,193,131,.18);
  color: var(--teal);
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, background .2s ease;
}
.pill:hover{
  background: rgba(157,193,131,.28);
  transform: translateY(-1px);
}
.pill--wide{ width:100%; }

/* Hide right pills on small screens */
@media (max-width: 820px){
  .topbar__right{ display:none; }
}

/* ===================== HEADER / NAV ===================== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(0,111,134,.92), rgba(41,171,135,.92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 210px;
}
.brand__logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  padding: 6px;
}
.brand__text{ display:flex; flex-direction:column; }
.brand__name{
  color:#fff;
  font-weight: 900;
  letter-spacing:.4px;
  font-size: 18px;
}
.brand__tag{
  color: rgba(255,255,255,.85);
  font-size: 12px;
  margin-top: 2px;
}

/* Desktop nav links */
.navlinks{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
}
.navlinks__a{
  color:#fff;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.navlinks__a:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.navlinks__a.active{
  background: rgba(157,193,131,.35);
}

/* Burger (mobile) */
.burger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  display:none;
  cursor:pointer;
  position:relative;
}
.burger span{
  position:absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background:#fff;
  border-radius: 999px;
  transition: .25s ease;
}
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 22px; }
.burger span:nth-child(3){ top: 30px; }
.burger.is-open span:nth-child(1){ top:22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ top:22px; transform: rotate(-45deg); }

@media (max-width: 980px){
  .navlinks{ display:none; }
  .burger{ display:block; }
}

/* ===================== DRAWER (MOBILE MENU) ===================== */
/* ✅ stays on top of EVERYTHING */
.drawer{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2147483647;
}

/* backdrop */
.drawer__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2147483646;
}

/* ✅ Light panel like your screenshot */
.drawer__panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 88vw);

  background: #fff;
  color: #0b1a22;

  transform: translateX(110%);
  transition: transform .28s ease;

  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;

  padding: 14px;
  z-index: 2147483647;

  border-left: 1px solid rgba(0,0,0,.06);
}

.drawer.is-open{ display:block; }
.drawer.is-open .drawer__backdrop{ opacity:1; }
.drawer.is-open .drawer__panel{ transform: translateX(0); }

/* header row */
.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 2px 2px 12px 2px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.drawer__title{
  font-weight: 900;
  color: var(--teal);
  font-size: 18px;
}

/* close button like screenshot */
.drawer__close{
  border: 0;
  background: rgba(0,0,0,.06);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor:pointer;
  color:#0b1a22;
}
.drawer__close:hover{ background: rgba(0,0,0,.09); }

/* ✅ Menu items: pale green cards */
.drawer__item{
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--teal);

  background: rgba(157,193,131,.22);
  border: 1px solid rgba(0,0,0,.06);

  display:flex;
  align-items:center;
  gap:12px;

  transition: transform .18s ease, background .18s ease;
}
.drawer__item i{ color: var(--teal); }
.drawer__item:hover{
  background: rgba(157,193,131,.30);
  transform: translateY(-1px);
}

/* Active (Contacts) slightly stronger */
.drawer__item.active{
  background: rgba(157,193,131,.30);
  border-color: rgba(157,193,131,.45);
}

/* separators */
.drawer__divider{
  height:1px;
  background: rgba(0,0,0,.08);
  margin: 12px 2px;
}

/* ✅ Bottom pills section */
.drawer__pills{
  display:grid;
  gap: 10px;
}

/* Make pills match screenshot: pale green, teal text */
.drawer__pills .pill{
  background: rgba(157,193,131,.22);
  color: var(--teal);
  border: 1px solid rgba(0,0,0,.06);
}
.drawer__pills .pill:hover{
  background: rgba(157,193,131,.30);
}

/* ✅ Add the big orange CTA if you use it in HTML as a .pill or .btn */
.drawer__pills .pill.pill--cta,
.drawer__panel .btn--cta{
  background: linear-gradient(135deg, var(--accent), #ffb55c) !important;
  color:#fff !important;
  border: 0 !important;
  box-shadow: 0 14px 30px rgba(253,137,1,.25);
}
.drawer__pills .pill.pill--cta:hover,
.drawer__panel .btn--cta:hover{
  transform: translateY(-1px);
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  padding: 40px 0 26px 0;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 10% 15%, rgba(41,171,135,.22), transparent 60%),
    radial-gradient(800px 420px at 80% 25%, rgba(253,137,1,.16), transparent 60%),
    linear-gradient(180deg, rgba(0,111,134,.10), transparent 50%);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,111,134,.10);
  color: var(--teal);
  font-weight: 900;
  width: fit-content;
}
.dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(41,171,135,.16);
}

.hero h1{
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.06;
  margin: 14px 0 10px 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  color:#0b1a22;
}
.lead{
  color: rgba(8,18,28,.72);
  font-size: clamp(15px, 1.4vw, 18px);
  margin: 0 0 16px 0;
}

.quick{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), #ffb55c);
  color:#ffffff;
  box-shadow: 0 14px 30px rgba(253,137,1,.28);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(253,137,1,.35);
}
.btn--ghost{
  background: rgba(255,255,255,.70);
  color: var(--teal);
  border: 1px solid rgba(0,0,0,.08);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.88);
}

.hero__card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.hero__cardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.hero__cardTitle{ font-weight: 900; color:#0b1a22; }
.hero__cardSub{ color: rgba(8,18,28,.65); font-weight:700; font-size: 13px; margin-top:4px; }

.seal{
  width:42px;
  height:42px;
  border-radius: 14px;
  background: rgba(41,171,135,.12);
  border: 1px solid rgba(41,171,135,.22);
  color: var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
}

.miniGrid{ display:grid; gap:10px; }
.mini{
  width:100%;
  text-align:left;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mini:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.mini__icon{
  width:40px;
  height:40px;
  border-radius: 14px;
  background: rgba(0,111,134,.10);
  color: var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
}
.mini__label{ font-size:12px; color: rgba(8,18,28,.55); font-weight:800; }
.mini__value{ font-size:13px; font-weight:900; color:#0b1a22; }
.mini__hint{ margin-left:auto; color: var(--accent); font-weight:900; font-size:12px; }

/* ===================== SECTION + CARDS ===================== */
.section{ padding: 54px 0; }

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}
@media (max-width: 980px){
  .section__head{ flex-direction:column; align-items:flex-start; }
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 1050px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.card__top{
  display:flex;
  align-items:center;
  gap:12px;
}
.card__icon{
  width:44px;
  height:44px;
  border-radius: 16px;
  background: rgba(41,171,135,.12);
  border: 1px solid rgba(41,171,135,.22);
  color: var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
}
.muted{
  margin: 4px 0 0;
  color: rgba(8,18,28,.62);
  font-size: 13px;
  font-weight: 700;
}
.card h3{ margin:0; font-size: 15px; font-weight: 900; }

.card__body{ margin-top: 12px; }

.contactLink{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  color: var(--teal);
  background: rgba(0,111,134,.10);
  border: 1px solid rgba(0,0,0,.07);
  padding: 10px 12px;
  border-radius: 14px;
}

/* ===================== FOOTER ===================== */
.footer{
  background: var(--teal);
  color:#fff;
  padding-top: 34px;
  margin-top: 10px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
}
@media (max-width: 980px){
  .footer__grid{ grid-template-columns: 1fr; }
}
.footer__title{ font-weight: 900; margin-bottom: 10px; }
.footer__text{
  margin: 0 0 8px 0;
  opacity: .92;
  font-weight: 700;
}
.footer__text a{ text-decoration: underline; font-weight: 900; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 14px 0;
  text-align:center;
  opacity: .95;
  font-weight: 700;
}

/* ===================== TOAST ===================== */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  background: #0b1b12;
  color:#fff;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: var(--shadow2);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  font-weight: 900;
  z-index: 10000;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

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