/* =========================================================
   MAQUILA DE CORTE LASER
   Stylesheet principal limpio
   ========================================================= */

:root {
  --menu-width: 87%;
  --section-width: 93%;

  --brand-red: #8b1e16;
  --brand-red-dark: #6f1712;

  --black: #111111;
  --graphite: #555555;
  --gray: #888888;
  --border: #dddddd;
  --light: #f6f6f6;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

/* =========================================================
   HEADER
   Fondo 100% / contenido 87%
   ========================================================= */

.site-header {
  width: 100%;
  background: var(--white);
  position: relative;
  z-index: 1000;
}

.header-inner {
  width: var(--menu-width);
  max-width: 1600px;
  min-height: 138px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
  transition:
    min-height .30s ease,
    padding .30s ease;
}

.logo {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 190px;
  height: auto;
  transition:
    width .30s ease,
    transform .30s ease;
}

.main-nav {
  flex: 1 1 auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 16px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;

  color: #202020;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;

  text-decoration: none;
  transition: color .20s ease;
}

.main-nav a:not(.cta-menu)::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--brand-red);
  transition: width .25s ease;
}

.main-nav a:not(.cta-menu):hover {
  color: var(--brand-red);
}

.main-nav a:not(.cta-menu):hover::after {
  width: 100%;
}

.main-nav a:not(:last-child)::before {
  content: "|";
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  color: rgba(139,30,22,.55);
  font-weight: 400;
  pointer-events: none;
}

.cta-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 12px 19px;

  background: var(--brand-red);
  color: var(--white) !important;

  border-radius: 7px;

  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: .025em;

  transition:
    background .20s ease,
    transform .20s ease,
    box-shadow .20s ease;
}

.cta-menu:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139,30,22,.20);
}

.menu-toggle {
  display: none;
}

/* Header flotante solamente en escritorio */

@media (min-width: 1501px) {

  .site-header {
    position: sticky;
    top: 0;

    background: rgba(255,255,255,.98);

    transition:
      background .30s ease,
      box-shadow .30s ease;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 7px 26px rgba(0,0,0,.10);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 84px;
  }

  .site-header.is-scrolled .logo img {
    width: 145px;
    transform: translateY(-1px);
  }
}

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

main > section.hero {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;

  height: 78vh;
  min-height: 620px;
  max-height: 860px;

  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.66) 0%,
      rgba(0,0,0,.46) 48%,
      rgba(0,0,0,.24) 100%
    );

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: var(--section-width);
  max-width: 1180px;
  margin: 0 auto;

  color: var(--white);
}

.hero-content h1 {
  max-width: 850px;
  margin: 0 0 20px;

  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: .98;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 30px;

  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-cta,
.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  background: var(--brand-red);
  color: var(--white);

  border: 0;
  border-radius: 8px;

  font-weight: 800;
  letter-spacing: .04em;

  text-decoration: none;
  cursor: pointer;

  transition:
    background .20s ease,
    transform .20s ease,
    box-shadow .20s ease;
}

.hero-cta:hover,
.section-cta:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139,30,22,.24);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 5px;

  background: var(--brand-red);

  z-index: 3;
}

/* =========================================================
   SECCION CORTE LASER
   ========================================================= */

.laser-feature {
  width: var(--section-width);
  max-width: 1220px;

  margin: 0 auto;
  padding: 82px 0;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 68px;

  align-items: center;
}

.laser-feature-media {
  min-width: 0;
}

.laser-feature-media img {
  display: block;

  width: 100%;
  height: 500px;

  object-fit: cover;
  object-position: center;
}

.laser-feature-content {
  max-width: 580px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 18px;

  color: #333333;

  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.section-kicker::before {
  content: "";

  width: 54px;
  height: 2px;

  background: var(--brand-red);
}

.laser-feature h2 {
  margin: 0 0 22px;

  color: var(--brand-red);

  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
}

.laser-feature p {
  margin: 0 0 18px;

  color: var(--graphite);

  font-size: 1.05rem;
  line-height: 1.72;
}

/* =========================================================
   HOME - SERVICIOS / INDUSTRIAS / CALIDAD / COBERTURA
   ========================================================= */

.section-heading {
  width: var(--section-width);
  max-width: 1220px;
  margin: 0 auto 48px;
}

.section-heading .section-kicker {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: var(--brand-red);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.03;
  font-weight: 800;
}

.section-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--graphite);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-center {
  margin-top: 42px;
  text-align: center;
}


/* =========================================================
   NUESTROS SERVICIOS
   ========================================================= */

.services-home {
  width: 100%;
  padding: 88px 0 100px;
  background: var(--white);
}

.services-home .section-heading {
  text-align: center;
}

.services-home .section-heading .section-kicker {
  justify-content: center;
}

.services-home .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid-home {
  width: var(--section-width);
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-home-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e7e7e7;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);

  transition:
    transform .30s ease,
    box-shadow .30s ease;
}

.service-home-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(0,0,0,.11);
}

.service-home-card img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;

  transition: transform .45s ease;
}

.service-home-card:hover img {
  transform: scale(1.045);
}

.service-home-card h3 {
  position: relative;
  margin: 0;
  padding: 25px 24px 18px 30px;

  color: #222222;
  font-size: 1.32rem;
  line-height: 1.2;
  font-weight: 800;
}

.service-home-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;

  width: 4px;
  height: 31px;

  background: var(--brand-red);
}

.service-home-card > a {
  display: inline-flex;
  align-items: center;

  margin: 0 24px 27px 30px;
  padding: 12px 20px;

  background: var(--brand-red);
  color: var(--white);

  border-radius: 7px;

  font-size: .80rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;

  transition:
    background .20s ease,
    transform .20s ease;
}

.service-home-card > a:hover {
  background: var(--brand-red-dark);
  transform: translateX(3px);
}


/* =========================================================
   INDUSTRIAS
   ========================================================= */

.industries-home {
  width: 100%;
  padding: 82px 0 92px;
  background: #f5f5f5;
}

.industries-home .section-heading {
  text-align: center;
}

.industries-home .section-heading .section-kicker {
  justify-content: center;
}

.industries-home .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  width: var(--section-width);
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  background: var(--white);
  border: 1px solid #e3e3e3;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.industries-grid > div {
  min-height: 145px;
  padding: 25px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-right: 1px solid #e3e3e3;

  text-align: center;

  transition:
    background .25s ease,
    transform .25s ease;
}

.industries-grid > div:last-child {
  border-right: 0;
}

.industries-grid > div:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

.industries-grid span {
  margin-bottom: 13px;

  color: var(--brand-red);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.industries-grid strong {
  color: #303030;
  font-size: 1.15rem;
  line-height: 1.25;
}


/* =========================================================
   CALIDAD
   ========================================================= */

.quality-home {
  width: 100%;
  padding: 90px 0 100px;
  background: var(--white);
}

.quality-home .section-heading {
  text-align: center;
}

.quality-home .section-heading .section-kicker {
  justify-content: center;
}

.quality-home .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.quality-grid {
  width: var(--section-width);
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.quality-grid article {
  padding: 34px 25px;
  text-align: center;

  border: 1px solid transparent;
  border-radius: 14px;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.quality-grid article:hover {
  transform: translateY(-6px);
  border-color: #e5e5e5;
  box-shadow: 0 16px 38px rgba(0,0,0,.07);
}

.quality-grid img {
  display: block;
  width: 210px;
  height: 210px;
  margin: 0 auto 24px;

  object-fit: contain;

  transition: transform .25s ease;
}

.quality-grid article:hover img {
  transform: scale(1.035);
}

.quality-grid h3 {
  margin: 0;

  color: #292929;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .05em;
}


/* =========================================================
   COBERTURA MEXICO
   ========================================================= */

.coverage-home {
  width: 100%;
  padding: 100px 0;

  background:
    linear-gradient(
      120deg,
      #181818 0%,
      #282828 62%,
      #3b1613 100%
    );

  color: var(--white);
}

.coverage-inner {
  width: var(--section-width);
  max-width: 1180px;
  margin: 0 auto;
}

.coverage-home .section-kicker {
  color: rgba(255,255,255,.82);
}

.coverage-home .section-kicker::before {
  background: var(--brand-red);
}

.coverage-home h2 {
  max-width: 900px;

  margin: 0 0 24px;

  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  line-height: 1.02;
  font-weight: 800;
}

.coverage-home p {
  max-width: 760px;
  margin: 0 0 32px;

  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.75;
}


/* =========================================================
   CTA COTIZACION
   ========================================================= */

.quote-home {
  width: 100%;
  padding: 72px 0;

  background: var(--brand-red);
  color: var(--white);
}

.quote-home-inner {
  width: var(--section-width);
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
}

.quote-home .section-kicker {
  color: rgba(255,255,255,.85);
}

.quote-home .section-kicker::before {
  background: var(--white);
}

.quote-home h2 {
  margin: 0 0 10px;

  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: .98;
  font-weight: 800;
}

.quote-home p {
  margin: 0;

  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
}

.quote-home .section-cta {
  flex: 0 0 auto;

  min-width: 190px;
  min-height: 56px;

  background: #292929;

  box-shadow: 0 12px 28px rgba(0,0,0,.20);
}

.quote-home .section-cta:hover {
  background: #111111;
}


/* =========================================================
   CONTACTO HOME
   ========================================================= */

.contact-home {
  width: 100%;
  padding: 88px 0 92px;
  background: var(--white);
}

.contact-home-inner {
  width: var(--section-width);
  max-width: 1080px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: center;
  gap: 80px;
}

.contact-home h2 {
  margin: 0 0 14px;

  color: #202020;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
}

.contact-home p {
  margin: 0 0 25px;

  color: var(--graphite);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-methods {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-method {
  min-width: 280px;
  padding: 18px 22px;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  background: #f7f7f7;
  color: #222222;

  border-left: 4px solid var(--brand-red);
  border-radius: 8px;

  text-decoration: none;

  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.contact-method:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.contact-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--brand-red);
  color: var(--white);

  border-radius: 50%;
}

.contact-icon svg {
  display: block;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-method-text small {
  color: var(--graphite);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .10em;
}

.contact-method-text strong {
  color: #222222;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
}

@media (max-width: 650px) {
  .contact-methods {
    flex-direction: column;
  }

  .contact-method {
    width: 100%;
    min-width: 0;
  }

  .contact-method-text strong {
    font-size: .98rem;
    word-break: break-word;
  }
}

.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}


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

.site-footer {
  width: 100%;
  background: #555555;
  color: var(--white);
}

.footer-grid {
  width: var(--section-width);
  max-width: 1120px;
  margin: 0 auto;
  padding: 62px 0 58px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.footer-grid h3 {
  margin: 0 0 20px;

  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-grid a {
  display: block;

  margin: 0 0 12px;

  color: rgba(255,255,255,.84);

  font-size: .94rem;
  line-height: 1.4;

  text-decoration: none;

  transition:
    color .20s ease,
    transform .20s ease;
}

.footer-grid a::before {
  content: "›";
  display: inline-block;

  margin-right: 9px;

  color: var(--white);
  font-weight: 800;
}

.footer-grid a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  width: 100%;
  min-height: 86px;
  padding: 20px 120px 20px 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  background: #202020;
  color: rgba(255,255,255,.82);

  font-size: .90rem;
  text-align: center;
}

.footer-bottom span {
  display: inline-block;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 10px 18px;

  background: var(--brand-red);
  color: var(--white);

  border-radius: 6px;

  font-size: .80rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  .footer-bottom {
    min-height: 120px;
    padding: 24px 85px 24px 24px;
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom span {
    white-space: normal;
  }
}


/* =========================================================
   RESPONSIVE NUEVAS SECCIONES
   ========================================================= */

@media (max-width: 1100px) {
  .services-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid > div {
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }

  .quality-grid {
    gap: 20px;
  }

  .quality-grid img {
    width: 175px;
    height: 175px;
  }

  .quote-home-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-home-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-logo {
    justify-content: flex-start;
  }

  .contact-logo img {
    width: 230px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 650px) {
  .section-heading {
    margin-bottom: 36px;
  }

  .services-home,
  .industries-home,
  .quality-home,
  .contact-home {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .services-grid-home {
    grid-template-columns: 1fr;
  }

  .service-home-card img {
    height: 270px;
  }

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

  .industries-grid > div {
    min-height: 90px;
    border-right: 0;
  }

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

  .quality-grid article {
    padding: 24px 15px;
  }

  .coverage-home {
    padding: 72px 0;
  }

  .quote-home {
    padding: 58px 0;
  }

  .quote-home .section-cta {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 48px;
    padding-bottom: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* =========================================================
   CONTACTO FLOTANTE
   ========================================================= */

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-contact-btn {
  width: 58px;
  height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  color: #ffffff;
  text-decoration: none;

  cursor: pointer;

  box-shadow: 0 10px 28px rgba(0,0,0,.18);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.floating-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}

.floating-contact-btn svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.floating-quote {
  background: var(--brand-red);
}

.floating-whatsapp {
  background: #25d366;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 82px;

  width: 320px;
  padding: 26px 24px 24px;

  display: none;

  background: #ffffff;
  color: #222222;

  border: 1px solid #e2e2e2;
  border-radius: 16px;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0,0,0,.20);
}

.whatsapp-panel.is-open {
  display: block;
}

.whatsapp-panel-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
}

.whatsapp-panel-logo svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-panel strong {
  display: block;

  color: var(--brand-red);

  font-size: .96rem;
  line-height: 1.35;
  font-weight: 800;
}

.whatsapp-panel p {
  margin: 6px 0 18px;

  color: var(--graphite);

  font-size: .88rem;
  line-height: 1.4;
}

.whatsapp-qr {
  display: block;

  width: 210px;
  height: 210px;

  margin: 0 auto 18px;

  object-fit: contain;
  image-rendering: crisp-edges;
}

.whatsapp-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 11px 18px;

  background: #25d366;
  color: #ffffff;

  border-radius: 7px;

  font-size: .82rem;
  font-weight: 800;

  text-decoration: none;
}

.whatsapp-close {
  position: absolute;
  top: 9px;
  right: 10px;

  width: 30px;
  height: 30px;

  background: transparent;
  border: 0;

  color: #555555;

  font-size: 24px;
  line-height: 1;

  cursor: pointer;
}

@media (max-width: 900px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact-btn {
    width: 54px;
    height: 54px;
  }

  .floating-contact-btn svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-panel {
    display: none !important;
  }
}

/* =========================================================
   FORMULARIO COTIZACION
   ========================================================= */

.quote-section {
  width: var(--section-width);
  max-width: 1180px;

  margin: 0 auto;
  padding: 70px 0 90px;
}

.quote-logo {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
  margin-bottom: 28px;
}

.quote-logo img {
  display: block;

  width: 220px;
  max-width: 70vw;
  height: auto;
}

.quote-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  background: var(--brand-red);
  color: var(--white);

  border: 1px solid var(--brand-red);
  border-radius: 8px;

  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .05em;

  text-decoration: none;

  transition:
    background .20s ease,
    color .20s ease,
    transform .20s ease;
}

.quote-back:hover {
  background: var(--white);
  color: var(--brand-red);
  transform: translateY(-1px);
}

.quote-intro {
  max-width: 820px;

  margin: 0 auto 36px;

  text-align: center;
}

.quote-intro .eyebrow {
  color: var(--brand-red);

  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.quote-intro h1 {
  margin: 12px 0 16px;

  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
}

.quote-intro p {
  max-width: 720px;

  margin: 0 auto;

  color: var(--graphite);

  font-size: 1.06rem;
  line-height: 1.7;
}

.quote-form {
  max-width: 980px;

  margin: 0 auto;
  padding: 42px;

  display: grid;
  gap: 24px;

  background: var(--white);

  border: 1px solid #e2e2e2;
  border-radius: 18px;

  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-grid.two {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.quote-form label,
.quote-form legend {
  display: block;

  margin-bottom: 8px;

  font-size: .96rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;

  min-height: 52px;

  padding: 14px 16px;

  background: #fafafa;

  border: 1px solid #d2d2d2;
  border-radius: 10px;

  font: inherit;
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;

  background: var(--white);

  border-color: var(--brand-red);

  box-shadow: 0 0 0 3px rgba(139,30,22,.10);
}

.quote-form fieldset {
  padding: 22px;

  background: #fafafa;

  border: 1px solid #dedede;
  border-radius: 12px;
}

.quote-form fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;

  margin: 0;
  padding: 9px 0;

  font-weight: 500;
}

.quote-form fieldset input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0;

  accent-color: var(--brand-red);
}

.quote-form button.hero-cta {
  justify-self: start;

  min-width: 230px;
  min-height: 54px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */



@media (max-width: 1500px) {

  :root {
    --menu-width: 87%;
    --section-width: 94%;
  }

  .site-header {
    width: 100%;
    background: rgba(255,255,255,.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition:
      background .30s ease,
      box-shadow .30s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-inner {
    width: 87%;
    min-height: 96px;
    margin: 0 auto;
    transition: min-height .30s ease;
  }

  .logo img {
    width: 165px;
    transition: width .30s ease, transform .30s ease;
  }

  .site-header.is-scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 7px 22px rgba(0,0,0,.10);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 72px;
  }

  .site-header.is-scrolled .logo img {
    width: 132px;
    transform: translateY(-1px);
  }

  .menu-toggle {
    display: block;

    margin-left: auto;

    background: none;
    border: 0;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
  }

  .main-nav {
    position: absolute;

    left: 0;
    top: 100%;

    width: 100%;
    padding: 22px 4% 26px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: var(--white);

    border-top: 1px solid #eeeeee;
    box-shadow: 0 14px 30px rgba(0,0,0,.10);

    white-space: normal;
  }

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

  .main-nav a {
    padding: 13px 0;

    font-size: 17px;

    border-bottom: 1px solid #eeeeee;
  }

  .main-nav a::after,
  .main-nav a::before {
    display: none !important;
  }

  .cta-menu {
    margin-top: 14px;

    border-bottom: 0 !important;
  }

  .hero {
    height: 72vh;
    min-height: 560px;
    max-height: 760px;
  }

  .laser-feature {
    grid-template-columns: 1fr;

    gap: 36px;
    padding: 58px 0 65px;
  }

  .laser-feature-media img {
    height: 420px;
  }

  .laser-feature-content {
    max-width: none;
  }
}

@media (max-width: 700px) {

  .form-grid.two {
    grid-template-columns: 1fr;
  }

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

  .quote-intro {
    text-align: left;
  }

  .quote-form button.hero-cta {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .header-inner {
    width: 88%;
    min-height: 82px;
    gap: 18px;
  }

  .logo img {
    width: 145px;
    max-width: 48vw;
  }

  .menu-toggle {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 30px;
  }

  .main-nav {
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 14px 6% 22px;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: 520px;
    max-height: none;
    align-items: center;
  }

  .hero-content {
    width: 88%;
    max-width: none;
    padding: 52px 0;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-content p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-cta {
    max-width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  .laser-feature-media img {
    height: 320px;
  }

  .laser-feature h2 {
    font-size: 2rem;
  }
}
