:root {
  --bg: #0d0d10;
  --bg-soft: #141419;
  --card: rgba(255,255,255,0.05);
  --card-strong: rgba(255,255,255,0.07);
  --text: #f4f7fb;
  --muted: #aeb6c4;
  --line: rgba(255,255,255,0.11);
  --blue: #0088d2;
  --red: #be0a16;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(0,0,0,0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0,136,210,0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(190,10,22,0.14), transparent 22%),
    linear-gradient(180deg, #0a0b0f 0%, #0d0d10 45%, #111218 100%);
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(11, 12, 15, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 176px;
  flex: 0 0 auto;
}

.brand img,
.footer-logo {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 12px;
  flex: 1 1 auto;
  margin-left: auto;
}

.nav a {
  color: rgba(255,255,255,0.84);
  font-size: 0.95rem;
}

.nav > a,
.nav-item > a {
  padding: 10px 14px;
  border-radius: 999px;
  line-height: 1.1;
  white-space: nowrap;
}

.nav > a:not(.btn):hover,
.nav-item > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav .btn {
  margin-left: 4px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0aa7ff 58%, #5bc6ff);
  box-shadow: 0 16px 38px rgba(0,136,210,0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(190,10,22,0.82), rgba(190,10,22,0.52));
  box-shadow: 0 16px 38px rgba(190,10,22,0.18);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.btn-inline {
  width: fit-content;
}

.hero {
  position: relative;
  padding: 86px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #d7e3f0;
  background: rgba(255,255,255,0.03);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.section-heading h2 {
  margin: 18px 0 16px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #8bd9ff 28%, #ffffff 55%, #ff8793 82%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section-heading p,
.info-card p,
.feature-card p,
.step p,
.location-card p,
.contact-copy p,
.footer p,
.form-header p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 62ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.badges span,
.zones-tags span,
.service-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #d8e2ef;
  font-size: 0.93rem;
}

.hero-card {
  position: relative;
}

.glass-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.28;
}

.glow-blue {
  top: -60px;
  left: -60px;
  background: radial-gradient(circle, var(--blue), transparent 72%);
}

.glow-red {
  right: -70px;
  bottom: -80px;
  background: radial-gradient(circle, var(--red), transparent 72%);
}

.mini-label {
  position: relative;
  display: inline-flex;
  margin-bottom: 18px;
  color: #c7d5e3;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  position: relative;
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.14;
}

.service-pills,
.badges,
.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.hero-metrics article,
.contact-card,
.feature-card,
.info-card,
.step,
.location-card,
.contact-form {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.hero-metrics article {
  padding: 18px;
  border-radius: 18px;
}

.hero-metrics strong,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hero-metrics span,
.contact-card span,
.secondary-contacts,
.secondary-contacts a {
  color: #d8e0eb;
  font-size: 0.94rem;
}

.logo-band {
  padding: 24px 0 10px;
}

.logo-band-inner {
  display: grid;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}

.logo-band p {
  margin: 0;
  color: #dce4ee;
  font-weight: 500;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section-heading {
  max-width: 750px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.feature-card,
.location-card,
.step {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.feature-card h3,
.step h3,
.location-card h3,
.contact-form h3,
.footer h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-blue {
  color: #62d0ff;
}

.icon-red {
  color: #ff7a85;
}

.split-layout,
.zones-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.split-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.stack-cards {
  display: grid;
  gap: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e7edf5;
}

.check-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0,136,210,0.9), rgba(190,10,22,0.9));
}

.zones-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.contact-grid {
  grid-template-columns: 1fr 0.98fr;
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 20px;
}

.contact-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
}

.contact-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.secondary-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.form-header {
  margin-bottom: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-form span {
  color: #e9eef6;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(98,208,255,0.5);
  box-shadow: 0 0 0 4px rgba(0,136,210,0.12);
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.18);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.footer h3 {
  margin-top: 10px;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #d7dfeb;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  margin: 0;
  color: #98a4b7;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #0abf61, #0d8c49);
  box-shadow: 0 20px 35px rgba(10,191,97,0.28);
}

.floating-cta svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1180px) {
  .nav-wrap {
    gap: 14px;
  }

  .brand {
    width: 162px;
  }

  .nav {
    gap: 8px 8px;
  }

  .nav a {
    font-size: 0.91rem;
  }

  .nav > a,
  .nav-item > a {
    padding: 9px 12px;
  }

  .btn-small {
    min-height: 40px;
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .zones-grid,
  .contact-grid,
  .footer-grid,
  .timeline,
  .services-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

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

@media (max-width: 920px) {
  .topbar {
    position: sticky;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(12, 12, 16, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    display: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.is-open .dropdown-menu,
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .split-layout,
  .zones-grid,
  .contact-grid,
  .footer-grid,
  .timeline,
  .services-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .glass-card,
  .contact-form,
  .info-card,
  .feature-card,
  .step,
  .location-card {
    padding: 24px;
  }

  .brand {
    width: 160px;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
  }
}


.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item.has-dropdown > a::after {
  content: "▾";
  font-size: 0.8rem;
  opacity: 0.85;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 270px;
  display: none;
  gap: 4px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 12, 16, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: #8bd9ff;
  font-weight: 600;
}

.card-link:hover {
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.service-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 90px 0;
}

.service-hero {
  max-width: 860px;
  padding: 42px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.service-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-hero p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.construction-badge {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(190,10,22,0.92), rgba(0,136,210,0.78));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
