:root {
  --red: #be1621;
  --red-dark: #8f1018;
  --gold: #d8b25d;
  --ink: #17191f;
  --charcoal: #252b33;
  --muted: #6d7480;
  --line: rgba(23, 25, 31, 0.12);
  --cream: #fff8e8;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --green: #20a95a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-ribbon {
  background: var(--red);
  color: #fff;
}

.ribbon-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.ribbon-inner strong {
  font-size: 14px;
}

.ribbon-inner span {
  color: rgba(255, 255, 255, 0.82);
}

.ribbon-inner a {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-main {
  min-height: 96px;
  display: grid;
  grid-template-columns: 250px minmax(420px, 1fr) 250px;
  align-items: center;
  gap: 24px;
}

.brand {
  grid-column: 2;
  justify-self: center;
  width: min(640px, 100%);
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  grid-column: 1;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  place-items: center;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
}

.menu-toggle {
  gap: 5px;
}

.header-contact {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  min-width: 0;
}

.header-contact a {
  white-space: nowrap;
}

.header-whatsapp {
  padding: 10px 13px;
  background: var(--green);
  color: #fff;
}

.main-nav {
  border-top: 1px solid var(--line);
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 15px 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: #333944;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav .nav-cta {
  background: var(--red);
  color: #fff;
}

.main-nav .nav-cta:hover {
  background: var(--red-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-bg,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-image: linear-gradient(90deg, rgba(10, 12, 16, 0.88), rgba(10, 12, 16, 0.42), rgba(10, 12, 16, 0.82)), var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--soft));
  z-index: -1;
}

.hero-content {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 44px 0 72px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.modal-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-link,
.ghost-link,
.ghost-light,
.submit-btn,
.service-header a,
.mini-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  font-weight: 900;
}

.primary-link {
  background: var(--red);
  color: #fff;
}

.primary-link:hover {
  background: var(--red-dark);
}

.ghost-link,
.ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ghost-light {
  border-color: rgba(216, 178, 93, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-console {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.console-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.live-dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(32, 169, 90, 0.5);
  animation: pulse 1.8s infinite;
}

.console-head h2 {
  margin: 0;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.console-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 22px 0;
}

.quote-steps span {
  min-height: 34px;
  display: grid;
  place-items: center;
  background: #eceef2;
  color: #5d6470;
  font-size: 12px;
  font-weight: 900;
}

.quote-steps .is-active {
  background: var(--red);
  color: #fff;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form legend,
.quote-form label {
  color: #363b44;
  font-weight: 900;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.branch-grid label {
  display: block;
}

.branch-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.branch-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  background: #edf0f4;
  color: #313842;
  border: 1px solid transparent;
}

.branch-grid input:checked + span {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form input,
.quote-form select,
.mini-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7dbe2;
  background: #fff;
  padding: 10px 12px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.mini-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(190, 22, 33, 0.12);
}

.submit-btn {
  min-height: 58px;
  flex-direction: column;
  background: var(--green);
  color: #fff;
}

.submit-btn:hover,
.mini-form button:hover {
  background: #178947;
}

.submit-btn small {
  font-size: 12px;
  opacity: 0.85;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #178947;
  font-weight: 900;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(190, 22, 33, 0.94);
}

.hero-marquee span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.wow-band,
.testimonials {
  padding: 72px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.service-header h2,
.testimonial-layout h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.testimonial-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.answer-grid article,
.testimonial-list blockquote {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}

.answer-index {
  display: inline-block;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 28px;
}

.answer-grid h3,
.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.answer-grid p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.conversion-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(23, 25, 31, 0.94), rgba(23, 25, 31, 0.72)),
    url("assets/slide-traffic.jpg") center/cover;
  color: #fff;
  padding: 84px 0;
}

.conversion-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(190, 22, 33, 0.28), transparent 46%),
    radial-gradient(circle at 86% 32%, rgba(216, 178, 93, 0.24), transparent 34%);
  pointer-events: none;
}

.conversion-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 42px;
  align-items: end;
}

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

.conversion-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.conversion-copy p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.conversion-points {
  display: grid;
  gap: 12px;
}

.conversion-points span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.conversion-points strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.services-section {
  padding: 76px 0;
  background: #fff;
}

.service-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.service-header a {
  background: var(--ink);
  color: #fff;
}

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

.service-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #111;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 650ms ease, opacity 650ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: #fff;
}

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

.service-card:hover img {
  transform: scale(1.06);
  opacity: 0.58;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}

.testimonial-layout > div:first-child p {
  margin-top: 18px;
}

.testimonial-list {
  display: grid;
  gap: 16px;
}

.testimonial-list blockquote {
  margin: 0;
}

.testimonial-list p {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--ink);
}

.testimonial-list cite {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 44px 0;
}

.footer-grid img {
  max-width: 320px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-grid p {
  max-width: 460px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(23, 25, 31, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.show-sticky .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta span {
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: var(--red);
  font-weight: 900;
}

.sticky-cta a:last-child {
  background: var(--green);
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.exit-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 24px;
}

.modal-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.04;
}

.modal-card p {
  color: var(--muted);
}

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

.mini-form button {
  background: var(--green);
  color: #fff;
}

.modal-card small {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  color: #178947;
  font-weight: 900;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 169, 90, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(32, 169, 90, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32, 169, 90, 0);
  }
}

@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: 54px 1fr auto;
    min-height: 78px;
  }

  .menu-toggle {
    display: grid;
  }

  .brand {
    grid-column: 2;
    width: min(410px, 100%);
  }

  .main-nav {
    display: none;
  }

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

  .main-nav ul {
    display: grid;
    justify-content: stretch;
  }

  .main-nav a {
    border-top: 1px solid var(--line);
  }

  .hero-content,
  .conversion-inner,
  .testimonial-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .answer-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .ribbon-inner {
    flex-direction: column;
    gap: 5px;
    padding: 8px 10px;
  }

  .ribbon-inner strong,
  .ribbon-inner span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .header-main {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 8px;
  }

  .brand {
    width: min(236px, 100%);
  }

  .header-contact a:first-child {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    gap: 24px;
    padding: 28px 0 34px;
  }

  .hero-copy,
  .quote-console,
  .proof-strip {
    width: 100%;
    max-width: 368px;
  }

  .hero h1 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
    max-width: 100%;
  }

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

  .proof-strip {
    margin-top: 22px;
  }

  .quote-console {
    padding: 18px;
  }

  .console-head h2 {
    font-size: 24px;
  }

  .wow-band,
  .testimonials,
  .services-section {
    padding: 48px 0;
  }

  .conversion-banner {
    padding: 54px 0;
  }

  .branch-grid,
  .quote-steps,
  .proof-strip,
  .answer-grid,
  .conversion-points,
  .service-grid,
  .footer-grid,
  .hero-marquee {
    grid-template-columns: 1fr;
  }

  .hero-marquee {
    position: relative;
  }

  .conversion-copy h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .conversion-copy p {
    font-size: 16px;
  }

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

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

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: space-between;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta a {
    flex: 1;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }
}
