:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --card: rgba(15,23,42,0.96);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --brand: #5bbcff;
  --brand2: #7cdbb6;
  --ring: rgba(91,188,255,0.35);
  --radius: 18px;
  --shadow: 0 14px 45px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 5% -10%, rgba(124,219,182,0.12), transparent),
    radial-gradient(900px 700px at 95% -20%, rgba(91,188,255,0.18), transparent),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

main { min-height: 70vh; }

.muted { color: var(--muted); }

/* Topbar + Nav */

.topbar {
  background: rgba(5,8,22,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar__right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar__phone { font-weight: 700; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5,8,22,0.96), rgba(5,8,22,0.85));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 40px;
  width: auto;
  border-radius: 12px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand__sub {
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
}

.nav__links {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
}

#nav-toggle { display: none; }

.nav__hamburger {
  display: none;
  width: 40px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #041018;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.btn--sm { padding: 7px 11px; font-size: 13px; }

.btn--full { width: 100%; }

/* Hero / Page headers */

.hero {
  padding: 60px 0 36px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.hero__copy { position: relative; z-index: 2; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c7d2fe;
  background: rgba(99,102,241,0.14);
  border: 1px solid rgba(99,102,241,0.4);
  padding: 5px 10px;
  border-radius: 999px;
}

h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
  margin: 12px 0 8px;
}

.lead {
  color: var(--muted);
  font-size: 15px;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.stat {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px;
  text-align: center;
}

.stat__num {
  font-weight: 800;
  font-size: 19px;
}

.stat__label {
  font-size: 12px;
  color: var(--muted);
}

.hero__card {
  position: relative;
  z-index: 2;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero__card h3 { margin: 6px 0; }

.hero__card p { color: var(--muted); margin: 4px 0 10px; }

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(91,188,255,0.16);
  color: #dbeafe;
  border: 1px solid var(--ring);
}

.miniForm {
  display: grid;
  gap: 8px;
}

.miniForm label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #050b1d;
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px var(--ring);
  border-color: transparent;
}

.miniForm__note {
  font-size: 11px;
  color: var(--muted);
}

/* Page hero */

.pageHero {
  padding: 54px 0 24px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
}

.pageHero h1 {
  margin-top: 6px;
}

.pageHero .lead {
  margin-top: 4px;
}

/* Sections */

.section {
  padding: 34px 0;
}

.section--alt {
  background: radial-gradient(900px 600px at 0% 0%, rgba(91,188,255,0.12), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section__header {
  text-align: center;
  margin-bottom: 18px;
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section__header h2 {
  margin: 4px 0 4px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.section__header p {
  margin: 0;
  color: var(--muted);
}

/* Cards & layout helpers */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card--hover {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card--hover:hover {
  transform: translateY(-5px);
  border-color: rgba(91,188,255,0.65);
  box-shadow: 0 18px 55px rgba(0,0,0,0.6);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(91,188,255,0.16);
  border: 1px solid var(--ring);
  color: #dbeafe;
}

/* Contact-specific */

.contactGrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.contactCard {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contactCard__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 24px;
  background: linear-gradient(140deg, var(--brand), var(--brand2));
  color: #041018;
}

.contactCard__big {
  font-size: 17px;
  font-weight: 800;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0 18px;
  color: var(--muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

.footer__brand {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.footer__links {
  display: grid;
  gap: 4px;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/* Responsive */

@media (max-width: 950px) {
  .hero__grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 46px;
  }
}

@media (max-width: 900px) {
  .grid-3,
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    grid-template-columns: repeat(2,1fr);
  }
  .topbar__inner {
    justify-content: center;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(5,8,22,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 8px;
    padding: 14px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.18s ease;
  }
  #nav-toggle:checked ~ .nav__links {
    transform: scaleY(1);
    opacity: 1;
  }
}