.fp-contact-page {
        background: #FFFFFF;
        /* Pure white to match header/site */
        min-height: 100vh;
        padding-bottom: 120px;
        font-family: var(--fp-font);
        position: relative;
    }

    .fp-contact-page>* {
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ── DARK PREMIUM HERO ── */
    .fp-contact-hero {
        background: linear-gradient(145deg, #0A0A0A 0%, #171717 100%);
        /* Deep black gradient */
        position: relative;
        overflow: hidden;
        border-radius: var(--fp-radius-36);
        max-width: 1280px !important;
        margin: 32px auto 0 !important;
        width: calc(100% - 40px);
        /* Mobile-first scaling */
        padding: 100px 24px 140px;
        text-align: center;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.05);
        color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Animated subtle background glow */
    .fp-contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
            radial-gradient(circle at 80% 20%, rgba(94, 87, 230, 0.08) 0%, transparent 40%);
        pointer-events: none;
        animation: fpBlobRotate 30s linear infinite;
    }

    /* Subtle grid pattern for texture */
    .fp-contact-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
        opacity: 0.5;
    }

    @keyframes fpBlobRotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .fp-contact-hero-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
        animation: fpFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    }

    .fp-contact-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--fp-radius-pill);
        padding: 8px 18px;
        font-size: var(--fp-text-base);
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 28px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .fp-contact-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
        font-weight: 900;
        color: #FFFFFF;
        line-height: 1.05;
        letter-spacing: -0.04em;
        margin-bottom: 24px;
    }

    /* Silver/Chrome gradient text */
    .fp-contact-title span {
        background: linear-gradient(135deg, #E2E8F0 0%, #94A3B8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .fp-contact-subtitle {
        font-size: var(--fp-text-lg2);
        color: #94A3B8;
        line-height: 1.6;
        font-weight: 400;
    }

    /* ── MOBILE-FIRST SUPPORT APP CARD ── */
    .fp-support-app-card {
        max-width: 1000px !important;
        margin: -60px auto 40px !important;
        padding: 0 20px;
        position: relative;
        z-index: 10;
        animation: fpFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }

    .fp-sac-inner {
        background: linear-gradient(145deg, #1A1A1A 0%, #0F0F0F 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--fp-radius-2xl);
        padding: 24px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
    }

    /* Subtle glow line for the app card */
    .fp-sac-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .fp-sac-content {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        min-width: 280px;
    }

    .fp-sac-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--fp-radius-18);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--fp-text-2xl);
        flex-shrink: 0;
    }

    .fp-sac-text h3 {
        color: #FFFFFF;
        font-size: var(--fp-text-lg);
        font-weight: 800;
        margin-bottom: 4px;
        letter-spacing: -0.01em;
    }

    .fp-sac-text p {
        color: #94A3B8;
        font-size: var(--fp-text-md);
        line-height: 1.5;
    }

    .fp-sac-btn {
        background: #FFFFFF;
        color: #0A0A0A;
        padding: 14px 28px;
        border-radius: var(--fp-radius-lg);
        font-weight: 800;
        font-size: var(--fp-text-md);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
        white-space: nowrap;
    }

    .fp-sac-btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

    /* ── HIGH-CONTRAST DIRECTORY CARDS ── */
    .fp-contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1000px !important;
        margin: 0 auto 60px !important;
        padding: 0 20px;
    }

    .fp-contact-card {
        background: #FFFFFF;
        border-radius: var(--fp-radius-2xl);
        padding: 36px 32px;
        text-align: center;
        border: 1px solid #E2E8F0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        animation: fpFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .fp-contact-card:nth-child(1) {
        animation-delay: 0.3s;
    }

    .fp-contact-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .fp-contact-card:nth-child(3) {
        animation-delay: 0.5s;
    }

    .fp-contact-card:hover {
        transform: translateY(-8px);
        border-color: #0A0A0A;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .fp-cc-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        border-radius: var(--fp-radius-20);
        background: #F1F5F9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--fp-text-2xl3);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .fp-contact-card:hover .fp-cc-icon {
        background: #0A0A0A;
        transform: scale(1.1) rotate(5deg);
    }

    .fp-contact-card:hover .fp-cc-icon span {
        filter: invert(1);
        /* Hack to make emojis look cooler/monochrome on hover */
    }

    .fp-cc-title {
        font-size: var(--fp-text-lg2);
        font-weight: 800;
        color: #0A0A0A;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }

    .fp-cc-desc {
        font-size: var(--fp-text-md);
        color: #64748B;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .fp-cc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: var(--fp-text-md);
        font-weight: 800;
        color: #0A0A0A;
        text-decoration: none;
        transition: gap 0.2s;
    }

    .fp-contact-card:hover .fp-cc-link {
        gap: 10px;
    }

    /* ── ELEVATED FORM (Black animated border) ── */
    .fp-form-section {
        max-width: 800px !important;
        margin: 80px auto 0 !important;
        padding: 0 20px;
        animation: fpFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    }

    .fp-form-wrapper {
        background: #FFFFFF;
        border-radius: var(--fp-radius-36);
        padding: 56px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
        border: 1px solid #E2E8F0;
        position: relative;
        overflow: hidden;
    }

    /* Animated Dark Gradient Line */
    .fp-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0A0A0A, #475569, #0A0A0A, #475569, #0A0A0A);
        background-size: 200% auto;
        animation: fpGradientShift 4s linear infinite;
    }

    @keyframes fpGradientShift {
        0% {
            background-position: 0% center;
        }

        100% {
            background-position: -200% center;
        }
    }

    .fp-form-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .fp-form-header h2 {
        font-size: var(--fp-text-4xl);
        font-weight: 900;
        color: #0A0A0A;
        margin-bottom: 12px;
        letter-spacing: -0.04em;
    }

    .fp-form-header p {
        color: #64748B;
        font-size: var(--fp-text-lg);
        max-width: 500px;
        margin: 0 auto;
    }

    .fp-form-group {
        margin-bottom: 24px;
    }

    .fp-form-label {
        display: block;
        font-size: var(--fp-text-md);
        font-weight: 800;
        color: #0A0A0A;
        margin-bottom: 10px;
    }

    /* Crisp inputs */
    .fp-form-input {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #E2E8F0;
        border-radius: var(--fp-radius-lg);
        background: #FFFFFF;
        font-size: var(--fp-text-md);
        color: #0A0A0A;
        font-family: var(--fp-font);
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-sizing: border-box;
    }

    .fp-form-input::placeholder {
        color: #94A3B8;
        font-weight: 500;
    }

    .fp-form-input:hover {
        border-color: #CBD5E1;
    }

    .fp-form-input:focus {
        outline: none;
        border-color: #0A0A0A;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    textarea.fp-form-input {
        min-height: 160px;
        resize: vertical;
        border-radius: var(--fp-radius-20);
    }

    /* Dark App-like Button */
    .fp-submit-btn {
        width: 100%;
        background: #0A0A0A;
        color: #FFFFFF;
        padding: 20px 32px;
        border: none;
        border-radius: var(--fp-radius-18);
        font-size: var(--fp-text-lg);
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-family: var(--fp-font);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .fp-submit-btn:hover {
        transform: translateY(-4px);
        background: #171717;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    }

    .fp-submit-btn:active {
        transform: scale(0.98);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .fp-submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .fp-btn-spinner {
        display: none;
        width: 22px;
        height: 22px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: #FFF;
        border-radius: var(--fp-radius-circle);
        animation: fpSpin 0.8s linear infinite;
    }

    .fp-submit-btn.loading .fp-btn-text {
        display: none;
    }

    .fp-submit-btn.loading .fp-btn-spinner {
        display: block;
    }

    @keyframes fpSpin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes fpFadeInUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fp-form-success {
        display: none;
        text-align: center;
        padding: 60px 20px;
        animation: fpFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fp-form-success.show {
        display: block;
    }

    .fp-success-check {
        width: 88px;
        height: 88px;
        background: #0A0A0A;
        color: #FFF;
        border-radius: var(--fp-radius-circle);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--fp-text-4xl2);
        margin: 0 auto 28px;
        box-shadow: 0 0 0 10px #F1F5F9;
    }

    .fp-form-error {
        color: #EF4444;
        background: #FEF2F2;
        padding: 12px;
        border-radius: var(--fp-radius-md);
        font-weight: 700;
        font-size: var(--fp-text-md);
        margin-top: 16px;
        text-align: center;
        display: none;
        animation: fpFadeInUp 0.3s ease;
    }

    @media (max-width: 900px) {
        .fp-contact-grid {
            grid-template-columns: 1fr;
            margin-top: 0 !important;
        }

        .fp-contact-hero {
            padding: 80px 20px 100px;
            margin: 16px auto 0 !important;
            border-radius: var(--fp-radius-2xl);
        }

        .fp-support-app-card {
            margin: -40px auto 30px !important;
        }

        .fp-sac-inner {
            flex-direction: column;
            text-align: center;
            padding: 32px 24px;
        }

        .fp-sac-content {
            flex-direction: column;
            gap: 16px;
        }

        .fp-sac-icon {
            margin: 0 auto;
        }

        .fp-sac-btn {
            width: 100%;
            text-align: center;
        }

        .fp-form-wrapper {
            padding: 40px 20px;
            border-radius: var(--fp-radius-xl);
        }

        .fp-form-input {
            padding: 14px 18px;
        }
    }
