:root {
  --navy: #071027;
  --navy-2: #0b1733;
  --orange: #f47d42;
  --orange-dark: #e9682d;
  --ink: #111827;
  --muted: #5d6678;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", system-ui, sans-serif;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

#top,
#services,
#work,
#process,
#contact {
  scroll-margin-top: 148px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.alert-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.alert-bar span:last-child {
  color: var(--orange);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 6vw;
}

.brand img {
  width: 132px;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-phone,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(244, 125, 66, 0.28);
}

.btn-primary:hover,
.nav-phone:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(7, 16, 39, 0.94), rgba(7, 16, 39, 0.64), rgba(7, 16, 39, 0.78)),
    url("hero-bg.jpeg");
  background-position: center 43%;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 40%, transparent 0, rgba(7, 16, 39, 0.18) 28%, rgba(7, 16, 39, 0.76) 100%);
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  padding: 86px 0 64px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--orange);
  padding: 9px 22px;
  font-weight: 800;
}

.pill span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.hero h1 {
  margin-top: 34px;
  font-size: clamp(2.55rem, 7.2vw, 5.9rem);
  font-weight: 800;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-subcopy {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 46px auto 0;
}

.hero-actions .btn {
  min-height: 66px;
  font-size: 1.08rem;
}

.response-time {
  margin-top: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.trust-band {
  padding: 34px 6vw 58px;
  background: var(--white);
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.review img {
  width: 52px;
  height: 72px;
  object-fit: cover;
  object-position: top center;
}

.review strong,
.review span {
  display: block;
}

.review span {
  color: var(--muted);
  font-size: 0.82rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.badge {
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 18px;
  color: #4d4d4d;
  background: #fafafa;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.badge span {
  display: block;
  color: #9b9b9b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge strong {
  display: block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.section {
  padding: 84px 6vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.advantage h2,
.contact h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.65;
}

.services,
.process {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 314px;
  border-radius: 8px;
  padding: 34px 28px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 16px 45px rgba(10, 20, 40, 0.08);
}

.service-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card.featured {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.service-card.featured span {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(244, 125, 66, 0.13);
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 285px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.advantage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 92px 6vw;
  color: var(--white);
  background: var(--navy);
  background-image: linear-gradient(135deg, #071027 0%, #0b1733 58%, #111f3d 100%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.advantage h2 {
  color: var(--white);
}

.advantage h2 span {
  display: block;
  color: var(--orange);
}

.advantage-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.advantage-copy .btn {
  margin-top: 34px;
}

.compare {
  display: grid;
  gap: 20px;
  align-content: center;
}

.compare article {
  border-radius: 8px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.compare h3 {
  margin-top: 14px;
  font-size: 1.3rem;
}

.compare p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 900;
}

.mark.bad {
  background: rgba(255, 255, 255, 0.14);
  color: #ff7878;
}

.mark.good {
  background: rgba(244, 125, 66, 0.2);
  color: var(--orange);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 20, 40, 0.07);
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.process-grid h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.process-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 54px;
  padding: 92px 6vw;
  background: var(--white);
}

.contact-info > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-list article {
  border-left: 5px solid var(--orange);
  padding: 18px 20px;
  background: var(--soft);
}

.contact-list h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.contact-list a {
  color: var(--orange-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(10, 20, 40, 0.16);
}

.quote-form h2 {
  color: var(--navy);
  font-size: 1.8rem;
}

.quote-form > p {
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 7px;
  color: #303846;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

.quote-form button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 20px;
  color: var(--orange-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 44px;
  padding: 54px 6vw 84px;
  color: rgba(255, 255, 255, 0.76);
  background: #050b1c;
}

.footer img {
  width: 150px;
  margin-bottom: 18px;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer p {
  line-height: 1.7;
}

.footer strong {
  display: block;
  margin-top: 16px;
  color: var(--orange);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-phone {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 700px;
  }

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

  .advantage,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .alert-bar,
  .nav-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .alert-bar {
    font-size: 0.68rem;
  }

  .nav-wrap {
    min-height: 92px;
  }

  .brand img {
    width: 102px;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 62px 0 116px;
  }

  .pill {
    max-width: 100%;
    padding: 8px 15px;
    font-size: 0.78rem;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .hero-subcopy {
    font-size: 1.04rem;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-actions .btn {
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .trust-band,
  .section,
  .advantage,
  .contact,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .badge {
    width: 100%;
    min-width: 0;
  }

  .service-grid,
  .gallery,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 230px;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    color: var(--white);
    background: var(--orange);
  }

  .mobile-cta a:last-child {
    color: var(--navy);
    border: 1px solid var(--navy);
    background: var(--white);
  }
}
