:root {
    --fp-teal: #14897e;
    --fp-teal-dark: #0f7268;
    --fp-navy: #1b3a5b;
    --fp-navy-deep: #12243a;
    --fp-text: #5b6b7b;
    --fp-muted: #98a3af;
    --fp-cream: #faf9f5;
    --fp-card-border: #edefec;
    --fp-purple: #8b5cf6;
    --fp-coral: #f0655f;
}

* { box-sizing: border-box; }

body.fp-body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--fp-cream);
    color: var(--fp-navy);
}

img,
svg {
    max-width: 100%;
}

.fp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- Header ---------- */
.fp-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0ec;
    position: sticky;
    top: 0;
    z-index: 50;
}

.fp-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 10px 0;
    gap: 24px;
}

.fp-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--fp-navy);
}

.fp-brand-logo {
    width: 280px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    flex: 0 0 auto;
}

.fp-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-menu a {
    text-decoration: none;
    color: var(--fp-navy);
    font-weight: 500;
    font-size: 1rem;
    padding-bottom: 4px;
}

.fp-menu a.active {
    color: var(--fp-teal);
    border-bottom: 2px solid var(--fp-teal);
}

.fp-menu a:hover { color: var(--fp-teal); }

.fp-menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.fp-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #d7e1de;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
}

.fp-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--fp-navy);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.fp-menu-panel {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.fp-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease;
    padding: 11px 26px;
}

.fp-btn-primary { background: var(--fp-teal); color: #ffffff; }
.fp-btn-primary:hover { background: var(--fp-teal-dark); color: #ffffff; }

.fp-btn-outline {
    background: #ffffff;
    color: var(--fp-navy);
    border-color: #cdd7df;
}
.fp-btn-outline:hover { border-color: var(--fp-teal); color: var(--fp-teal); }

.fp-btn-lg { padding: 15px 34px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.fp-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0 40px;
}

.fp-hero-copy {
    min-width: 0;
}

.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fp-teal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 18px;
}

.fp-hero-title {
    font-size: 3.55rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--fp-navy);
    margin: 0 0 22px;
    letter-spacing: 0;
}

.fp-hero-text {
    color: var(--fp-text);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 440px;
    margin: 0 0 30px;
}

.fp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fp-hero-illustration { display: flex; justify-content: center; }
.fp-hero-illustration svg,
.fp-hero-illustration img {
    width: 100%;
    max-width: 440px;
    height: auto;
}

/* ---------- Feature cards ---------- */
.fp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px 0;
}

.fp-feature {
    background: #ffffff;
    border: 1px solid var(--fp-card-border);
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(27, 58, 91, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fp-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(27, 58, 91, 0.09);
}

.fp-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fp-feature-icon.teal   { background: #dcefeb; color: var(--fp-teal); }
.fp-feature-icon.purple { background: #efe9fb; color: var(--fp-purple); }
.fp-feature-icon.coral  { background: #fce7e5; color: var(--fp-coral); }

.fp-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.fp-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fp-navy);
    margin: 0 0 10px;
}

.fp-feature-text {
    color: var(--fp-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.fp-feature-accent { width: 34px; height: 3px; border-radius: 3px; }
.fp-feature-accent.teal   { background: var(--fp-teal); }
.fp-feature-accent.purple { background: var(--fp-purple); }
.fp-feature-accent.coral  { background: var(--fp-coral); }

/* ---------- Trust banner ---------- */
.fp-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(180deg, #f1f8f6, #e9f4f0);
    border: 1px solid #d7e9e3;
    border-radius: 14px;
    padding: 26px 34px;
    margin: 22px 0 10px;
}

.fp-banner-shield {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--fp-teal);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-banner-text {
    flex: 1 1 auto;
    color: var(--fp-navy);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.fp-banner-lock { flex: 0 0 auto; color: var(--fp-teal); }

/* ---------- How it works ---------- */
.fp-how {
    padding: 46px 0 20px;
    text-align: center;
}

.fp-how-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fp-navy);
    margin: 0 0 6px;
}

.fp-how-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.fp-how-divider .fp-line { width: 44px; height: 2px; background: var(--fp-teal); opacity: 0.5; }

.fp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.fp-step { padding: 0 16px; }

.fp-step-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.fp-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex: 0 0 auto;
}

.fp-step-num.teal   { background: #dcefeb; color: var(--fp-teal); }
.fp-step-num.purple { background: #efe9fb; color: var(--fp-purple); }
.fp-step-num.coral  { background: #fce7e5; color: var(--fp-coral); }

.fp-step-icon.teal   { color: var(--fp-teal); }
.fp-step-icon.purple { color: var(--fp-purple); }
.fp-step-icon.coral  { color: var(--fp-coral); }

.fp-step-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.fp-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fp-navy);
    margin: 0 0 8px;
}

.fp-step-text {
    color: var(--fp-text);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 240px;
}

/* ---------- Footer ---------- */
.fp-footer {
    background: #ffffff;
    border-top: 1px solid #f0f0ec;
    margin-top: 40px;
    padding: 46px 0 0;
}

.fp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.fp-footer-desc {
    color: var(--fp-text);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 14px 0 18px;
    max-width: 260px;
}

.fp-socials { display: flex; gap: 12px; }

.fp-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.fp-social.fb { background: #3b5998; }
.fp-social.ig { background: #e1306c; }
.fp-social.ln { background: #0a66c2; }
.fp-social.yt { background: #ff0033; }
.fp-social.x { background: #111111; }
.fp-social.wa { background: #25d366; }
.fp-social.em { background: #14897e; }

.fp-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fp-navy);
    margin: 0 0 16px;
}

.fp-col-links { list-style: none; margin: 0; padding: 0; }

.fp-col-links li { margin-bottom: 11px; }

.fp-col-links a {
    text-decoration: none;
    color: var(--fp-text);
    font-size: 0.92rem;
}

.fp-col-links a:hover { color: var(--fp-teal); }

.fp-help-text { color: var(--fp-muted); font-size: 0.9rem; margin: 0 0 14px; }

.fp-footer-bottom {
    background: var(--fp-navy-deep);
    color: #c3cdd8;
    margin-top: 42px;
    padding: 16px 0;
}

.fp-footer-bottom .fp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.88rem;
}

.fp-footer-bottom .fp-heart { color: #f0655f; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .fp-header {
        position: sticky;
        width: 100%;
        margin: 0;
        box-shadow: 0 8px 22px rgba(27, 58, 91, 0.06);
    }

    .fp-header .fp-container {
        width: 100%;
        max-width: none;
        padding: 0 14px;
    }

    .fp-nav {
        min-height: 66px;
        flex-wrap: wrap;
        gap: 0;
        padding: 6px 0;
    }

    .fp-brand {
        min-width: 0;
        flex: 1 1 auto;
        padding-right: 14px;
    }

    .fp-brand-logo {
        width: min(62vw, 220px);
        height: 48px;
    }

    .fp-menu-button {
        display: inline-flex;
        width: 38px;
        height: 38px;
        border-color: #cfded9;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(27, 58, 91, 0.06);
    }

    .fp-menu-toggle:checked ~ .fp-menu-button span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .fp-menu-toggle:checked ~ .fp-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .fp-menu-toggle:checked ~ .fp-menu-button span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .fp-menu-panel {
        flex: 0 0 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        border-top: 0 solid transparent;
        transition: max-height 0.2s ease, opacity 0.16s ease, padding 0.2s ease, border-color 0.2s ease;
    }

    .fp-menu-toggle:checked ~ .fp-menu-panel {
        max-height: 520px;
        opacity: 1;
        margin-top: 6px;
        padding: 10px 0 4px;
        border-top: 1px solid #eef0ec;
    }

    .fp-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .fp-menu li {
        min-width: 0;
    }

    .fp-menu a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        border: 1px solid #edf2ef;
        border-radius: 8px;
        background: #fbfdfc;
        padding: 10px 14px;
    }

    .fp-menu a.active {
        border-color: #cfe2dc;
        background: #eef8f5;
    }

    .fp-register-btn {
        width: 100%;
        min-height: 48px;
        margin-top: 2px;
    }

    .fp-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 42px;
        text-align: center;
    }

    .fp-hero-copy {
        margin: 0 auto;
        max-width: 620px;
    }

    .fp-eyebrow,
    .fp-hero-actions {
        justify-content: center;
    }

    .fp-hero-actions {
        gap: 14px;
    }

    .fp-hero-title {
        font-size: 2.7rem;
    }

    .fp-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-hero-illustration svg,
    .fp-hero-illustration img {
        max-width: 340px;
    }

    .fp-features { grid-template-columns: 1fr; }
    .fp-steps { grid-template-columns: 1fr; }
    .fp-footer-grid { grid-template-columns: 1fr 1fr; }
    .fp-banner-text { font-size: 1.1rem; }
}

@media (max-width: 640px) {
    .fp-container { padding: 0 16px; }
    .fp-header .fp-container { padding: 0 12px; }
    .fp-nav { min-height: 62px; padding: 6px 0; }
    .fp-brand-logo { width: min(64vw, 205px); height: 46px; }
    .fp-menu-button { width: 38px; height: 38px; }
    .fp-btn { padding: 10px 14px; font-size: 0.92rem; }
    .fp-hero { padding: 28px 16px 28px; gap: 22px; }
    .fp-hero-title { font-size: 2.05rem; line-height: 1.12; }
    .fp-hero-text { font-size: 1rem; line-height: 1.58; }
    .fp-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 4px;
    }
    .fp-hero-actions .fp-btn { width: 100%; }
    .fp-btn-lg { min-height: 50px; }
    .fp-hero-illustration svg,
    .fp-hero-illustration img { max-width: 260px; }
    .fp-banner { align-items: flex-start; padding: 20px 18px; }
    .fp-banner-lock { display: none; }
    .fp-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .fp-container { padding: 0 12px; }
    .fp-header .fp-container { padding: 0 10px; }
    .fp-brand-logo { width: min(62vw, 188px); }
    .fp-hero { padding-left: 12px; padding-right: 12px; }
    .fp-hero-title { font-size: 1.86rem; }
    .fp-hero-illustration svg,
    .fp-hero-illustration img { max-width: 230px; }
}
