:root{
  --bg:#0b0d10;
  --bg2:#10141a;
  --text:#0e1116;
  --muted:#5b6472;
  --line:#e7eaf0;
  --card:#ffffff;
  --alt:#f6f7fb;
  --teal:#14a6b7;
  --teal2:#0f7e8b;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
  --radius2:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,13,16,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}
.brand__mark{
  width:12px;height:12px;border-radius:999px;
  background:var(--teal);
  box-shadow: 0 0 0 6px rgba(20,166,183,.15);
}
.brand__text{
  font-weight:700;
  letter-spacing:.02em;
  font-size:14px;
  text-transform:uppercase;
}

.topbar__nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar__nav a{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}
.topbar__nav a:hover{color:#fff}
.topbar__menu{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  border-radius:12px;
  cursor:pointer;
}
.topbar__menu span{
  display:block;
  height:2px;
  background:#fff;
  margin:6px 10px;
  border-radius:2px;
}

.mobilemenu{
  padding:10px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobilemenu a{
  display:block;
  width:min(520px, calc(100% - 40px));
  margin:10px auto 0;
  text-decoration:none;
  color:#fff;
  font-weight:600;
}
.mobilemenu .btn{width:min(520px, calc(100% - 40px)); margin:10px auto 0;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.02em;
  cursor:pointer;
  user-select:none;
}
.btn--primary{
  background:var(--teal);
  color:#041013;
  border-color: rgba(255,255,255,.1);
}
.btn--primary:hover{background:#19b7c9}
.btn--ghost{
  background:transparent;
  color:#fff;
  border-color: rgba(255,255,255,.22);
}
.btn--ghost:hover{border-color: rgba(255,255,255,.38)}
.btn--lg{padding:12px 18px; font-size:14px}
.btn--small{padding:8px 12px; font-size:12px}

/* Hero */
.hero{
  background: radial-gradient(1200px 600px at 50% -120px, rgba(20,166,183,.35), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:#fff;
  padding:48px 0 34px;
}
.hero__inner{
  text-align:center;
}
.hero__logo{
  width:min(320px, 82vw);
  height:auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.45));
  margin: 8px auto 18px;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing:.02em;
  text-transform:uppercase;
}
.hero__subtitle{
  margin:0 auto 18px;
  color:rgba(255,255,255,.84);
  max-width: 740px;
  line-height:1.6;
}
.hero__cta{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.hero__strip{
  margin:24px auto 0;
  padding:10px 14px;
  width: fit-content;
  max-width: 100%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(255,255,255,.88);
  font-weight:600;
}
.hero__strip .dot{opacity:.6}
.hero__local{
  margin:12px auto 0;
  max-width: 760px;
  color:rgba(255,255,255,.9);
  font-weight:700;
  letter-spacing:.01em;
}

/* Sections */
.section{
  padding:56px 0;
}
.section--alt{background:var(--alt)}
.section__title{
  margin:0;
  text-align:center;
  font-size: 26px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.section__lead{
  margin:10px auto 0;
  text-align:center;
  color:var(--muted);
  max-width: 760px;
  line-height:1.6;
}

/* Cards grid */
.grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card__media{
  background: linear-gradient(135deg, rgba(20,166,183,.18), rgba(20,166,183,.06));
  border-bottom: 1px solid var(--line);
  padding:12px;
}
.svc-svg{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 20 / 11;
  object-fit: cover;
  border-radius: 10px;
}
.card__body{
  padding:16px 16px 18px;
  text-align:left;
}
.card__body h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:.02em;
}
.card__body p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.link{
  font-weight:700;
  color:var(--teal2);
  text-decoration:none;
}
.link:hover{color:var(--teal)}
.midcta{
  margin-top: 22px;
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align:center;
}
.midcta__title{
  margin:0;
  font-size:24px;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.midcta__text{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.5;
}
.midcta__actions{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.midcta .btn--ghost{
  color:var(--text);
  border-color: rgba(0,0,0,.18);
}
.midcta .btn--ghost:hover{border-color: rgba(0,0,0,.30)}

/* Why section pills */
.pillgrid{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.pill{
  display:flex;
  gap:12px;
  padding:16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pill__icon{
  width:42px;height:42px;
  border-radius: 14px;
  background: rgba(20,166,183,.12);
  display:grid;
  place-items:center;
  font-size:18px;
}
.pill__title{
  font-weight:800;
  letter-spacing:.02em;
}
.pill__text{
  margin-top:6px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.note{
  margin:18px auto 0;
  max-width: 900px;
  text-align:center;
  color:var(--muted);
  padding:14px 16px;
  background:#fff;
  border:1px dashed rgba(20,166,183,.35);
  border-radius: var(--radius);
}

/* Testimonials */
.quotes{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.quote{
  margin:0;
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote blockquote{
  margin:0;
  color:#1a2230;
  line-height:1.6;
}
.quote figcaption{
  margin-top: 12px;
  color:var(--muted);
  font-weight:700;
}
.ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
#testimonials .btn--ghost{color:var(--text); border-color: rgba(0,0,0,.18)}
#testimonials .btn--ghost:hover{border-color: rgba(0,0,0,.30)}

/* Contact */
.contact{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.contact__card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.contact__card--wide{
  grid-column: 1 / -1;
}
.contact__label{
  color:var(--muted);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.contact__value{
  display:inline-block;
  margin-top: 8px;
  font-size:18px;
  font-weight:800;
  color:var(--teal2);
  text-decoration:none;
}
.contact__value:hover{color:var(--teal)}
.contact__value--plain{
  color:#1a2230;
  font-weight:700;
}
.contact__hint{
  margin-top: 8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.contact__hint--list{
  margin-top: 10px;
}
.contact__actions{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.contact__actions .btn--ghost{color:var(--text); border-color: rgba(0,0,0,.18)}
.contact__actions .btn--ghost:hover{border-color: rgba(0,0,0,.30)}
.footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:#1a2230;
  font-weight:700;
}
.footer__muted{color:var(--muted); font-weight:700}

/* Responsive */
@media (max-width: 900px){
  .grid{grid-template-columns: 1fr; }
  .pillgrid{grid-template-columns: 1fr;}
  .quotes{grid-template-columns: 1fr;}
  .contact{grid-template-columns: 1fr;}
  .contact__card--wide{grid-column:auto;}
  .topbar__nav{display:none;}
  .topbar__menu{display:block;}
}
