:root {
  --bg: #05070d;
  --bg-soft: #0a111b;
  --surface: #0d1622;
  --surface-2: #121e2f;
  --ink: #e9f3ff;
  --muted: #9ab0c7;
  --line: #22354d;
  --brand: #1de6b1;
  --brand-2: #6cf2ff;
  --alert: #9dff8f;
  --radius: 16px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(29, 230, 177, 0.08), transparent 42%),
    linear-gradient(210deg, rgba(108, 242, 255, 0.06), transparent 36%),
    repeating-linear-gradient(
      to right,
      rgba(89, 119, 158, 0.08) 0,
      rgba(89, 119, 158, 0.08) 1px,
      transparent 1px,
      transparent 74px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(89, 119, 158, 0.05) 0,
      rgba(89, 119, 158, 0.05) 1px,
      transparent 1px,
      transparent 74px
    ),
    var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  inset: -20rem;
  background:
    radial-gradient(circle at 84% 12%, rgba(29, 230, 177, 0.17), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(108, 242, 255, 0.14), transparent 40%);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: static;
  z-index: 20;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(5, 7, 13, 0.92);
  border: 0;
  border-bottom: 1px solid #22354d;
  border-radius: 0;
  backdrop-filter: blur(4px);
  box-shadow: none;
}

.brand img {
  display: block;
}

.brand-wordmark {
  width: 128px;
  height: auto;
}

.site-header nav {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  font-weight: 500;
}

.site-header nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(10, 22, 37, 0.85);
}

.menu-toggle {
  display: none;
  border: 1px solid #2a4562;
  background: rgba(9, 18, 31, 0.9);
  color: #d6ebff;
  border-radius: 8px;
  padding: 0.48rem 0.75rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle:hover {
  background: rgba(12, 25, 41, 0.95);
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background 180ms ease;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button-link {
  background: transparent;
  color: inherit;
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.hero {
  margin-top: 1.6rem;
  padding: 0.4rem 0 1.2rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #23374f;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-2);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.3vw, 3.2rem);
  max-width: 18ch;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.button {
  text-decoration: none;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(120deg, #0f7d65, #11ad83);
  color: #e8fff8;
  box-shadow: 0 8px 22px rgba(6, 63, 50, 0.45);
}

.button-secondary {
  border-color: #31506f;
  color: var(--ink);
  background: rgba(11, 21, 34, 0.92);
}

.hero-visual {
  background: transparent;
  border: 0;
  border-left: 1px solid #23374f;
  border-radius: 0;
  padding: 0 0 0 1rem;
}

.ops-image {
  margin-top: 0.2rem;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2b425c;
  filter: grayscale(25%) contrast(108%) saturate(88%);
}

.hero-focus {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #24384f;
}

.hero-focus-title {
  margin: 0 0 0.45rem;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7fdff3;
}

.hero-focus ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.3rem;
}

.hero-focus .button {
  margin-top: 0.75rem;
}

.section {
  margin-top: 1.4rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid #23374f;
  border-radius: 0;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.section h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.section > p {
  max-width: 72ch;
}

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

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

.cards article,
.steps article {
  padding: 0.65rem 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #24384f;
  background: transparent;
}

.cards article {
  padding-bottom: 0.9rem;
}

.service-photo {
  width: 100%;
  height: 124px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  border: 1px solid #2a4562;
  filter: saturate(88%) contrast(104%) brightness(0.9);
}

.service-photo-wifi {
  object-position: center 45%;
}

.cards h3,
.steps h3 {
  font-size: 1.06rem;
}

.cards h3 {
  margin-top: 0.55rem;
}

.cards p,
.steps p,
.section p {
  color: var(--muted);
  margin-bottom: 0;
}

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

#faq article {
  padding: 0.7rem 0;
  border-bottom: 1px solid #24384f;
}

#faq article:last-child {
  border-bottom: 0;
}

#faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.03rem;
}

.steps span {
  display: inline-block;
  font-family: "JetBrains Mono", "Consolas", monospace;
  color: #7ce8ff;
  font-size: 0.83rem;
  padding: 0;
  border-radius: 0;
  border: 0;
  margin-bottom: 0.35rem;
}

.contact {
  text-align: left;
}

.contact-form {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: #dcefff;
  font-size: 0.91rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #2d4967;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  font: inherit;
  color: #e5f2ff;
  background: #081321;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7798b9;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: #86a4c4;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 0.9rem 0.7rem 1.05rem;
  border-top: 1px solid #22354d;
  background: rgba(6, 10, 18, 0.9);
  color: #8ca8c7;
}

.site-footer__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand {
  font-size: 0.9rem;
  color: #8ca8c7;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-footer a,
.footer-button {
  color: #b8d0e7;
}

.footer-button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(440px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid #2b4562;
  border-radius: 10px;
  background: rgba(8, 19, 33, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  z-index: 40;
}

.consent-banner__title {
  margin: 0 0 0.3rem;
  font-weight: 700;
  color: #e7f3ff;
}

.consent-banner__content p:last-child {
  margin-bottom: 0;
}

.consent-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.thank-you-page {
  min-height: 100dvh;
}

.thank-you-main {
  min-height: calc(100dvh - 9.5rem);
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.thank-you-content h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.15rem);
  color: #ffffff;
}

.thank-you-text {
  margin: 0;
  max-width: 480px;
  color: #a0b8b0;
}

.thank-you-page .site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.5s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.14s;
}

.reveal:nth-child(4) {
  animation-delay: 0.2s;
}

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

@media (max-width: 940px) {
  main {
    padding: 1.35rem 1rem 3rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-visual {
    border-left: 0;
    border-top: 1px solid #23374f;
    padding: 0.9rem 0 0;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 0.58rem 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 34px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-top: 0.45rem;
    padding: 0.5rem;
    border: 1px solid #2a4562;
    border-radius: 10px;
    background: rgba(8, 14, 24, 0.97);
    box-shadow: var(--shadow);
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    width: 100%;
    text-align: left;
    border: 1px solid #2a4562;
    background: rgba(9, 18, 31, 0.92);
    color: #bfd0e3;
  }

}

@media (max-width: 700px) {
  main {
    padding: 1rem 0.8rem 2.5rem;
  }

  .site-header {
    padding: 0.52rem 0.65rem;
  }

  .menu-toggle {
    width: 36px;
    height: 32px;
    border-color: #355779;
    color: #c8dcf2;
    background: rgba(10, 18, 31, 0.94);
  }

  .site-header nav {
    right: 0.65rem;
    left: 0.65rem;
  }

  .cards,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0 0 1rem;
    margin-top: 1rem;
    gap: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.4vw, 2.2rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .section {
    padding: 1rem 0 0;
  }

  .section > p {
    max-width: none;
  }

  .ops-image {
    height: 200px;
  }

  .service-photo {
    height: 140px;
  }

  .hero-actions .button,
  .contact-form button,
  .consent-banner__actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .consent-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .thank-you-page .site-footer {
    padding: 0.85rem 0.8rem;
  }

  .site-footer__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer__links {
    justify-content: center;
  }
}
