﻿:root {
    --orange: #E8521A;
    --orange-lt: #FF7A40;
    --orange-pale: #FFF0E8;
    --bg: #FAFAF8;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --mid: #4A4A4A;
    --muted: #8C8C8C;
    --border: #E8E8E8;
    --teal-pale: #E6F7F5;
}

body {
    font-family: 'Plus Jakarta Sans',sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display',serif;
}

/* ── STRIP ── */
.strip {
    background: var(--orange);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    text-align: center;
    padding: 8px 16px;
}

    .strip a {
        color: #fff;
        text-decoration: underline;
        margin-left: 6px;
    }

/* ── NAVBAR ── */
.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border);
    padding: 0 !important;
    min-height: 62px;
}

.navbar-brand {
    font-family: 'Playfair Display',serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
}

    .navbar-brand em {
        color: var(--orange);
        font-style: normal;
    }

.logo-mark {
    width: 26px;
    height: 26px;
    background: var(--orange);
    clip-path: polygon(50% 0%,100% 100%,0% 100%);
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--mid) !important;
    padding: 8px 14px !important;
    transition: color .2s;
}

    .navbar-nav .nav-link:hover {
        color: var(--orange) !important;
    }

.navbar-toggler {
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

.btn-signin {
    border: 1.5px solid var(--border);
    background: none;
    color: var(--mid);
    border-radius: 8px;
    padding: 7px 18px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
    cursor: pointer;
}

    .btn-signin:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

.btn-join {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    transition: background .2s;
    cursor: pointer;
}

    .btn-join:hover {
        background: var(--orange-lt);
    }

/* ── OFFCANVAS MENU ── */
.offcanvas {
    width: 100vw !important;
    border: none !important;
}

.offcanvas-header {
    background: var(--orange);
    padding: 16px 20px;
}

    .offcanvas-header .offcanvas-title {
        font-family: 'Playfair Display',serif;
        font-weight: 800;
        font-size: 1.1rem;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .offcanvas-header .logo-mark-white {
        width: 24px;
        height: 24px;
        background: #fff;
        clip-path: polygon(50% 0%,100% 100%,0% 100%);
        flex-shrink: 0;
    }

.btn-close-white {
    filter: invert(1);
    opacity: .9;
}

.offcanvas-body {
    background: var(--bg);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.oc-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    flex: 1;
}

    .oc-nav li a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        transition: background .15s, color .15s;
    }

        .oc-nav li a:hover {
            background: var(--orange-pale);
            color: var(--orange);
        }

        .oc-nav li a .oc-icon {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            background: var(--orange-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .oc-nav li a .oc-label {
            flex: 1;
        }

        .oc-nav li a .oc-arr {
            color: var(--muted);
            font-size: .85rem;
        }

.oc-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .oc-footer .btn-join {
        width: 100%;
        padding: 13px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .oc-footer .btn-signin {
        width: 100%;
        padding: 12px;
        font-size: .95rem;
        border-radius: 10px;
        text-align: center;
    }

/* ── HERO + FORM ROW ── */
.hero-form-section {
    background: linear-gradient(135deg,#FFF6F1 0%,#FFFDF9 55%,#F0FAFA 100%);
    border-bottom: 1px solid var(--border);
    padding: 60px 0 56px;
    position: relative;
    overflow: hidden;
}

    .hero-form-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(232,82,26,.1) 0%,transparent 70%);
        pointer-events: none;
    }

    .hero-form-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -40px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(10,158,142,.07) 0%,transparent 70%);
        pointer-events: none;
    }

.banner-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange-pale);
    border: 1px solid rgba(232,82,26,.22);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.chip-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.9rem,4vw,2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--dark);
    margin-bottom: 16px;
}
.hero-h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.9rem,4vw,1.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--dark);
    margin-bottom: 16px;
}
    .hero-h1 em {
        color: var(--orange);
        font-style: normal;
    }
.hero-h2 em {
    color: var(--orange);
    font-style: normal;
}

.hero-desc {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

.hero-stats {
    display: flex;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    max-width: 380px;
}

.hstat {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .hstat:last-child {
        border-right: none;
    }

.hstat-num {
    font-family: 'Playfair Display',serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.hstat-lbl {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 3px;
    font-weight: 500;
}

/* Form card */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 38px 34px;
    box-shadow: 0 16px 56px rgba(0,0,0,.10);
    position: relative;
    overflow: hidden;
}

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,var(--orange),var(--orange-lt),#FFB085);
    }

.form-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.form-card h2 {
    font-family: 'Playfair Display',serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-card .fsub {
    font-size: .83rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.field {
    margin-bottom: 15px;
}

    .field label {
        display: block;
        font-size: .76rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .field input {
        width: 100%;
        background: var(--bg);
        border: 1.5px solid var(--border);
        border-radius: 9px;
        padding: 11px 14px;
        font-family: inherit;
        font-size: .875rem;
        color: var(--dark);
        outline: none;
        transition: border-color .2s,background .2s,box-shadow .2s;
    }

        .field input:focus {
            border-color: var(--orange);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(232,82,26,.08);
        }

        .field input::placeholder {
            color: #C4C4C4;
        }

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 20px;
}

    .check-row input[type=checkbox] {
        width: 16px;
        height: 16px;
        margin-top: 3px;
        accent-color: var(--orange);
        flex-shrink: 0;
        cursor: pointer;
    }

    .check-row span {
        font-size: .8rem;
        color: var(--muted);
        line-height: 1.55;
    }

    .check-row a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 500;
    }

.btn-submit {
    width: 100%;
    padding: 13px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'Playfair Display',serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(232,82,26,.28);
    transition: background .2s,transform .15s,box-shadow .2s;
}

    .btn-submit:hover {
        background: var(--orange-lt);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(232,82,26,.35);
    }

.signin-note {
    text-align: center;
    margin-top: 15px;
    font-size: .8rem;
    color: var(--muted);
}

    .signin-note a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 600;
    }

.trust-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.trust-item {
    font-size: .72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── MID SECTION: WHY JOIN + FEATURES ── */
.mid-section {
    padding: 64px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.section-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.4rem,3vw,1.9rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.section-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Unified card style — used for BOTH benefit rows and feature cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, border-color .22s;
    cursor: default;
}

    .info-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,.09);
        transform: translateY(-2px);
        border-color: rgba(232,82,26,.25);
    }

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 3px;
        background: var(--orange);
        border-radius: 14px 0 0 14px;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .28s;
    }

    .info-card:hover::before {
        transform: scaleY(1);
    }

.card-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

    .card-badge.num {
        font-family: 'Playfair Display',serif;
        font-size: 1rem;
        font-weight: 800;
        background: var(--orange-pale);
        color: var(--orange);
    }

.card-body-text h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.card-body-text p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.card-arr {
    margin-left: auto;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--muted);
    align-self: center;
    transition: background .2s,color .2s;
}

.info-card:hover .card-arr {
    background: var(--orange);
    color: #fff;
}

/* vertical divider between columns */
.col-divider {
    border-left: 1px solid var(--border);
}

@media(max-width:991px) {
    .col-divider {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 40px;
        margin-top: 4px;
    }
}

/* ── WHO CAN JOIN ── */
.who-section {
    padding: 56px 0;
    background: var(--bg);
}

.pt-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 16px 20px;
    margin-bottom: 10px;
    transition: border-color .2s,box-shadow .2s;
    text-decoration: none;
    color: inherit;
}

    .pt-row:hover {
        border-color: var(--orange);
        box-shadow: 0 4px 16px rgba(0,0,0,.07);
    }

.pt-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pt-info h3 {
    font-size: .875rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
}

.pt-info p {
    font-size: .77rem;
    color: var(--muted);
    margin: 0;
}

.pt-arr {
    margin-left: auto;
    color: var(--muted);
}

/* ── FOOTER ── */
footer {
    background: #1A1A1A;
    color: rgba(255,255,255,.8);
    padding: 52px 0 28px;
}

.footer-brand .flogo {
    font-family: 'Playfair Display',serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .footer-brand .flogo em {
        color: var(--orange-lt);
        font-style: normal;
    }

.footer-brand p {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

.fcontact {
    margin-top: 14px;
}

    .fcontact a {
        display: block;
        font-size: .8rem;
        color: rgba(255,255,255,.45);
        text-decoration: none;
        margin-bottom: 6px;
        transition: color .2s;
    }

        .fcontact a:hover {
            color: var(--orange-lt);
        }

.footer-col h4 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            font-size: .8rem;
            color: rgba(255,255,255,.5);
            text-decoration: none;
            transition: color .2s;
        }

            .footer-col ul li a:hover {
                color: var(--orange-lt);
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    margin-top: 40px;
}

    .footer-bottom p {
        font-size: .75rem;
        color: rgba(255,255,255,.3);
        margin: 0;
    }

.ssl-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,158,142,.15);
    border: 1px solid rgba(10,158,142,.28);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: .7rem;
    color: rgba(255,255,255,.5);
}
.applogo {
    width: 200px;
}
/* Mobile tweaks */
@media(max-width:767px) {
    .hero-form-section {
        padding: 36px 0 32px;
    }

    .hero-stats {
        max-width: 100%;
    }

    .form-card {
        padding: 28px 20px;
    }

    .mid-section {
        padding: 44px 0;
    }

    .who-section {
        padding: 40px 0;
    }
    .applogo {
        width: 150px;
    }
}

/* Fade-in */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fi {
    animation: fadeUp .55s ease both;
}

.d1 {
    animation-delay: .05s
}

.d2 {
    animation-delay: .15s
}

.d3 {
    animation-delay: .28s
}

