:root {
  --bg: #050b14;
  --bg-soft: #0b1422;
  --bg-panel: #0f1a2d;
  --bg-panel-strong: #13233a;
  --text: #e9f0fb;
  --text-soft: #cfdbed;
  --muted: #8fa2be;
  --line: #263d5f;
  --line-strong: #3f679a;
  --accent: #2dd4bf;
  --accent-2: #2f7cff;
  --accent-3: #72a7ff;
  --ok: #84f774;
  --danger: #ff6b8c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 28px 66px rgba(0, 0, 0, 0.42);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 14% 8%, rgba(45, 212, 191, 0.16), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(47, 124, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #06101d 0%, #050b14 58%, #040914 100%);
  min-height: 100vh;
}

.site-main {
  position: relative;
  overflow: clip;
}

.site-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: linear-gradient(to right, rgba(106, 140, 183, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(106, 140, 183, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 96%);
}

a {
  color: #76f3e2;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #b0fff3;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #eff5ff;
}

h1 {
  font-size: clamp(2.05rem, 5.1vw, 4.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.46rem, 3.2vw, 2.34rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.07rem, 2.2vw, 1.34rem);
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(900px, 92vw);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: #122033;
  color: #fff;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(112, 151, 197, 0.24);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(6, 12, 22, 0.92), rgba(6, 12, 22, 0.82));
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: #032321;
  background: linear-gradient(140deg, #44efda, #4496ff);
  box-shadow: 0 10px 20px rgba(45, 212, 191, 0.24);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav > ul > li > a {
  display: block;
  color: #d7e6fb;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
  border-radius: 11px;
  border: 1px solid transparent;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.is-active {
  color: #fff;
  border-color: rgba(96, 144, 214, 0.42);
  background: linear-gradient(180deg, rgba(39, 67, 107, 0.55), rgba(20, 35, 58, 0.42));
}

.has-dropdown {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(330px, 76vw);
  max-height: min(72vh, 560px);
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid rgba(82, 125, 186, 0.45);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(9, 18, 31, 0.98), rgba(8, 14, 26, 0.96));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-list a {
  display: block;
  padding: 0.5rem 0.66rem;
  border-radius: 9px;
  color: #cde2ff;
}

.dropdown-list a:hover {
  color: #fff;
  background: linear-gradient(120deg, rgba(47, 124, 255, 0.16), rgba(45, 212, 191, 0.11));
}

.has-dropdown:hover .dropdown-list,
.has-dropdown:focus-within .dropdown-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-phone {
  min-height: 46px;
  padding: 0.5rem 0.86rem;
  border-radius: 12px;
  border: 1px solid rgba(85, 132, 199, 0.44);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  background: linear-gradient(180deg, rgba(16, 30, 51, 0.82), rgba(10, 19, 32, 0.86));
}

.header-phone-label {
  color: #9db3d0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-phone strong {
  color: #adf9ef;
  font-size: 0.96rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: rgba(12, 22, 38, 0.9);
  color: var(--text);
  border-radius: 10px;
  padding: 0.42rem 0.8rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.breadcrumbs {
  padding-top: 1.15rem;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #8fa2be;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #5c7699;
}

.breadcrumbs a {
  color: #a8c5ea;
}

.hero-section {
  padding: clamp(2.8rem, 8vw, 6rem) 0 2.25rem;
}

.hero-shell {
  position: relative;
  border: 1px solid rgba(73, 117, 178, 0.38);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background:
    radial-gradient(circle at 18% 14%, rgba(45, 212, 191, 0.14), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(47, 124, 255, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(11, 21, 36, 0.95), rgba(8, 15, 27, 0.9));
  box-shadow: var(--shadow-soft);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.35;
}

.hero-shell::before {
  top: -46px;
  right: -50px;
  background: rgba(47, 124, 255, 0.46);
}

.hero-shell::after {
  left: -44px;
  bottom: -56px;
  background: rgba(45, 212, 191, 0.38);
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.24fr 0.76fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.78rem;
  color: #9db7da;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.lead {
  max-width: 68ch;
  font-size: clamp(1.02rem, 2.1vw, 1.38rem);
  color: #d3e2f8;
}

.hero-panel {
  border: 1px solid rgba(79, 128, 196, 0.42);
  border-radius: var(--radius);
  padding: 1.2rem;
  background:
    linear-gradient(170deg, rgba(45, 212, 191, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(18, 34, 57, 0.92), rgba(12, 21, 36, 0.95));
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.hero-panel p {
  margin: 0;
  color: #84f0df;
  font-family: "IBM Plex Mono", monospace;
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  letter-spacing: -0.015em;
}

.hero-panel span {
  color: #b2c6df;
}

.hero-panel-list {
  margin-top: 0.4rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.hero-panel-list li {
  color: #cfe0f4;
  font-size: 0.95rem;
}

.hero-metrics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric-pill {
  border-radius: 12px;
  border: 1px solid rgba(75, 118, 179, 0.38);
  background: linear-gradient(180deg, rgba(18, 32, 54, 0.72), rgba(11, 20, 35, 0.74));
  padding: 0.58rem 0.68rem;
  display: grid;
  gap: 0.12rem;
}

.metric-pill strong {
  font-size: 0.88rem;
  color: #dcf4ff;
}

.metric-pill span {
  font-size: 0.79rem;
  color: #9fb5d1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.64rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #032b2a;
  background: linear-gradient(135deg, #3be5d2, #7df6e7);
  box-shadow: 0 14px 28px rgba(45, 212, 191, 0.24);
}

.btn-primary:hover {
  color: #01201d;
  background: linear-gradient(135deg, #57eedc, #9bfff2);
}

.btn-secondary {
  color: #deebff;
  border-color: rgba(91, 141, 206, 0.58);
  background: linear-gradient(180deg, rgba(25, 45, 74, 0.76), rgba(14, 25, 43, 0.8));
}

.btn-secondary:hover {
  color: #fff;
  background: linear-gradient(180deg, rgba(32, 58, 93, 0.84), rgba(18, 33, 56, 0.84));
}

.text-link {
  font-weight: 700;
  color: #96fff1;
}

.section {
  padding: clamp(2rem, 6.1vw, 4.3rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 153, 201, 0.24), transparent);
  opacity: 0.35;
}

.section-accent {
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.66), rgba(8, 14, 25, 0.78));
}

.section > .container > h2 {
  margin-bottom: 1.05rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section > .container > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3de9d6, #3d8eff);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(71, 112, 170, 0.42);
  background:
    linear-gradient(160deg, rgba(45, 212, 191, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(17, 30, 51, 0.84), rgba(10, 19, 33, 0.9));
  padding: 1.18rem;
  box-shadow: inset 0 1px 0 rgba(140, 179, 230, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 154, 228, 0.62);
  box-shadow: var(--shadow-soft);
}

.card p {
  color: #c4d5ec;
}

.service-card h3,
.blog-card h2,
.location-card h3 {
  margin-bottom: 0.6rem;
}

.link-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.link-list li a {
  display: block;
  border: 1px solid rgba(68, 107, 165, 0.38);
  border-radius: 10px;
  padding: 0.52rem 0.7rem;
  color: #d2e6ff;
  background: rgba(12, 22, 38, 0.58);
}

.link-list li a:hover {
  color: #fff;
  border-color: rgba(99, 150, 219, 0.62);
  background: rgba(22, 39, 64, 0.8);
}

.link-list.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.inline-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(71, 113, 172, 0.44);
  background: rgba(11, 20, 34, 0.74);
  color: #cae2ff;
  padding: 0.26rem 0.76rem;
  font-size: 0.9rem;
}

.inline-links a:hover {
  color: #fff;
  border-color: rgba(109, 165, 239, 0.76);
}

.check-list,
.plain-list,
.process-list {
  display: grid;
  gap: 0.48rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.32rem;
  color: #d1e0f5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(150deg, #42ecda, #4f93ff);
}

.plain-list {
  padding-left: 1.2rem;
}

.process-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.process-list li {
  border: 1px solid rgba(72, 113, 172, 0.44);
  border-radius: 12px;
  padding: 0.74rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  background: rgba(11, 20, 35, 0.72);
}

.process-list span {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #9dfff2;
  background: rgba(45, 212, 191, 0.2);
  font-family: "IBM Plex Mono", monospace;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.city-pill {
  min-width: 180px;
  border: 1px solid rgba(71, 113, 172, 0.4);
  border-radius: 12px;
  background: rgba(10, 18, 32, 0.74);
  padding: 0.68rem;
}

.city-pill h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.table-like {
  border-radius: 12px;
  overflow: hidden;
}

.table-like th,
.table-like td {
  text-align: left;
  padding: 0.55rem 0.62rem;
  border-bottom: 1px solid rgba(58, 88, 126, 0.42);
}

.table-like th {
  color: #c7ddff;
  font-weight: 700;
  background: rgba(22, 38, 62, 0.6);
}

.table-like td {
  color: #d5e3f4;
}

.faq-list {
  display: grid;
  gap: 0.74rem;
}

.faq-item {
  border: 1px solid rgba(68, 108, 164, 0.48);
  border-radius: 12px;
  padding: 0.84rem 0.94rem;
  background: rgba(10, 19, 33, 0.76);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #e9f3ff;
}

.faq-item p {
  margin-top: 0.74rem;
  color: #cad9eb;
}

.cta-section {
  border: 1px solid rgba(96, 145, 214, 0.6);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 92% 16%, rgba(47, 124, 255, 0.23), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(45, 212, 191, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(15, 28, 47, 0.9), rgba(10, 18, 32, 0.93));
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta-section h2 {
  margin-bottom: 0.44rem;
}

.cta-section p {
  color: #c8d8ee;
}

.province-details {
  border: 1px solid rgba(71, 113, 172, 0.44);
  border-radius: 12px;
  padding: 0.66rem 0.84rem;
  background: rgba(10, 18, 32, 0.74);
  margin-bottom: 0.7rem;
}

.province-details summary {
  cursor: pointer;
  font-weight: 700;
}

.province-city-list {
  list-style: none;
  margin-top: 0.72rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.province-city-list li {
  border-top: 1px dashed rgba(96, 140, 198, 0.36);
  padding-top: 0.5rem;
}

.province-city-list strong {
  display: block;
}

.province-city-list span a {
  font-size: 0.92rem;
}

.article-hero {
  padding-top: 3rem;
}

.article-content {
  display: grid;
  gap: 1.16rem;
}

.article-content section {
  border-left: 2px solid rgba(79, 120, 176, 0.48);
  padding-left: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #d8e9ff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(77, 120, 182, 0.56);
  padding: 0.62rem 0.74rem;
  color: #f3f8ff;
  background: rgba(10, 18, 32, 0.9);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(61, 233, 214, 0.34);
  border-color: rgba(96, 228, 213, 0.84);
}

.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.contact-form .checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.08rem;
  accent-color: #3ce8d5;
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(108, 147, 193, 0.28);
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.95), rgba(4, 9, 16, 0.98));
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 2rem 0;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.site-footer p,
.site-footer li {
  color: #b4c8e4;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section,
.hero-section {
  animation: rise-in 0.52s ease both;
}

@media (max-width: 1180px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .link-list.columns-2 {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    border-bottom: 1px solid rgba(87, 128, 184, 0.52);
    background: rgba(6, 12, 21, 0.98);
    display: none;
    padding: 0.7rem 4vw 1rem;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .has-dropdown .dropdown-list {
    position: static;
    width: 100%;
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    margin-top: 0.34rem;
    background: rgba(11, 20, 35, 0.82);
    border-color: rgba(76, 118, 176, 0.44);
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .nav-shell {
    min-height: 72px;
  }

  .hero-shell {
    padding: 1rem;
  }

  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .city-pill {
    min-width: 100%;
  }
}