:root {
  --black: #0b0b0d;
  --charcoal: #231416;
  --red: #cf1c22;
  --red-dark: #8f171c;
  --cyan: #159dcc;
  --cyan-dark: #0c789d;
  --ice: #eaf8fc;
  --yellow: #ffba08;
  --yellow-dark: #f29b05;
  --navy: var(--black);
  --blue: var(--cyan);
  --blue-2: #23b8e4;
  --green: var(--red);
  --text: #221f23;
  --muted: #5d6069;
  --line: #e0e4ea;
  --soft: var(--ice);
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(35, 20, 22, .14);
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

/* Outgrow / ServiceTitan-inspired quiz treatment */
.simple-quiz-page {
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 34%, rgba(255,255,255,.18) 100%),
    var(--quiz-bg, url("assets/carolina/quiz-background.png")) center / cover fixed;
}

.simple-quiz-page .funnel-visual {
  display: none !important;
}

.simple-quiz-page .quiz-card {
  overflow: hidden;
  padding: 0 30px 30px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 90px rgba(8, 20, 34, .22);
}

.quiz-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 -30px;
  padding: 18px 28px;
  color: white;
  background: linear-gradient(90deg, #071b36, #0b86c7);
}

.quiz-card-header img {
  width: 92px;
  height: auto;
  padding: 7px;
  border-radius: 8px;
  background: white;
}

.quiz-card-header strong,
.quiz-card-header span {
  display: block;
}

.quiz-card-header strong {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-card-header span {
  margin-top: 3px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}

.quiz-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -30px;
  padding: 14px 22px 12px;
  border-bottom: 1px solid #e8edf2;
  background: #fbfdff;
}

.quiz-tabs span {
  display: grid;
  place-items: center;
  gap: 6px;
  color: #626c77;
  font-size: 13px;
  font-weight: 800;
}

.quiz-tabs span::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid #9aa6b2;
  border-radius: 50%;
  background: white;
}

.quiz-tabs span.active {
  color: var(--red);
}

.quiz-tabs span.active::before {
  border-color: var(--red);
  background: radial-gradient(circle at center, var(--red) 0 35%, white 38%);
}

.simple-quiz-page .quiz-progress {
  height: 7px;
  margin: 0 -30px 24px;
  border-radius: 0;
}

.simple-quiz-page .quiz-step h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.2vw, 32px);
}

.simple-quiz-page .quiz-step > button:not(.button) {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 0 18px 0 16px;
  border: 1px solid #d9e7ef;
  border-radius: 7px;
  background: white;
  font-size: 16px;
  text-align: left;
}

.simple-quiz-page .quiz-step > button:not(.button)::before {
  margin-bottom: 0;
}

.simple-quiz-page .quiz-step > button.selected,
.simple-quiz-page .quiz-step > button:not(.button):hover {
  border-color: var(--red);
  background: #fff8f8;
}

.quote-steps {
  padding: clamp(40px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: white;
}

.quote-steps h2 {
  margin: 0 0 30px;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  text-align: center;
}

.quote-step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.quote-step-row article {
  position: relative;
  min-height: 104px;
  padding: 22px 18px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: white;
}

.quote-step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.quote-step-row span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.quote-step-row strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.quote-step-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 80px);
  max-width: 980px;
  margin: 0 auto;
}

.quote-step-copy p {
  margin: 0;
  color: #181a1f;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

@media (max-width: 860px) {
  .quiz-card-header {
    display: block;
    text-align: center;
  }

  .quiz-card-header img {
    margin-bottom: 10px;
  }

  .quiz-tabs {
    padding-inline: 10px;
  }

  .quote-step-row,
  .quote-step-copy {
    grid-template-columns: 1fr;
  }

  .quote-step-row article:not(:last-child)::after {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 24, 66, .1);
  box-shadow: 0 8px 25px rgba(35, 20, 22, .06);
}

.brand img {
  width: 252px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 900;
  color: var(--charcoal);
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  font-size: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  color: var(--black);
  background: linear-gradient(180deg, var(--yellow), var(--yellow-dark));
  box-shadow: 0 10px 22px rgba(244, 164, 0, .28);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button-small {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
  text-transform: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(455px, 41fr) minmax(365px, 31fr) minmax(340px, 28fr);
  min-height: 590px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, .88) 48%, rgba(255, 255, 255, .18) 65%),
    #fbfdfe;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 38px 0 38px clamp(24px, 4.6vw, 66px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(44px, 4.3vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hero-subhead {
  max-width: 650px;
  margin: 22px 0 20px;
  color: #2a2528;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.34;
  font-weight: 600;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, .42fr) 44px minmax(0, .58fr);
  align-items: center;
  max-width: 560px;
  margin-bottom: 14px;
  border: 3px solid var(--red);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 32px rgba(35, 20, 22, .1);
  overflow: hidden;
}

.offer-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 112px;
  padding: 12px;
  min-width: 0;
}

.offer-block strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: .9;
  font-weight: 900;
}

.offer-block span {
  color: var(--black);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  min-width: 0;
}

.offer-green strong {
  font-size: clamp(48px, 4.05vw, 58px);
}

.offer-green span {
  max-width: 84px;
  font-size: clamp(13px, .95vw, 15px);
  overflow-wrap: anywhere;
}

.offer-blue strong {
  color: var(--cyan-dark);
}

.offer-green strong,
.offer-green span {
  color: var(--red);
}

.offer-plus {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: auto;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.hero-button {
  width: min(100%, 520px);
  margin-top: 2px;
  gap: 12px;
  font-size: clamp(19px, 2vw, 28px);
}

.microcopy,
.privacy {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.form-value {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 12px;
  padding: 0;
  list-style: none;
}

.form-value li {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(21, 157, 204, .28);
  border-radius: 6px;
  color: var(--black);
  background: rgba(234, 248, 252, .64);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.form-status-success {
  color: var(--cyan-dark);
}

.form-status-error {
  color: var(--red);
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 54% center;
}

.estimate-form {
  z-index: 3;
  align-self: center;
  margin-right: clamp(20px, 3vw, 42px);
  padding: 18px 22px 22px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.estimate-form h2 {
  margin: -18px -22px 22px;
  padding: 20px 18px;
  border-radius: 6px 6px 0 0;
  color: white;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.estimate-form label {
  display: block;
  margin-bottom: 14px;
}

.estimate-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #b9c4d3;
  border-radius: 5px;
  color: var(--text);
  background: white;
  font: 600 16px "Plus Jakarta Sans", Arial, sans-serif;
}

.form-button {
  width: 100%;
  margin-top: 6px;
  font-size: 18px;
}

.form-button:disabled {
  opacity: .78;
  cursor: not-allowed;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--black);
  text-transform: uppercase;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
}

.trust-strip strong {
  max-width: 210px;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, var(--ice), #ffffff);
}

.section-panel {
  padding: clamp(42px, 5vw, 70px) clamp(22px, 5vw, 80px);
  border-right: 1px solid var(--line);
}

.section-panel h2,
.section-heading h2,
.reviews h2 {
  margin: 0 0 28px;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.warning-panel h2 {
  color: var(--red);
}

.benefit-grid,
.sign-grid,
.work-grid {
  display: grid;
  gap: 20px;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sign-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article,
.sign-grid article {
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child,
.sign-grid article:last-child {
  border-right: 0;
}

.line-icon,
.sign-grid span {
  display: block;
  min-height: 48px;
  color: var(--cyan-dark);
  font-size: 44px;
  line-height: 1;
}

.sign-grid span {
  color: var(--red);
}

h3 {
  margin: 14px 0 8px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.14;
  font-weight: 900;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.work-section {
  padding: clamp(54px, 6vw, 86px) clamp(22px, 5vw, 76px);
  background: white;
}

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

.section-heading p {
  margin: 0;
  font-size: 18px;
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(35, 20, 22, .08);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-grid h3,
.work-grid p {
  padding: 0 20px;
}

.work-grid p {
  padding-bottom: 22px;
  margin-top: 0;
}

.google-reviews {
  padding: clamp(54px, 6vw, 86px) clamp(22px, 5vw, 76px);
  background: linear-gradient(180deg, #ffffff, var(--ice));
  border-top: 1px solid var(--line);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.review-summary,
.review-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(35, 20, 22, .08);
}

.review-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 28px;
}

.google-label {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.review-summary strong {
  margin-top: 8px;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  line-height: .9;
  font-weight: 900;
}

.review-summary p {
  margin: 10px 0 8px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}

.stars {
  color: var(--yellow-dark);
  font-size: 22px;
  letter-spacing: 0;
}

.review-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: white;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-cards {
  display: grid;
  gap: 14px;
}

.review-cards article {
  padding: 22px;
}

.review-cards p {
  margin: 8px 0 12px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.review-cards h3 {
  margin: 10px 0 6px;
}

.google-map {
  grid-column: 1 / -1;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(35, 20, 22, .08);
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(46px, 5vw, 70px) clamp(22px, 5vw, 76px);
  color: white;
  background: linear-gradient(120deg, var(--black), var(--red-dark));
}

.reviews h2,
.reviews p {
  color: white;
  text-align: left;
}

.reviews h2 {
  margin-bottom: 12px;
}

.reviews p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.service-areas {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px clamp(22px, 5vw, 76px);
  color: white;
  background: var(--black);
}

.service-areas span {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-areas li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-areas li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--red);
  background: white;
  font-size: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px clamp(22px, 5vw, 76px);
  background: white;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
}

.site-footer p,
.site-footer a {
  font-weight: 800;
}

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

  .hero {
    grid-template-columns: 1fr 380px;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
  }

  .estimate-form {
    grid-column: 1 / -1;
    width: min(720px, calc(100% - 44px));
    margin: -20px auto 42px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .section-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .site-header,
  .header-actions,
  .reviews,
  .service-areas,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .brand img,
  .site-footer img {
    margin: 0 auto;
  }

  .phone-link {
    justify-content: center;
  }

  .hero {
    display: block;
    min-height: 0;
    background: white;
  }

  .hero-copy {
    padding: 34px 22px 20px;
  }

  .hero-media img {
    min-height: 300px;
    max-height: 420px;
  }

  .estimate-form {
    width: calc(100% - 32px);
    margin: 16px auto 34px;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-block {
    flex-direction: column;
    gap: 8px;
    min-height: 118px;
    text-align: center;
  }

  .offer-block span,
  .offer-green span {
    max-width: 260px;
    font-size: 18px;
  }

  .offer-plus {
    margin: -10px auto;
    z-index: 2;
  }

  .trust-strip,
  .benefit-grid,
  .sign-grid,
  .work-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .benefit-grid article,
  .sign-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-areas ul {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 16px;
    padding: 14px;
  }

  .brand img {
    width: 210px;
  }

  .header-actions {
    gap: 12px;
  }

  .phone-link {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.08;
    max-width: 330px;
  }

  .hero-subhead {
    font-size: 14px;
    line-height: 1.45;
    max-width: 330px;
  }

  .hero-copy {
    padding: 32px 18px 20px;
  }

  .offer-block {
    min-height: 112px;
  }

  .offer-block strong {
    font-size: 60px;
  }

  .button {
    width: 100%;
  }
}

.simple-quiz-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.42) 100%),
    var(--quiz-bg, url("assets/carolina/quiz-background.png")) center / cover fixed;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.quiz-hero {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(340px, 500px);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 72px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px) 0;
}

.quiz-copy h1 {
  max-width: 640px;
  margin: 0;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(255,255,255,.7);
}

.quiz-copy p {
  max-width: 560px;
  color: #2a2528;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
}

.simple-proof {
  color: var(--red) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.simple-offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 20px 0;
}

.simple-offer div {
  padding: 18px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: white;
}

.simple-offer strong {
  display: block;
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: .9;
}

.simple-offer span {
  display: block;
  margin-top: 6px;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.simple-bullets {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-bullets li {
  color: var(--black);
  font-weight: 800;
}

.simple-bullets li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--red);
  font-weight: 900;
}

.funnel-visual {
  max-width: 120px;
  margin: 16px 0 0;
  overflow: hidden;
  border: 2px solid rgba(207, 28, 34, .4);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 36px rgba(35, 20, 22, .16);
}

.funnel-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.quiz-card {
  align-self: center;
  width: 100%;
  margin: 0;
  padding: 0 28px 28px;
  border-color: rgba(21, 157, 204, .28);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(35, 20, 22, .16);
}

.quiz-progress {
  height: 8px;
  margin: 0 -28px 22px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: #f0f2f5;
}

.quiz-progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 62%, var(--cyan) 62%, var(--cyan) 100%);
  transition: width .2s ease;
}

.quiz-step h2 {
  margin: 0 auto 22px;
  max-width: 420px;
  padding: 0;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
  text-align: center;
}

.quiz-card .quiz-step h2 {
  padding: 0;
  color: var(--black);
  background: transparent;
}

.quiz-step > button:not(.button) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 74px;
  margin-bottom: 12px;
  padding: 0 18px;
  border: 2px solid rgba(21, 157, 204, .28);
  border-radius: 8px;
  color: var(--black);
  background: white;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.quiz-step > button:not(.button)::before {
  content: "";
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(21, 157, 204, .16), rgba(207, 28, 34, .08)),
    white;
}

.quiz-step > button.selected,
.quiz-step > button:not(.button):hover {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(207, 28, 34, .07), rgba(21, 157, 204, .04));
  box-shadow: 0 10px 20px rgba(35, 20, 22, .08);
}

.quiz-step > button.selected::before {
  background: linear-gradient(135deg, var(--red), var(--cyan));
  box-shadow: inset 0 0 0 8px white;
}

.quiz-next {
  width: 100%;
  margin: 8px 0 12px;
}

.quiz-warning {
  min-height: 20px;
  margin: 4px 0 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.quiz-step .quiz-back {
  min-height: 42px !important;
  color: var(--muted) !important;
  background: transparent !important;
  text-align: center !important;
}

.lead-step label {
  display: block;
  margin-bottom: 12px;
}

.lead-value {
  margin: -10px 0 16px;
  color: var(--black);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 800;
  text-align: center;
}

.lead-step label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.simple-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: white;
}

.simple-quiz-page .button,
.simple-quiz-page .quiz-next,
.simple-quiz-page .form-button {
  color: white;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(207, 28, 34, .24);
}

.simple-quiz-page .simple-offer div {
  border-color: var(--red);
}

.simple-quiz-page .simple-offer strong {
  color: var(--red);
}

.simple-quiz-page .phone-icon {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.simple-strip div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}

.simple-strip strong,
.simple-strip span {
  display: block;
}

.simple-strip strong {
  font-size: 22px;
  font-weight: 900;
}

.simple-strip span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

@media (max-width: 860px) {
  .simple-header,
  .quiz-hero {
    display: block;
  }

  .simple-header {
    text-align: center;
  }

  .simple-header .phone-link {
    margin-top: 14px;
  }

  .quiz-copy {
    margin-bottom: 28px;
  }

  .simple-quiz-page .quiz-copy p:not(.simple-proof),
  .simple-quiz-page .simple-offer,
  .simple-quiz-page .simple-bullets,
  .funnel-visual {
    display: none;
  }

  .simple-offer,
  .simple-strip {
    grid-template-columns: 1fr;
  }
}

.funnel-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 41%, rgba(255,255,255,.48) 100%),
    var(--funnel-bg, url("assets/carolina/quiz-background.png")) center / cover fixed;
}

.funnel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
}

.funnel-hero {
  display: grid;
  grid-template-columns: minmax(320px, 610px) minmax(330px, 440px);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 0;
}

.funnel-copy h1 {
  margin: 0;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: .96;
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-subhead {
  max-width: 620px;
  margin: 20px 0;
  color: #211d20;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.34;
  font-weight: 800;
}

.funnel-offer {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 10px 14px;
  align-items: center;
  max-width: 640px;
  margin: 18px 0 22px;
  padding: 16px;
  border: 3px solid var(--red);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 42px rgba(35,20,22,.12);
}

.funnel-offer strong {
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .9;
  font-weight: 900;
}

.funnel-offer span {
  color: var(--black);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.funnel-bullets {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.funnel-bullets li {
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
}

.funnel-bullets li::before {
  content: "+";
  margin-right: 10px;
  color: var(--red);
}

.funnel-form {
  width: 100%;
  margin: 0;
}

.funnel-page .button,
.funnel-page .form-button {
  color: white;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(207, 28, 34, .24);
}

@media (max-width: 860px) {
  .funnel-header,
  .funnel-hero {
    display: block;
  }

  .funnel-header {
    text-align: center;
  }

  .funnel-header .brand img {
    margin: 0 auto 12px;
  }

  .funnel-header .phone-link {
    justify-content: center;
  }

  .funnel-copy {
    margin-bottom: 24px;
  }

  .funnel-offer {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

/* Final quiz overrides: keep these last so each quiz uses the clean estimate-tool style. */
.simple-quiz-page {
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 34%, rgba(255,255,255,.18) 100%),
    var(--quiz-bg, url("assets/carolina/quiz-background.png")) center / cover fixed;
}

.simple-quiz-page .funnel-visual {
  display: none !important;
}

.simple-quiz-page .quiz-card {
  overflow: hidden;
  padding: 0 30px 30px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 90px rgba(8, 20, 34, .22);
}

.simple-quiz-page .quiz-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 -30px;
  padding: 18px 28px;
  color: white;
  background: linear-gradient(90deg, #071b36, #0b86c7);
}

.simple-quiz-page .quiz-card-header img {
  width: 92px;
  height: auto;
  padding: 7px;
  border-radius: 8px;
  background: white;
}

.simple-quiz-page .quiz-card-header strong,
.simple-quiz-page .quiz-card-header span {
  display: block;
}

.simple-quiz-page .quiz-card-header strong {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-quiz-page .quiz-card-header span {
  margin-top: 3px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}

.simple-quiz-page .quiz-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -30px;
  padding: 14px 22px 12px;
  border-bottom: 1px solid #e8edf2;
  background: #fbfdff;
}

.simple-quiz-page .quiz-tabs span {
  display: grid;
  place-items: center;
  gap: 6px;
  color: #626c77;
  font-size: 13px;
  font-weight: 800;
}

.simple-quiz-page .quiz-tabs span::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid #9aa6b2;
  border-radius: 50%;
  background: white;
}

.simple-quiz-page .quiz-tabs span.active {
  color: var(--red);
}

.simple-quiz-page .quiz-tabs span.active::before {
  border-color: var(--red);
  background: radial-gradient(circle at center, var(--red) 0 35%, white 38%);
}

.simple-quiz-page .quiz-progress {
  height: 7px;
  margin: 0 -30px 24px;
  border-radius: 0;
}

.simple-quiz-page .quiz-step h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.2vw, 32px);
}

.simple-quiz-page .quiz-step > button:not(.button) {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 0 18px 0 16px;
  border: 1px solid #d9e7ef;
  border-radius: 7px;
  background: white;
  font-size: 16px;
  text-align: left;
}

.simple-quiz-page .quiz-step > button:not(.button)::before {
  margin-bottom: 0;
}

.simple-quiz-page .quiz-step > button.selected,
.simple-quiz-page .quiz-step > button:not(.button):hover {
  border-color: var(--red);
  background: #fff8f8;
}

.simple-quiz-page .quote-steps {
  padding: clamp(40px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: white;
}

.simple-quiz-page .quote-steps h2 {
  margin: 0 0 30px;
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  text-align: center;
}

.simple-quiz-page .quote-step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.simple-quiz-page .quote-step-row article {
  position: relative;
  min-height: 104px;
  padding: 22px 18px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: white;
}

.simple-quiz-page .quote-step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.simple-quiz-page .quote-step-row span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.simple-quiz-page .quote-step-row strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.simple-quiz-page .quote-step-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 80px);
  max-width: 980px;
  margin: 0 auto;
}

.simple-quiz-page .quote-step-copy p {
  margin: 0;
  color: #181a1f;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

@media (max-width: 860px) {
  .simple-quiz-page .quiz-card-header {
    display: block;
    text-align: center;
  }

  .simple-quiz-page .quiz-card-header img {
    margin-bottom: 10px;
  }

  .simple-quiz-page .quiz-tabs {
    padding-inline: 10px;
  }

  .simple-quiz-page .quote-step-row,
  .simple-quiz-page .quote-step-copy {
    grid-template-columns: 1fr;
  }

  .simple-quiz-page .quote-step-row article:not(:last-child)::after {
    display: none;
  }
}

/* Global funnel CTA + proof cleanup */
.phone-link {
  padding: 10px 18px 10px 10px;
  border: 2px solid rgba(207, 28, 34, .95);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 24px rgba(35, 20, 22, .12);
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1;
}

.phone-icon {
  width: 48px;
  height: 48px;
  font-size: 17px;
  font-weight: 900;
}

.google-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(11, 11, 13, .12);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(35, 20, 22, .08);
}

.google-proof span {
  color: #ffb000;
  letter-spacing: 1px;
}

.google-proof:hover {
  border-color: rgba(207, 28, 34, .55);
  transform: translateY(-1px);
}

.review-actions {
  display: none !important;
}

.funnel-visual {
  display: none !important;
}

.review-snips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(28px, 4vw, 48px);
}

.review-snip {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(11, 11, 13, .12);
  border-radius: 8px;
  color: var(--black);
  background: rgba(255,255,255,.94);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(35, 20, 22, .1);
}

.review-snip span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-snip strong {
  display: block;
  margin-top: 6px;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.review-snip p {
  margin: 8px 0 0;
  color: #202126;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.review-snip:hover {
  border-color: rgba(207, 28, 34, .5);
  transform: translateY(-1px);
}

.call-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  color: white;
  background: #061d34;
  text-align: center;
}

.call-footer p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.call-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.call-footer a::before {
  content: "☎";
  color: var(--cyan);
}

.funnel-type-impact .funnel-copy h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-type-clean .funnel-copy h1 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-type-rounded .funnel-copy h1 {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.02;
}

.funnel-type-urgent .funnel-copy h1 {
  font-family: "Arial Black", Impact, "Inter", sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: .98;
}

.funnel-type-efficient .funnel-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

.quiz-type-offer .quiz-copy h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quiz-type-advice .quiz-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

@media (max-width: 860px) {
  .funnel-header,
  .simple-header,
  .site-header,
  .header-actions {
    gap: 12px;
  }

  .google-proof {
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
  }

  .phone-link {
    justify-content: center;
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
  }

  .review-snips {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }
}

/* Final intake-page polish: simple, appointment-focused, and closer to the quote-tool reference. */
.funnel-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.58) 100%),
    var(--funnel-bg) center / cover fixed;
}

.funnel-page .funnel-bullets,
.funnel-page .form-value {
  display: none;
}

.funnel-page .funnel-hero {
  min-height: calc(100vh - 94px);
  padding-block: clamp(38px, 6vw, 76px);
}

.funnel-page .funnel-copy {
  max-width: 640px;
}

.funnel-page .funnel-copy h1 {
  max-width: 620px;
}

.funnel-page .funnel-subhead {
  max-width: 540px;
}

.funnel-page .funnel-form {
  max-width: 430px;
}

.funnel-page .form-button,
.simple-quiz-page .form-button,
.simple-quiz-page .quiz-next {
  min-height: 58px;
  font-size: 16px;
}

.form-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 12px 0 0;
  padding: 12px 16px;
  border: 2px solid rgba(21, 157, 204, .35);
  border-radius: 8px;
  color: #061d34;
  background: #f4fbfe;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.form-call-link:hover {
  border-color: var(--cyan);
  color: var(--red);
}

.quote-tool-page {
  color: #061d34;
  background: #fff;
}

.quote-tool-page .simple-header {
  background: #fff;
  border-bottom: 1px solid #e8edf2;
}

.quote-tool-page .quiz-hero {
  display: block;
  width: min(1080px, calc(100% - 40px));
  min-height: auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(20px, 4vw, 48px);
}

.quote-tool-page .quiz-copy,
.quote-tool-page .quiz-card-header,
.quote-tool-page .quiz-tabs,
.quote-tool-page .simple-strip {
  display: none !important;
}

.quote-tool-page .quiz-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0 20px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.quote-tool-page .quiz-progress {
  width: min(720px, 82%);
  height: 24px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  overflow: visible;
  border-radius: 999px;
  background: #58a9d3;
}

.quote-tool-page .quiz-progress-bar {
  position: relative;
  min-width: 52px;
  height: 100%;
  border-radius: 999px;
  background: #58a9d3;
  transition: width .2s ease;
}

.quote-tool-page .quiz-progress-bar::after {
  content: "$0";
  position: absolute;
  right: -26px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #061d34;
  background: var(--yellow);
  box-shadow: 0 10px 22px rgba(6, 29, 52, .18);
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
}

.quote-tool-page .quiz-step {
  text-align: center;
}

.quote-tool-page .quiz-step h2 {
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: #243a56;
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  text-transform: none;
}

.quote-tool-page .quiz-step > button:not(.button):not(.quiz-back) {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  place-items: center;
  width: 162px;
  min-height: 132px;
  margin: 0 18px 26px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  color: #061d34;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  vertical-align: top;
}

.quote-tool-page .quiz-step > button[data-icon]:not(.button):not(.quiz-back)::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 0 14px;
  border: 5px solid var(--cyan);
  border-radius: 18px;
  color: var(--cyan);
  background: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.quote-tool-page .quiz-step > button:not([data-icon]):not(.button):not(.quiz-back) {
  display: block;
  grid-template-columns: none;
  grid-template-rows: none;
  width: min(520px, 100%);
  min-height: 58px;
  margin: 0 auto 12px;
  padding: 0 18px;
  border: 1px solid #d9e7ef;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.quote-tool-page .quiz-step > button:not([data-icon]):not(.button):not(.quiz-back)::before {
  display: none;
}

.quote-tool-page .quiz-step .quiz-back {
  display: block;
  width: auto;
  min-height: auto !important;
  margin: 6px auto 0;
  padding: 8px 18px;
  border: 0 !important;
  color: #607084 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 900;
  text-align: center !important;
}

.quote-tool-page .quiz-step .quiz-back::before {
  content: none !important;
  display: none !important;
}

.quote-tool-page .quiz-step > button.selected:not(.button):not(.quiz-back),
.quote-tool-page .quiz-step > button:not(.button):not(.quiz-back):hover {
  color: #061d34;
  background: #fff;
  box-shadow: none;
}

.quote-tool-page .quiz-step > button.selected[data-icon]:not(.button):not(.quiz-back)::before,
.quote-tool-page .quiz-step > button[data-icon]:not(.button):not(.quiz-back):hover::before {
  border-color: var(--red);
  color: var(--red);
}

.quote-tool-page .quiz-next {
  display: block;
  width: auto;
  min-width: 160px;
  margin: 12px auto 12px;
  padding-inline: 24px;
  color: #061d34;
  background: var(--yellow);
  box-shadow: none;
}

.quote-tool-page .lead-step {
  max-width: 520px;
  margin: 0 auto;
}

.quote-tool-page .lead-step h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.quote-tool-page .lead-step label {
  text-align: left;
}

.quote-tool-page .quote-steps {
  border-top: 1px solid #e8edf2;
  padding-top: clamp(34px, 5vw, 58px);
}

.quote-tool-page .quote-steps h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
}

.review-snips {
  align-items: stretch;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 40px));
  padding-top: clamp(26px, 4vw, 48px);
}

.review-heading {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0 0 6px;
}

.review-heading h2 {
  margin: 0;
  color: #061d34;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.review-heading p {
  margin: 10px 0 0;
  color: #466078;
  font-size: 15px;
  font-weight: 700;
}

.review-snip span {
  color: #ffb000;
  letter-spacing: 1px;
  text-transform: none;
}

.review-snip strong {
  margin-top: auto;
  color: #243a56;
  font-size: 13px;
}

.review-snip p {
  font-size: 13px;
  font-weight: 600;
}

.review-snip {
  display: flex;
  flex-direction: column;
  min-height: 198px;
  padding: 14px;
  border-color: #dce5ef;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(6, 29, 52, .08);
}

.review-snip span {
  font-size: 13px;
}

.review-snip p {
  margin: 12px 0 16px;
  color: #061d34;
  line-height: 1.45;
}

.google-reviews {
  background: #fff;
}

.google-reviews .reviews-layout {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.google-reviews .review-summary,
.google-reviews .google-map {
  display: none;
}

.review-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.review-cards a {
  display: flex;
  flex-direction: column;
  min-height: 198px;
  padding: 14px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  color: #061d34;
  background: #fff;
  box-shadow: 0 3px 8px rgba(6, 29, 52, .08);
}

.review-cards .stars {
  color: #ffb000;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-cards p {
  margin: 12px 0 16px;
  color: #061d34;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.review-cards h3 {
  margin: auto 0 2px;
  color: #061d34;
  font-size: 13px;
  line-height: 1.2;
}

.review-cards small {
  display: block;
  color: #6e83a0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.call-footer {
  padding: 20px clamp(18px, 4vw, 40px);
}

.call-footer a {
  font-size: clamp(22px, 2.4vw, 30px);
}

.call-footer a::before {
  content: "\260e";
}

@media (max-width: 860px) {
  .quote-tool-page .quiz-hero {
    width: min(100% - 28px, 640px);
    padding-top: 26px;
  }

  .quote-tool-page .quiz-progress {
    width: calc(100% - 42px);
    margin-bottom: 42px;
  }

  .quote-tool-page .quiz-step h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .quote-tool-page .quiz-step > button:not(.button):not(.quiz-back) {
    width: 46%;
    min-height: 118px;
    margin-inline: 1%;
  }

  .funnel-page .funnel-hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .review-snips,
  .review-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .review-snips,
  .review-cards {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
  }

  .review-snip,
  .review-cards a {
    min-height: 0;
  }
}

/* Final quiz-card and Google review source corrections. */
.quote-tool-page .quiz-step > button.quiz-option-card:not(.button):not(.quiz-back) {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 178px;
  min-height: 154px;
  margin: 0 12px 24px;
  padding: 16px 14px;
  border: 2px solid #cde8f2;
  border-radius: 14px;
  color: #061d34;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 29, 52, .08);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.quote-tool-page .quiz-step > button.quiz-option-card:not(.button):not(.quiz-back)::before {
  content: none !important;
  display: none !important;
}

.quiz-option-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 4px solid var(--cyan);
  border-radius: 22px;
  color: var(--cyan);
  background: #f7fcfe;
}

.quiz-option-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiz-option-label {
  display: block;
}

.quote-tool-page .quiz-step > button.quiz-option-card.selected:not(.button):not(.quiz-back),
.quote-tool-page .quiz-step > button.quiz-option-card:not(.button):not(.quiz-back):hover {
  border-color: var(--red);
  background: #fffafa;
  box-shadow: 0 16px 34px rgba(207, 28, 34, .14);
  transform: translateY(-2px);
}

.quote-tool-page .quiz-step > button.quiz-option-card.selected .quiz-option-icon,
.quote-tool-page .quiz-step > button.quiz-option-card:hover .quiz-option-icon {
  border-color: var(--red);
  color: var(--red);
}

.review-snips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, calc(100% - 40px));
}

.review-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .review-snips,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .quote-tool-page .quiz-step > button.quiz-option-card:not(.button):not(.quiz-back) {
    width: 46%;
    min-width: 0;
    min-height: 138px;
    margin-inline: 1%;
    padding-inline: 10px;
  }

  .quiz-option-icon {
    width: 64px;
    height: 64px;
  }

  .quiz-option-icon svg {
    width: 36px;
    height: 36px;
  }

  .review-snips,
  .review-cards {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
  }
}
