* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --panel: #0d0d0f;
  --panel-2: #151519;
  --white: #f7f7f7;
  --muted: #b8b8bf;
  --red: #e32027;
  --red-dark: #851118;
  --blue: #1957e5;
  --blue-dark: #0b2b79;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 60px rgba(0,0,0,.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(227,32,39,.10), transparent 28rem),
    radial-gradient(circle at top right, rgba(25,87,229,.11), transparent 30rem),
    var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: -1;
}

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

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

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

.site-header {
  min-height: 78px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a {
  color: #d8d8dd;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.24);
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}

.menu-button span {
  width: 27px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 90px 7vw 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5vw;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--red), transparent 46%, transparent 54%, var(--blue));
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  filter: blur(110px);
  opacity: .20;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-red {
  background: var(--red);
  left: -15rem;
  top: 10%;
}

.hero-glow-blue {
  background: var(--blue);
  right: -15rem;
  bottom: 6%;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
  color: #d5d5db;
}

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

h1, h2 {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .98;
  font-weight: 400;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.3rem);
  max-width: 780px;
  margin-bottom: 24px;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, #ff3139 0%, #f3f3f3 49%, #2b6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-bottom: 22px;
}

.hero-text,
.section-heading > p:last-child,
.split-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  color: white;
  background: linear-gradient(110deg, var(--red), var(--blue));
  box-shadow: 0 12px 34px rgba(17,59,186,.32);
}

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

.button-secondary {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #d0d0d5;
  font-size: .88rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "★";
  color: white;
  margin-right: 7px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.logo-card {
  padding: 26px;
  position: relative;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(227,32,39,.08), rgba(25,87,229,.08));
  box-shadow: var(--shadow);
  border-radius: 28px;
  transform: perspective(1000px) rotateY(-4deg);
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--red), transparent 42%, var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0b0b0d;
  border-bottom: 1px solid var(--border);
}

.service-strip div {
  padding: 24px 30px;
  border-right: 1px solid var(--border);
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .04em;
}

.service-strip span {
  color: var(--muted);
  font-size: .86rem;
}

.section {
  padding: 120px 7vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

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

.service-card {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.28);
}

.service-card:nth-child(odd) .icon {
  color: #ff3a41;
}

.service-card:nth-child(even) .icon {
  color: #3672ff;
}

.icon {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
}

.service-card h3,
.step h3 {
  font-size: 1.18rem;
  margin: 18px 0 10px;
}

.service-card p,
.step p,
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(227,32,39,.06), transparent 36%),
    linear-gradient(250deg, rgba(25,87,229,.07), transparent 36%),
    #0b0b0d;
  border-block: 1px solid var(--border);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  color: #e3e3e6;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: white;
  font-size: .78rem;
}

.score-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,.34);
  box-shadow: var(--shadow);
}

.score-label,
.score-footer {
  grid-column: 1 / -1;
}

.score-label {
  letter-spacing: .18em;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

.score {
  padding: 25px;
}

.score span {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 6rem;
  line-height: 1;
}

.score:first-of-type span {
  color: var(--red);
}

.score:nth-of-type(2) span {
  color: var(--blue);
}

.score small {
  font-weight: 800;
  letter-spacing: .1em;
}

.score-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
}

.score-footer {
  margin: 10px 0 0;
  color: #d7d7dc;
  font-weight: 700;
}

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

.step {
  padding-top: 25px;
  border-top: 2px solid var(--border);
}

.step span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.4rem;
}

.step:nth-child(1) span { color: var(--red); }
.step:nth-child(2) span { color: white; }
.step:nth-child(3) span { color: var(--blue); }

.quote-section {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: start;
  background: #0c0c0f;
  border-block: 1px solid var(--border);
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.contact-box {
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid;
  border-image: linear-gradient(var(--red), var(--blue)) 1;
  background: rgba(255,255,255,.035);
}

.contact-box span,
.contact-box strong {
  display: block;
}

.contact-box span {
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.quote-form {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.035);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
}

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

input,
select,
textarea {
  width: 100%;
  color: white;
  background: #09090b;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4f7dff;
  box-shadow: 0 0 0 3px rgba(79,125,255,.12);
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 20px 0;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 18px;
  margin-top: 3px;
}

.full-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #d8d8dc;
}

.faq-list {
  max-width: 920px;
}

details {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

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

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.06rem;
}

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

summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
}

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

.final-cta {
  margin: 0 7vw 110px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at left, rgba(227,32,39,.19), transparent 38%),
    radial-gradient(circle at right, rgba(25,87,229,.2), transparent 38%),
    #0c0c0f;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

footer {
  padding: 36px 7vw;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .86rem;
}

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

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 24px 6vw;
    background: #09090b;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-art {
    max-width: 620px;
    margin: auto;
  }

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

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .quote-copy {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 20px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .section,
  .split-section,
  .quote-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 3.6rem;
  }

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

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .score-card {
    padding: 24px 16px;
  }

  .score {
    padding: 14px;
  }

  .score span {
    font-size: 4.5rem;
  }

  .quote-form {
    padding: 22px;
  }

  .final-cta {
    margin: 0 22px 80px;
    padding: 32px 24px;
    align-items: stretch;
    flex-direction: column;
  }
}


.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.booking-progress span {
  padding: 10px 8px;
  text-align: center;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.booking-progress .active {
  color: white;
  background: linear-gradient(110deg, rgba(227,32,39,.35), rgba(25,87,229,.35));
}

.estimate-summary {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.estimate-summary span,
.estimate-summary strong,
.estimate-summary small {
  display: block;
}

.estimate-summary span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}

.estimate-summary strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 3.6rem;
  line-height: 1.05;
  margin: 8px 0;
}

.upload-label input[type="file"] {
  border-style: dashed;
  cursor: pointer;
}

.upload-help {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-preview figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #08080a;
}

.photo-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-preview figcaption {
  padding: 8px 10px;
  color: var(--muted);
  font-size: .72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.estimate-breakdown {
  margin-top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: #09090b;
  border: 1px solid var(--border);
}

.estimate-breakdown h3 {
  margin-bottom: 16px;
}

.estimate-breakdown > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--muted);
}

.estimate-breakdown strong {
  color: white;
}

.estimate-total-row {
  margin-top: 10px;
  padding-top: 16px !important;
  border-top: 1px solid var(--border);
  font-size: 1.08rem;
}

.estimate-total-row strong {
  color: #fff;
  font-size: 1.3rem;
}

.estimate-breakdown small,
.confirmation-panel small {
  color: var(--muted);
}

.confirmation-panel {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(227,32,39,.08), rgba(25,87,229,.08));
}

.confirmation-panel h3 {
  margin-bottom: 8px;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

@media (max-width: 640px) {
  .booking-progress {
    grid-template-columns: 1fr 1fr;
  }

  .photo-preview {
    grid-template-columns: 1fr 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}
