* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    min-height: 100vh;
    margin: 0;
    color: #183a55;
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(rgba(239, 248, 252, 0.94), rgba(239, 248, 252, 0.97)),
        url("/images/florida-property-seekers-background.png") center / cover fixed;
}


.lead-page-header {
    position: relative;
    z-index: 10;
    width: 100%;
    color: #ffffff;
    background: #0b385e;
    border-bottom: 4px solid #48a64b;
    box-shadow: 0 5px 18px rgba(8, 40, 66, 0.22);
}

.lead-page-header-inner {
    display: flex;
    width: min(1120px, 100%);
    min-height: 76px;
    margin: 0 auto;
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lead-page-brand {
    display: inline-flex;
    flex-shrink: 0;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.08;
    text-decoration: none;
}

.lead-page-brand-name {
    font-size: 1.14rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.lead-page-brand-site {
    margin-top: 5px;
    color: #9bd48f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.025em;
}


.lead-page-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.lead-page-share-button {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 14px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.15;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1877f2;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    transition:
        background 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.lead-page-share-button span {
    display: grid;
    width: 22px;
    height: 22px;
    color: #1877f2;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1;
    place-items: center;
    background: #ffffff;
    border-radius: 50%;
}

.lead-page-share-button:hover,
.lead-page-share-button:focus-visible {
    color: #ffffff;
    background: #0f65d8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lead-page-share-button:focus-visible {
    outline: 3px solid #f5c84b;
    outline-offset: 3px;
}

.lead-page-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.lead-page-nav a {
    display: inline-block;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    transition:
        color 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}

.lead-page-nav a:hover,
.lead-page-nav a:focus-visible {
    color: #0b385e;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.lead-page-nav a:focus-visible,
.lead-page-brand:focus-visible {
    outline: 3px solid #f5c84b;
    outline-offset: 3px;
}

.lead-page-shell {
    padding: 32px 18px 52px;
}

.lead-page-card {
    width: min(920px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 56, 94, 0.12);
    border-radius: 22px;
    box-shadow: 0 16px 44px rgba(13, 54, 87, 0.15);
}

.lead-page-image {
    display: block;
    width: 100%;
    height: auto;
    background: #dcecf4;
}

.lead-page-content {
    padding: 34px clamp(22px, 5vw, 52px) 42px;
}

.lead-page-content h1 {
    margin: 0 0 18px;
    color: #0b385e;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.08;
    text-align: center;
}

.lead-page-content p {
    max-width: 735px;
    margin: 0 auto 18px;
    color: #425a6c;
    font-size: 1.06rem;
    line-height: 1.7;
    text-align: center;
}

.lead-page-tips {
    max-width: 700px;
    margin: 28px auto 30px;
}

.lead-page-tips h2 {
    margin: 0 0 14px;
    color: #0b385e;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    text-align: center;
}

.lead-page-tips ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lead-page-tips li {
    position: relative;
    margin: 0 0 11px;
    padding: 14px 18px 14px 52px;
    color: #173b59;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.45;
    background: #f4f9fc;
    border: 1px solid #dcebf4;
    border-radius: 13px;
}

.lead-page-tips li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 16px;
    display: grid;
    width: 26px;
    height: 26px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    place-items: center;
    background: #2f8e3b;
    border-radius: 50%;
    transform: translateY(-50%);
}



.lead-page-featured-link-wrap {
    margin: 0 auto 24px;
    text-align: center;
}

.lead-page-featured-link {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 24px;
    color: #ffffff;
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    background: #2f8e3b;
    border: 2px solid #267831;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(47, 142, 59, 0.24);
    transition:
        background 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.lead-page-featured-link:hover,
.lead-page-featured-link:focus-visible {
    background: #267831;
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(47, 142, 59, 0.30);
}

.lead-page-featured-link:focus-visible {
    outline: 3px solid #f5c84b;
    outline-offset: 4px;
}

.lead-page-action {
    margin-top: 30px;
    text-align: center;
}

.lead-page-button {
    display: inline-block;
    padding: 15px 27px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    background: #0b5f91;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(11, 95, 145, 0.22);
    transition: transform 0.15s ease, background 0.15s ease;
}

.lead-page-button:hover,
.lead-page-button:focus-visible {
    background: #084d77;
    transform: translateY(-2px);
}

.lead-page-button:focus-visible {
    outline: 3px solid #f5c84b;
    outline-offset: 4px;
}

@media (max-width: 700px) {
    .lead-page-header-inner {
        min-height: 0;
        padding: 15px 14px 13px;
        flex-direction: column;
        gap: 12px;
    }

    .lead-page-brand {
        align-items: center;
        text-align: center;
    }

    .lead-page-header-actions {
        width: 100%;
        flex-direction: column;
        gap: 9px;
    }

    .lead-page-share-button {
        width: 100%;
        max-width: 440px;
    }

    .lead-page-brand-name {
        font-size: 1.08rem;
    }

    .lead-page-nav {
        display: grid;
        width: 100%;
        max-width: 440px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .lead-page-nav a {
        padding: 10px 8px;
        font-size: 0.88rem;
        text-align: center;
    }

    .lead-page-shell {
        padding: 16px 10px 34px;
    }

    .lead-page-card {
        border-radius: 15px;
    }

    .lead-page-content {
        padding: 26px 18px 32px;
    }

    .lead-page-content p {
        text-align: left;
    }

    .lead-page-featured-link,
    .lead-page-button {
        width: 100%;
    }
}
