:root {
  --ink: #f7f9fd;
  --muted: #a8b4c8;
  --navy: #07111f;
  --navy-2: #0c1b2e;
  --panel: #101a28;
  --panel-2: #152236;
  --blue: #0c7cff;
  --blue-2: #42a6ff;
  --silver: #d7dbe2;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: linear-gradient(90deg, rgba(3, 8, 16, 0.96), rgba(7, 17, 31, 0.9));
  border-color: var(--line);
  backdrop-filter: blur(18px);
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand img {
  width: 320px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 18px rgba(12, 124, 255, 0.22));
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: #dfe7f4;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.84;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--blue-2);
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #055ed6);
  color: white;
  box-shadow: 0 12px 32px rgba(12, 124, 255, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  color: white;
}

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

.btn-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
}

.btn-icon-down::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.btn-icon-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn-icon-star::before,
.stars span::before {
  content: "*";
  font-weight: 900;
  line-height: 1;
}

.btn-icon-phone::before {
  content: "";
  width: 8px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: rotate(-24deg);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.section-dark,
.section-panel {
  position: relative;
  overflow: hidden;
}

.section-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #f5f7fb 0%, #dfe5ef 100%);
  color: #0a1421;
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 22% 10%, rgba(12, 124, 255, 0.18), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, #050a12 100%);
  padding: clamp(76px, 10vw, 128px) 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 178px 0 96px;
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.12);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.92), rgba(3, 7, 13, 0.66) 48%, rgba(3, 7, 13, 0.84)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(950px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 710px;
  margin: 24px 0 0;
  color: #d2dbe9;
  font-size: clamp(1rem, 2vw, 1.24rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-strip span {
  min-height: 68px;
  display: grid;
  align-items: center;
  padding: 16px;
  background: rgba(7, 17, 31, 0.72);
  color: #eef4ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-2);
  transform: translateX(-50%);
  animation: cue 1.6s infinite;
}

@keyframes cue {
  0%,
  100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

.split,
.estimate-layout,
.contact-layout,
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: #4a5668;
  font-size: 1.02rem;
}

.section-dark .section-copy p:not(.eyebrow),
.section-dark .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-main {
  width: 78%;
  height: 620px;
  margin-left: auto;
}

.image-inset {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 43%;
  aspect-ratio: 0.72;
}

.metric-card {
  position: absolute;
  left: 22%;
  bottom: 0;
  width: min(320px, 62%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.9);
  color: white;
  box-shadow: var(--shadow);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card span {
  color: #c4cfdf;
  font-size: 0.92rem;
}

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

.service-card,
.compare-card,
.review-card,
.contact-card,
.estimate-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 226px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.compare-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 166, 255, 0.5);
}

.service-card p,
.compare-card p,
.review-card p,
.step p {
  color: var(--muted);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(66, 166, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(12, 124, 255, 0.12);
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: auto;
}

.service-card-wide p {
  margin: 0;
}

.service-card-wide a {
  color: var(--blue-2);
  font-weight: 900;
}

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

.why-item {
  min-height: 148px;
  padding: 24px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 38px rgba(17, 30, 48, 0.1);
}

.why-item strong,
.why-item span {
  display: block;
}

.why-item span {
  margin-top: 8px;
  color: #5c6878;
}

.why-closing {
  max-width: 900px;
  margin: 28px 0 0;
  color: #344153;
  font-size: 1.08rem;
  font-weight: 800;
}

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

.compare-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.compare-card h3,
.compare-card p {
  padding: 0 22px;
}

.compare-card p {
  padding-bottom: 22px;
}

.compare-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 310px;
}

.compare-images img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card {
  position: relative;
}

.media-card video {
  height: 310px;
}

.media-play {
  position: absolute;
  top: 132px;
  left: 50%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(12, 124, 255, 0.88);
  color: white;
  font-weight: 900;
  transform: translateX(-50%);
  cursor: pointer;
}

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

.step {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 30, 48, 0.1);
}

.step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.step p {
  color: #5c6878;
}

.video-showcase video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050a12;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.video-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.video-thumbs button {
  flex: 1;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.video-thumbs button.is-active {
  background: var(--blue-2);
}

.process-reel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.process-reel video {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050a12;
  object-fit: cover;
}

.review-card {
  padding: 28px;
  color: white;
}

.reviews {
  background:
    radial-gradient(circle at 12% 12%, rgba(12, 124, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0d1b2d 48%, #050a12 100%);
  color: white;
}

.reviews .section-heading h2 {
  color: white;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.reviews .eyebrow {
  color: #76bdff;
}

.reviews .review-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(18, 33, 53, 0.98), rgba(8, 18, 32, 0.98));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.reviews .review-card p {
  color: #e4ebf7;
}

.reviews .review-card strong {
  color: white;
}

.reviews .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.stars {
  display: flex;
  gap: 5px;
  color: #f8c24e;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.stars span {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(248, 194, 78, 0.14);
  color: #f8c24e;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.estimate-layout {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-stack a,
.footer-contact a,
.contact-card a {
  color: var(--blue-2);
  font-weight: 800;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.phone-icon {
  transform: rotate(-22deg);
}

.phone-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.phone-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 5px;
  height: 6px;
  border-radius: 4px;
  background: currentColor;
  box-shadow: 7px 13px 0 currentColor;
}

.email-icon::before {
  content: "";
  position: absolute;
  inset: 3px 1px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.email-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 14px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.website-icon {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.website-icon::before,
.website-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.website-icon::before {
  inset: 3px 6px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
}

.website-icon::after {
  left: 2px;
  right: 2px;
  top: 9px;
  border-top: 2px solid currentColor;
}

.instagram-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.floating-call {
  position: fixed;
  z-index: 60;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #055ed6);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(12, 124, 255, 0.36), 0 14px 34px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(12, 124, 255, 0.42), 0 16px 38px rgba(0, 0, 0, 0.48);
}

.estimate-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.estimate-form label {
  display: grid;
  gap: 8px;
  color: #e7edf7;
  font-weight: 800;
  font-size: 0.9rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 10, 18, 0.72);
  color: white;
  padding: 13px 14px;
  outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--blue-2);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--blue-2);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  color: #0a1421;
}

.contact-card .btn-secondary {
  color: #0a1421;
  border-color: rgba(8, 20, 34, 0.16);
  background: #eef3fa;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #03070d;
  color: #cbd6e6;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer img {
  width: 280px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 12, 22, 0.98);
  }

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

  .nav a {
    padding: 13px 10px;
  }

  .trust-strip,
  .service-grid,
  .why-grid,
  .gallery-grid,
  .review-grid,
  .process-reel,
  .steps,
  .split,
  .estimate-layout,
  .contact-layout,
  .video-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    width: 100%;
    height: auto;
    aspect-ratio: 0.72;
  }

  .image-inset,
  .metric-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 168px;
  }

  .brand img {
    width: 220px;
    height: 92px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-call {
    left: 16px;
    right: 16px;
    justify-content: center;
  }

  .trust-strip span {
    min-height: 58px;
  }

  .estimate-form {
    grid-template-columns: 1fr;
  }

  .estimate-form .full {
    grid-column: auto;
  }
}
