* {
  box-sizing: border-box;
}

:root {
  --bg: #02050a;
  --panel: #070c13;
  --panel2: #0b111a;
  --text: #ffffff;
  --muted: #b9c5d5;
  --blue: #0a84ff;
  --blue2: #37b7ff;
  --line: rgba(49, 164, 255, 0.45);
  --softline: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, .45);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(10, 132, 255, .14), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(55, 183, 255, .12), transparent 28rem),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(2, 5, 10, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--softline);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(10, 132, 255, .25);
}

.brand-text strong {
  display: block;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: white;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.menu-button {
  display: none;
  color: white;
  background: transparent;
  border: 1px solid var(--softline);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.35rem;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  border-bottom: 1px solid var(--softline);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: .64;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: contrast(1.08) saturate(.95) brightness(.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,5,10,.96) 0%, rgba(2,5,10,.84) 42%, rgba(2,5,10,.2) 76%, rgba(2,5,10,.75) 100%),
    linear-gradient(180deg, rgba(2,5,10,.4), rgba(2,5,10,.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
}

.centered {
  text-align: center;
}

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

h1,
.section-title h2,
.quote-copy h2,
.final-cta h2 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9.5vw, 8.8rem);
  line-height: .88;
  margin-bottom: 20px;
}

.hero-sub {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 12px;
  border: 1px solid var(--softline);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 18px 40px rgba(10, 132, 255, .25);
}

.btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.32);
}

.grand-opening {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  box-shadow: 0 14px 40px rgba(10, 132, 255, .18);
}

.trust-strip {
  width: min(1200px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--softline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip article {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--softline);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip span {
  font-size: 2rem;
}

.trust-strip h3,
.info-panel h3 {
  margin-bottom: 6px;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-strip p,
.info-panel p {
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 70px);
}

.payment-band {
  width: min(1200px, calc(100% - 32px));
  margin: 46px auto 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10,132,255,.09), rgba(255,255,255,.04));
}

.payment-band h2 {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 900px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: clamp(1.55rem, 3.5vw, 2.8rem);
}

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

.payment-grid div {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--softline);
  border-radius: 14px;
  background: rgba(0,0,0,.28);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.centered-block {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: .95;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.service-grid article,
.price-card,
.gallery-card,
.info-panel,
.quote-form,
details {
  border: 1px solid var(--softline);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
}

.service-grid article {
  padding: 26px;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.service-grid h3 {
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  color: var(--blue2);
}

.service-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(10,132,255,.12), transparent 24rem),
    rgba(255,255,255,.015);
}

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

.price-card {
  position: relative;
  padding: 24px;
  border-color: var(--line);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(10,132,255,.16), rgba(255,255,255,.04));
  box-shadow: 0 26px 70px rgba(10,132,255,.13);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 108px;
  margin-bottom: 12px;
}

.card-heading span {
  font-size: 2.2rem;
}

.card-heading h3 {
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.card-heading p {
  margin: 0;
  color: var(--blue2);
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.price-list div,
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  padding-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.price-list strong,
.addon-row strong {
  color: var(--blue);
  font-size: 2rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .04em;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: var(--muted);
  line-height: 1.35;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue2);
  font-weight: 900;
}

.add-ons .note {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 18px;
}

.price-sheet-link {
  text-align: center;
  margin-top: 28px;
}

.price-sheet-link a {
  display: inline-flex;
  padding: 13px 20px;
  border-radius: 999px;
  color: white;
  border: 1px solid var(--line);
  background: rgba(10,132,255,.1);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
}

.gallery-card {
  overflow: hidden;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #000;
}

.before-after figure {
  position: relative;
  margin: 0;
  min-height: 380px;
  overflow: hidden;
}

.before-after img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.before-after figure:first-child {
  border-right: 1px solid var(--softline);
}

.before-after span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after figure:last-child span {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.gallery-copy {
  padding: 22px 24px;
}

.gallery-copy h3 {
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gallery-copy p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.info-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-color: var(--line);
}

.info-panel article {
  padding: 10px 22px;
  border-right: 1px solid var(--softline);
}

.info-panel article:last-child {
  border-right: 0;
}

.info-panel span {
  display: inline-block;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.quote-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.quote-copy h2 {
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: .96;
  margin-bottom: 16px;
}

.quote-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.quote-form {
  padding: 28px;
  display: grid;
  gap: 15px;
  border-color: var(--line);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--softline);
  border-radius: 13px;
  padding: 15px 16px;
  background: rgba(0,0,0,.35);
  color: white;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, .13);
}

.quote-form button {
  min-height: 54px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.hidden {
  display: none;
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

details {
  padding: 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

details p {
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
}

.final-cta {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(10,132,255,.18), rgba(255,255,255,.05));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.final-cta img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: .96;
  margin-bottom: 8px;
}

.final-cta p {
  color: var(--muted);
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--softline);
  background: rgba(0,0,0,.55);
}

.footer strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer span {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--blue2);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .trust-strip,
  .service-grid,
  .pricing-grid,
  .info-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2),
  .info-panel article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(1),
  .trust-strip article:nth-child(2),
  .info-panel article:nth-child(1),
  .info-panel article:nth-child(2) {
    border-bottom: 1px solid var(--softline);
  }

  .pricing-grid .featured {
    grid-column: auto;
  }

  .quote-section,
  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--softline);
    border-radius: 18px;
    background: rgba(2, 5, 10, .97);
  }

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

  .nav-links a {
    padding: 10px 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text span {
    font-size: .64rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2,5,10,.74), rgba(2,5,10,.95)),
      linear-gradient(90deg, rgba(2,5,10,.9), rgba(2,5,10,.38));
  }

  .trust-strip,
  .service-grid,
  .pricing-grid,
  .payment-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .info-panel article {
    border-right: 0 !important;
    border-bottom: 1px solid var(--softline);
  }

  .trust-strip article:last-child,
  .info-panel article:last-child {
    border-bottom: 0;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after figure:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--softline);
  }

  .before-after figure,
  .before-after img {
    min-height: 310px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 64px;
    min-height: 650px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .payment-band {
    padding: 24px;
  }

  .price-card,
  .quote-form {
    padding: 20px;
  }

  .card-heading {
    min-height: auto;
  }

  .before-after figure,
  .before-after img {
    min-height: 250px;
  }
}
