    /* ============================================================
       r10- prefixed styles for Email Signup - Full Width
       ============================================================ */

    .r10-section {
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        padding: 0;
        background: #f8f9fc;
        width: 100%;
    }

    /* Wrapper with background image - Full Width, No Rounding */
    .r10-wrapper {
        background-image: url('/assets/img/choice/signup.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
        min-height: 320px;
        width: 100%;
        border-radius: 0 !important;
    }

    /* Dark overlay for text readability */
    .r10-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 0;
        border-radius: 0 !important;
    }

    /* Ensure content sits above overlay */
    .r10-content,
    .r10-form-wrapper {
        position: relative;
        z-index: 1;
    }

    /* ----- LEFT COLUMN ----- */
    .r10-content {
        color: #ffffff;
        padding-right: 1rem;
    }

    .r10-tag {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .r10-tick-icon {
        width: 20px;
        height: 20px;
        display: block;
    }

    .r10-tag-text {
        color: #6c8cff;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .r10-main-heading {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-transform: uppercase;
    }

    .r10-description {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        line-height: 1.6;
        max-width: 90%;
        margin-bottom: 0;
    }

    /* ----- RIGHT COLUMN ----- */
    .r10-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .r10-form-row {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .r10-input {
        flex: 1;
        min-width: 200px;
        padding: 0.8rem 1.25rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        color: #ffffff;
        transition: border-color 0.2s ease, background 0.2s ease;
        outline: none;
    }

    .r10-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .r10-input:focus {
        border-color: #0d6efd;
        background: rgba(255, 255, 255, 0.25);
    }

    .r10-btn {
        border-radius: 50px !important;
        padding: 0.8rem 2rem !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        border: 2px solid #0d6efd !important;
        transition: all 0.3s ease !important;
        background: #0d6efd !important;
        color: #ffffff !important;
        white-space: nowrap;
    }

    .r10-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
        background: #0b5ed7 !important;
        border-color: #0a58ca !important;
    }

    /* Features with ticks */
    .r10-features {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
        margin-top: 0.25rem;
    }

    .r10-feature {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.85rem;
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .r10-wrapper {
            padding: 3rem 0;
            min-height: 280px;
        }
        .r10-main-heading {
            font-size: 2rem;
        }
        .r10-description {
            max-width: 100%;
            font-size: 0.95rem;
        }
        .r10-form-row {
            flex-wrap: wrap;
        }
        .r10-input {
            min-width: 100%;
        }
        .r10-btn {
            width: 100%;
            justify-content: center;
        }
        .r10-features {
            gap: 1rem;
        }
    }

    @media (max-width: 768px) {
        .r10-wrapper {
            padding: 2.5rem 0;
            min-height: 240px;
        }
        .r10-main-heading {
            font-size: 1.6rem;
        }
        .r10-description {
            font-size: 0.9rem;
        }
        .r10-tag-text {
            font-size: 0.75rem;
        }
        .r10-tick-icon {
            width: 16px;
            height: 16px;
        }
        .r10-input {
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
        }
        .r10-btn {
            padding: 0.7rem 1.5rem !important;
            font-size: 0.85rem !important;
        }
        .r10-feature {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .r10-wrapper {
            padding: 2rem 0;
            min-height: 200px;
        }
        .r10-main-heading {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .r10-description {
            font-size: 0.8rem;
        }
        .r10-tag {
            margin-bottom: 0.5rem;
        }
        .r10-tag-text {
            font-size: 0.7rem;
        }
        .r10-tick-icon {
            width: 14px;
            height: 14px;
        }
        .r10-input {
            padding: 0.6rem 0.9rem;
            font-size: 0.8rem;
            min-width: 100%;
        }
        .r10-btn {
            padding: 0.6rem 1.25rem !important;
            font-size: 0.8rem !important;
            width: 100%;
        }
        .r10-features {
            gap: 0.5rem;
            flex-direction: column;
            align-items: flex-start;
        }
        .r10-feature {
            font-size: 0.75rem;
        }
        .r10-form-wrapper {
            gap: 0.75rem;
        }
        .r10-content {
            padding-right: 0;
        }
    }