:root {
  --orange: #f7941d;
  --orange-deep: #f15f12;
  --navy: #003b5c;
  --navy-dark: #001f3d;
  --white: #ffffff;
  --gray: #6b6b6b;
  --line: #d8dee7;
  --soft: #f4f7fa;
  --ink: #071a3d;
  --shadow: 0 16px 44px rgba(0, 31, 61, 0.16);
  --header-height: 112px;
  --sticky-cta-height: 86px;
  --trust-bar-height: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #eef3f7;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.42;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background: var(--white);
  box-shadow: var(--shadow);
  padding-bottom: var(--sticky-cta-height);
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 8px 18px 9px;
  background: var(--navy-dark);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 18px;
  content: "";
  background: linear-gradient(to bottom, var(--navy-dark), rgba(0, 31, 61, 0));
  pointer-events: none;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--sticky-cta-height) - var(--trust-bar-height) - var(--sticky-cta-bottom, 0px));
  min-height: calc(100dvh - var(--header-height) - var(--sticky-cta-height) - var(--trust-bar-height) - var(--sticky-cta-bottom, 0px));
  isolation: isolate;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg,
.photo-crop {
  background-image: url("assets/page-reference.png");
  background-repeat: no-repeat;
  background-size: 430px auto;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 25%;
  height: 370px;
  z-index: -2;
  background-image: url("assets/hero-house-crop.png");
  background-size: cover;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 31, 61, 0.98) 0%, rgba(0, 31, 61, 0.9) 42%, rgba(0, 31, 61, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 31, 61, 0.64), rgba(0, 31, 61, 0.08));
}

.siding-page .hero-bg,
.storm-page .hero-bg {
  left: 16%;
  height: 385px;
  background-position: center center;
}

.siding-page .hero::after,
.storm-page .hero::after {
  background:
    linear-gradient(90deg, rgba(0, 31, 61, 0.99) 0%, rgba(0, 31, 61, 0.92) 46%, rgba(0, 31, 61, 0.42) 100%),
    linear-gradient(0deg, rgba(0, 31, 61, 0.7), rgba(0, 31, 61, 0.1));
}

.hero-content {
  width: 84%;
  padding: 78px 18px 28px;
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 330px;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-sub {
  max-width: 310px;
  margin-top: 26px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 700;
}

.hero-trust {
  max-width: 300px;
  margin-top: 30px;
  color: var(--orange);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
}

.windows-page .hero,
.siding-page .hero,
.storm-page .hero {
  display: flex;
}

.windows-page .hero-content,
.siding-page .hero-content,
.storm-page .hero-content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: calc(100vh - var(--header-height) - var(--sticky-cta-height) - var(--trust-bar-height) - var(--sticky-cta-bottom, 0px));
  height: calc(100dvh - var(--header-height) - var(--sticky-cta-height) - var(--trust-bar-height) - var(--sticky-cta-bottom, 0px));
  min-height: inherit;
}

.windows-page .hero-trust,
.siding-page .hero-trust,
.storm-page .hero-trust {
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: auto;
  margin-bottom: 10px;
  padding-top: 30px;
  color: var(--orange);
  font-weight: 900;
  text-align: center;
  transform: translateX(28px);
}

.siding-page .trust-bar,
.storm-page .trust-bar {
  grid-template-columns: auto auto 1px auto 1px auto;
  gap: 8px;
  padding-inline: 10px;
  font-size: 14px;
}

.siding-page .stars,
.storm-page .stars {
  font-size: 16px;
}

.siding-page .dot,
.storm-page .dot {
  height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.btn-primary {
  width: 100%;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  box-shadow: 0 10px 18px rgba(247, 148, 29, 0.22);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-micro {
  color: var(--white);
  font-weight: 400;
}

.trust-bar {
  position: sticky;
  bottom: calc(var(--sticky-cta-bottom, 0px) + var(--sticky-cta-height));
  z-index: 19;
  display: grid;
  grid-template-columns: auto auto 1px auto 1px auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--trust-bar-height);
  padding: 8px 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
}

.trust-bar strong {
  white-space: nowrap;
}

.stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

.dot {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.22);
}

.teaser-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.12);
}

.teaser-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--navy-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.problem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 26px 30px 24px;
  border-bottom: 1px solid var(--line);
}

.siding-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.siding-panel {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 31, 61, 0.12), rgba(0, 31, 61, 0)),
    repeating-linear-gradient(
      0deg,
      #d5dde2 0,
      #d5dde2 18px,
      #bdc8cf 19px,
      #f2f5f7 21px,
      #c9d2d8 22px,
      #c9d2d8 40px
    );
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, 0.12);
}

.siding-panel img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.siding-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 31, 61, 0) 46%, rgba(0, 31, 61, 0.5)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 46%);
}

.siding-panel-after {
  background:
    linear-gradient(135deg, rgba(0, 59, 92, 0.12), rgba(0, 59, 92, 0)),
    repeating-linear-gradient(
      0deg,
      #eef3f6 0,
      #eef3f6 18px,
      #cfd9df 19px,
      #ffffff 21px,
      #dde5e9 22px,
      #dde5e9 40px
    );
}

.siding-panel span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  min-height: 30px;
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 31, 61, 0.84);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.storm-damage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.storm-panel {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #dce5eb;
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, 0.12);
}

.storm-panel img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storm-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 31, 61, 0.02) 38%, rgba(0, 31, 61, 0.58)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 46%);
}

.storm-panel span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  min-height: 30px;
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 31, 61, 0.84);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.problem h2,
.proof h2,
.estimate-card h2 {
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
}

.problem p:not(.eyebrow):not(.strong-line) {
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.38;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-deep);
  content: "×";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.strong-line {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.problem-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  align-self: center;
}

.problem-photo,
.door-photo {
  min-height: 138px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, 0.12);
}

.problem-photo {
  background-image: url("assets/problem-window-real.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 46%;
  background-color: #4b3d31;
}

.door-photo {
  background-image: url("assets/door-photo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.difference {
  padding: 24px 30px 25px;
  border-bottom: 1px solid var(--line);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 13px;
}

.difference article {
  display: grid;
  justify-items: center;
  grid-template-rows: 34px 1fr;
  align-items: start;
  min-height: 104px;
  padding: 8px 14px 14px;
  text-align: center;
}

.difference article:nth-child(even) {
  border-left: 1px solid var(--line);
}

.difference article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.difference h3 {
  align-self: start;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.line-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.house::before {
  inset: 10px 5px 3px;
  border: 3px solid var(--navy-dark);
  border-top: 0;
}

.line-icon.house::after {
  left: 7px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-left: 3px solid var(--navy-dark);
  border-top: 3px solid var(--navy-dark);
  transform: rotate(45deg);
}

.line-icon.seal::before {
  inset: 3px 5px;
  border: 3px solid var(--navy-dark);
  border-radius: 6px 6px 12px 12px;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.line-icon.seal::after {
  left: 11px;
  top: 10px;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--navy-dark);
  border-bottom: 3px solid var(--navy-dark);
  transform: rotate(-45deg);
}

.line-icon.trim::before {
  left: 5px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-left: 3px solid var(--navy-dark);
  border-bottom: 3px solid var(--navy-dark);
}

.line-icon.trim::after {
  left: 10px;
  top: 11px;
  width: 18px;
  height: 18px;
  border-left: 3px solid var(--navy-dark);
  border-bottom: 3px solid var(--navy-dark);
}

.line-icon.weather::before {
  left: 3px;
  top: 8px;
  width: 28px;
  height: 18px;
  border: 3px solid var(--navy-dark);
  border-radius: 22px;
}

.line-icon.weather::after {
  left: 15px;
  top: 2px;
  width: 2px;
  height: 30px;
  background: var(--navy-dark);
  box-shadow: -9px 7px 0 var(--navy-dark), 9px 7px 0 var(--navy-dark);
  transform: rotate(45deg);
}

.proof {
  padding: 24px 26px 25px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 13px;
}

.proof-card {
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.proof-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #0c2843;
}

.proof-copy {
  display: grid;
  gap: 2px;
  padding: 10px 11px 12px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-copy strong {
  font-size: 13px;
}

.review-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.review-card {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f9fb;
}

.review-card div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.review-card strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.review-card p {
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.38;
  font-weight: 700;
}

.estimate-card {
  margin: 0 26px 17px;
  padding: 18px 13px 17px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f6f8fb, #edf2f6);
}

.estimate-card h2,
.estimate-card > p {
  text-align: center;
}

.estimate-card > p {
  margin-top: 1px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.estimate-card > .offer-note {
  max-width: 330px;
  margin: 8px auto 0;
  color: var(--navy);
  font-weight: 900;
}

.estimate-form {
  display: grid;
  gap: 10px;
  margin-top: 13px;
}

.next-steps {
  margin-top: 13px;
  padding: 15px 15px 16px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px #d8e0ea;
}

.next-steps strong {
  display: block;
  color: var(--orange-deep);
  font-size: 17px;
  line-height: 1.15;
  text-align: center;
}

.next-steps ol {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.next-steps li {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.estimate-form label:not(.upload-box) span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"],
.estimate-form textarea {
  width: 100%;
  border: 1px solid #ccd5df;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  outline: 0;
}

.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"] {
  height: 46px;
  padding: 0 13px;
}

.estimate-form textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.35;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.17);
}

.estimate-form .is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.field-error {
  display: none;
  margin-top: 4px;
  color: #9f1d16;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.field-error:not(:empty) {
  display: block;
}

.upload-box {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 88px;
  padding: 13px;
  border: 1px dashed #9aa9ba;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.camera {
  position: relative;
  width: 28px;
  height: 22px;
  margin-top: 1px;
  border: 3px solid var(--navy-dark);
  border-radius: 4px;
}

.camera::before {
  position: absolute;
  left: 5px;
  top: -8px;
  width: 11px;
  height: 6px;
  border: 3px solid var(--navy-dark);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  content: "";
}

.camera::after {
  position: absolute;
  left: 7px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 3px solid var(--navy-dark);
  border-radius: 50%;
  content: "";
}

.upload-box strong {
  font-size: 14px;
}

.upload-box em {
  color: var(--gray);
  font-size: 12px;
  font-style: normal;
}

.estimate-form .btn {
  min-height: 50px;
  font-size: 16px;
}

.form-status {
  min-height: 18px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: #9f1d16;
}

.phone-line {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.phone {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-micro {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
}

.form-micro::before {
  margin-right: 5px;
  content: "▣";
  color: var(--navy-dark);
}

.service-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px 11px;
  color: var(--ink);
  text-align: center;
}

.service-line span {
  color: var(--orange-deep);
  font-size: 24px;
  line-height: 1;
}

.final-close {
  padding: 23px 32px 32px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 28px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #f7f9fb;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.site-footer a:not(.phone) {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page {
  padding-bottom: 0;
}

.privacy-content {
  display: grid;
  gap: 14px;
  padding: 30px 30px 34px;
}

.privacy-content h1 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
}

.privacy-content h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.privacy-content p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.confirmation-page {
  padding-bottom: 0;
}

.thanks-hero {
  padding: 35px 32px 25px;
  text-align: center;
}

.success-check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--white);
  background: #35b44a;
  font-size: 42px;
  font-weight: 900;
}

.thanks-hero h1 {
  font-size: 30px;
  line-height: 1.08;
}

.thanks-hero p {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.35;
}

.response-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 17px;
  border-radius: 7px;
  background: #eef5ee;
  text-align: left;
}

.response-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.clock-mini {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.clock-mini::before {
  position: absolute;
  left: 13px;
  top: 6px;
  width: 3px;
  height: 11px;
  background: var(--ink);
  content: "";
}

.clock-mini::after {
  position: absolute;
  left: 13px;
  top: 15px;
  width: 9px;
  height: 3px;
  background: var(--ink);
  content: "";
  transform: rotate(24deg);
  transform-origin: left center;
}

.post-estimator {
  padding: 24px 31px 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.post-estimator .teaser-icon {
  margin: 0 auto 13px;
}

.post-estimator h2 {
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
}

.post-estimator p {
  margin-top: 9px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.post-estimator .btn {
  margin-top: 18px;
  min-height: 52px;
  font-size: 14px;
}

.guide-download {
  padding: 24px 31px 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.guide-download h2 {
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
}

.guide-download p {
  margin-top: 9px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.guide-download .btn {
  margin-top: 18px;
  min-height: 52px;
  font-size: 14px;
}

.confirm-photo-section {
  color: var(--white);
  background: var(--navy-dark);
}

.confirm-photo {
  height: 170px;
  background-image: url("assets/page-reference.png");
  background-repeat: no-repeat;
  background-size: 853px 1843px;
  background-position: -452px -105px;
}

.confirm-photo-section div:last-child {
  padding: 18px 32px 28px;
}

.confirm-photo-section strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.confirm-photo-section p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: var(--sticky-cta-bottom, 0px);
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--sticky-cta-height);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 -10px 26px rgba(0, 31, 61, 0.18);
}

.sticky-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.sticky-cta-note {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  opacity: 0.95;
  text-align: center;
}

@media (max-width: 374px) {
  .hero-content {
    width: 88%;
  }

  h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-trust {
    font-size: 17px;
  }

  .windows-page .hero-trust,
  .siding-page .hero-trust,
  .storm-page .hero-trust {
    transform: translateX(18px);
  }

  .trust-bar {
    gap: 5px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .siding-page .trust-bar,
  .storm-page .trust-bar {
    gap: 5px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .stars {
    font-size: 14px;
  }

  .siding-page .stars,
  .storm-page .stars {
    font-size: 14px;
  }

  .dot {
    height: 18px;
  }

  .sticky-cta {
    font-size: 17px;
  }

  .sticky-cta-note {
    font-size: 11px;
  }

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

  .problem-photos {
    grid-template-columns: 1fr;
  }

  .problem-photo,
  .door-photo {
    min-height: 160px;
  }

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

@media (min-width: 431px) {
  body {
    padding: 28px 0;
  }

  .page-shell {
    border-radius: 28px;
  }

  .sticky-cta {
    right: 50%;
    left: auto;
    width: 430px;
    transform: translateX(50%);
  }
}
