:root {
    --ink: #0d1821;
    --muted: #53677a;
    --line: #dce6ed;
    --paper: #ffffff;
    --soft: #f8f8f8;
    --mist: #edf5fb;
    --forest: #0d1821;
    --teal: #0065cb;
    --teal-dark: #084b70;
    --blue-deep: #0057ad;
    --gold: #77b978;
    --coral: #f37262;
    --shadow: 0 18px 50px rgba(22, 45, 61, 0.14);
    --shadow-soft: 0 10px 28px rgba(22, 45, 61, 0.1);
    --radius: 8px;
    --container: 1160px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    max-width: 100%;
    padding-top: var(--header-height);
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    color: #fff;
    background: var(--forest);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: #084b70;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 75, 112, 0.98);
    box-shadow: 0 8px 24px rgba(22, 45, 61, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--forest), var(--teal));
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 10px 18px rgba(15, 138, 123, 0.22);
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

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

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: #c9e7f8;
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.35rem);
    color: #e6f1fa;
    font-size: 0.95rem;
}

.site-nav a,
.footer-inner a,
.contact-methods a {
    text-decoration: none;
}

.footer-inner a:hover,
.contact-methods a:hover {
    color: var(--teal-dark);
}

.site-nav a:hover {
    color: #fff;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5.6rem) 0 clamp(3.4rem, 6vw, 5.2rem);
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 101, 203, 0.42), transparent 30rem),
        radial-gradient(circle at 14% 18%, rgba(119, 185, 120, 0.22), transparent 26rem),
        linear-gradient(135deg, #0d1821 0%, #084b70 56%, #0057ad 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), rgba(243, 114, 98, 0.7) 42%, rgba(243, 114, 98, 0));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.hero .eyebrow {
    color: #9ed6ff;
}

.hero h1 {
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

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

h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 6.2vw, 5.45rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: 1.05rem;
}

.hero-subheadline {
    max-width: 720px;
    margin: 1rem 0 1.1rem;
    color: #dbe8f5;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-bullets,
.check-list,
.pill-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-bullets {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.hero-bullets li,
.check-list li {
    position: relative;
    padding-left: 1.7rem;
    color: #203245;
    font-weight: 700;
}

.hero-bullets li {
    color: #f4f8fb;
}

.hero-bullets li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.3rem;
    border: 0;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
    white-space: normal;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 14px 28px rgba(0, 101, 203, 0.32);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-deep), var(--forest));
}

.btn-cta {
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 68%);
    transform: translateX(-120%);
    transition: transform 420ms ease;
}

.btn-cta:hover::after {
    transform: translateX(120%);
}

.btn-secondary {
    color: var(--forest);
    background: #fff;
    border: 1px solid rgba(18, 63, 58, 0.18);
    box-shadow: 0 10px 22px rgba(22, 45, 61, 0.08);
}

.btn-secondary.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.btn-small {
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
}

.full {
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.trust-line {
    margin: 0.95rem 0 0;
    color: #e6f1fa;
    font-weight: 700;
}

.cta-microcopy {
    margin: 0.75rem 0 0;
    color: #f2f7fb;
    font-weight: 800;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.floating-proof {
    position: absolute;
    right: clamp(0.75rem, 4vw, 2rem);
    bottom: clamp(0.75rem, 4vw, 2rem);
    width: min(230px, 54%);
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(220, 230, 237, 0.88);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.floating-proof strong,
.floating-proof span {
    display: block;
}

.floating-proof span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: clamp(3rem, 5.5vw, 5.25rem) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.55rem;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.centered {
    margin-inline: auto;
    text-align: center;
}

.problem {
    position: relative;
    background: #fff;
}

.card-grid,
.service-grid,
.feature-grid,
.process-steps {
    display: grid;
    gap: 1rem;
}

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

.mini-card,
.feature-card,
.service-card,
.step-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 45, 61, 0.06);
}

.mini-card {
    min-height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(243, 114, 98, 0.12);
}

.closing-line {
    margin: 1.5rem 0 0;
    color: var(--forest);
    font-size: 1.15rem;
    font-weight: 800;
}

.problem-bridge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 860px;
    margin: 1.55rem 0 0;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: #f4f9fe;
}

.problem-bridge span {
    width: 32px;
    height: 32px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

.problem-bridge p {
    margin: 0;
    color: #263a4f;
    font-size: 1.03rem;
}

.services {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #edf5fb 0%, #f8fbfe 68%, #fff 100%);
    border-top: 1px solid rgba(0, 101, 203, 0.12);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

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

.feature-card {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem;
}

.feature-card span {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

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

.service-card {
    min-height: 158px;
    padding: 1.2rem;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    margin-bottom: 0.8rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.offer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(13, 24, 33, 0.98), rgba(8, 75, 112, 0.95) 62%, rgba(0, 101, 203, 0.88)),
        var(--forest);
    color: #fff;
}

.offer .eyebrow,
.offer p {
    color: #e4fbf7;
}

.offer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: center;
}

.offer-panel h2,
.offer-panel p {
    max-width: 680px;
}

.offer-panel p {
    font-size: 1.1rem;
}

.offer .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue-deep));
    box-shadow: 0 12px 28px rgba(0, 101, 203, 0.28);
}

.check-list {
    display: grid;
    gap: 0.65rem;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.check-list li {
    color: #fff;
}

.check-list li::before {
    color: var(--gold);
}

.financing {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.financing-band {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    color: #fff;
    background: linear-gradient(135deg, #0d1821, #084b70 58%, #0065cb);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.financing-band .eyebrow,
.financing-band p {
    color: #d9ecfb;
}

.financing-band p {
    margin: 0.8rem 0 0;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.financing-action {
    display: grid;
    gap: 0.55rem;
    min-width: 196px;
}

.financing-action small {
    color: #d9ecfb;
    font-weight: 700;
    text-align: center;
}

.pill-list li {
    padding: 0.48rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.92rem;
}

.process {
    position: relative;
    overflow: hidden;
    background: var(--soft);
}

.process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    min-height: 132px;
    padding: 1.1rem;
}

.step-card span {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: var(--forest);
    background: var(--gold);
    font-weight: 900;
}

.process-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 820px;
    margin: 1.6rem auto 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 101, 203, 0.16);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 45, 61, 0.05);
}

.process-bridge span {
    width: 32px;
    height: 32px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

.process-bridge p {
    margin: 0;
    color: #263a4f;
    font-size: 1.02rem;
}

.process-bridge .btn {
    flex: 0 0 auto;
    margin-left: auto;
}

.faq {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid rgba(0, 101, 203, 0.1);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 45, 61, 0.05);
}

.faq-list summary {
    position: relative;
    padding: 1rem 3rem 1rem 1rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1rem;
    color: var(--teal);
    font-size: 1.35rem;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
}

.how-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.25rem, 8vw, 7rem) 0;
    color: #fff;
    background:
        linear-gradient(118deg, rgba(13, 24, 33, 0.98), rgba(8, 75, 112, 0.96) 56%, rgba(0, 101, 203, 0.94));
}

.how-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), rgba(243, 114, 98, 0.32));
}

.how-hero-inner {
    max-width: 920px;
    text-align: center;
}

.how-hero .eyebrow {
    color: #9ed6ff;
}

.how-hero h1 {
    max-width: 900px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(2.7rem, 6.8vw, 5.6rem);
}

.how-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 1.1rem auto 1.5rem;
    color: #e6f1fa;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.how-steps {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fbfe, #fff);
}

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

.how-step {
    position: relative;
    min-height: 300px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.how-step-number {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1.35rem;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 10px 22px rgba(0, 101, 203, 0.25);
    font-size: 1.35rem;
    font-weight: 900;
}

.how-step-label {
    margin: 0 0 0.4rem;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.how-step h3 {
    font-size: 1.45rem;
}

.how-step p:last-child {
    margin: 0.85rem 0 0;
    color: var(--muted);
}

.how-assurance {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid rgba(0, 101, 203, 0.1);
}

.how-assurance-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.how-assurance-inner p:not(.eyebrow) {
    max-width: 680px;
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.how-check-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.how-check-list li {
    position: relative;
    padding: 0.8rem 0.9rem 0.8rem 2.45rem;
    color: #263a4f;
    border: 1px solid rgba(0, 101, 203, 0.12);
    border-radius: var(--radius);
    background: var(--mist);
    font-weight: 800;
}

.how-check-list li::before {
    content: "";
    position: absolute;
    top: 0.78rem;
    left: 0.9rem;
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--gold);
    font-size: 0;
}

.how-check-list li::after {
    content: "";
    position: absolute;
    top: 1.05rem;
    left: 1.18rem;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}

.how-final-cta {
    padding: clamp(3.4rem, 7vw, 5.4rem) 0;
    color: #fff;
    background: linear-gradient(120deg, #0d1821, #084b70);
}

.how-final-cta-inner {
    max-width: 820px;
    text-align: center;
}

.how-final-cta .eyebrow {
    color: #9ed6ff;
}

.how-final-cta h2 {
    color: #fff;
}

.how-final-cta p:not(.eyebrow) {
    margin: 0.9rem 0 1.35rem;
    color: #e6f1fa;
    font-size: 1.08rem;
}

.how-final-cta .hero-actions {
    justify-content: center;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #eaf4fb 0%, #f7fbfe 22%, #fff 66%);
    border-top: 1px solid rgba(0, 101, 203, 0.12);
}

.contact-intro {
    max-width: 820px;
    margin-bottom: 2rem;
}

.contact-intro h1,
.contact-intro h2 {
    max-width: 820px;
    margin-inline: auto;
}

.contact-intro h1 {
    font-size: clamp(2.45rem, 5vw, 4.4rem);
}

.contact-intro p:not(.eyebrow) {
    max-width: 620px;
    margin: 0.8rem auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 110px;
}

.contact-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.contact-methods {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.contact-methods a {
    display: inline-flex;
    color: var(--forest);
    font-weight: 800;
}

.contact-process {
    padding: 1.15rem;
    border: 1px solid rgba(0, 101, 203, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
}

.contact-process h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.contact-steps {
    display: grid;
    gap: 0.7rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0.65rem;
    align-items: center;
    padding: 0.75rem 0.85rem;
    color: #263a4f;
    border: 1px solid rgba(0, 101, 203, 0.12);
    border-radius: var(--radius);
    background: var(--mist);
}

.contact-steps span {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--teal);
    font-weight: 900;
}

.contact-steps strong,
.contact-steps small {
    display: block;
}

.contact-steps small {
    grid-column: 2;
    margin-top: -0.45rem;
    color: var(--muted);
}

.lead-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    gap: 0.4rem;
}

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

label {
    color: #263646;
    font-weight: 800;
    font-size: 0.95rem;
}

label span {
    color: var(--muted);
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 0.9rem;
    color: var(--ink);
    border: 1px solid #cfdde5;
    border-radius: var(--radius);
    background: #fbfdfd;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 138, 123, 0.13);
}

.has-error {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(238, 107, 77, 0.12);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem;
    border-radius: var(--radius);
    background: var(--mist);
}

.checkbox-row input {
    width: 20px;
    min-height: 20px;
    margin-top: 0.12rem;
    accent-color: var(--teal);
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.captcha-row {
    padding: 0.9rem;
    border: 1px solid rgba(0, 101, 203, 0.16);
    border-radius: var(--radius);
    background: var(--mist);
}

.captcha-row input {
    max-width: 180px;
    margin-top: 0.55rem;
    background: #fff;
}

.captcha-row small {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
}

.form-alert {
    padding: 1rem;
    color: #7d2416;
    border: 1px solid rgba(238, 107, 77, 0.3);
    border-radius: var(--radius);
    background: #fff2ed;
}

.form-alert ul {
    margin: 0.45rem 0 0;
    padding-left: 1.2rem;
}

.form-note {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}

.final-cta {
    padding: clamp(2.4rem, 5vw, 4rem) 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18, 63, 58, 0.92), rgba(23, 32, 42, 0.92)),
        var(--forest);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.final-cta h2 {
    max-width: 760px;
}

.site-footer {
    padding: 1.5rem 0;
    color: #536170;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-inner p {
    margin: 0;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 150;
    width: min(calc(100% - 2rem), 760px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cookie-banner p {
    margin: 0.2rem 0 0;
    color: var(--muted);
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex: 0 0 auto;
}

.popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 170;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(23, 32, 42, 0.54);
}

.lead-popup {
    position: relative;
    width: min(100%, 460px);
    padding: clamp(1.2rem, 5vw, 2rem);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.lead-popup h2 {
    font-size: clamp(1.8rem, 5vw, 2.55rem);
}

.lead-popup p:not(.eyebrow) {
    color: var(--muted);
}

.popup-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: var(--soft);
    font-size: 1.4rem;
    line-height: 1;
}

[hidden] {
    display: none !important;
}

.scroll-stage {
    isolation: isolate;
}

.scroll-stage > .container {
    position: relative;
    z-index: 1;
}

.scroll-stage::before,
.scroll-stage::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    transition: opacity 760ms ease, transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-problem::before {
    top: 0;
    left: 0;
    width: 42%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), rgba(243, 114, 98, 0));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.story-problem.is-stage-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.story-solution::before {
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 101, 203, 0.12), rgba(0, 101, 203, 0) 46%),
        linear-gradient(90deg, rgba(119, 185, 120, 0.1), rgba(119, 185, 120, 0) 34%);
    opacity: 0;
    transform: translateX(-9%);
}

.story-solution.is-stage-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.story-solution::after {
    top: 0;
    left: 50%;
    width: 86px;
    height: 4px;
    background: var(--teal);
    border-radius: 999px;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.story-solution.is-stage-visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.story-offer::after {
    top: -45%;
    right: 12%;
    width: 22%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0;
    transform: skewX(-18deg) translateX(-220%);
}

.story-offer.is-stage-visible::after {
    opacity: 1;
    transform: skewX(-18deg) translateX(420%);
}

.story-financing::before {
    top: 14%;
    right: 0;
    width: 48%;
    height: 72%;
    background: linear-gradient(105deg, rgba(119, 185, 120, 0), rgba(119, 185, 120, 0.14));
    opacity: 0;
    transform: translateX(28%);
}

.story-financing.is-stage-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.story-process::before {
    top: 55%;
    left: 14%;
    width: 72%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 101, 203, 0), rgba(0, 101, 203, 0.4), rgba(0, 101, 203, 0));
    opacity: 0;
    transform: scaleX(0);
}

.story-process.is-stage-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.story-faq::before {
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 101, 203, 0.07), rgba(0, 101, 203, 0) 42%);
    opacity: 0;
    transform: translateX(-8%);
}

.story-faq.is-stage-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.story-how-steps::before {
    top: 57%;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 101, 203, 0), rgba(0, 101, 203, 0.42), rgba(0, 101, 203, 0));
    opacity: 0;
    transform: scaleX(0);
}

.story-how-steps.is-stage-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.story-how-assurance::before {
    inset: 0;
    background: linear-gradient(110deg, rgba(119, 185, 120, 0.1), rgba(119, 185, 120, 0) 44%);
    opacity: 0;
    transform: translateX(-8%);
}

.story-how-assurance.is-stage-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.story-contact::before {
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, rgba(237, 245, 251, 0), rgba(237, 245, 251, 0.72));
    opacity: 0;
    transform: translateX(14%);
}

.story-contact.is-stage-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.story-contact::after {
    top: 0;
    left: 50%;
    width: 86px;
    height: 4px;
    background: var(--teal);
    border-radius: 999px;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.story-contact.is-stage-visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 560ms ease var(--reveal-delay, 0ms),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-offer .reveal,
.story-financing .reveal {
    transform: translateY(24px) scale(0.985);
}

.story-offer .reveal.is-visible,
.story-financing .reveal.is-visible {
    transform: translateY(0) scale(1);
}

.story-contact .contact-copy.reveal {
    transform: translateX(-22px);
}

.story-contact .lead-form.reveal {
    transform: translateX(22px);
}

.story-contact .contact-copy.reveal.is-visible,
.story-contact .lead-form.reveal.is-visible {
    transform: translateX(0);
}

.simple-page,
.policy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--soft), #fff9ed);
}

.simple-page .simple-main,
.policy-page .policy-main {
    min-height: calc(100vh - var(--header-height));
}

.simple-main,
.policy-main {
    width: min(100% - 32px, 880px);
    min-height: 100vh;
    display: grid;
    place-items: center;
    margin-inline: auto;
    padding: 2rem 0;
}

.simple-card,
.policy-content {
    width: 100%;
    padding: clamp(1.25rem, 5vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.simple-brand {
    margin-bottom: 2rem;
}

.simple-card h1,
.policy-content h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
}

.simple-card p,
.policy-content p {
    color: var(--muted);
}

.compact {
    margin-bottom: 1.5rem;
}

.policy-main {
    place-items: start center;
}

.policy-content h2 {
    margin-top: 2rem;
    font-size: 1.45rem;
}

.policy-content a {
    color: var(--teal-dark);
    font-weight: 800;
}

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

    .hero-grid,
    .split,
    .contact-grid,
    .offer-panel,
    .faq-layout,
    .how-assurance-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 840px;
    }

    .problem-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .financing-band {
        grid-template-columns: 1fr;
    }

    .financing-action {
        justify-items: start;
    }

    .financing-action small {
        text-align: left;
    }

    .contact-copy {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand small {
        display: none;
    }

    .header-phone {
        min-height: 38px;
        padding: 0 0.72rem;
        font-size: 0.88rem;
    }

    .hero {
        padding-top: 3rem;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 3rem);
    }

    .hero-actions,
    .final-cta-inner,
    .footer-inner,
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .final-cta .btn {
        width: 100%;
    }

    .problem-grid,
    .service-grid,
    .feature-grid,
    .process-steps,
    .how-step-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .service-card,
    .step-card {
        min-height: auto;
    }

    .floating-proof {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
    }

    .process-bridge {
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .process-bridge .btn {
        width: 100%;
        margin-left: 0;
    }

    .story-how-steps::before {
        display: none;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-stage::before,
    .scroll-stage::after {
        display: none;
    }
}
