:root {
  --black: #070707;
  --black-2: #101010;
  --black-3: #171717;
  --red: #e10600;
  --red-bright: #ff241c;
  --white: #ffffff;
  --muted: #b8b8b8;
  --light: #f5f5f5;
  --line: #292929;
  --max: 1200px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}


/* ================================
   TOP BAR
================================ */

.topbar {
  background: #000;
  border-bottom: 1px solid #1d1d1d;
  color: #d8d8d8;
  font-size: 0.88rem;
}

.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.topbar a:hover {
  color: var(--red-bright);
}


/* ================================
   HEADER / NAVIGATION
================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #202020;
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand img {
  width: 190px;
  height: auto;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.navlinks > a:not(.btn) {
  position: relative;
  padding: 12px 0;
  color: #e8e8e8;
}

.navlinks > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--red-bright);
  transition: width 0.2s ease;
}

.navlinks > a:not(.btn):hover {
  color: #fff;
}

.navlinks > a:not(.btn):hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}


/* ================================
   BUTTONS
================================ */

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(225, 6, 0, 0.32);
}

.btn-ghost {
  border-color: #454545;
  background: #121212;
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--red-bright);
  background: #171717;
}


/* ================================
   HERO
================================ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(225, 6, 0, 0.3),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 70%,
      rgba(255, 255, 255, 0.04),
      transparent 30%
    ),
    linear-gradient(135deg, #050505, #101010 65%, #160000);
  border-bottom: 1px solid #222;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 28px 28px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 60px;
  align-items: center;
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
  color: #ff6a64;
}

.hero h1 {
  max-width: 700px;
  margin: 18px 0 24px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--red-bright);
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #d0d0d0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #d4d4d4;
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
}

.trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red-bright);
  font-weight: 1000;
}


/* ================================
   HERO QUOTE CARD
================================ */

.quote-card {
  background:
    linear-gradient(
      145deg,
      rgba(26, 26, 26, 0.98),
      rgba(13, 13, 13, 0.98)
    );
  border: 1px solid #333;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin: 0 0 7px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.quote-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

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


/* ================================
   FORMS
================================ */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  color: #e5e5e5;
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 13px 14px;
  border: 1px solid #393939;
  border-radius: 13px;
  outline: none;
  background: #0c0c0c;
  color: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #767676;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}


/* ================================
   RED BAND
================================ */

.band {
  background:
    linear-gradient(90deg, #b90400, var(--red), #ff2018);
  padding: 22px 0;
}

.band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.band strong {
  font-size: 1.22rem;
}

.band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.18);
}


/* ================================
   SECTIONS
================================ */

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--light);
  color: #111;
}

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

.section-title .eyebrow {
  color: #d40b05;
}

.section-title h2 {
  margin: 11px 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 0;
  color: #777;
  font-size: 1.04rem;
}


/* ================================
   SERVICE CARDS
================================ */

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

.card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid #292929;
  border-radius: var(--radius);
  background: var(--black-3);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.55);
}

.section-light .card {
  background: #fff;
  border-color: #e1e1e1;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.055);
}

.section-light .card:hover {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.09);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 14px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--red-bright);
  font-size: 1.3rem;
  font-weight: 1000;
}

.card h3 {
  margin: 0 0 9px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: #aaa;
}

.section-light .card p {
  color: #686868;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 17px;
  color: var(--red);
  font-weight: 900;
}

.card-link:hover {
  color: var(--red-bright);
}


/* ================================
   PROCESS
================================ */

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  min-height: 190px;
  padding: 25px;
  border: 1px solid #2d2d2d;
  border-radius: 18px;
  background:
    linear-gradient(145deg, #141414, #0e0e0e);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 14px;
  color: var(--red-bright);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: #a8a8a8;
}


/* ================================
   SERVICE AREAS
================================ */

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.area {
  padding: 10px 15px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 0.91rem;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.area:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}


/* ================================
   TESTIMONIALS
================================ */

.testimonial {
  font-size: 1.02rem;
}

.stars {
  margin-bottom: 12px;
  color: #ffb000;
  letter-spacing: 0.1em;
}


/* ================================
   CTA PANEL
================================ */

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border: 1px solid #303030;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(225, 6, 0, 0.19),
      transparent 35%
    ),
    linear-gradient(135deg, #171717, #090909);
}


/* ================================
   PAGE HERO
================================ */

.page-hero {
  padding: 74px 0 50px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(225, 6, 0, 0.24),
      transparent 29%
    ),
    #0b0b0b;
  border-bottom: 1px solid #222;
}

.page-hero h1 {
  max-width: 850px;
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.content {
  max-width: 860px;
}

.breadcrumb {
  color: #888;
  font-size: 0.88rem;
}


/* ================================
   FULL QUOTE PAGE
================================ */

.quote-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
}

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

.quote-steps .stepnav {
  padding: 15px 0;
  border-bottom: 1px solid #242424;
  color: #777;
  font-weight: 800;
}

.quote-steps .stepnav.active {
  color: #fff;
}

.quote-form {
  padding: 30px;
  border: 1px solid #2c2c2c;
  border-radius: 24px;
  background: #111;
}

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

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

.notice {
  padding: 14px 16px;
  border: 1px solid #303030;
  border-radius: 14px;
  background: #151515;
  color: #bbb;
  font-size: 0.9rem;
}

.success {
  display: none;
  border-color: #28673b;
  background: #0f2416;
  color: #d8ffe3;
}


/* ================================
   SEO COPY
================================ */

.seo-copy {
  max-width: 880px;
}

.seo-copy h2 {
  margin-top: 40px;
  font-size: 2rem;
}

.seo-copy p,
.seo-copy li {
  color: #c6c6c6;
}


/* ================================
   FOOTER
================================ */

.footer {
  padding: 60px 0 26px;
  border-top: 1px solid #242424;
  background: #040404;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 36px;
}

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

.footer h4 {
  margin: 0 0 16px;
  color: #fff;
}

.footer p {
  margin: 7px 0;
  color: #999;
}

.footer a {
  color: #aaa;
}

.footer a:hover {
  color: #fff;
}

.copyright {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #1f1f1f;
  color: #777;
  font-size: 0.88rem;
}


/* ================================
   FLOATING MOBILE CTA
================================ */

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  gap: 10px;
}

.floating .btn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}


/* ================================
   RESPONSIVE - NAVIGATION FIRST
================================ */

@media (max-width: 1120px) {

  .nav {
    min-height: 78px;
  }

  .brand img {
    width: 160px;
  }

  .mobile-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .navlinks {
    position: fixed;
    top: 119px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    max-height: calc(100vh - 119px);
    overflow-y: auto;
    margin: 0;
    padding: 18px 20px 28px;
    background: rgba(7, 7, 7, 0.99);
    border-bottom: 1px solid #272727;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks > a:not(.btn) {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid #1c1c1c;
  }

  .navlinks > a:not(.btn)::after {
    display: none;
  }

  .navlinks .btn {
    width: 100%;
    margin-top: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

  .hero-grid,
  .quote-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 66px 0;
  }

  .hero h1 {
    max-width: 650px;
  }

  .quote-card {
    max-width: 650px;
  }

  .quote-steps {
    position: static;
  }

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

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .band .container {
    align-items: flex-start;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar .container {
    min-height: 54px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 7px 0;
  }

  .header {
    top: 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 145px;
  }

  .navlinks {
    top: 126px;
    max-height: calc(100vh - 126px);
  }

  .hero-grid {
    padding: 52px 0 58px;
  }

  .hero h1 {
    margin-top: 15px;
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-card {
    padding: 22px;
    border-radius: 22px;
  }

  .grid-3,
  .process,
  .mini-form,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full,
  .form-grid .full {
    grid-column: auto;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .band .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .band .btn {
    width: 100%;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 100px;
  }

  .floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating .btn {
    flex: 1;
    padding: 12px 10px;
  }

  .desktop-only {
    display: none !important;
  }
}


/* ================================
   VERY SMALL PHONES
================================ */

@media (max-width: 390px) {

  .brand img {
    width: 132px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

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

  .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}