/* ============================================================================
   OfferEaze — Home/Landing (marketing site, standalone)
   Lifted verbatim from the inline <style>; :root tokens are page-local.
   ============================================================================ */
            :root {
                --oe-navy: #0E1A2E;
                --oe-navy-deep: #060D1A;
                --oe-navy-soft: #1F2D47;
                --oe-navy-line: #2A3A57;
                --oe-slate: #4A5C7A;
                --oe-pearl: #F8FAFB;
                --oe-pearl-2: #F0F3F6;
                --oe-pearl-3: #E2E8EE;
                --oe-white: #FFFFFF;
                --oe-line: #E2E8EE;
                --oe-line-soft: #EDF1F5;
                --oe-ink: #0E1A2E;
                --oe-ink-soft: #4A5568;
                --oe-ink-muted: #94A3B8;
                --bs-body-bg: var(--oe-pearl);
                --bs-body-color: var(--oe-ink);
                --bs-body-font-family: 'Inter', -apple-system, sans-serif;
                --bs-border-color: var(--oe-line);
                --bs-primary: var(--oe-navy);
                --bs-primary-rgb: 14, 26, 46;
                --bs-link-color: var(--oe-navy);
                --bs-link-hover-color: var(--oe-slate);
            }

            * {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            html {
                scroll-padding-top: 170px;
                scroll-behavior: smooth;
            }

            body {
                background: var(--oe-pearl);
                color: var(--oe-ink);
                font-family: 'Inter', sans-serif;
                overflow-x: hidden;
                font-weight: 400;
                line-height: 1.6;
                letter-spacing: -0.01em;
            }

            /* ─────────── INLINE LOGO STYLES ─────────── */
            .brand-lockup {
                display: block;
                height: 112px;
                width: auto;
            }

            /* ─────────── NAVBAR ─────────── */
            .navbar-oe {
                background: rgba(248, 250, 251, 0.86);
                backdrop-filter: saturate(180%) blur(18px);
                -webkit-backdrop-filter: saturate(180%) blur(18px);
                border-bottom: 1px solid var(--oe-line);
                padding: 1rem 0;
            }

            .navbar-brand {
                padding: 0;
                margin: 0;
                display: flex;
                align-items: center;
                transition: opacity 0.3s;
            }

                .navbar-brand:hover {
                    opacity: 0.8;
                }

                .navbar-brand .brand-lockup {
                    height: 112px;
                }

            .navbar-oe .nav-link {
                color: var(--oe-ink) !important;
                font-size: 0.85rem;
                font-weight: 500;
                padding: 0.5rem 1rem !important;
                transition: color 0.2s;
                letter-spacing: -0.01em;
            }

                .navbar-oe .nav-link:hover {
                    color: var(--oe-slate) !important;
                }

            .login-toggle {
                background: transparent;
                border: 1px solid var(--oe-pearl-3);
                color: var(--oe-navy);
                padding: 0.55rem 1.2rem;
                font-size: 0.82rem;
                font-weight: 500;
                border-radius: 8px;
                transition: all 0.25s;
                letter-spacing: -0.01em;
            }

                .login-toggle:hover, .login-toggle:focus, .login-toggle:active,
                .login-toggle.show {
                    background: var(--oe-pearl-2) !important;
                    border-color: var(--oe-navy) !important;
                    color: var(--oe-navy) !important;
                    box-shadow: none !important;
                }

                .login-toggle::after {
                    margin-left: 0.45rem;
                    border-top-color: currentColor;
                    border-width: 5px 4px 0;
                    transform: translateY(-1px);
                }

            .dropdown-menu-oe {
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 12px;
                box-shadow: 0 8px 32px rgba(14, 26, 46, 0.08), 0 24px 60px rgba(14, 26, 46, 0.10);
                min-width: 320px;
                padding: 6px;
                margin-top: 10px !important;
            }

            .dropdown-item-oe {
                padding: 1rem 1.1rem;
                border-radius: 8px;
                color: var(--oe-ink);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 14px;
                transition: background 0.2s;
            }

                .dropdown-item-oe:hover {
                    background: var(--oe-pearl);
                    color: var(--oe-navy);
                }

            .dropdown-icon {
                width: 40px;
                height: 40px;
                border-radius: 10px;
                background: var(--oe-pearl-2);
                color: var(--oe-navy);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1rem;
                flex-shrink: 0;
            }

                .dropdown-icon.dark {
                    background: var(--oe-navy);
                    color: var(--oe-pearl);
                }

            .dropdown-item-oe .item-title {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1rem;
                font-weight: 600;
                letter-spacing: -0.02em;
            }

            .dropdown-item-oe .item-desc {
                font-size: 0.78rem;
                color: var(--oe-ink-muted);
                margin-top: 1px;
                font-weight: 400;
            }

            /* ─────────── BUTTONS ─────────── */
            .btn-oe-primary {
                background: var(--oe-navy);
                color: var(--oe-pearl);
                padding: 0.85rem 1.55rem;
                font-size: 0.88rem;
                font-weight: 600;
                border-radius: 10px;
                border: 1px solid var(--oe-navy);
                transition: all 0.25s;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                text-decoration: none;
                letter-spacing: -0.015em;
            }

                .btn-oe-primary:hover {
                    background: var(--oe-navy-soft);
                    color: var(--oe-pearl);
                    transform: translateY(-1px);
                    box-shadow: 0 8px 24px rgba(14, 26, 46, 0.18);
                }

                .btn-oe-primary.btn-large {
                    padding: 1rem 1.85rem;
                    font-size: 0.95rem;
                }

            .btn-oe-ghost {
                background: var(--oe-white);
                color: var(--oe-navy);
                padding: 1rem 1.85rem;
                font-size: 0.95rem;
                font-weight: 600;
                border: 1px solid var(--oe-line);
                border-radius: 10px;
                transition: all 0.25s;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                text-decoration: none;
                letter-spacing: -0.015em;
            }

                .btn-oe-ghost:hover {
                    border-color: var(--oe-navy);
                    color: var(--oe-navy);
                    transform: translateY(-1px);
                }

            /* ─────────── HERO ─────────── */
            .hero {
                padding: 6rem 0 7rem;
                position: relative;
            }

            .hero-tag {
                display: inline-flex;
                align-items: center;
                gap: 0.55rem;
                background: var(--oe-pearl-2);
                border: 1px solid var(--oe-line);
                padding: 0.35rem 0.85rem 0.35rem 0.55rem;
                border-radius: 100px;
                margin-bottom: 1.75rem;
            }

                .hero-tag .tag-pill {
                    background: var(--oe-navy);
                    color: var(--oe-pearl);
                    padding: 0.15rem 0.6rem;
                    border-radius: 100px;
                    font-size: 0.65rem;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.06em;
                }

                .hero-tag .tag-text {
                    font-size: 0.78rem;
                    color: var(--oe-ink-soft);
                    font-weight: 500;
                }

            h1.hero-title {
                font-family: 'Inter Tight', sans-serif;
                font-size: clamp(2.75rem, 6vw, 5.25rem);
                line-height: 1;
                font-weight: 600;
                letter-spacing: -0.045em;
                margin-bottom: 1.75rem;
                color: var(--oe-navy);
            }

            .hero-sub {
                font-size: 1.1rem;
                color: var(--oe-ink-soft);
                max-width: 510px;
                margin-bottom: 2.5rem;
                line-height: 1.65;
                font-weight: 400;
            }

            .hero-stats {
                margin-top: 4rem;
                padding-top: 2.5rem;
                border-top: 1px solid var(--oe-line);
                display: flex;
                gap: 3rem;
                flex-wrap: wrap;
            }

            .stat-item .num {
                font-family: 'Inter Tight', sans-serif;
                font-size: 2.25rem;
                font-weight: 700;
                letter-spacing: -0.04em;
                line-height: 1;
                color: var(--oe-navy);
            }

                .stat-item .num .accent {
                    color: var(--oe-slate);
                    font-weight: 500;
                }

            .stat-item .label {
                font-size: 0.78rem;
                color: var(--oe-ink-muted);
                margin-top: 0.65rem;
                font-weight: 500;
                letter-spacing: -0.005em;
            }

            /* ─────────── HERO OFFER SUMMARY ─────────── */
            .hero-visual {
                position: relative;
            }

            .offer-summary-card {
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 16px;
                box-shadow: 0 12px 32px rgba(14, 26, 46, 0.06), 0 32px 80px rgba(14, 26, 46, 0.08);
                overflow: hidden;
                position: relative;
            }

            .offer-card-header {
                background: var(--oe-navy);
                color: var(--oe-pearl);
                padding: 0.95rem 1.85rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 0.74rem;
                font-weight: 600;
                letter-spacing: -0.005em;
            }

                .offer-card-header .left {
                    display: flex;
                    align-items: center;
                    gap: 0.55rem;
                }

                .offer-card-header .indicator {
                    width: 6px;
                    height: 6px;
                    background: var(--oe-pearl);
                    border-radius: 50%;
                    animation: pulse 2.5s ease-in-out infinite;
                }

                .offer-card-header .right {
                    color: rgba(248, 250, 251, 0.6);
                    font-weight: 500;
                }

            @keyframes pulse {
                0%, 100% {
                    opacity: 1;
                }

                50% {
                    opacity: 0.35;
                }
            }

            .offer-card-body {
                padding: 2.25rem 2.25rem 1.85rem;
            }

                .offer-card-body .label-tag {
                    font-size: 0.7rem;
                    color: var(--oe-ink-muted);
                    font-weight: 500;
                    text-transform: uppercase;
                    letter-spacing: 0.14em;
                    margin-bottom: 0.6rem;
                }

            .offer-property {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1.65rem;
                font-weight: 600;
                line-height: 1.15;
                color: var(--oe-navy);
                margin-bottom: 0.35rem;
                letter-spacing: -0.03em;
            }

            .offer-location {
                font-size: 0.92rem;
                color: var(--oe-ink-soft);
                font-weight: 400;
                margin-bottom: 1.6rem;
            }

            .offer-divider {
                height: 1px;
                background: var(--oe-line);
                margin: 1.4rem 0;
            }

            .offer-row {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.55rem 0;
                border-bottom: 1px solid var(--oe-line-soft);
            }

                .offer-row:last-of-type {
                    border-bottom: 0;
                }

                .offer-row .label {
                    font-size: 0.82rem;
                    color: var(--oe-ink-soft);
                    font-weight: 500;
                }

                .offer-row .value {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: 0.95rem;
                    font-weight: 600;
                    color: var(--oe-navy);
                    letter-spacing: -0.02em;
                }

                    .offer-row .value.muted {
                        color: var(--oe-ink-soft);
                        font-weight: 500;
                    }

            .net-proceeds {
                background: var(--oe-pearl);
                margin: 1.4rem -2.25rem -1.85rem;
                padding: 1.4rem 2.25rem;
                border-top: 1px solid var(--oe-line);
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

                .net-proceeds .label {
                    font-size: 0.75rem;
                    color: var(--oe-navy);
                    font-weight: 600;
                    letter-spacing: -0.005em;
                }

                .net-proceeds .value {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: 1.7rem;
                    font-weight: 700;
                    color: var(--oe-navy);
                    letter-spacing: -0.035em;
                }

            .floating-toast {
                position: absolute;
                background: var(--oe-navy);
                color: var(--oe-pearl);
                padding: 1rem 1.3rem;
                border-radius: 12px;
                box-shadow: 0 12px 32px rgba(6, 13, 26, 0.25);
                z-index: 3;
                display: flex;
                align-items: center;
                gap: 0.85rem;
                bottom: -28px;
                left: -32px;
                min-width: 240px;
                animation: floatY 5s ease-in-out infinite;
            }

            .toast-icon {
                width: 36px;
                height: 36px;
                background: var(--oe-navy-soft);
                color: var(--oe-pearl);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.95rem;
            }

            .toast-text .title {
                font-family: 'Inter Tight', sans-serif;
                font-size: 0.95rem;
                font-weight: 600;
                line-height: 1.1;
                letter-spacing: -0.02em;
            }

            .toast-text .sub {
                font-size: 0.74rem;
                color: rgba(248, 250, 251, 0.6);
                margin-top: 3px;
                font-weight: 500;
            }

            @keyframes floatY {
                0%, 100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(-8px);
                }
            }

            /* ─────────── PRESS BAR ─────────── */
            .press-bar {
                background: var(--oe-pearl-2);
                border-top: 1px solid var(--oe-line);
                border-bottom: 1px solid var(--oe-line);
                padding: 2.5rem 0;
            }

            .press-label {
                text-align: center;
                margin-bottom: 1.65rem;
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.18em;
                color: var(--oe-ink-muted);
                font-weight: 600;
            }

            .press-row {
                display: flex;
                justify-content: space-around;
                align-items: center;
                gap: 2rem;
                flex-wrap: wrap;
            }

            .press-name {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1.15rem;
                font-weight: 600;
                color: var(--oe-navy);
                opacity: 0.4;
                transition: opacity 0.3s;
                letter-spacing: -0.015em;
            }

                .press-name:hover {
                    opacity: 0.95;
                }

            /* ─────────── SECTIONS ─────────── */
            .section {
                padding: 7rem 0;
                position: relative;
            }

            .section-pearl-2 {
                background: var(--oe-pearl-2);
            }

            .section-head {
                margin-bottom: 5rem;
                max-width: 720px;
            }

                .section-head.center {
                    margin-left: auto;
                    margin-right: auto;
                    text-align: center;
                }

            .section-eyebrow {
                display: inline-block;
                padding: 0.35rem 0.85rem;
                background: var(--oe-pearl-2);
                color: var(--oe-navy);
                border: 1px solid var(--oe-line);
                border-radius: 100px;
                font-size: 0.7rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                margin-bottom: 1.5rem;
            }

            .section-title {
                font-family: 'Inter Tight', sans-serif;
                font-size: clamp(2.25rem, 5vw, 3.75rem);
                line-height: 1.04;
                font-weight: 600;
                letter-spacing: -0.04em;
                margin-bottom: 1.25rem;
                color: var(--oe-navy);
            }

            .section-sub {
                font-size: 1.05rem;
                color: var(--oe-ink-soft);
                max-width: 580px;
                line-height: 1.65;
            }

            .section-head.center .section-sub {
                margin-left: auto;
                margin-right: auto;
            }

            /* ─────────── HOW IT WORKS ─────────── */
            .step-card {
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 14px;
                padding: 2.5rem 2rem;
                height: 100%;
                transition: all 0.3s ease;
            }

                .step-card:hover {
                    border-color: var(--oe-navy);
                    transform: translateY(-3px);
                    box-shadow: 0 16px 40px rgba(14, 26, 46, 0.06);
                }

            .step-num {
                font-family: 'Inter Tight', sans-serif;
                font-size: 0.85rem;
                font-weight: 700;
                color: var(--oe-slate);
                letter-spacing: -0.01em;
                margin-bottom: 1.5rem;
                display: inline-flex;
                align-items: center;
                gap: 0.55rem;
            }

                .step-num::before {
                    content: '';
                    width: 24px;
                    height: 1.5px;
                    background: var(--oe-slate);
                }

            .step-card h3 {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1.3rem;
                font-weight: 600;
                letter-spacing: -0.025em;
                margin-bottom: 0.85rem;
                line-height: 1.2;
                color: var(--oe-navy);
            }

            .step-card p {
                font-size: 0.94rem;
                color: var(--oe-ink-soft);
                line-height: 1.65;
                margin-bottom: 0;
            }

            /* ─────────── PORTAL CARDS ─────────── */
            .portal-card {
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 16px;
                padding: 3.25rem 3rem;
                position: relative;
                overflow: hidden;
                transition: all 0.3s ease;
                height: 100%;
            }

                .portal-card:hover {
                    box-shadow: 0 20px 50px rgba(14, 26, 46, 0.08);
                    transform: translateY(-3px);
                }

                .portal-card.dark {
                    background: var(--oe-navy);
                    color: var(--oe-pearl);
                    border-color: var(--oe-navy);
                }

                    .portal-card.dark::before {
                        content: '';
                        position: absolute;
                        top: -120px;
                        right: -120px;
                        width: 380px;
                        height: 380px;
                        background: radial-gradient(circle, rgba(74, 92, 122, 0.22) 0%, transparent 65%);
                        pointer-events: none;
                    }

            .portal-tag {
                display: inline-block;
                padding: 0.4rem 0.9rem;
                background: var(--oe-pearl-2);
                color: var(--oe-navy);
                border-radius: 100px;
                font-size: 0.7rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                margin-bottom: 1.5rem;
            }

            .portal-card.dark .portal-tag {
                background: rgba(248, 250, 251, 0.1);
                color: var(--oe-pearl);
                border: 1px solid rgba(248, 250, 251, 0.15);
            }

            .portal-card h3 {
                font-family: 'Inter Tight', sans-serif;
                font-size: 2.15rem;
                font-weight: 600;
                letter-spacing: -0.04em;
                line-height: 1.05;
                margin-bottom: 1.25rem;
                position: relative;
                color: var(--oe-navy);
            }

            .portal-card.dark h3 {
                color: var(--oe-pearl);
            }

            .portal-desc {
                font-size: 1rem;
                color: var(--oe-ink-soft);
                margin-bottom: 2rem;
                line-height: 1.65;
                position: relative;
            }

            .portal-card.dark .portal-desc {
                color: rgba(248, 250, 251, 0.7);
            }

            .portal-features {
                list-style: none;
                padding-left: 0;
                margin-bottom: 2.25rem;
                position: relative;
            }

            .portal-feature {
                font-size: 0.92rem;
                padding: 0.65rem 0;
                color: var(--oe-ink);
                display: flex;
                align-items: center;
                gap: 0.85rem;
                font-weight: 400;
            }

            .portal-card.dark .portal-feature {
                color: rgba(248, 250, 251, 0.9);
            }

            .feature-marker {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                background: var(--oe-pearl-2);
                color: var(--oe-navy);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                font-size: 0.7rem;
            }

            .portal-card.dark .feature-marker {
                background: rgba(248, 250, 251, 0.1);
                color: var(--oe-pearl);
            }

            .btn-portal {
                background: var(--oe-navy);
                color: var(--oe-pearl);
                padding: 0.85rem 1.55rem;
                font-size: 0.88rem;
                font-weight: 600;
                border-radius: 10px;
                border: 1px solid var(--oe-navy);
                transition: all 0.25s;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                text-decoration: none;
                letter-spacing: -0.015em;
            }

                .btn-portal:hover {
                    background: var(--oe-navy-soft);
                    color: var(--oe-pearl);
                    transform: translateY(-1px);
                }

            .portal-card.dark .btn-portal {
                background: var(--oe-pearl);
                color: var(--oe-navy);
                border-color: var(--oe-pearl);
            }

                .portal-card.dark .btn-portal:hover {
                    background: var(--oe-pearl-2);
                    color: var(--oe-navy);
                }

            .btn-portal-ghost {
                background: transparent;
                color: var(--oe-navy);
                padding: 0.85rem 1.55rem;
                font-size: 0.88rem;
                font-weight: 600;
                border-radius: 10px;
                border: 1px solid var(--oe-line);
                transition: all 0.25s;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                text-decoration: none;
                letter-spacing: -0.015em;
            }

                .btn-portal-ghost:hover {
                    border-color: var(--oe-navy);
                    color: var(--oe-navy);
                }

            .portal-card.dark .btn-portal-ghost {
                color: var(--oe-pearl);
                border-color: rgba(248, 250, 251, 0.2);
            }

                .portal-card.dark .btn-portal-ghost:hover {
                    border-color: var(--oe-pearl);
                    color: var(--oe-pearl);
                }

            /* ─────────── FEATURES ─────────── */
            .feature-card {
                padding: 2.25rem;
                height: 100%;
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 14px;
                transition: all 0.3s ease;
            }

                .feature-card:hover {
                    border-color: var(--oe-navy);
                    transform: translateY(-3px);
                    box-shadow: 0 16px 40px rgba(14, 26, 46, 0.06);
                }

            .feature-num {
                font-family: 'Inter Tight', sans-serif;
                font-size: 0.78rem;
                color: var(--oe-slate);
                margin-bottom: 1.25rem;
                font-weight: 700;
                letter-spacing: -0.005em;
            }

            .feature-card h4 {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1.25rem;
                font-weight: 600;
                letter-spacing: -0.025em;
                margin-bottom: 0.75rem;
                color: var(--oe-navy);
            }

            .feature-card p {
                font-size: 0.92rem;
                color: var(--oe-ink-soft);
                line-height: 1.65;
                margin-bottom: 0;
            }

            /* ─────────── PRICING ─────────── */
            .pricing-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .price-card {
                background: var(--oe-white);
                border: 1px solid var(--oe-line);
                border-radius: 16px;
                padding: 2.75rem 2.25rem;
                transition: all 0.3s ease;
                position: relative;
                display: flex;
                flex-direction: column;
            }

                .price-card:hover {
                    border-color: var(--oe-navy);
                    transform: translateY(-3px);
                    box-shadow: 0 16px 40px rgba(14, 26, 46, 0.06);
                }

                .price-card.featured {
                    background: var(--oe-navy);
                    color: var(--oe-pearl);
                    border-color: var(--oe-navy);
                    transform: scale(1.02);
                    box-shadow: 0 24px 50px rgba(14, 26, 46, 0.18);
                    position: relative;
                    z-index: 2;
                }

                    .price-card.featured:hover {
                        transform: scale(1.02) translateY(-3px);
                        box-shadow: 0 28px 60px rgba(14, 26, 46, 0.22);
                    }

                    .price-card.featured::before {
                        content: '';
                        position: absolute;
                        top: -120px;
                        right: -120px;
                        width: 320px;
                        height: 320px;
                        background: radial-gradient(circle, rgba(74, 92, 122, 0.22) 0%, transparent 65%);
                        pointer-events: none;
                        border-radius: 16px;
                    }

            .price-tier-name {
                font-family: 'Inter Tight', sans-serif;
                font-size: 0.95rem;
                font-weight: 700;
                color: var(--oe-navy);
                margin-bottom: 0.5rem;
                letter-spacing: -0.02em;
            }

            .price-card.featured .price-tier-name {
                color: var(--oe-pearl);
            }

            .price-tier-sub {
                font-size: 0.88rem;
                color: var(--oe-ink-soft);
                margin-bottom: 1.85rem;
                line-height: 1.5;
            }

            .price-card.featured .price-tier-sub {
                color: rgba(248, 250, 251, 0.65);
            }

            .price-amount {
                display: flex;
                align-items: baseline;
                gap: 0.25rem;
                margin-bottom: 0.6rem;
            }

            .price-currency {
                font-family: 'Inter Tight', sans-serif;
                font-size: 1.4rem;
                font-weight: 600;
                color: var(--oe-navy);
                align-self: flex-start;
                margin-top: 0.95rem;
            }

            .price-card.featured .price-currency {
                color: var(--oe-pearl);
            }

            .price-figure {
                font-family: 'Inter Tight', sans-serif;
                font-size: 4rem;
                font-weight: 700;
                line-height: 1;
                letter-spacing: -0.05em;
                color: var(--oe-navy);
            }

            .price-card.featured .price-figure {
                color: var(--oe-pearl);
            }

            .price-figure.inquiry {
                font-size: 2.4rem;
                font-weight: 600;
                letter-spacing: -0.035em;
            }

            .price-period {
                font-size: 0.78rem;
                color: var(--oe-ink-muted);
                font-weight: 500;
            }

            .price-card.featured .price-period {
                color: rgba(248, 250, 251, 0.6);
            }

            .price-divider {
                height: 1px;
                background: var(--oe-line);
                margin: 2rem 0 1.5rem;
            }

            .price-card.featured .price-divider {
                background: var(--oe-navy-line);
            }

            .price-features {
                list-style: none;
                padding: 0;
                margin: 0 0 2rem;
                flex-grow: 1;
            }

            .price-feature {
                font-size: 0.9rem;
                padding: 0.5rem 0;
                color: var(--oe-ink-soft);
                display: flex;
                align-items: flex-start;
                gap: 0.7rem;
                line-height: 1.5;
            }

            .price-card.featured .price-feature {
                color: rgba(248, 250, 251, 0.85);
            }

            .price-feature::before {
                content: '';
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background: var(--oe-pearl-2);
                flex-shrink: 0;
                margin-top: 0.18rem;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 7L6 9.5L10.5 4.5' stroke='%230E1A2E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            }

            .price-card.featured .price-feature::before {
                background: rgba(248, 250, 251, 0.15);
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 7L6 9.5L10.5 4.5' stroke='%23F8FAFB' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            }

            .price-cta {
                background: var(--oe-navy);
                color: var(--oe-pearl);
                padding: 0.95rem 1.4rem;
                font-size: 0.88rem;
                font-weight: 600;
                border-radius: 10px;
                border: 1px solid var(--oe-navy);
                transition: all 0.25s;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                text-decoration: none;
                text-align: center;
                width: 100%;
                letter-spacing: -0.015em;
            }

                .price-cta:hover {
                    background: var(--oe-navy-soft);
                    color: var(--oe-pearl);
                    transform: translateY(-1px);
                }

            .price-card.featured .price-cta {
                background: var(--oe-pearl);
                color: var(--oe-navy);
                border-color: var(--oe-pearl);
            }

                .price-card.featured .price-cta:hover {
                    background: var(--oe-pearl-2);
                    color: var(--oe-navy);
                }

            .pricing-note {
                text-align: center;
                margin-top: 2.5rem;
                color: var(--oe-ink-muted);
                font-size: 0.92rem;
            }

            @media (max-width: 991px) {
                .pricing-grid {
                    grid-template-columns: 1fr;
                }

                .price-card.featured {
                    transform: none;
                }

                    .price-card.featured:hover {
                        transform: translateY(-3px);
                    }
            }

            /* ─────────── CTA ─────────── */
            .cta-section {
                background: var(--oe-navy-deep);
                color: var(--oe-pearl);
                padding: 8rem 0;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

                .cta-section::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 100%;
                    height: 100%;
                    background: radial-gradient(ellipse at 50% 0%, rgba(74, 92, 122, 0.22) 0%, transparent 60%);
                    pointer-events: none;
                }

                .cta-section .container {
                    position: relative;
                    z-index: 1;
                }

                .cta-section .section-eyebrow {
                    background: rgba(248, 250, 251, 0.1);
                    border-color: rgba(248, 250, 251, 0.15);
                    color: var(--oe-pearl);
                }

                .cta-section h2 {
                    font-family: 'Inter Tight', sans-serif;
                    font-size: clamp(2.25rem, 5vw, 3.75rem);
                    font-weight: 600;
                    letter-spacing: -0.04em;
                    line-height: 1.04;
                    margin-bottom: 1.5rem;
                    color: var(--oe-pearl);
                }

                .cta-section p {
                    font-size: 1.05rem;
                    color: rgba(248, 250, 251, 0.7);
                    max-width: 540px;
                    margin: 0 auto 2.5rem;
                    line-height: 1.65;
                }

                .cta-section .btn-oe-primary {
                    background: var(--oe-pearl);
                    color: var(--oe-navy);
                    border-color: var(--oe-pearl);
                }

                    .cta-section .btn-oe-primary:hover {
                        background: var(--oe-pearl-2);
                        color: var(--oe-navy);
                    }

            /* ─────────── FOOTER ─────────── */
            footer {
                background: var(--oe-navy-deep);
                color: rgba(248, 250, 251, 0.75);
                padding: 5rem 0 2.5rem;
                border-top: 1px solid var(--oe-navy-line);
            }

            .footer-brand-logo {
                display: inline-block;
                margin-bottom: 1.25rem;
                transition: opacity 0.3s;
                text-decoration: none;
            }

                .footer-brand-logo:hover {
                    opacity: 0.85;
                }

                .footer-brand-logo .brand-lockup {
                    height: 136px;
                }

            footer h5 {
                font-family: 'Inter Tight', sans-serif;
                font-size: 0.85rem;
                color: var(--oe-pearl);
                margin-bottom: 1.25rem;
                font-weight: 600;
                letter-spacing: -0.02em;
            }

            footer ul {
                list-style: none;
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.7rem;
            }

            footer a {
                color: rgba(248, 250, 251, 0.6);
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.2s;
            }

                footer a:hover {
                    color: var(--oe-pearl);
                }

            .footer-brand-text {
                font-size: 0.92rem;
                color: rgba(248, 250, 251, 0.55);
                max-width: 320px;
                line-height: 1.65;
                margin-bottom: 1.5rem;
            }

            .footer-contact {
                font-size: 0.92rem;
                color: rgba(248, 250, 251, 0.85);
            }

                .footer-contact a {
                    color: rgba(248, 250, 251, 0.85);
                }

                .footer-contact div {
                    margin-bottom: 0.4rem;
                }

            .footer-bottom {
                padding-top: 2rem;
                border-top: 1px solid var(--oe-navy-line);
                margin-top: 2.5rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 0.82rem;
                color: rgba(248, 250, 251, 0.5);
            }

            /* Animations */
            .fade-up {
                opacity: 0;
                transform: translateY(24px);
                animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            }

                .fade-up.d1 {
                    animation-delay: 0.1s;
                }

                .fade-up.d2 {
                    animation-delay: 0.22s;
                }

                .fade-up.d3 {
                    animation-delay: 0.34s;
                }

                .fade-up.d4 {
                    animation-delay: 0.48s;
                }

            @keyframes fadeUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Mobile */
            @media (max-width: 991px) {
                .hero {
                    padding: 3rem 0;
                }

                .hero-visual {
                    margin-top: 3rem;
                }

                .floating-toast {
                    left: 10px;
                    bottom: -20px;
                }

                .section {
                    padding: 5rem 0;
                }

                .portal-card {
                    padding: 2.25rem 2rem;
                }

                .cta-section {
                    padding: 5.5rem 0;
                }

                .footer-bottom {
                    flex-direction: column;
                    gap: 1rem;
                    text-align: center;
                }

                .navbar-brand .brand-lockup {
                    height: 88px;
                }

                .press-row {
                    gap: 1.25rem;
                }

                .press-name {
                    font-size: 1rem;
                }

                h1.hero-title {
                    font-size: 2.75rem;
                }

                .hero-stats {
                    gap: 2rem;
                }

                .net-proceeds {
                    margin-left: -1.5rem;
                    margin-right: -1.5rem;
                    padding-left: 1.5rem;
                    padding-right: 1.5rem;
                }

                .offer-card-body {
                    padding: 1.75rem;
                }
            }
