:root {
  --bp-navy: #082d55;
  --bp-deep: #062543;
  --bp-blue: #0f66cc;
  --bp-sky: #45a7f2;
  --bp-yellow: #ffd21f;
  --bp-text: #17324f;
  --bp-muted: #657487;
  --bp-border: #dce5ef;
  --bp-bg: #f5f8fc;
}

* { box-sizing: border-box; }

.walkthrough-page {
  margin: 0;
  color: var(--bp-text);
  background: #fff;
}

.walkthrough-page .site-header {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(13,57,98,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.walkthrough-page .brand img {
  display: block;
  width: 180px;
  max-height: 70px;
  object-fit: contain;
}

.walkthrough-header-cta {
  background: var(--bp-yellow) !important;
  color: #082542 !important;
  border-color: var(--bp-yellow) !important;
  box-shadow: none !important;
}

.walkthrough-header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(.96);
}

.wt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 30%, rgba(52,125,215,.22), transparent 35%),
    linear-gradient(115deg, #082d55 0%, #0b3d72 58%, #0b3d72 100%);
  color: #fff;
}

.wt-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2,24,47,.25), transparent 62%);
}

.wt-hero-grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.wt-hero-copy {
  padding: 72px 26px 64px 0;
  align-self: center;
}

.wt-eyebrow {
  color: var(--bp-sky);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wt-hero h1 {
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 4.75rem);
  line-height: .98;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.wt-hero h1 span { color: var(--bp-sky); }

.wt-hero-copy > p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.94);
  margin: 0;
}

.wt-benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.wt-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 145px;
}

.wt-benefit .wt-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--bp-yellow);
  color: var(--bp-yellow);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 900;
}

.wt-benefit strong,
.wt-benefit span {
  display: block;
  color: #fff;
  line-height: 1.08;
}

.wt-benefit strong { font-size: .9rem; }
.wt-benefit span { font-size: .82rem; opacity: .88; }

.wt-hero-visual {
    min-height: 390px;
    position: relative;
    background:
        linear-gradient(90deg, rgba(6,37,67,.18), rgba(6,37,67,.04)),
        url('assets/walkthrough-property.jpg') center/cover no-repeat;
}

/* If walkthrough-property.jpg hasn't been uploaded yet, the blue fallback still looks intentional. */
.wt-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(18,91,171,.20), rgba(6,37,67,.42));
}

.wt-yellow-slash {
  position: absolute;
  left: 12%;
  top: -30px;
  width: 26px;
  height: 240px;
  background: var(--bp-yellow);
  transform: rotate(33deg);
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.wt-property-badge {
    display: none;
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  min-height: 112px;
  border-left: 4px solid var(--bp-yellow);
  background: rgba(4,35,67,.88);
  border-radius: 12px;
  padding: 20px 22px;
 
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: center;
  margin: 24px auto 0;
}

.wt-property-badge img {
  width: 100%;
  max-width: 230px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.20));
}

.wt-standards {
  border-left: 1px solid rgba(255,210,31,.55);
  padding-left: 18px;
}

.wt-standards span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: .83rem;
  letter-spacing: .05em;
  margin: 4px 0;
}

.wt-content-section {
  background: var(--bp-bg);
  padding: 40px 0 70px;
}

.wt-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(290px, .85fr);
    gap: 24px;
    align-items: start;
    transform: none;
    margin-top: 0;
}

.wt-form-card,
.wt-sidebar-card {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(8,45,85,.08);
}

.wt-form-card { padding: 26px 24px 24px; }

.wt-form-heading h2 {
  margin: 0;
  color: var(--bp-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.wt-form-heading p {
  margin: 8px 0 26px;
  line-height: 1.6;
  color: var(--bp-muted);
}

.wt-section-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0 12px;
  color: var(--bp-navy);
  font-weight: 800;
}

.wt-section-title h3,
.wt-section-title span:last-child {
  margin: 0;
  font-size: 1rem;
}

.wt-section-icon {
  color: var(--bp-navy);
  font-size: 1.05rem;
}

.wt-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wt-span-2 { grid-column: 1 / -1; }

.wt-field label {
  display: block;
  margin-bottom: 6px;
  color: #536478;
  font-size: .79rem;
  font-weight: 700;
}

.wt-field input,
.wt-field select,
.wt-field textarea {
  width: 100%;
  border: 1px solid #cfd9e4;
  background: #fff;
  color: #17324f;
  border-radius: 6px;
  min-height: 44px;
  padding: 11px 12px;
  font: inherit;
}

.wt-field textarea {
  min-height: 100px;
  resize: vertical;
}

.wt-field input:focus,
.wt-field select:focus,
.wt-field textarea:focus {
  outline: none;
  border-color: var(--bp-blue);
  box-shadow: 0 0 0 3px rgba(15,102,204,.11);
}

.wt-service-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.wt-service-fieldset .wt-section-title {
  width: 100%;
}

.wt-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
}

.wt-service-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: #263c55;
  cursor: pointer;
}

.wt-service-grid input {
  width: 17px;
  height: 17px;
  accent-color: var(--bp-blue);
}

.wt-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #69798c;
  font-size: .78rem;
  line-height: 1.45;
  margin-top: 16px;
}

.wt-consent input {
  margin-top: 2px;
  accent-color: var(--bp-blue);
}

.wt-submit {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffd21f, #ffe35d);
  color: #082542;
  font-size: 1rem;
  font-weight: 900;
  min-height: 50px;
  margin-top: 16px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255,210,31,.2);
}

.wt-submit:hover { filter: brightness(.97); }

.wt-submit span {
  margin-left: 8px;
  font-size: 1.2rem;
}

.wt-secure-note {
  text-align: center;
  color: #748396;
  font-size: .75rem;
  margin-top: 9px;
}

.wt-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wt-sidebar {
  display: grid;
  gap: 16px;
}

.wt-sidebar-card { padding: 22px; }

.wt-dark-card {
  background: linear-gradient(150deg, #082d55, #06345f);
  color: #fff;
}

.wt-dark-card h3 {
  color: #fff;
  margin: 0;
  font-size: 1.35rem;
}

.wt-yellow-line {
  width: 68px;
  height: 4px;
  border-radius: 4px;
  background: var(--bp-yellow);
  margin: 14px 0 18px;
}

.wt-side-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0;
}

.wt-circle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bp-yellow);
  color: #082d55;
  font-weight: 900;
  font-size: .75rem;
}

.wt-side-item strong,
.wt-side-item span {
  display: block;
}

.wt-side-item strong {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 4px;
}

.wt-side-item span {
  color: rgba(255,255,255,.84);
  font-size: .8rem;
  line-height: 1.5;
}

.wt-yellow-card {
  background: linear-gradient(120deg, #ffd21f, #ffe765);
  border-color: #f0c70f;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 14px;
  align-items: center;
  color: #082542;
}

.wt-call-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bp-navy);
  color: var(--bp-yellow);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.wt-yellow-card strong,
.wt-yellow-card span,
.wt-yellow-card small {
  display: block;
}

.wt-yellow-card strong { font-size: 1rem; }
.wt-yellow-card span { font-size: .82rem; margin-top: 2px; }
.wt-yellow-card a {
  display: block;
  color: #082542;
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
  margin: 3px 0;
}
.wt-yellow-card small { font-size: .77rem; }

.wt-brand-card {
  min-height: 240px;
  background:
    linear-gradient(rgba(5,39,72,.86), rgba(5,39,72,.90)),
    url('assets/walkthrough-property.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.wt-tagline {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.18;
}

.wt-tagline span { color: var(--bp-sky); }

.wt-brand-card img {
  width: 72%;
  max-width: 255px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.28));
}

.wt-footer {
  background: var(--bp-deep);
  color: #fff;
  padding: 22px 0;
}

.wt-footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
}

.wt-footer-brand img {
  width: 170px;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.18));
}

.wt-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.wt-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .84rem;
}

.wt-footer-copy {
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  text-align: right;
}

@media (max-width: 980px) {
  .wt-hero-grid,
  .wt-content-grid {
    grid-template-columns: 1fr;
  }

  .wt-hero-copy { padding: 58px 0 26px; }
  .wt-hero-visual { min-height: 290px; }

  .wt-content-grid {
  transform: none;
  margin-top: 40px;
  align-items: flex-start;
}

  .wt-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wt-footer-brand { display: flex; justify-content: center; }
  .wt-footer-copy { text-align: center; }
}

@media (max-width: 700px) {
  .walkthrough-page .brand img { width: 145px; }

  .wt-hero-copy { padding-left: 0; padding-right: 0; }
  .wt-hero h1 { font-size: 2.65rem; }

  .wt-grid-2,
  .wt-service-grid {
    grid-template-columns: 1fr;
  }

  .wt-span-2 { grid-column: auto; }

  .wt-form-card { padding: 22px 17px; }

  .wt-property-badge {
    width: 90%;
    right: 5%;
    grid-template-columns: 1fr;
  }

  .wt-standards { display: none; }

  .wt-benefit-row { gap: 16px; }

  .wt-footer-nav { gap: 14px; }
}/* --- Blue Peak logo white-background treatment --- */

.walkthrough-page .brand {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.walkthrough-page .brand img {
  width: 175px;
  height: auto;
  object-fit: contain;
}

.wt-property-badge img,
.wt-brand-card img,
.wt-footer-brand img {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  object-fit: contain;
}

.wt-property-badge img {
  max-width: 230px;
}

.wt-brand-card img {
  width: 72%;
  max-width: 255px;
}

.wt-footer-brand img {
  width: 170px;
}
