:root {
  --bg: #eef3fb;
  --bg-soft: #f7faff;
  --surface: #ffffff;
  --ink: #102742;
  --muted: #5a6f86;
  --line: #d7e3f2;
  --brand: #0f67e8;
  --brand-strong: #0b4fb3;
  --accent: #ff8e1c;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 18px 40px rgba(16, 39, 66, 0.1);
  --shadow-soft: 0 10px 24px rgba(16, 39, 66, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(950px 520px at 0% -8%, rgba(51, 125, 255, 0.2), transparent),
    radial-gradient(880px 460px at 100% -10%, rgba(255, 170, 77, 0.2), transparent),
    linear-gradient(180deg, #dce8f8 0%, var(--bg) 28%, var(--bg) 100%);
}

a {
  color: var(--brand);
}

.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

.page-shell {
  flex: 1 0 auto;
  padding: 1.3rem 0 2.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(204, 220, 239, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: #0f3f8f;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  font-weight: 650;
  color: #214369;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: #ecf4ff;
}

.nav-link-accent {
  color: #fff;
  background: linear-gradient(180deg, #1a79ff, #0f67e8);
  box-shadow: 0 10px 22px rgba(15, 103, 232, 0.32);
}

.nav-link-accent:hover {
  background: linear-gradient(180deg, #116fe7, #0d59ca);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 0.92rem;
  line-height: 1.62;
}

.small {
  color: var(--muted);
  font-size: 0.93rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eaf2ff;
  color: #0d56c0;
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35rem 0.72rem;
  margin-bottom: 0.85rem;
}

.eyebrow-sun {
  background: rgba(255, 142, 28, 0.12);
  color: #b75b00;
}

.lead {
  color: #2b4b70;
  font-size: 1.08rem;
}

button,
.cta {
  appearance: none;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #1a79ff, #0f67e8);
  padding: 0.8rem 1.18rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(15, 103, 232, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover,
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 103, 232, 0.34);
}

.cta-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
  border: 1px solid rgba(199, 218, 246, 0.95);
  box-shadow: none;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

body.landing-page .page-shell {
  padding-top: 1.7rem;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.lp-hero-copy {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
  border-radius: 32px;
  border: 1px solid rgba(207, 223, 244, 0.95);
  background:
    radial-gradient(circle at top right, rgba(255, 174, 74, 0.2), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(26, 121, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.92));
  box-shadow: 0 28px 65px rgba(11, 53, 110, 0.13);
}

.lp-hero-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 103, 232, 0.14), transparent 70%);
}

.lp-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 0.8rem;
}

.lp-lead {
  max-width: 31rem;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.lp-inline-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.lp-inline-points li {
  min-height: 100%;
  font-size: 0.88rem;
  border-radius: 18px;
  border: 1px solid rgba(205, 220, 239, 0.95);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.85rem 0.95rem;
  color: #1e466d;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(16, 39, 66, 0.06);
}

.lp-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 32px;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(14, 42, 80, 0.98), rgba(18, 69, 132, 0.96)),
    linear-gradient(135deg, rgba(255, 142, 28, 0.18), transparent);
  border-color: rgba(13, 54, 111, 0.5);
  color: #f5f9ff;
  box-shadow: 0 26px 60px rgba(9, 36, 75, 0.32);
}

.lp-hero-panel h2,
.lp-hero-panel p {
  color: inherit;
}

.lp-hero-panel h2 {
  max-width: 13ch;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.lp-panel-kicker {
  margin-bottom: 0.5rem;
  color: rgba(193, 222, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-signal-stack {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.15rem;
}

.lp-signal-card {
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.lp-signal-card p {
  margin-bottom: 0;
  color: rgba(238, 245, 255, 0.9);
  font-size: 0.93rem;
  line-height: 1.5;
}

.lp-signal-card-warning {
  background: linear-gradient(180deg, rgba(255, 153, 61, 0.17), rgba(255, 255, 255, 0.05));
}

.lp-signal-card-neutral {
  background: linear-gradient(180deg, rgba(130, 178, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.lp-signal-card-good {
  background: linear-gradient(180deg, rgba(73, 203, 152, 0.18), rgba(255, 255, 255, 0.05));
}

.lp-signal-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.62rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
}

.lp-hero-note {
  margin: 0.15rem 0 0;
  color: rgba(209, 228, 255, 0.9);
  font-size: 0.88rem;
}

.lp-mini-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.lp-mini-flow div {
  border-radius: 18px;
  padding: 0.8rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.lp-mini-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb048, #ff8e1c);
  color: #18365f;
  font-weight: 800;
}

.lp-mini-flow p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lp-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.lp-proof-band article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(206, 221, 241, 0.98);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(16, 39, 66, 0.06);
}

.lp-proof-band strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.lp-proof-band span {
  color: var(--muted);
  font-size: 0.89rem;
}

.lp-section {
  margin-top: 1.2rem;
}

.lp-section-head {
  margin-bottom: 0.8rem;
}

.lp-kicker {
  margin-bottom: 0.34rem;
  color: #1f5dae;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-feature-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
}

.lp-situation-board {
  padding: 1.6rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 173, 74, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96));
}

.lp-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.lp-situation-grid article {
  padding: 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(209, 224, 242, 0.95);
  background: rgba(255, 255, 255, 0.82);
}

.lp-situation-grid article p,
.lp-faq-grid article p {
  margin-bottom: 0;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-process-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
}

.lp-process-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 103, 232, 0.12), transparent 70%);
}

.lp-process-index {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f67e8;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-compare-card {
  border-radius: 26px;
}

.lp-compare-card-positive {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
}

.lp-compare-card-neutral {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 247, 237, 0.96));
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.trust-list li {
  border: 1px solid #d9e7f9;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.78rem;
  font-size: 0.92rem;
}

.lp-faq-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp-faq-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 224, 241, 0.92);
}

.legal-banner {
  margin-top: 1rem;
  border-left: 6px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefa, #fff7ec);
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0.9rem;
}

.wizard-card {
  margin-bottom: 0.8rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.wizard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.52rem;
}

.wizard-track {
  height: 10px;
  border-radius: 999px;
  background: #e3ecfb;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.wizard-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f67e8, #21a5ff);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #7a8ea5;
  font-size: 0.84rem;
}

.wizard-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #cad9ef;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.wizard-step.active {
  color: #1f4f84;
}

.wizard-step.active span {
  border-color: #9abcf0;
  background: #eaf3ff;
}

.wizard-step.current span {
  border-color: #0f67e8;
  background: #0f67e8;
  color: #fff;
}

.form-card {
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff, #fcfdff);
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

label {
  display: block;
  margin-bottom: 0.34rem;
  font-weight: 700;
  color: #1b3f66;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c6d8ee;
  border-radius: 12px;
  padding: 0.76rem 0.84rem;
  color: #103250;
  font-size: 0.96rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1a79ff;
  box-shadow: 0 0 0 4px rgba(26, 121, 255, 0.16);
}

textarea {
  min-height: 128px;
}

input[type="file"] {
  border-style: dashed;
  background: #f9fbff;
  padding: 0.9rem;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 0.42rem;
  transform: translateY(1px);
  accent-color: #0f67e8;
}

.roof-orientation-block {
  margin-bottom: 0;
}

.roof-orientation-help {
  display: block;
  margin: 0.45rem 0 0.2rem;
}

.roof-followup-grid {
  margin-top: 1.85rem;
}

.contact-submit-row {
  margin-top: 1.75rem;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.text-link {
  text-decoration: none;
  color: #2560a2;
  font-weight: 650;
}

.text-link:hover {
  text-decoration: underline;
}

.guide-card {
  position: sticky;
  top: 94px;
  height: fit-content;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.guide-card h2 {
  margin-bottom: 0.6rem;
}

.guide-card ul {
  margin: 0;
  padding-left: 1.06rem;
  color: #36587c;
}

.guide-card li {
  margin-bottom: 0.52rem;
}

.notice-card {
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa, #fff8ef);
}

.nested-notice {
  margin-top: 0.82rem;
}

.access-code-card {
  position: relative;
  border: 1px solid rgba(15, 103, 232, 0.22);
  border-left: 6px solid #0f67e8;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(26, 121, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #f5faff 0%, #edf5ff 58%, #e7f1ff 100%);
  box-shadow:
    0 18px 38px rgba(15, 103, 232, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.access-code-card h2 {
  margin-bottom: 0.45rem;
  color: #0f3263;
}

.access-code-card .small {
  color: #35587d;
}

.access-code-card input[type="text"] {
  background: #fff;
  border-color: #83b0f1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 4px 10px rgba(15, 103, 232, 0.05);
}

.access-code-card input[type="text"]:focus {
  border-color: #0f67e8;
  box-shadow: 0 0 0 4px rgba(15, 103, 232, 0.16);
}

.access-code-card-required {
  border-color: rgba(12, 111, 92, 0.2);
  border-left-color: #0c6f5c;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 143, 0.18), transparent 34%),
    linear-gradient(135deg, #f3fffb 0%, #e7fbf5 56%, #def8f0 100%);
  box-shadow:
    0 18px 38px rgba(12, 111, 92, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.access-code-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 103, 232, 0.13);
  color: #0f58af;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.access-code-card-required .access-code-card__eyebrow {
  background: rgba(12, 111, 92, 0.12);
  color: #0c6f5c;
}

.legal-consent-note {
  margin-top: 0.72rem;
}

.consent-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 1.05rem;
}

.consent-item {
  margin: 0;
}

.consent-control {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.consent-control input[type="checkbox"] {
  margin: 0.22rem 0 0;
  margin-right: 0;
  transform: none;
}

.consent-label {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  color: #1b3f66;
}

.consent-item ul {
  margin: 0.3rem 0 0 1.6rem;
  padding: 0;
  list-style: none;
  color: #b33030;
  font-size: 0.88rem;
}

.legal-card h2 {
  margin-top: 1.4rem;
}

.legal-card ul {
  padding-left: 1.1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid #d5e2f1;
  padding: 0.67rem 0.52rem;
  text-align: left;
}

.table th {
  color: #617b98;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.79rem;
}

.pill {
  border-radius: 999px;
  background: #eaf2ff;
  color: #1e5ca7;
  padding: 0.2rem 0.58rem;
  font-size: 0.76rem;
  display: inline-block;
}

.flash {
  border-radius: 12px;
  padding: 0.74rem 0.94rem;
  margin-bottom: 0.9rem;
  border: 1px solid transparent;
}

.flash-success {
  background: #eaf8f0;
  border-color: #c8e7d4;
}

.flash-error {
  background: #ffefef;
  border-color: #f3c0c0;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid #ccdbef;
  background: rgba(255, 255, 255, 0.9);
}

.footer-row {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav a {
  color: #1f4b7a;
  text-decoration: none;
  font-weight: 650;
}

.footer-nav a:hover {
  text-decoration: underline;
}

body.landing-page-v5 {
  background:
    radial-gradient(1100px 560px at 0% 0%, rgba(66, 131, 243, 0.28), transparent 48%),
    radial-gradient(960px 520px at 100% 0%, rgba(255, 196, 94, 0.2), transparent 44%),
    linear-gradient(180deg, #dfeafc 0%, #eff4fd 22%, #f6f9ff 100%);
}

body.landing-page-v5 .page-shell {
  padding-top: 0;
  width: min(100%, 100vw);
}

body.landing-page-v5 .container.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.landing-page-v5 .site-header {
  background: rgba(255, 255, 255, 0.88);
}

body.intake-page-v5 {
  background:
    radial-gradient(940px 460px at 0% 0%, rgba(66, 131, 243, 0.18), transparent 42%),
    radial-gradient(760px 380px at 100% 0%, rgba(255, 200, 97, 0.12), transparent 38%),
    linear-gradient(180deg, #eef5ff 0%, #f5f9ff 100%);
}

body.intake-page-v5 .page-shell {
  padding-top: 1.5rem;
}

body.intake-page-v5 .site-header {
  background: rgba(255, 255, 255, 0.9);
}

body.intake-page-v5 .card {
  border-radius: 26px;
}

body.intake-page-v5 .wizard-card,
body.intake-page-v5 .form-card,
body.intake-page-v5 .guide-card {
  box-shadow: 0 18px 42px rgba(32, 69, 125, 0.1);
}

body.intake-page-v5 .wizard-card {
  margin-bottom: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(173, 205, 248, 0.78);
  background:
    radial-gradient(circle at top right, rgba(255, 197, 88, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.95));
}

body.intake-page-v5 .wizard-head {
  margin-bottom: 0.65rem;
}

body.intake-page-v5 .wizard-head strong {
  color: #173a70;
}

body.intake-page-v5 .wizard-head span {
  color: #5276a7;
  font-weight: 700;
}

body.intake-page-v5 .wizard-track {
  height: 12px;
  background: #e4eefb;
}

body.intake-page-v5 .wizard-track span {
  background: linear-gradient(90deg, #2b7ef0, #72b5ff 70%, #ffd046 100%);
}

body.intake-page-v5 .wizard-steps {
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

body.intake-page-v5 .wizard-step {
  padding: 0.72rem 0.78rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(209, 223, 244, 0.9);
}

body.intake-page-v5 .wizard-step span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

body.intake-page-v5 .wizard-step.current {
  background: rgba(230, 241, 255, 0.96);
  border-color: rgba(92, 157, 245, 0.55);
}

body.intake-page-v5 .wizard-step.current span {
  border-color: #1c76ef;
  background: linear-gradient(180deg, #2b7ef0, #1568dc);
}

body.intake-page-v5 .wizard-summary {
  margin-bottom: 0;
  color: #49698f;
}

body.intake-page-v5 .intake-shell-v5 {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
}

body.intake-page-v5 .form-card-v5 {
  padding: 1.65rem;
  border: 1px solid rgba(178, 206, 244, 0.82);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 110, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
}

body.intake-page-v5 .form-card-v5 h2 {
  margin-bottom: 0.45rem;
  color: #173a70;
}

body.intake-page-v5 .form-card-v5 > .small {
  margin-bottom: 1.25rem;
  color: #547393;
  font-size: 0.98rem;
}

body.intake-page-v5 label {
  margin-bottom: 0.38rem;
  color: #20456f;
  font-weight: 750;
}

body.intake-page-v5 input,
body.intake-page-v5 textarea,
body.intake-page-v5 select {
  border-color: #c7daf1;
  border-radius: 16px;
  padding: 0.84rem 0.92rem;
  background: rgba(255,255,255,0.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

body.intake-page-v5 input:focus,
body.intake-page-v5 textarea:focus,
body.intake-page-v5 select:focus {
  border-color: #2b7ef0;
  box-shadow: 0 0 0 4px rgba(43, 126, 240, 0.14);
}

body.intake-page-v5 textarea {
  min-height: 144px;
}

body.intake-page-v5 input[type="file"] {
  border-style: dashed;
  border-width: 2px;
  border-color: #aecdf4;
  background: linear-gradient(180deg, #fafdff, #f2f8ff);
  padding: 1rem;
}

body.intake-page-v5 .upload-field-v5 {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(200, 219, 244, 0.92);
  background: rgba(255,255,255,0.72);
}

body.intake-page-v5 .upload-previews {
  margin-top: 0.75rem;
}

body.intake-page-v5 .notice-card {
  border-left-width: 6px;
  border-radius: 22px;
}

body.intake-page-v5 .consent-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(208, 222, 243, 0.92);
  background: rgba(255,255,255,0.74);
}

body.intake-page-v5 .consent-control {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

body.intake-page-v5 .consent-label {
  margin-bottom: 0;
  line-height: 1.55;
}

body.intake-page-v5 .guide-card-v5 {
  position: sticky;
  top: 94px;
  padding: 1.35rem;
  border: 1px solid rgba(24, 93, 186, 0.22);
  background:
    linear-gradient(180deg, rgba(23, 74, 150, 0.98), rgba(32, 110, 219, 0.96)),
    linear-gradient(135deg, rgba(255, 193, 72, 0.18), transparent);
  color: #f5f9ff;
}

body.intake-page-v5 .guide-card-v5 h3,
body.intake-page-v5 .guide-card-v5 p,
body.intake-page-v5 .guide-card-v5 li {
  color: inherit;
}

body.intake-page-v5 .guide-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(239, 246, 255, 0.95);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.intake-page-v5 .guide-card-v5 ul {
  color: rgba(238, 245, 255, 0.94);
}

body.intake-page-v5 .guide-card-v5 li {
  margin-bottom: 0.7rem;
}

body.intake-page-v5 .form-actions {
  margin-top: 1.2rem;
}

body.intake-page-v5 .text-link {
  color: #245fa8;
}

.lp5-shell {
  display: grid;
  gap: 0;
}

.lp5-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: stretch;
  min-height: 620px;
  padding: 3.6rem 5.5vw 3.2rem;
  background:
    linear-gradient(90deg, rgba(22, 89, 195, 0.96) 0%, rgba(76, 145, 247, 0.84) 52%, rgba(220, 238, 255, 0.55) 100%),
    linear-gradient(180deg, #3785f1, #76aefc);
  overflow: hidden;
}

.lp5-hero-copy {
  max-width: 560px;
  align-self: center;
  color: #fff;
}

.lp5-eyebrow {
  margin-bottom: 0.85rem;
  color: rgba(229, 241, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lp5-hero-copy h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.lp5-lead {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(239, 246, 255, 0.96);
  font-size: 1.14rem;
  line-height: 1.65;
}

.lp5-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.8rem;
}

.lp5-primary {
  background: linear-gradient(180deg, #ffd448, #ffbe1a);
  color: #163a70;
  box-shadow: 0 16px 30px rgba(255, 191, 44, 0.34);
}

.lp5-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 191, 44, 0.38);
}

.lp5-inline-link {
  color: rgba(243, 248, 255, 0.96);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.lp5-inline-link:hover {
  text-decoration: underline;
}

.lp5-hero-visual {
  position: relative;
  min-height: 520px;
}

.lp5-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  filter: blur(1px);
}

.lp5-cloud::before,
.lp5-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.lp5-cloud-1 {
  right: 18%;
  top: 7%;
  width: 120px;
  height: 34px;
}

.lp5-cloud-1::before {
  left: 14px;
  top: -16px;
  width: 34px;
  height: 34px;
}

.lp5-cloud-1::after {
  right: 18px;
  top: -12px;
  width: 28px;
  height: 28px;
}

.lp5-cloud-2 {
  right: 5%;
  top: 13%;
  width: 82px;
  height: 24px;
  opacity: 0.8;
}

.lp5-cloud-2::before {
  left: 10px;
  top: -12px;
  width: 24px;
  height: 24px;
}

.lp5-cloud-2::after {
  right: 10px;
  top: -8px;
  width: 20px;
  height: 20px;
}

.lp5-cloud-3 {
  left: 30%;
  top: 18%;
  width: 66px;
  height: 18px;
  opacity: 0.65;
}

.lp5-cloud-3::before {
  left: 8px;
  top: -9px;
  width: 18px;
  height: 18px;
}

.lp5-cloud-3::after {
  right: 8px;
  top: -6px;
  width: 14px;
  height: 14px;
}

.lp5-horizon {
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 1%;
  height: 120px;
  border-radius: 999px 0 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(212, 232, 255, 0.62));
}

.lp5-sun {
  position: absolute;
  right: 12%;
  top: 2%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 214, 1) 0%, rgba(255, 228, 130, 0.95) 55%, rgba(255, 213, 84, 0.28) 100%);
  box-shadow: 0 0 40px rgba(255, 220, 109, 0.45);
}

.lp5-house {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 390px;
  height: 300px;
}

.lp5-house-roof {
  position: absolute;
  inset: 18px 22px auto;
  height: 96px;
  clip-path: polygon(10% 100%, 50% 18%, 92% 100%);
  background: linear-gradient(180deg, #5f6d84, #334155);
}

.lp5-house-solar {
  position: absolute;
  left: 102px;
  top: 36px;
  width: 188px;
  height: 64px;
  border-radius: 6px;
  border: 3px solid rgba(200, 230, 255, 0.82);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(180deg, #2b5ca0, #163863);
  background-size: 26px 100%, 100% 19px, 100% 100%;
  transform: perspective(140px) rotateX(28deg);
}

.lp5-house-body {
  position: absolute;
  left: 38px;
  right: 18px;
  bottom: 0;
  height: 200px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  box-shadow: 0 18px 40px rgba(19, 45, 84, 0.16);
}

.lp5-house-door {
  position: absolute;
  left: 192px;
  bottom: 0;
  width: 56px;
  height: 102px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #6d4a30, #3a2516);
}

.lp5-house-window {
  position: absolute;
  bottom: 70px;
  width: 62px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d2ebff, #8bc4ff);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.75);
}

.lp5-house-window-left {
  left: 98px;
}

.lp5-house-window-right {
  right: 78px;
}

.lp5-phone {
  position: absolute;
  left: 18%;
  bottom: 13%;
  width: 200px;
  height: 360px;
  border-radius: 32px;
  background: linear-gradient(180deg, #2f456a, #121e32);
  box-shadow: 0 30px 50px rgba(20, 43, 83, 0.28);
  transform: rotate(10deg);
}

.lp5-phone-top {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 78px;
  height: 16px;
  border-radius: 999px;
  background: rgba(13, 20, 34, 0.9);
  transform: translateX(-50%);
}

.lp5-phone-screen {
  position: absolute;
  inset: 26px 10px 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfdff, #ebf3ff);
  overflow: hidden;
}

.lp5-screen-chart {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 24px;
  height: 96px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(56, 131, 244, 0.16), rgba(56, 131, 244, 0.03)),
    linear-gradient(90deg, #2f79e8 18%, #76b7ff 18% 34%, #2f79e8 34% 53%, #9bd0ff 53% 72%, #2f79e8 72% 88%, transparent 88%);
  background-size: 100% 100%, 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 0, 0 100%;
}

.lp5-screen-lines {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  height: 132px;
  background:
    linear-gradient(#c5d9f6 10px, transparent 10px) 0 0 / 100% 24px,
    linear-gradient(90deg, #dbe8fb 56%, transparent 56%) 0 0 / 100% 24px;
}

.lp5-report-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.96));
  box-shadow: 0 18px 36px rgba(27, 58, 105, 0.18);
}

.lp5-report-card-front {
  right: 15%;
  bottom: 10%;
  width: 218px;
  height: 162px;
  transform: rotate(-4deg);
}

.lp5-report-card-back {
  right: 6%;
  bottom: 8%;
  width: 184px;
  height: 138px;
  background: linear-gradient(180deg, rgba(255, 218, 132, 0.96), rgba(255, 201, 66, 0.92));
  transform: rotate(8deg);
}

.lp5-report-badge {
  width: 50px;
  height: 50px;
  margin: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #6ec3ff, #2e78e6);
}

.lp5-report-bars {
  margin: 10px 16px 0;
  height: 76px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #7ec1ff 16%, transparent 16% 22%, #3c88ef 22% 40%, transparent 40% 48%, #9bd4ff 48% 64%, transparent 64% 72%, #3c88ef 72% 88%, transparent 88%),
    linear-gradient(180deg, rgba(76, 140, 241, 0.14), rgba(76, 140, 241, 0.04));
  background-position: bottom, 0 0;
  background-size: 100% 78%, 100% 100%;
  background-repeat: no-repeat;
}

.lp5-loupe {
  position: absolute;
  left: 10%;
  bottom: 18%;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  border: 12px solid rgba(255,255,255,0.88);
  box-shadow: 0 12px 24px rgba(25, 57, 104, 0.18);
}

.lp5-loupe::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 52px;
  height: 14px;
  border-radius: 999px;
  background: #5e6e86;
  transform: rotate(42deg);
}

.lp5-section {
  padding: 4rem 5.5vw;
}

.lp5-how,
.lp5-offers {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,249,255,0.92));
}

.lp5-benefits {
  background:
    radial-gradient(circle at left bottom, rgba(84, 151, 255, 0.14), transparent 20%),
    radial-gradient(circle at right bottom, rgba(92, 150, 246, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(244,248,255,0.92), rgba(240,245,254,0.96));
}

.lp5-section-head {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.lp5-section-head h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  color: #163a70;
}

.lp5-section-head p {
  margin-bottom: 0;
  color: #34557f;
  font-size: 1.04rem;
}

.lp5-steps,
.lp5-benefit-grid,
.lp5-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.lp5-step-card,
.lp5-benefit-card,
.lp5-offer {
  padding: 1.45rem;
  border-radius: 26px;
  text-align: center;
  background: rgba(255,255,255,0.82);
}

.lp5-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(74, 142, 246, 0.18), rgba(74, 142, 246, 0.06));
  color: #2c74df;
  font-size: 1.5rem;
  font-weight: 800;
}

.lp5-step-card h3,
.lp5-benefit-card h3,
.lp5-offer h3 {
  margin-bottom: 0.55rem;
  color: #17396d;
}

.lp5-step-card p,
.lp5-benefit-card p,
.lp5-offer-copy {
  margin-bottom: 0;
  color: #3c5f89;
}

.lp5-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.lp5-offer-label {
  margin-bottom: 0.45rem;
  color: #6783a7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp5-offer-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd34a, #ffbe1b);
  color: #18427a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp5-price {
  margin: 0.2rem 0 1rem;
  color: #163a70;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.lp5-price span {
  margin-left: 0.35rem;
  color: #5c7696;
  font-size: 1rem;
  font-weight: 600;
}

.lp5-offer ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #32557f;
}

.lp5-offer .cta {
  margin-top: auto;
}

.lp5-offer-highlighted {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,245,233,0.96));
  box-shadow: 0 20px 42px rgba(32, 69, 125, 0.16);
}

@media (max-width: 1100px) {
  .lp5-hero {
    grid-template-columns: 1fr;
    padding-top: 2.8rem;
  }

  .lp5-hero-visual {
    min-height: 500px;
    margin-top: 1rem;
  }

  .lp5-hero-scene {
    right: -1%;
    width: 620px;
  }

  .lp5-phone {
    left: 7%;
    bottom: 15%;
  }

  .lp5-report-card-front {
    right: 3%;
  }

  .lp5-steps,
  .lp5-benefit-grid,
  .lp5-offer-grid,
  body.intake-page-v5 .intake-shell-v5 {
    grid-template-columns: 1fr;
  }

  body.intake-page-v5 .guide-card-v5 {
    position: static;
  }

  .lp5-offer-highlighted {
    transform: none;
  }
}

@media (max-width: 720px) {
  .lp5-hero,
  .lp5-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .lp5-hero-copy h1 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .lp5-lead {
    font-size: 1rem;
  }

  .lp5-hero-visual {
    min-height: 420px;
  }

  .lp5-hero-focus {
    right: -8%;
    width: 300px;
    height: 170px;
  }

  .lp5-hero-scene {
    right: -8%;
    width: 430px;
  }

  .lp5-phone {
    left: 2%;
    bottom: 15%;
    width: 112px;
    height: 208px;
  }

  .lp5-report-card-front {
    width: 138px;
    height: 104px;
    right: 1%;
  }

  .lp5-report-card-back {
    width: 122px;
    height: 92px;
    right: -2%;
  }

  .lp5-loupe {
    left: 8%;
    bottom: 19%;
    width: 58px;
    height: 58px;
    border-width: 8px;
  }

  body.intake-page-v5 .form-card-v5,
  body.intake-page-v5 .guide-card-v5,
  body.intake-page-v5 .wizard-card {
    padding: 1.15rem;
  }
}

body.landing-page-v5 {
  background:
    radial-gradient(1100px 560px at 0% 0%, rgba(66, 131, 243, 0.28), transparent 48%),
    radial-gradient(960px 520px at 100% 0%, rgba(255, 196, 94, 0.2), transparent 44%),
    linear-gradient(180deg, #dfeafc 0%, #eff4fd 22%, #f6f9ff 100%);
}

body.landing-page-v5 .page-shell {
  padding-top: 0;
  width: min(100%, 100vw);
}

body.landing-page-v5 .container.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.landing-page-v5 .site-header {
  background: rgba(255, 255, 255, 0.88);
}

.lp5-shell {
  display: grid;
  gap: 0;
}

.lp5-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: stretch;
  min-height: 620px;
  padding: 3.6rem 5.5vw 3.2rem;
  background:
    linear-gradient(90deg, rgba(22, 89, 195, 0.96) 0%, rgba(76, 145, 247, 0.84) 52%, rgba(220, 238, 255, 0.55) 100%),
    linear-gradient(180deg, #3785f1, #76aefc);
  overflow: hidden;
}

.lp5-hero-copy {
  max-width: 560px;
  align-self: center;
  color: #fff;
}

.lp5-eyebrow {
  margin-bottom: 0.85rem;
  color: rgba(229, 241, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lp5-hero-copy h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.lp5-lead {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(239, 246, 255, 0.96);
  font-size: 1.14rem;
  line-height: 1.65;
}

.lp5-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.8rem;
}

.lp5-primary {
  background: linear-gradient(180deg, #ffd448, #ffbe1a);
  color: #163a70;
  box-shadow: 0 16px 30px rgba(255, 191, 44, 0.34);
}

.lp5-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 191, 44, 0.38);
}

.lp5-inline-link {
  color: rgba(243, 248, 255, 0.96);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.lp5-inline-link:hover {
  text-decoration: underline;
}

.lp5-hero-visual {
  position: relative;
  min-height: 560px;
}

.lp5-sun {
  position: absolute;
  right: 10%;
  top: 2%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 214, 1) 0%, rgba(255, 228, 130, 0.95) 55%, rgba(255, 213, 84, 0.28) 100%);
  box-shadow: 0 0 48px rgba(255, 220, 109, 0.48);
}

.lp5-hero-focus {
  position: absolute;
  right: -2%;
  bottom: 1%;
  width: 540px;
  height: 300px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(circle at 38% 34%, rgba(255,255,255,0.34), rgba(171, 209, 255, 0.22) 42%, rgba(77, 134, 221, 0.18) 66%, rgba(77, 134, 221, 0) 100%);
}

.lp5-hero-scene {
  position: absolute;
  right: -2%;
  bottom: 3%;
  width: min(700px, 100%);
  height: auto;
  overflow: visible;
}

.lp5-scene-shadow {
  fill: rgba(161, 202, 255, 0.28);
}

.lp5-scene-roof-main {
  fill: url(#lp5Roof);
}

.lp5-scene-roof-side {
  fill: rgba(44, 65, 91, 0.94);
}

.lp5-scene-chimney {
  fill: #c9b39b;
}

.lp5-scene-panel {
  fill: url(#lp5Panel);
  stroke: rgba(214, 236, 255, 0.92);
  stroke-width: 3;
}

.lp5-scene-panel-line {
  stroke: rgba(223, 240, 255, 0.42);
  stroke-width: 2;
}

.lp5-scene-garage {
  fill: #c6d3e1;
}

.lp5-scene-door {
  fill: #71472f;
}

.lp5-scene-step {
  fill: #c9d7e6;
}

.lp5-phone {
  position: absolute;
  left: 6%;
  bottom: 17%;
  width: 140px;
  height: 262px;
  border-radius: 30px;
  background: linear-gradient(180deg, #2f456a, #121e32);
  box-shadow: 0 26px 44px rgba(20, 43, 83, 0.22);
  transform: rotate(8deg);
  z-index: 5;
}

.lp5-phone-top {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 70px;
  height: 15px;
  border-radius: 999px;
  background: rgba(13, 20, 34, 0.9);
  transform: translateX(-50%);
}

.lp5-phone-screen {
  position: absolute;
  inset: 24px 10px 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #ebf3ff);
  overflow: hidden;
}

.lp5-screen-chart {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 20px;
  height: 74px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(56, 131, 244, 0.16), rgba(56, 131, 244, 0.03)),
    linear-gradient(90deg, #2f79e8 18%, #76b7ff 18% 34%, #2f79e8 34% 53%, #9bd0ff 53% 72%, #2f79e8 72% 88%, transparent 88%);
  background-size: 100% 100%, 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 0, 0 100%;
}

.lp5-screen-lines {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  height: 108px;
  background:
    linear-gradient(#c5d9f6 10px, transparent 10px) 0 0 / 100% 22px,
    linear-gradient(90deg, #dbe8fb 56%, transparent 56%) 0 0 / 100% 22px;
}

.lp5-report-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.96));
  box-shadow: 0 18px 36px rgba(27, 58, 105, 0.16);
  z-index: 4;
}

.lp5-report-card-front {
  right: 4%;
  bottom: 7%;
  width: 174px;
  height: 132px;
  transform: rotate(-3deg);
}

.lp5-report-card-back {
  right: 0;
  bottom: 6%;
  width: 150px;
  height: 114px;
  background: linear-gradient(180deg, rgba(255, 218, 132, 0.96), rgba(255, 201, 66, 0.92));
  transform: rotate(8deg);
}

.lp5-report-badge {
  width: 46px;
  height: 46px;
  margin: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #6ec3ff, #2e78e6);
}

.lp5-report-bars {
  margin: 10px 16px 0;
  height: 66px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #7ec1ff 16%, transparent 16% 22%, #3c88ef 22% 40%, transparent 40% 48%, #9bd4ff 48% 64%, transparent 64% 72%, #3c88ef 72% 88%, transparent 88%),
    linear-gradient(180deg, rgba(76, 140, 241, 0.14), rgba(76, 140, 241, 0.04));
  background-position: bottom, 0 0;
  background-size: 100% 78%, 100% 100%;
  background-repeat: no-repeat;
}

.lp5-loupe {
  position: absolute;
  left: 17%;
  bottom: 18%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,0.88);
  box-shadow: 0 12px 24px rgba(25, 57, 104, 0.14);
  z-index: 6;
}

.lp5-loupe::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -20px;
  width: 46px;
  height: 13px;
  border-radius: 999px;
  background: #5e6e86;
  transform: rotate(42deg);
}

.lp5-section {
  padding: 4rem 5.5vw;
}

.lp5-how,
.lp5-offers {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,249,255,0.92));
}

.lp5-benefits {
  background:
    radial-gradient(circle at left bottom, rgba(84, 151, 255, 0.14), transparent 20%),
    radial-gradient(circle at right bottom, rgba(92, 150, 246, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(244,248,255,0.92), rgba(240,245,254,0.96));
}

.lp5-section-head {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.lp5-section-head h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  color: #163a70;
}

.lp5-section-head p {
  margin-bottom: 0;
  color: #34557f;
  font-size: 1.04rem;
}

.lp5-steps,
.lp5-benefit-grid,
.lp5-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.lp5-step-card,
.lp5-benefit-card,
.lp5-offer {
  padding: 1.45rem;
  border-radius: 26px;
  text-align: center;
  background: rgba(255,255,255,0.82);
}

.lp5-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(74, 142, 246, 0.18), rgba(74, 142, 246, 0.06));
  color: #2c74df;
  font-size: 1.5rem;
  font-weight: 800;
}

.lp5-step-card h3,
.lp5-benefit-card h3,
.lp5-offer h3 {
  margin-bottom: 0.55rem;
  color: #17396d;
}

.lp5-step-card p,
.lp5-benefit-card p,
.lp5-offer-copy {
  margin-bottom: 0;
  color: #3c5f89;
}

.lp5-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.lp5-offer-label {
  margin-bottom: 0.45rem;
  color: #6783a7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp5-offer-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd34a, #ffbe1b);
  color: #18427a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp5-price {
  margin: 0.2rem 0 1rem;
  color: #163a70;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.lp5-price span {
  margin-left: 0.35rem;
  color: #5c7696;
  font-size: 1rem;
  font-weight: 600;
}

.lp5-offer ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #32557f;
}

.lp5-offer .cta {
  margin-top: auto;
}

.lp5-offer-highlighted {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,245,233,0.96));
  box-shadow: 0 20px 42px rgba(32, 69, 125, 0.16);
}

@media (max-width: 1100px) {
  .lp5-hero {
    grid-template-columns: 1fr;
    padding-top: 2.8rem;
  }

  .lp5-hero-visual {
    min-height: 500px;
    margin-top: 1rem;
  }

  .lp5-hero-scene {
    right: -1%;
    width: 620px;
  }

  .lp5-phone {
    left: 7%;
    bottom: 15%;
  }

  .lp5-report-card-front {
    right: 3%;
  }

  .lp5-steps,
  .lp5-benefit-grid,
  .lp5-offer-grid {
    grid-template-columns: 1fr;
  }

  .lp5-offer-highlighted {
    transform: none;
  }
}

@media (max-width: 720px) {
  .lp5-hero,
  .lp5-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .lp5-hero-copy h1 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .lp5-lead {
    font-size: 1rem;
  }

  .lp5-hero-visual {
    min-height: 420px;
  }

  .lp5-hero-focus {
    right: -8%;
    width: 300px;
    height: 170px;
  }

  .lp5-hero-scene {
    right: -8%;
    width: 430px;
  }

  .lp5-phone {
    left: 2%;
    bottom: 15%;
    width: 112px;
    height: 208px;
  }

  .lp5-report-card-front {
    width: 138px;
    height: 104px;
    right: 1%;
  }

  .lp5-report-card-back {
    width: 122px;
    height: 92px;
    right: -2%;
  }

  .lp5-loupe {
    left: 8%;
    bottom: 19%;
    width: 58px;
    height: 58px;
    border-width: 8px;
  }
}
body.landing-page-v4 {
  color: #213244;
  background:
    linear-gradient(180deg, #f1ece2 0%, #f7f3eb 100%);
}

body.landing-page-v4::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 79, 57, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 79, 57, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
}

body.landing-page-v4 .site-header {
  border-bottom-color: rgba(125, 108, 83, 0.22);
  background: rgba(250, 247, 241, 0.92);
}

body.landing-page-v4 .page-shell {
  padding-top: 2rem;
}

body.landing-page-v4 h1,
body.landing-page-v4 h2,
body.landing-page-v4 h3 {
  font-family: "Bitter", "Iowan Old Style", Georgia, serif;
  letter-spacing: -0.02em;
  color: #1f3340;
}

body.landing-page-v4 .card {
  background: rgba(255, 252, 246, 0.96);
  border-color: rgba(170, 151, 122, 0.34);
  box-shadow: 0 14px 28px rgba(57, 44, 22, 0.08);
}

.lp4-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.lp4-masthead {
  padding: 1.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(196, 145, 74, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(250, 245, 236, 0.96));
}

.lp4-masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lp4-stamp {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: #2e4f58;
  color: #f8f2e7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp4-context {
  color: #7b6443;
  font-size: 0.92rem;
  font-weight: 700;
}

.lp4-masthead-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 320px;
  gap: 1rem;
  align-items: start;
}

.lp4-copy {
  padding: 0.2rem 0.1rem 0.1rem;
}

.lp4-kicker,
.lp4-mini-kicker {
  margin-bottom: 0.42rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp4-kicker {
  color: #7d5e37;
}

.lp4-copy h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  line-height: 0.95;
}

.lp4-lead {
  max-width: 48rem;
  margin-bottom: 0;
  color: #355065;
  font-size: 1.03rem;
  line-height: 1.75;
}

.lp4-action-card {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(170, 151, 122, 0.34);
  background: rgba(249, 243, 232, 0.88);
}

.lp4-action-label {
  margin-bottom: 0.7rem;
  color: #435e65;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp4-action-card .cta {
  width: 100%;
  margin-bottom: 0.7rem;
}

.lp4-facts {
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.lp4-facts div {
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(125, 108, 83, 0.32);
}

.lp4-facts dt {
  margin-bottom: 0.22rem;
  color: #6b5131;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp4-facts dd {
  margin: 0;
  color: #274356;
  font-weight: 650;
}

.lp4-triage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp4-triage-card {
  min-height: 100%;
  padding: 1.15rem;
  border-radius: 22px;
}

.lp4-triage-card h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.lp4-mini-kicker {
  color: #6f5735;
}

.lp4-triage-card-alert {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(251, 243, 231, 0.95));
}

.lp4-triage-card-code {
  background: linear-gradient(180deg, rgba(245, 249, 252, 0.98), rgba(237, 244, 249, 0.95));
}

.lp4-triage-card-photo {
  background: linear-gradient(180deg, rgba(246, 250, 243, 0.98), rgba(239, 246, 235, 0.95));
}

.lp4-dossier {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 320px;
  gap: 1rem;
  align-items: start;
}

.lp4-sheet {
  padding: 1.5rem;
  border-radius: 28px;
}

.lp4-sheet-head {
  margin-bottom: 1rem;
}

.lp4-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp4-sheet-grid section {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(172, 154, 126, 0.3);
  background: rgba(255, 255, 255, 0.58);
}

.lp4-clean-list,
.lp4-plain-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.lp4-sidebar {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(47, 70, 74, 0.98), rgba(62, 92, 97, 0.96));
  color: #f7f0e6;
}

.lp4-sidebar h2,
.lp4-sidebar p,
.lp4-sidebar li {
  color: inherit;
}

.lp4-sidebar .lp4-mini-kicker {
  color: rgba(239, 229, 214, 0.85);
}

.lp4-sidebar-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 238, 226, 0.86);
}

.lp4-flow {
  padding: 1.5rem;
  border-radius: 28px;
}

.lp4-flow-head {
  margin-bottom: 1rem;
}

.lp4-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.lp4-track-step {
  position: relative;
  padding: 1rem 1rem 1rem 1rem;
  border-top: 6px solid #2d4a56;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.65);
}

.lp4-track-step span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #7e5d36;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lp4-track-step p {
  margin-bottom: 0;
}

.lp4-result-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 1rem;
}

.lp4-result-card,
.lp4-trust {
  padding: 1.4rem;
  border-radius: 28px;
}

.lp4-result-window {
  border-radius: 20px;
  border: 1px solid rgba(166, 149, 120, 0.32);
  background: #fcfaf6;
  overflow: hidden;
}

.lp4-result-toolbar {
  display: flex;
  gap: 0.38rem;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(166, 149, 120, 0.22);
  background: #f4eee4;
}

.lp4-result-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d6c7af;
}

.lp4-result-content {
  padding: 1.15rem;
}

.lp4-result-label {
  margin-bottom: 0.45rem;
  color: #6e542f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp4-result-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(166, 149, 120, 0.34);
}

.lp4-result-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.lp4-result-block p,
.lp4-trust p {
  margin-bottom: 0;
}

.lp4-trust {
  background: linear-gradient(180deg, rgba(246, 241, 233, 0.98), rgba(238, 231, 220, 0.95));
}

@media (max-width: 1100px) {
  .lp4-masthead-body,
  .lp4-triage,
  .lp4-dossier,
  .lp4-sheet-grid,
  .lp4-track,
  .lp4-result-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lp4-masthead,
  .lp4-sheet,
  .lp4-sidebar,
  .lp4-flow,
  .lp4-result-card,
  .lp4-trust {
    padding: 1.15rem;
  }

  .lp4-masthead-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp4-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
}
body.landing-page-v3 {
  color: #203243;
  background:
    radial-gradient(840px 480px at 0% -6%, rgba(123, 168, 116, 0.16), transparent),
    radial-gradient(760px 420px at 100% -10%, rgba(215, 146, 74, 0.16), transparent),
    linear-gradient(180deg, #efe8db 0%, #f4efe5 28%, #f6f2ea 100%);
}

body.landing-page-v3 .site-header {
  border-bottom-color: rgba(168, 155, 132, 0.28);
  background: rgba(249, 246, 240, 0.9);
}

body.landing-page-v3 .nav-link:hover {
  background: rgba(138, 154, 127, 0.12);
}

body.landing-page-v3 .page-shell {
  padding-top: 1.8rem;
}

body.landing-page-v3 h1,
body.landing-page-v3 h2,
body.landing-page-v3 h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.02em;
  color: #1d3140;
}

body.landing-page-v3 .card {
  border-color: rgba(180, 167, 144, 0.36);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 36px rgba(65, 55, 39, 0.08);
}

.lp3-shell {
  display: grid;
  gap: 1rem;
}

.lp3-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.lp3-intro {
  position: relative;
  padding: 1.9rem 1.9rem 1.7rem;
  border-radius: 10px 30px 30px 30px;
  background:
    linear-gradient(90deg, rgba(141, 165, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 247, 240, 0.94));
}

.lp3-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.015), transparent 18%);
  pointer-events: none;
}

.lp3-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(110, 137, 87, 0.12);
  color: #526b41;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp3-overline {
  margin-bottom: 0.42rem;
  color: #7f5f36;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp3-intro h1 {
  max-width: 11ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  line-height: 0.98;
}

.lp3-lead {
  max-width: 40rem;
  margin-bottom: 0;
  color: #31495b;
  font-size: 1.02rem;
  line-height: 1.72;
}

.lp3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.lp3-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.lp3-questions span {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 0.9rem 0.95rem;
  border-left: 4px solid #d28b3b;
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.92);
  color: #355064;
  font-size: 0.92rem;
  font-weight: 650;
}

.lp3-decision {
  padding: 1.45rem;
  border-radius: 30px 10px 30px 30px;
  background:
    linear-gradient(180deg, rgba(33, 51, 58, 0.98), rgba(43, 67, 74, 0.96)),
    linear-gradient(135deg, rgba(209, 145, 71, 0.18), transparent);
  color: #f8f3ea;
  box-shadow: 0 24px 52px rgba(33, 27, 19, 0.2);
}

.lp3-decision h2,
.lp3-decision p,
.lp3-decision strong,
.lp3-decision li {
  color: inherit;
}

.lp3-panel-label,
.lp3-section-kicker,
.lp3-report-label {
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp3-panel-label {
  color: rgba(241, 232, 216, 0.86);
}

.lp3-decision h2 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.06;
}

.lp3-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.lp3-checklist li {
  position: relative;
  padding: 0.8rem 0.9rem 0.8rem 2.7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.52;
}

.lp3-checklist li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.95rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(180deg, #efb367, #d78a34);
  box-shadow: 0 0 0 6px rgba(215, 138, 52, 0.13);
}

.lp3-panel-note {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp3-panel-note p {
  margin: 0.28rem 0 0;
  color: rgba(244, 238, 229, 0.88);
}

.lp3-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp3-board-card {
  padding: 1.45rem;
  border-radius: 28px;
}

.lp3-board-card h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.lp3-section-kicker {
  color: #7f6039;
}

.lp3-cases {
  display: grid;
  gap: 0.75rem;
}

.lp3-cases div {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(183, 170, 147, 0.34);
  background: rgba(255, 255, 255, 0.64);
}

.lp3-cases p,
.lp3-upload-note,
.lp3-report-sheet p,
.lp3-contrast-card p {
  margin-bottom: 0;
}

.lp3-upload-card {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(250, 245, 237, 0.94));
}

.lp3-upload-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.lp3-upload-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(173, 157, 131, 0.55);
  color: #5b6e7d;
}

.lp3-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.78fr);
  gap: 1rem;
}

.lp3-flow-intro,
.lp3-report {
  padding: 1.5rem;
  border-radius: 28px;
}

.lp3-steps {
  display: grid;
  gap: 0.8rem;
}

.lp3-steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.92rem 0;
  border-top: 1px solid rgba(177, 163, 139, 0.35);
}

.lp3-steps article:first-child {
  border-top: 0;
  padding-top: 0.1rem;
}

.lp3-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #21343b;
  color: #fff8ee;
  font-size: 0.95rem;
  font-weight: 800;
}

.lp3-steps p {
  margin-bottom: 0;
  color: #536778;
}

.lp3-report {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 246, 238, 0.94));
}

.lp3-report-head h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.lp3-report-label {
  color: #6d7f8c;
}

.lp3-report-sheet {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(177, 163, 139, 0.38);
  background: rgba(255, 255, 255, 0.82);
}

.lp3-report-status {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  background: rgba(111, 146, 91, 0.14);
  color: #557144;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp3-report-sheet ul {
  margin: 0 0 0.95rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.lp3-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp3-contrast-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.lp3-contrast-positive {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 244, 236, 0.95));
}

.lp3-contrast-neutral {
  background:
    linear-gradient(180deg, rgba(242, 239, 232, 0.98), rgba(237, 232, 222, 0.96));
}

@media (max-width: 1100px) {
  .lp3-hero,
  .lp3-board,
  .lp3-flow,
  .lp3-contrast {
    grid-template-columns: 1fr;
  }

  .lp3-questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lp3-intro,
  .lp3-decision,
  .lp3-board-card,
  .lp3-flow-intro,
  .lp3-report,
  .lp3-contrast-card {
    padding: 1.15rem;
  }

  .lp3-intro h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .lp3-actions .cta {
    width: 100%;
  }
}
body.landing-page-v2 .page-shell {
  padding-top: 1.7rem;
}

.lp2-shell {
  display: grid;
  gap: 1rem;
}

.lp2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.86fr);
  gap: 1rem;
  align-items: stretch;
}

.lp2-copy {
  padding: 2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 79, 0.16), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(26, 121, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
}

.lp2-kicker {
  margin-bottom: 0.4rem;
  color: #1f5dae;
  font-size: 0.92rem;
  font-weight: 700;
}

.lp2-copy h1 {
  max-width: 12ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
}

.lp2-lead {
  max-width: 39rem;
  margin-bottom: 0;
  color: #274567;
  font-size: 1rem;
  line-height: 1.7;
}

.lp2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.lp2-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.lp2-note-row span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(206, 220, 241, 0.96);
  color: #20466f;
  font-size: 0.88rem;
  font-weight: 650;
}

.lp2-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(17, 50, 94, 0.98), rgba(21, 84, 153, 0.96)),
    linear-gradient(135deg, rgba(255, 142, 28, 0.18), transparent);
  color: #f4f8ff;
  box-shadow: 0 24px 58px rgba(8, 36, 73, 0.28);
}

.lp2-side h2,
.lp2-side p,
.lp2-side strong {
  color: inherit;
}

.lp2-side-kicker,
.lp2-section-kicker {
  margin-bottom: 0.38rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp2-side-kicker {
  color: rgba(206, 228, 255, 0.95);
}

.lp2-side h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.lp2-side-stack {
  display: grid;
  gap: 0.75rem;
}

.lp2-side-stack article {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.lp2-side-stack article p {
  margin: 0.38rem 0 0;
  font-size: 0.95rem;
  line-height: 1.56;
  color: rgba(238, 244, 255, 0.92);
}

.lp2-side-footnote {
  margin: 1rem 0 0;
  color: rgba(208, 226, 250, 0.9);
  font-size: 0.88rem;
}

.lp2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp2-stat {
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.lp2-stat strong {
  display: block;
  margin-bottom: 0.42rem;
  color: #123762;
  font-size: 1rem;
}

.lp2-stat p {
  margin: 0;
}

.lp2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lp2-panel {
  padding: 1.5rem;
  border-radius: 28px;
}

.lp2-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.lp2-list li {
  padding-left: 0.1rem;
}

.lp2-list-muted li::marker {
  color: #c97215;
}

.lp2-process-wrap {
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 103, 232, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
}

.lp2-process-head {
  margin-bottom: 0.9rem;
}

.lp2-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lp2-step {
  position: relative;
  min-height: 100%;
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(209, 223, 242, 0.96);
  background: rgba(255, 255, 255, 0.82);
}

.lp2-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #1a79ff, #0f67e8);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.lp2-step p {
  margin-bottom: 0;
}

.lp2-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.55rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at bottom left, rgba(255, 173, 74, 0.14), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.lp2-final h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.lp2-final p {
  margin-bottom: 0;
}

.lp2-final-actions {
  display: grid;
  gap: 0.7rem;
  min-width: 250px;
}

@media (max-width: 1100px) {
  .lp2-hero,
  .lp2-stats,
  .lp2-grid,
  .lp2-process,
  .lp2-final {
    grid-template-columns: 1fr;
  }

  .lp2-final-actions {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .lp2-copy,
  .lp2-side,
  .lp2-panel,
  .lp2-process-wrap,
  .lp2-final {
    padding: 1.15rem;
  }

  .lp2-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .lp2-actions .cta,
  .lp2-final-actions .cta {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .lp-hero,
  .lp-proof-band,
  .lp-value-grid,
  .lp-process-grid,
  .lp-compare-grid,
  .metrics-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .lp-inline-points,
  .lp-situation-grid,
  .lp-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-shell {
    grid-template-columns: 1fr;
  }

  .guide-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-row {
    min-height: 66px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .site-nav {
    width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .lp-hero-copy,
  .lp-hero-panel,
  .card {
    padding: 1.1rem;
  }

  .lp-inline-points,
  .lp-situation-grid,
  .lp-faq-grid,
  .two-col-grid,
  .wizard-steps,
  .lp-mini-flow {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-row {
    min-height: 56px;
    padding: 0.6rem 0;
  }
}

.upload-field {
  margin-bottom: 0.9rem;
}

.upload-previews {
  margin-top: 0.55rem;
}

.upload-preview-empty {
  margin: 0;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.6rem;
}

.upload-preview-card {
  border: 1px solid #d8e5f7;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.upload-preview-media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f8ff;
  border-bottom: 1px solid #d8e5f7;
}

.upload-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.upload-preview-filetype {
  padding: 0 0.55rem;
  text-align: center;
  color: #4f6986;
  font-size: 0.82rem;
  word-break: break-word;
}

.upload-preview-footer {
  padding: 0.5rem;
}

.upload-preview-name {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: #2e4f74;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-preview-remove {
  width: 100%;
  border: 1px solid #c8daf4;
  border-radius: 9px;
  background: #fff;
  color: #1f5eaf;
  box-shadow: none;
  padding: 0.44rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.upload-preview-remove:hover {
  background: #eef5ff;
  transform: none;
}

.upload-feedback {
  min-height: 1.1rem;
  margin: 0.3rem 0 0;
}

.upload-feedback.has-message {
  color: #b33030;
}

.admin-login-card {
  max-width: 460px;
  margin: 2rem auto;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
}

.admin-login-form button {
  margin-top: 0.85rem;
  align-self: flex-start;
}

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

.logo-image {
  width: auto;
  height: 74px;
  display: block;
}

@media (max-width: 760px) {
  .logo-image {
    height: 58px;
  }
}

.admin-webhook-form {
  margin: 0.9rem 0 1.2rem;
}

.admin-webhook-form button {
  margin-bottom: 0.45rem;
}

.admin-webhook-inline {
  margin: 0;
}

.admin-webhook-inline button {
  padding: 0.4rem 0.7rem;
  border-radius: 9px;
  font-size: 0.82rem;
  box-shadow: none;
}

.public-upload-state {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: left;
}



.submit-overlay[hidden] {
  display: none !important;
}

.submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(16, 39, 66, 0.28);
  backdrop-filter: blur(4px);
}

.submit-overlay__dialog {
  width: min(100%, 360px);
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(215, 227, 242, 0.96);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  box-shadow: 0 22px 48px rgba(16, 39, 66, 0.2);
  text-align: center;
}

.submit-overlay__spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 4px solid rgba(15, 103, 232, 0.18);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: submit-overlay-spin 0.85s linear infinite;
}

.submit-overlay__title {
  margin: 0.95rem 0 0.35rem;
  color: #183f68;
  font-size: 1.08rem;
}

.submit-overlay__text {
  margin: 0;
}

@keyframes submit-overlay-spin {
  to {
    transform: rotate(360deg);
  }
}

body.landing-page-v5 .lp5-hero-visual {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

body.landing-page-v5 .lp5-hero-image-shell {
  position: relative;
  width: min(900px, 112%);
  margin-right: -3.5rem;
  padding: 0.2rem 0 0;
}

body.landing-page-v5 .lp5-hero-image-shell::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 184, 255, 0.3), rgba(123, 184, 255, 0) 72%);
  filter: blur(12px);
  z-index: 0;
}

body.landing-page-v5 .lp5-hero-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 54px rgba(9, 29, 61, 0.28));
  z-index: 1;
}

@media (max-width: 1100px) {
  body.landing-page-v5 .lp5-hero-visual {
    min-height: 520px;
  }

  body.landing-page-v5 .lp5-hero-image-shell {
    width: min(760px, 108%);
    margin-right: -2rem;
  }
}

@media (max-width: 720px) {
  body.landing-page-v5 .lp5-hero-visual {
    min-height: 320px;
    margin-top: 0.6rem;
    justify-content: center;
  }

  body.landing-page-v5 .lp5-hero-image-shell {
    width: 108%;
    margin-right: 0;
    padding-top: 0;
  }
}