:root {
  --navy: #06152f;
  --navy-deep: #020918;
  --blue: #0c6bff;
  --cyan: #33c7e8;
  --yellow: #fff000;
  --violet: #7c22ff;
  --ink: #101827;
  --muted: #5b6578;
  --line: #dfe7f4;
  --soft: #edf5ff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 21, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #021531;
  border-bottom: 1px solid rgba(223, 231, 244, 0.2);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}

.mb-2{
  margin-bottom: 20px;
}

.mt-2{
  margin-top: 20px;
}

.mt-3{
  margin-top: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta {
  padding: 12px 18px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -52px;
  width: 115vw;
  height: 150px;
  background: var(--white);
  transform: rotate(-4deg);
  transform-origin: right bottom;
  z-index: 3;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(2, 9, 24, 0.2), rgba(2, 9, 24, 0.03)),
    url("assets/hero-pcs83.png") center right / cover;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 9, 24, 0.98) 0%, rgba(2, 9, 24, 0.86) 37%, rgba(2, 9, 24, 0.18) 72%),
    radial-gradient(circle at 25% 22%, rgba(124, 34, 255, 0.48), transparent 28%);
  z-index: 1;
}

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

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

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 710px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 5.2vw, 2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h1::before {
    content: "";
    display: block;
    width: min(60px, 55vw);
    height: 13px;
    margin-bottom: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), #8b00ff);
    transform: rotate(-4deg);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--yellow);
  color: var(--navy-deep);
  box-shadow: 0 16px 34px rgba(255, 240, 0, 0.28);
}

.button.secondary {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 36px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.2;
  font-weight: 900;
}

.section-heading p,
.zones-copy p,
.about-panel p,
.estimate-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.step-grid article {
  padding: 12px 0;
}

.step-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 1;
  font-weight: 900;
}

.step-grid p,
.service-card p,
.service-card li,
.faq p,
.footer p {
  color: var(--muted);
}

.angled {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 108px max(20px, calc((100vw - 1180px) / 2)) 122px;
  background: var(--soft);
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  min-height: 420px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card.accent {
  background: var(--navy);
  color: var(--white);
}

.service-card.accent p,
.service-card.accent li {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
     display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: var(--yellow);
    color: var(--navy-deep);
    font-weight: 900;
}

.service-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 26px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(6, 21, 47, 0.1);
  box-shadow: 0 14px 32px rgba(6, 21, 47, 0.12);
}

.service-card.accent .service-img {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.service-card.accent li::before {
  background: var(--yellow);
}

.zones {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.city-list span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(6, 21, 47, 0.08);
  font-weight: 900;
}

.about {
  padding-top: 20px;
}

.about-panel {
  display: grid;
  gap: 24px;
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 21, 47, 0.95), rgba(8, 44, 96, 0.94)),
    linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
}

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

.about-stats div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.about-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 2.3rem;
  line-height: 1;
}

.about-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.quote-band {
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 22px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 0, rgba(124, 34, 255, 0.9), transparent 34%),
    var(--navy-deep);
  color: var(--white);
}

.quote-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.quote-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
}

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

.faq p {
  max-width: 820px;
  margin: 14px 0 0;
}

.estimate {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbff;
  color: var(--ink);
  padding: 15px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(12, 107, 255, 0.12);
}

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

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px max(20px, calc((100vw - 1180px) / 2));
  background: #021531;
  color: var(--white);
}

.footer-copy {
  max-width: 760px;
}

.footer-logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer .legal-line {
  margin-top: 16px;
}

.footer a {
  color: var(--yellow);
  font-weight: 900;
}

.footer .legal-line a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
    color: #fff !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 9, 24, 0.98) 0%, rgba(2, 9, 24, 0.88) 62%, rgba(2, 9, 24, 0.46)),
      radial-gradient(circle at 25% 22%, rgba(124, 34, 255, 0.42), transparent 30%);
  }

  .hero-content {
    padding: 82px 0 130px;
  }

  .step-grid,
  .service-grid,
  .zones,
  .estimate {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 148px;
  }

  .section,
  .quote-band {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  h1::before {
    width: min(220px, 58vw);
    height: 24px;
    margin-bottom: -8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .angled {
    padding-left: 14px;
    padding-right: 14px;
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
  }

  .service-card,
  .about-panel,
  .estimate-form,
  .quote-band {
    padding: 24px;
  }

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