:root {
  --bg: #050608;
  --black: #050608;
  --panel: #0c1015;
  --panel2: #121820;
  --text: #f6f9fb;
  --muted: #a6b2bd;
  --teal: #16d7dc;
  --teal2: #00aeb6;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: #f7fafb;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
.section-title h2,
.pricing-top h2 {
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-weight: 600;
}

/* ----- Full-bleed hero background ----- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0c10;
  background-image: url("assets/photos/hero-background.jpg?v=10");
  background-size: cover;
  background-position: 58% center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.82) 38%, rgba(5, 6, 8, 0.45) 62%, rgba(5, 6, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.35) 0%, transparent 28%, rgba(5, 6, 8, 0.55) 100%);
}

/* Side treatments feather smoothly toward center (bridges video letterboxing) */
.bg-sides {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 130% at -8% 48%, rgba(22, 215, 220, 0.13), transparent 74%),
    radial-gradient(ellipse 90% 130% at 108% 52%, rgba(0, 174, 182, 0.11), transparent 74%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(22, 215, 220, 0.055), transparent 65%),
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(22, 215, 220, 0.045), transparent 65%),
    linear-gradient(
      90deg,
      #ffffff 0%,
      #fafcfd 6%,
      #f4f9fb min(14vw, 170px),
      #eaf4f6 min(22vw, 260px),
      rgba(228, 241, 244, 0.55) min(30vw, 360px),
      rgba(220, 235, 238, 0.18) min(40vw, 480px),
      transparent 50%,
      rgba(220, 235, 238, 0.18) calc(100% - min(40vw, 480px)),
      rgba(228, 241, 244, 0.55) calc(100% - min(30vw, 360px)),
      #eaf4f6 calc(100% - min(22vw, 260px)),
      #f4f9fb calc(100% - min(14vw, 170px)),
      #fafcfd calc(100% - 6%),
      #ffffff 100%
    ),
    repeating-linear-gradient(
      118deg,
      rgba(22, 215, 220, 0.028) 0 1px,
      transparent 1px 72px
    );
  animation: sidePulse 14s ease-in-out infinite alternate;
}

@keyframes sidePulse {
  0% {
    opacity: 0.92;
  }
  100% {
    opacity: 1;
  }
}

/* Dark wash mostly center — wide feather into white edges */
.site-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 85% 100% at 50% 50%,
    rgba(5, 6, 8, 0.88) 0%,
    rgba(5, 6, 8, 0.78) 42%,
    rgba(5, 6, 8, 0.72) 100%
  );
  opacity: 0.4;
  transform-origin: center center;
  animation: bgDrift 24s ease-in-out infinite alternate;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.07) max(3vw, 18px),
    rgba(0, 0, 0, 0.28) min(14vw, 130px),
    rgba(0, 0, 0, 0.62) min(24vw, 240px),
    rgba(0, 0, 0, 0.92) min(34vw, 380px),
    black min(42vw, 520px),
    black calc(100% - min(42vw, 520px)),
    rgba(0, 0, 0, 0.92) calc(100% - min(34vw, 380px)),
    rgba(0, 0, 0, 0.62) calc(100% - min(24vw, 240px)),
    rgba(0, 0, 0, 0.28) calc(100% - min(14vw, 130px)),
    rgba(0, 0, 0, 0.07) calc(100% - max(3vw, 18px)),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.07) max(3vw, 18px),
    rgba(0, 0, 0, 0.28) min(14vw, 130px),
    rgba(0, 0, 0, 0.62) min(24vw, 240px),
    rgba(0, 0, 0, 0.92) min(34vw, 380px),
    black min(42vw, 520px),
    black calc(100% - min(42vw, 520px)),
    rgba(0, 0, 0, 0.92) calc(100% - min(34vw, 380px)),
    rgba(0, 0, 0, 0.62) calc(100% - min(24vw, 240px)),
    rgba(0, 0, 0, 0.28) calc(100% - min(14vw, 130px)),
    rgba(0, 0, 0, 0.07) calc(100% - max(3vw, 18px)),
    transparent 100%
  );
}

/* Teal glow + scan lines — strongest over the center band */
.site-accent {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(22, 215, 220, 0.2), transparent 24%),
    radial-gradient(circle at 82% 34%, rgba(22, 215, 220, 0.13), transparent 22%),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 38%,
      rgba(22, 215, 220, 0.1) 46%,
      transparent 54%,
      transparent 100%
    ),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 86px);
  animation: glowSweep 8s linear infinite;
  mix-blend-mode: screen;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) min(10vw, 88px),
    rgba(0, 0, 0, 0.45) min(20vw, 200px),
    rgba(0, 0, 0, 0.82) min(30vw, 320px),
    black min(38vw, 440px),
    black calc(100% - min(38vw, 440px)),
    rgba(0, 0, 0, 0.82) calc(100% - min(30vw, 320px)),
    rgba(0, 0, 0, 0.45) calc(100% - min(20vw, 200px)),
    rgba(0, 0, 0, 0.12) calc(100% - min(10vw, 88px)),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) min(10vw, 88px),
    rgba(0, 0, 0, 0.45) min(20vw, 200px),
    rgba(0, 0, 0, 0.82) min(30vw, 320px),
    black min(38vw, 440px),
    black calc(100% - min(38vw, 440px)),
    rgba(0, 0, 0, 0.82) calc(100% - min(30vw, 320px)),
    rgba(0, 0, 0, 0.45) calc(100% - min(20vw, 200px)),
    rgba(0, 0, 0, 0.12) calc(100% - min(10vw, 88px)),
    transparent 100%
  );
}

@keyframes bgDrift {
  0% {
    transform: scale(1.06) translate3d(-16px, -8px, 0);
  }
  50% {
    transform: scale(1.1) translate3d(14px, 8px, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-8px, 14px, 0);
  }
}

@keyframes glowSweep {
  0% {
    background-position: 0 0, 0 0, -80vw 0, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 80vw 0, 120px 0;
  }
}

.page {
  position: relative;
  z-index: 4;
  overflow-x: clip;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 30px));
  margin-left: auto;
  margin-right: auto;
}

/* Below hero: edge-to-edge layout (only small side padding), centered blocks */
main > section:not(.hero) .container,
main > div .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

footer > .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

main > section:not(.hero) .section-title {
  text-align: center;
}

main > section:not(.hero) .section-title p {
  margin-left: auto;
  margin-right: auto;
}

main > section:not(.hero) .split .copy {
  text-align: center;
}

main > section:not(.hero) .split .copy .btn {
  margin-left: auto;
  margin-right: auto;
}

main > section#pricing .pricing-top {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

main > section#pricing .deal-callout {
  text-align: center;
}

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

.top-strip {
  background: #020304;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  color: #d2f7f8;
}

.top-strip .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-strip-short {
  display: none;
}

.top-strip-phone {
  flex-shrink: 0;
  white-space: nowrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 5, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: env(safe-area-inset-top, 0);
}

.nav-mobile {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-call {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--teal);
  color: #031315;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--teal);
  white-space: nowrap;
}

.brand picture {
  display: block;
  line-height: 0;
}

.hero-logo-wrap {
  display: block;
  margin-bottom: 14px;
}

.hero-logo-wrap.is-hidden {
  display: none;
}

.hero-logo {
  width: min(108px, 30vw);
  height: auto;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.45));
}

.section-logo {
  display: block;
  width: 56px;
  margin-bottom: 12px;
}

.section-logo.center-logo {
  margin-left: auto;
  margin-right: auto;
}

main > section#pricing .section-logo {
  margin-left: auto;
  margin-right: auto;
}

.step-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.step .num,
.step h3,
.step p {
  padding-left: 20px;
  padding-right: 20px;
}

.step .num {
  padding-top: 16px;
}

.step p {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 15px 16px;
  background: rgba(4, 5, 7, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a {
  color: #dfe7eb;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a.btn {
  margin-top: 12px;
  justify-content: center;
  border-top: none;
}

.mobile-drawer[hidden] {
  display: none !important;
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.brand-logo {
  width: 74px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(22, 215, 220, 0.5));
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.links {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.links a {
  color: #dfe7eb;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.links a:hover {
  color: #041013;
  background: var(--teal);
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
  font-weight: 900;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.btn.primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #031315;
  box-shadow: 0 0 28px rgba(22, 215, 220, 0.22);
}

.btn.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 78vh, 860px);
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(48px, 8vh, 88px) 0 clamp(72px, 10vh, 100px);
}

.hero-content {
  max-width: 620px;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  color: var(--teal);
  border: 1px solid rgba(22, 215, 220, 0.45);
  background: rgba(22, 215, 220, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 6.5vw, 3.75rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
}

.hero-lede {
  color: rgba(246, 249, 251, 0.9);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 22px;
}

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

.hero-features li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8eef2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-rating {
  margin: 0;
  color: rgba(246, 249, 251, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 50px;
    gap: 8px;
    padding: 6px 0;
  }

  .nav-mobile {
    display: flex;
    gap: 6px;
  }

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

  .nav-call-text {
    display: none;
  }

  .nav-call-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .nav-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    gap: 4px;
  }

  .nav-toggle span {
    width: 17px;
  }

  .mobile-drawer:not([hidden]) {
    display: flex;
  }

  .mobile-drawer a {
    padding: 12px 0;
    font-size: 0.85rem;
  }

  .brand-logo {
    width: 50px;
    height: auto;
    max-height: 40px;
  }

  .hero {
    min-height: clamp(420px, 72svh, 680px);
  }

  .hero-inner {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo-wrap {
    text-align: center;
  }

  .hero-bg-img {
    object-position: 62% 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.88) 0%, rgba(5, 6, 8, 0.78) 55%, rgba(5, 6, 8, 0.72) 100%);
  }

  .hero-content {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }
}

.service-tabs {
  margin-top: -28px;
  position: relative;
  z-index: 4;
  padding-bottom: 8px;
}

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

.tab {
  background: var(--teal);
  color: #031315;
  text-align: left;
  padding: 18px 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: var(--shadow);
  border-radius: 3px;
}

section {
  padding: 58px 0;
}

.section-title {
  margin-bottom: 24px;
}

.section-title.center {
  text-align: center;
}

.section-title .mini {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 780px;
}

.section-title.center p {
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.copy p {
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 16px;
}

.photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: #111;
  min-height: 0;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 215, 220, 0.12), transparent 38%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.photo:hover img {
  transform: scale(1.08);
}

.faq-grid .photo img {
  min-height: 280px;
}

.steps {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.step {
  background: rgba(15, 21, 27, 0.88);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.step .num {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

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

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.9) 100%);
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px 20px;
}

.service-content span {
  color: var(--teal);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.service-content h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.service-content p {
  color: #d5dee5;
  line-height: 1.62;
  margin: 0;
}

.pricing {
  background: #0d1218;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-top {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

.pricing-top h2 {
  margin-bottom: 6px;
  text-transform: uppercase;
}

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

.price-badge {
  background: var(--teal);
  color: #031315;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 3px;
  height: fit-content;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: #080c10;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
}

td:first-child,
th:first-child {
  text-align: left;
  font-weight: 900;
}

.deal {
  color: var(--teal);
  font-weight: 900;
}

.deal-callout {
  margin: 18px 24px 24px;
  padding: 16px 18px;
  background: rgba(22, 215, 220, 0.1);
  border: 1px solid rgba(22, 215, 220, 0.28);
  color: #d9feff;
  line-height: 1.65;
  font-weight: 700;
}

.deal-callout strong {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.city {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 5px;
}

.city img {
  width: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.city span {
  display: block;
  padding: 13px;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.faq-grid > div:first-child {
  min-width: 0;
}

.faq-list {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: none;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--teal);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "–";
}

.answer {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.booking {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.booking .section-title p a {
  color: inherit;
  font-weight: 900;
}

.form-card {
  max-width: 850px;
  margin: 0;
  background: #f7f7f7;
  color: #14181c;
  padding: 26px;
  box-shadow: var(--shadow);
  border-radius: 4px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.form-card label {
  font-weight: 800;
  font-size: 0.86rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd4d9;
  border-radius: 2px;
  font: inherit;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-actions .btn.primary {
  color: #031315;
}

footer {
  padding: 44px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(3, 4, 6, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-grid a {
  color: var(--teal);
}

.footer-grid ul {
  margin: 0;
  padding-left: 18px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .bg-sides,
  .site-overlay,
  .site-accent,
  .hero-media::before,
  .hero-media::after {
    animation: none;
  }

  .site-overlay {
    transform: none;
  }

  .hero-media::before {
    transform: none;
  }

  .photo:hover img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid,
  .city-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .table-wrap {
    overflow-x: visible;
  }

  .table-wrap table {
    min-width: 0;
    border: 0;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
  }

  .table-wrap td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .table-wrap td::before {
    content: attr(data-label);
    font-weight: 900;
    color: var(--teal);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-align: left;
    flex: 1;
  }

  .table-wrap td:first-child {
    display: block;
    text-align: center;
    font-size: 1rem;
    background: #080c10;
    border-bottom: 1px solid var(--line);
  }

  .table-wrap td:first-child::before {
    display: none;
  }

  .table-wrap td:last-child {
    border-bottom: none;
  }
}

@media (max-width: 700px) {
  .brand-text {
    display: none;
  }

  header {
    background: rgba(4, 5, 7, 0.94);
  }

  .hero {
    min-height: clamp(380px, 68svh, 620px);
  }

  .hero-inner {
    padding-top: 16px;
    padding-bottom: 48px;
  }

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

  .hero-features li {
    font-size: 0.76rem;
    padding: 6px 10px;
  }

  .eyebrow {
    font-size: 0.68rem;
    padding: 6px 11px;
    margin-bottom: 12px;
  }

  .service-tabs {
    margin-top: 0;
  }

  .tab-grid,
  .services-grid,
  .steps-grid,
  .city-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .pricing-top .price-badge {
    width: 100%;
    text-align: center;
  }

  .deal-callout {
    margin: 18px 16px 20px;
    font-size: 0.92rem;
  }

  .hero-buttons .btn,
  .booking-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-call {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .form-actions .btn {
    width: auto;
  }

  footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0));
  }

  .booking-cta {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}


/* Keep hero copy on the side without affecting other sections */
.links {
  justify-content: center;
}

.btn {
  justify-content: center;
}

.tab {
  text-align: center;
}

.section-title.center {
  text-align: center;
}

.step {
  text-align: center;
}

th,
td {
  text-align: center;
}

.city span {
  text-align: center;
}


