* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #020409;
  color: white;
  overflow-x: hidden;
  min-width: 320px;
}

.hero {
  min-height: 96vh;
  min-height: 96svh;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.44), rgba(0,0,0,.78)),
    url("elite-cover.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

nav {
  position: relative;
  z-index: 5;
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  color: white;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1.6px;
  font-size: 20px;
}

.logo span {
  color: #168cff;
}

.nav-text {
  color: #cbd5e1;
  margin-right: 18px;
  text-decoration: none;
  font-weight: 800;
}

.nav-btn {
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid rgba(22, 140, 255, .78);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(22,140,255,.35);
}

.hero-overlay {
  min-height: calc(96vh - 76px);
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.hero-content {
  max-width: 780px;
  margin-top: 32px;
  padding-bottom: 90px;
}

.eyebrow {
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(50px, 7.5vw, 96px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 26px;
  text-shadow: 0 0 30px rgba(0,0,0,.9);
}

h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero-content p,
.section-text,
.split p,
.quote-copy p,
.proof-copy p,
.steps p {
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.7;
}

.buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn,
button {
  padding: 17px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  font-weight: 950;
  cursor: pointer;
  transition: .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
}

.primary,
button {
  color: white;
  background: linear-gradient(135deg, #00c8ff, #0057ff);
  box-shadow: 0 18px 45px rgba(0,102,255,.45);
}

.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  color: #e5f4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
}

.elite-bar {
  width: 88%;
  margin: -54px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0,110,255,.78);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 45px rgba(0,102,255,.25);
}

.elite-bar div {
  padding: 22px;
  border-right: 1px solid rgba(0,110,255,.35);
}

.elite-bar div:last-child {
  border-right: none;
}

.elite-bar strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.elite-bar span {
  color: #9ca3af;
  font-size: 13px;
  text-transform: uppercase;
}

.section,
.split,
.quote,
.closing,
.proof-section,
.gallery-proof,
.process,
.services,
.media-results,
.reviews,
.service-area,
.faq,
.site-footer {
  padding: 105px 6%;
}

.section {
  background:
    radial-gradient(circle at right, rgba(0,102,255,.18), transparent 35%),
    #020409;
}

.section-text {
  max-width: 940px;
}

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 310px;
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0a1020, #030712);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.card.blue {
  border-color: #168cff;
  box-shadow: 0 0 55px rgba(0,102,255,.18);
}

.card p {
  color: #38bdf8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.card span {
  display: block;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 28px;
}

.card strong {
  color: white;
  font-size: 24px;
}

.services,
.faq {
  background:
    radial-gradient(circle at left, rgba(56,189,248,.14), transparent 32%),
    #050915;
}

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

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

.service-grid article,
.faq-grid article {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,255,255,.045);
}

.service-grid h3,
.faq-grid h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-grid p,
.faq-grid p,
.site-footer span {
  color: #cbd5e1;
  line-height: 1.65;
}

.media-results {
  background:
    radial-gradient(circle at 12% 20%, rgba(22,140,255,.16), transparent 34%),
    #020409;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15,23,42,.94), rgba(2,6,23,.96));
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22,140,255,.58);
  box-shadow: 0 36px 90px rgba(0,102,255,.16);
}

.media-card.featured {
  grid-column: span 2;
}

.media-card video,
.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #020409;
}

.media-video {
  position: relative;
  overflow: hidden;
  background: #020409;
}

.media-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.2)),
    radial-gradient(circle at center, rgba(0,0,0,.08), transparent 34%);
}

.media-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background:
    linear-gradient(135deg, rgba(0,200,255,.9), rgba(0,87,255,.9));
  box-shadow: 0 18px 46px rgba(0,0,0,.42);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.video-card:hover .media-video::after {
  transform: translate(-50%, -50%) scale(1.06);
}

.media-video.is-playing::before,
.media-video.is-playing::after {
  opacity: 0;
}

.media-video video {
  position: relative;
  z-index: 0;
}

.media-video span {
  position: absolute;
  left: calc(50% + 2px);
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid white;
  transform: translate(-35%, -50%);
  pointer-events: none;
  transition: opacity .2s;
}

.media-video.is-playing span {
  opacity: 0;
}

.media-card video {
  cursor: pointer;
}

.media-card figcaption {
  padding: 24px;
}

.media-service {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: #38bdf8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.media-card h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.media-card p {
  color: #cbd5e1;
  line-height: 1.62;
}

.media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.media-footer a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.media-cta {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid rgba(22,140,255,.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0,200,255,.12), rgba(0,87,255,.08)),
    rgba(255,255,255,.045);
  text-align: center;
}

.media-cta h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.proof-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: start;
  background: #050915;
}

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

.benefits div,
.steps div {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255,255,255,.045);
}

.benefits strong,
.steps strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.benefits span {
  color: #cbd5e1;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.95)),
    url("elite-cover.png");
  background-size: cover;
  background-position: center;
}

.feature-box {
  border: 1px solid rgba(22,140,255,.45);
  background: rgba(0,0,0,.7);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 0 55px rgba(0,102,255,.18);
}

.feature-box ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.feature-box li {
  font-size: 18px;
  color: #dbeafe;
  line-height: 1.45;
}

.feature-box li::before {
  content: "◆";
  color: #168cff;
  margin-right: 12px;
}

.gallery-proof {
  background: #020409;
}

.gallery-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 70px rgba(0,0,0,.36);
  grid-column: span 2;
}

.gallery-grid img:first-child {
  grid-column: span 3;
  height: 520px;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 3;
  height: 520px;
}

.reviews {
  background:
    radial-gradient(circle at 85% 10%, rgba(251,191,36,.15), transparent 30%),
    linear-gradient(180deg, #050915, #020409);
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 285px;
  padding: 20px;
  border: 1px solid rgba(251,191,36,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #1f2937;
  background: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 950;
}

.google-badge strong {
  display: block;
  font-size: 18px;
}

.google-badge span {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}

.stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15,23,42,.9), rgba(2,6,23,.94));
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.review-card p {
  color: white;
  font-size: 19px;
  line-height: 1.55;
  margin: 20px 0;
}

.review-meta {
  display: grid;
  gap: 5px;
  margin-top: auto;
}

.review-meta strong {
  font-size: 17px;
}

.review-meta span {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.area-tag {
  width: fit-content;
  margin-top: 16px;
  padding: 9px 11px;
  color: #e5f4ff;
  border: 1px solid rgba(251,191,36,.35);
  border-radius: 999px;
  background: rgba(251,191,36,.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-cta {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid rgba(22,140,255,.42);
  border-radius: 8px;
  background: rgba(0,0,0,.48);
  box-shadow: 0 0 55px rgba(0,102,255,.16);
  text-align: center;
}

.review-cta h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.process {
  background:
    radial-gradient(circle at left, rgba(56,189,248,.16), transparent 32%),
    #050915;
}

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

.steps span {
  display: block;
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.service-area {
  background: #020409;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-list span {
  color: #e5f4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 14px;
  border: 1px solid rgba(22,140,255,.42);
  border-radius: 999px;
  background: rgba(22,140,255,.12);
}

.quote {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  background: #030712;
}

.contact {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact a {
  color: white;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(22,140,255,.3);
  font-weight: 800;
}

form {
  background: linear-gradient(180deg, rgba(15,23,42,.95), rgba(2,6,23,.95));
  border: 1px solid rgba(22,140,255,.45);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
}

label {
  display: block;
  margin: 16px 0 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #020409;
  color: white;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

select {
  background-image:
    linear-gradient(45deg, transparent 50%, #38bdf8 50%),
    linear-gradient(135deg, #38bdf8 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #168cff;
  box-shadow: 0 0 0 4px rgba(22,140,255,.13);
}

button {
  width: 100%;
  margin-top: 24px;
  font-size: 17px;
}

small {
  display: block;
  text-align: center;
  color: #94a3b8;
  margin-top: 14px;
}

.closing {
  text-align: center;
  background:
    radial-gradient(circle, rgba(0,102,255,.28), transparent 35%),
    #020409;
}

.closing h2 {
  max-width: 950px;
  margin: 0 auto 30px;
}

.site-footer {
  display: grid;
  gap: 12px;
  background: #030712;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 42px;
  padding-bottom: 42px;
}

.site-footer strong {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 900;
}

.center {
  justify-content: center;
}

.mobile-actions {
  display: none;
}

@media (max-width: 950px) {
  .hero {
    background-position: center right;
    min-height: auto;
  }

  .elite-bar,
  .cards,
  .split,
  .quote,
  .proof-section,
  .benefits,
  .steps,
  .service-grid,
  .media-grid,
  .faq-grid,
  .review-grid,
  .reviews-heading,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    align-items: start;
  }

  .google-badge {
    min-width: 0;
  }

  .media-card.featured {
    grid-column: auto;
  }

  .elite-bar {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .elite-bar div {
    border-right: none;
    border-bottom: 1px solid rgba(0,110,255,.35);
  }

  h1 {
    letter-spacing: 0;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    height: 360px;
  }

  .gallery-grid img:nth-child(2) {
    grid-column: auto;
    height: 360px;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(0,0,0,.78);
    border: 1px solid #168cff;
    border-radius: 999px;
    padding: 8px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c8ff, #0057ff);
    font-weight: 900;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  nav {
    padding: max(16px, env(safe-area-inset-top)) 5% 16px;
    align-items: flex-start;
  }

  .logo {
    max-width: 150px;
    font-size: 13px;
    line-height: 1.25;
  }

  .nav-text {
    display: none;
  }

  .nav-btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-overlay,
  .section,
  .split,
  .quote,
  .closing,
  .proof-section,
  .gallery-proof,
  .process,
  .services,
  .media-results,
  .reviews,
  .service-area,
  .faq,
  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-overlay {
    align-items: flex-end;
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: .94;
  }

  h2 {
    font-size: clamp(32px, 10vw, 38px);
    line-height: 1.02;
  }

  .hero-content {
    margin-top: 0;
    padding-bottom: 54px;
  }

  .hero-content p,
  .section-text,
  .split p,
  .quote-copy p,
  .proof-copy p,
  .steps p,
  .service-grid p,
  .media-card p,
  .faq-grid p,
  .review-card p {
    font-size: 17px;
  }

  form {
    padding: 24px;
  }

  .buttons,
  .closing .buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn,
  button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    font-size: 11px;
    padding: 9px 10px;
  }

  .section,
  .split,
  .quote,
  .closing,
  .proof-section,
  .gallery-proof,
  .process,
  .services,
  .media-results,
  .reviews,
  .service-area,
  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .elite-bar div {
    padding: 18px 5%;
  }

  .elite-bar strong,
  .elite-bar span {
    line-height: 1.35;
  }

  .card,
  .feature-box,
  .benefits div,
  .steps div,
  .service-grid article,
  .faq-grid article,
  .media-card figcaption,
  .media-cta,
  .review-card,
  .review-cta {
    padding: 24px;
  }

  .review-actions,
  .media-cta .buttons,
  .review-cta .buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .media-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    height: min(118vw, 430px);
    object-position: center;
  }

  .gallery-grid img:nth-child(2) {
    grid-column: auto;
    height: min(118vw, 430px);
  }

  .contact a,
  input,
  select,
  textarea {
    min-height: 48px;
  }

  .mobile-actions {
    left: 10px;
    right: 10px;
    gap: 6px;
  }

  .mobile-actions a {
    min-height: 44px;
    padding: 12px 8px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .logo {
    max-width: 128px;
    font-size: 12px;
  }

  .nav-btn {
    padding: 9px 10px;
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .hero-content p,
  .section-text,
  .split p,
  .quote-copy p,
  .proof-copy p,
  .steps p,
  .service-grid p,
  .media-card p,
  .faq-grid p,
  .review-card p {
    font-size: 16px;
  }
}
