:root {
  --navy: #061f57;
  --blue: #1268b3;
  --red: #df080d;
  --sky: #eef8ff;
  --pale: #f6fbff;
  --line: #e3edf7;
  --ink: #172d54;
  --shadow: 0 10px 24px rgba(7, 31, 79, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.48;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: #ffffff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 0;
  box-shadow: none;
}

.nav {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 10px 28px 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  font-size: 1.46rem;
  line-height: 1;
  white-space: nowrap;
}

.logo-box {
  width: 126px;
  height: 126px;
  flex: 0 0 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #5091c7;
  box-shadow: none;
}

.logo-box img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}

.brand-lockup {
  display: grid;
  gap: 7px;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 900;
}

.brand-name strong {
  color: #0b5ca9;
}

.brand-name em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.brand-service {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links a {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(223, 8, 13, 0.22);
  cursor: pointer;
  font-family: inherit;
}

.mobile-only-cta {
  display: none;
}

.phone-icon-button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 50%;
}

.phone-icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-phone-cta {
  display: none;
  margin: 14px auto 0;
}

.button.secondary {
  border-color: #8ab0d7;
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 31, 79, 0.08);
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal[aria-hidden="false"] {
  display: flex;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(6, 31, 87, 0.66);
  cursor: pointer;
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(6, 31, 87, 0.34);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.contact-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-dialog h2 {
  max-width: 500px;
  margin-right: 42px;
  color: var(--navy);
  font-size: 1.62rem;
}

.contact-intro {
  margin: 0 0 20px;
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form label span {
  font-size: 0.78rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.message-preview {
  width: 100%;
  border: 1px solid #cddbea;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--navy);
  background: #fafdff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.notes-field {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.notes-field span {
  font-size: 0.78rem;
}

.form-heading {
  display: grid;
  gap: 4px;
}

.form-heading p {
  margin: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.32rem;
}

.message-preview {
  display: grid;
  gap: 5px;
  background: #fafdff;
}

.message-preview strong {
  font-size: 0.78rem;
}

.message-preview p {
  margin: 0;
  color: var(--navy);
}

.popup-message-form {
  margin-top: 18px;
}

.popup-message-form .button {
  width: min(100%, 220px);
}

.popup-message-form .contact-status,
.popup-message-form .submission-proof {
  margin: 0;
}

.message-preview small {
  color: var(--ink);
  font-size: 0.78rem;
}

.message-preview code {
  color: var(--red);
  font-weight: 900;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-actions .button {
  flex: 1 1 150px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .button {
  flex: 1 1 168px;
}

.send-email-button {
  min-width: 172px;
}

.send-email-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contact-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.email-fallback,
.submission-proof {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid #b9d4eb;
  border-radius: 6px;
  background: #eef8ff;
}

.email-fallback[hidden],
.submission-proof[hidden] {
  display: none;
}

.email-fallback strong,
.submission-proof strong {
  color: var(--navy);
}

.email-fallback p,
.submission-proof p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.email-fallback a {
  color: var(--blue);
  font-weight: 900;
}

.email-fallback pre,
.submission-proof pre {
  margin: 0;
  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
}

.contact-note {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.contact-note a {
  color: var(--blue);
  font-weight: 900;
}

.hero .button.secondary {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(223, 8, 13, 0.22);
}

.hero {
  width: min(100%, 1120px);
  min-height: 638px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(470px, 1.1fr);
  column-gap: 64px;
  align-items: start;
  overflow: hidden;
  background: #ffffff;
}

.hero-copy {
  width: min(520px, 100%);
  padding: 112px 0 52px 28px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 460px;
  font-size: clamp(2.35rem, 4vw, 3.28rem);
  text-transform: uppercase;
  font-weight: 900;
}

h1 span {
  display: block;
  color: var(--red);
}

.red-rule {
  width: 72px;
  height: 4px;
  margin: 54px 0 38px;
  background: var(--red);
}

h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

h3 {
  font-size: 1.03rem;
}

p {
  margin: 0 0 16px;
  color: var(--ink);
}

.lead {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.42;
  color: var(--navy);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-image {
  min-height: 661px;
  margin: 6px 28px 0 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--sky);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 350px;
  min-height: 0;
  display: block;
  object-fit: contain;
}

.intro-band,
.notice-band,
.container,
.before-after,
.testimonial-section,
.walkthrough-section,
.footer {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  padding: 22px 32px 38px;
  background: #ffffff;
}

.seal {
  width: 92px;
  height: 92px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: #5091c7;
  color: transparent;
  border: 0;
  box-shadow: none;
  font-size: 2rem;
  font-weight: 900;
}

.seal img,
.walkthrough-logo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.intro-copy {
  width: 100%;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

.intro-copy h2 {
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.08;
}

.intro-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.notice-band {
  padding: 22px 42px;
  background: var(--sky);
  color: #ffffff;
}

.notice-band p {
  max-width: 940px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 800;
  line-height: 1.42;
  text-align: center;
}

.section {
  padding: 38px 0 42px;
}

.section.pale {
  background: var(--sky);
}

.section.ideal-section {
  background: var(--navy);
}

.ideal-section .center {
  color: #ffffff;
}

.ideal-section .icon-grid article {
  border-color: rgba(255, 255, 255, 0.18);
}

.section.why-section {
  background: var(--navy);
}

.why-section .center {
  color: #ffffff;
}

.container {
  padding: 0 32px;
}

.center {
  text-align: center;
}

.icon-grid,
.task-grid,
.reason-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.icon-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

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

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.icon-grid article,
.task-grid article,
.reason-grid article,
.process-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.icon-grid article {
  min-height: 126px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.check,
.step,
.reason-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
}

.card-icon {
  width: 78px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.task-grid article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.task-icon {
  width: 68px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.task-grid article strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

.task-grid article span {
  display: block;
  margin-top: 7px;
  color: #405a7c;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.38;
}

.before-after {
  display: grid;
  grid-template-columns: 0.72fr 0.64fr 0.64fr;
  gap: 16px;
  align-items: stretch;
  padding: 54px 32px 32px;
  background: #ffffff;
}

.proof-copy {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border-radius: 8px;
  background: var(--navy);
}

.proof-copy h2,
.proof-copy p {
  color: #ffffff;
}

.proof-copy h2 span {
  color: #ff3131;
}

figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

figure.hero-image img {
  height: 350px;
  min-height: 0;
  object-fit: contain;
}

figcaption {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 116px;
  padding: 9px 18px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.reason-grid article {
  position: relative;
  min-height: 146px;
  padding: 22px 18px;
  text-align: center;
}

.reason-icon {
  width: 66px;
  height: 50px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
}

.reason-grid p,
.process-grid p,
.faq-grid p,
blockquote p {
  margin: 0;
  color: #253a5f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.process-grid {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 12px 8px;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.step {
  width: 32px;
  height: 32px;
  margin: -18px auto 14px;
  background: var(--red);
  color: #ffffff;
}

.testimonial-section {
  padding: 54px 32px;
  background: #082865;
}

.google-review-frame {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(175, 205, 239, 0.3);
  border-radius: 28px;
  background: #18366f;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-heading {
  margin-bottom: 22px;
  text-align: center;
}

.review-heading span {
  color: #dbe9f5;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-heading h2 {
  margin-top: 8px;
  color: #ffffff;
}

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

.google-review-card {
  min-height: 238px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a73e8;
  color: #ffffff;
  font-weight: 900;
}

.reviewer strong,
.reviewer small {
  display: block;
}

.reviewer small {
  color: #61708a;
  font-size: 0.78rem;
  font-weight: 700;
}

.google-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 12px;
  color: #5f6b7c;
  font-size: 0.8rem;
  font-weight: 800;
}

.google-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.stars {
  margin-bottom: 0;
  color: #fbbc04;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.08rem;
}

.google-review-card p {
  margin: 0;
  color: #24364f;
  font-size: 0.94rem;
  line-height: 1.5;
}

.faq-grid article {
  padding: 18px;
}

.walkthrough-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(580px, 1.28fr);
  gap: 30px;
  align-items: center;
  padding: 30px 34px 38px;
  background: radial-gradient(circle at 15% 38%, rgba(55, 145, 216, 0.35), transparent 28%), linear-gradient(135deg, #0066b7 0%, #063d7f 46%, #032a61 100%);
  color: #ffffff;
  overflow: hidden;
}

.walkthrough-brand-panel {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 370px;
  align-content: center;
}

.walkthrough-brand-panel::before,
.walkthrough-form::before {
  content: "A";
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  transform: skew(-12deg);
  pointer-events: none;
}

.walkthrough-brand-panel::before {
  left: -64px;
  bottom: -44px;
}

.walkthrough-logo-card {
  width: min(100%, 232px);
  height: 90px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 78, 148, 0.28);
  overflow: hidden;
}

.walkthrough-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walkthrough-copy {
  max-width: 350px;
}

.walkthrough-copy h2 {
  position: relative;
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(2.25rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.walkthrough-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 62px;
  height: 3px;
  background: var(--red);
}

.walkthrough-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.48;
}

.walkthrough-trust-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 410px;
  margin-top: 8px;
  color: #ffffff;
}

.trust-icon,
.privacy-icon,
.form-header-icon,
.method-icon {
  display: inline-grid;
  place-items: center;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
}

.trust-icon svg,
.privacy-icon svg,
.form-header-icon svg,
.method-icon svg,
.email-direct-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.walkthrough-trust-note span:last-child {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.walkthrough-trust-note strong {
  display: block;
}

.walkthrough-form {
  position: relative;
  gap: 16px;
  align-self: stretch;
  padding: 0;
  border: 1px solid rgba(186, 217, 242, 0.72);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(0, 23, 66, 0.23);
  overflow: hidden;
}

.walkthrough-form::before {
  top: -36px;
  right: -6px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 9rem;
}

.walkthrough-form-header {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1px 46px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 104px;
  padding: 18px 28px;
  border-bottom: 3px solid var(--red);
  background: linear-gradient(135deg, #064f9a 0%, #082f70 100%);
  color: #ffffff;
  overflow: hidden;
}

.form-brand-lockup {
  width: 150px;
  height: 60px;
  overflow: hidden;
}

.form-brand-lockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-header-divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.68);
}

.form-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
}

.walkthrough-form .form-heading {
  gap: 5px;
}

.walkthrough-form .form-heading h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.walkthrough-form .form-heading p {
  max-width: 470px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.walkthrough-form > .field-grid,
.walkthrough-form > .notes-field,
.walkthrough-form-footer,
.walkthrough-form > .contact-status,
.walkthrough-form > .submission-proof {
  margin-left: 28px;
  margin-right: 28px;
}

.walkthrough-form > .field-grid {
  padding-top: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.walkthrough-form label span,
.contact-method-field legend {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.walkthrough-form b {
  color: var(--red);
}

.walkthrough-form input,
.walkthrough-form select,
.walkthrough-form textarea {
  min-height: 44px;
  border-color: #bed2e8;
  border-radius: 5px;
  padding: 10px 13px;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(6, 31, 87, 0.04);
}

.walkthrough-form textarea {
  min-height: 86px;
}

.walkthrough-form input::placeholder,
.walkthrough-form textarea::placeholder {
  color: #5f6e88;
}

.contact-method-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.method-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #bed2e8;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
}

.method-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.method-option:has(input:checked) {
  border-color: #075eb5;
  box-shadow: inset 0 0 0 1px #075eb5;
}

.method-option:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #075eb5;
  box-shadow: 0 0 0 3px #e8f3ff;
}

.method-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #5f6e88;
}

.method-option:has(input:checked) .method-icon {
  background: #075eb5;
  color: #ffffff;
}

.method-icon svg {
  width: 19px;
  height: 19px;
}

.notes-field span em {
  color: #5c6980;
  font-style: normal;
  font-weight: 400;
}

.walkthrough-form-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 0.9fr) minmax(250px, auto);
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
}

.privacy-note,
.direct-contact-note {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
}

.privacy-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.privacy-icon {
  color: var(--blue);
}

.walkthrough-form .form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.walkthrough-form .form-actions .button,
.email-direct-button {
  width: 100%;
  min-height: 48px;
}

.email-direct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 16px;
  border: 2px solid #075eb5;
  border-radius: 6px;
  color: var(--navy);
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.email-direct-button svg {
  width: 26px;
  height: 26px;
  color: #075eb5;
}

.walkthrough-form .contact-status {
  margin-top: -12px;
  margin-bottom: 0;
}

.walkthrough-form .submission-proof {
  margin-bottom: 26px;
  padding: 12px 14px;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 1.2fr;
  gap: 34px;
  padding: 28px 32px 34px;
  background: #071723;
  color: #ffffff;
}

.footer a,
.footer p,
.footer small {
  display: block;
  margin: 6px 0;
  color: #dbe9f5;
  text-decoration: none;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

@media (min-width: 701px) {
  .footer-phone-cta {
    display: none !important;
  }
}

@media (max-width: 1040px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 14px;
  }

  .call-button {
    margin-left: auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .hero-copy {
    max-width: 760px;
    padding: 64px 32px 24px;
  }

  .hero-image {
    min-height: 320px;
    margin: 0 32px 10px;
    display: block;
  }

  figure.hero-image img {
    height: 320px;
  }

  .icon-grid,
  .task-grid,
  .reason-grid,
  .faq-grid,
  .google-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .before-after,
  .testimonial-section,
  .walkthrough-section,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .walkthrough-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .walkthrough-brand-panel,
  .walkthrough-form,
  .footer > div:first-child {
    grid-column: 1 / -1;
  }

  .walkthrough-brand-panel {
    min-height: 0;
    justify-self: center;
    text-align: left;
    width: min(100%, 760px);
  }

  .walkthrough-copy {
    max-width: 560px;
  }

  .walkthrough-form {
    width: min(100%, 820px);
    justify-self: center;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .nav,
  .container,
  .intro-band,
  .before-after,
  .testimonial-section,
  .walkthrough-section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .brand {
    min-width: 0;
    width: auto;
    white-space: normal;
    justify-content: flex-start;
    gap: 8px;
  }

  .logo-box {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 0;
  }

  .logo-box img {
    width: 100%;
    height: 100%;
  }

  .brand-name {
    display: inline-flex;
    font-size: 0.84rem;
  }

  .brand-service {
    font-size: 0.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-left: 0;
  }

  .mobile-only-cta {
    display: inline-flex;
  }

  .footer .footer-phone-cta {
    display: inline-flex;
  }

  .desktop-message-cta {
    display: none;
  }

  .call-button {
    width: 88px;
    min-height: 38px;
    padding: 8px 9px;
    margin-left: 0;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .call-button.phone-icon-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }

  .hero-copy {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 40px 16px 18px;
    text-align: center;
  }

  .eyebrow {
    font-size: 0.82rem;
  }

  h1 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .red-rule {
    width: 52px;
    height: 3px;
    margin: 18px auto 22px;
  }

  .lead {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.12rem;
    line-height: 1.42;
  }

  .hero-image {
    min-height: 0;
    margin: 8px 16px 0;
    background-size: auto;
  }

  figure.hero-image img {
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }

  .action-row {
    justify-content: center;
    margin-top: 18px;
  }

  .button {
    width: min(100%, 260px);
    min-height: 44px;
    padding: 11px 16px;
    font-size: 0.74rem;
  }

  .field-grid,
  .walkthrough-form > .field-grid,
  .popup-field-grid {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

  .intro-band,
  .icon-grid,
  .task-grid,
  .reason-grid,
  .process-grid,
  .faq-grid,
  .google-review-grid,
  .before-after,
  .testimonial-section,
  .walkthrough-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .seal,
  .walkthrough-logo-card {
    margin: 0 auto;
  }

  .intro-band {
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .seal {
    width: 78px;
    height: 78px;
  }

  .intro-copy h2 {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.26rem;
    line-height: 1.16;
  }

  .intro-copy p,
  .notice-band p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .intro-copy {
    padding-left: 0;
    border-left: 0;
  }

  .notice-band {
    padding: 14px 16px;
  }

  .section {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  h2 {
    font-size: 1.45rem;
    line-height: 1.16;
  }

  h3 {
    font-size: 0.94rem;
  }

  .icon-grid,
  .task-grid,
  .reason-grid,
  .process-grid,
  .faq-grid {
    gap: 12px;
    margin-top: 14px;
  }

  .icon-grid article {
    min-height: 126px;
  }

  .ideal-section .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ideal-section .icon-grid article {
    min-height: 94px;
    padding: 12px 8px;
    gap: 7px;
  }

  .ideal-section .card-icon {
    width: 58px;
    height: 42px;
  }

  .ideal-section .icon-grid strong {
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .task-grid article {
    grid-template-columns: 74px 1fr;
    text-align: center;
    min-height: 122px;
    padding: 12px 14px;
  }

  .task-grid article div {
    text-align: left;
  }

  .task-icon {
    width: 74px;
    height: 58px;
  }

  .task-grid article strong {
    font-size: 0.96rem;
  }

  .task-grid article span {
    font-size: 0.82rem;
  }

  .before-after {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .proof-copy,
  figure,
  figure img {
    min-height: 220px;
  }

  .reason-grid article {
    padding-left: 18px;
    min-height: 126px;
  }

  .process-grid {
    padding: 24px 14px 12px;
  }

  .before-after {
    gap: 10px;
  }

  .testimonial-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .google-review-frame {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .google-review-card {
    min-height: 0;
    padding: 18px;
  }

  .walkthrough-section {
    text-align: center;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .walkthrough-brand-panel {
    order: 2;
    gap: 16px;
    text-align: center;
  }

  .walkthrough-form {
    order: 1;
  }

  .walkthrough-logo-card {
    width: min(100%, 200px);
    height: 78px;
    padding: 0;
  }

  .walkthrough-copy {
    max-width: 100%;
  }

  .walkthrough-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }

  .walkthrough-copy h2::after {
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
  }

  .walkthrough-trust-note {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin: 0 auto;
  }

  .walkthrough-trust-note span:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .walkthrough-form {
    text-align: left;
  }

  .walkthrough-form-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 18px 16px;
    text-align: center;
  }

  .walkthrough-form .form-heading h3 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  .walkthrough-form .form-heading p {
    font-size: 0.86rem;
  }

  .form-header-divider {
    display: none;
  }

  .form-brand-lockup {
    width: 132px;
    height: 52px;
  }

  .walkthrough-form > .field-grid,
  .walkthrough-form > .notes-field,
  .walkthrough-form-footer,
  .walkthrough-form > .contact-status,
  .walkthrough-form > .submission-proof {
    margin-left: 14px;
    margin-right: 14px;
  }

  .contact-method-options,
  .walkthrough-form-footer {
    grid-template-columns: 1fr;
  }

  .walkthrough-form-footer {
    gap: 12px;
    padding-bottom: 18px;
    text-align: center;
  }

  .walkthrough-form textarea {
    min-height: 118px;
  }

  .privacy-note {
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .contact-dialog {
    padding: 26px 18px 20px;
  }

  .contact-dialog h2 {
    margin-right: 40px;
    font-size: 1.32rem;
  }

  .popup-message-form .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo-box {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .brand-service {
    font-size: 0.46rem;
  }

  .call-button:not(.phone-icon-button) {
    width: 82px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 0.54rem;
  }

  .nav-actions {
    gap: 5px;
  }

  .walkthrough-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .walkthrough-form > .field-grid,
  .walkthrough-form > .notes-field,
  .walkthrough-form-footer,
  .walkthrough-form > .contact-status,
  .walkthrough-form > .submission-proof {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .lead {
    font-size: 1.04rem;
  }
}
