* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    background: #000;
    min-height: 100vh;
}

/* Landing Container */
.landing-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 0 25px;
    z-index: 1;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.column-images {
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 1000px;
    flex-shrink: 0;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    opacity: 32%;
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Column Animations */
.column-up .column-images {
    animation: slideUp 70s linear infinite;
}

.column-down .column-images {
    animation: slideDown 70s linear infinite;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Content Frame */
.content-frame {
    position: relative; /* Change from absolute to relative */
    top: auto; /* Reset positioning */
    left: auto; /* Reset positioning */
    transform: none; /* Reset transform */
    z-index: 10;
    background: transparent;
    backdrop-filter: none;
    border-radius: 24px;
    padding: 30px 35px 40px;
    max-width: 1200px;
    width: 90%;
    box-shadow: none;
    border: none;
    text-align: center;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(90deg, #FA6C12 0%, #FF77D7 100%);
    color: black;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 215, 0.3);
    max-width: 425px;
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

    .submit-button::after {
        content: "";
        width: 0px;
        height: 20px;
        background-image: url('/images/right_arrow.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        transition: all 0.5s ease;
        margin-left: 0px;
    }

    .submit-button:hover {
        box-shadow: 0 6px 20px rgba(255, 119, 215, 0.4);
        gap: 10px;
    }

        .submit-button:hover::after {
            opacity: 1;
            width: 20px;
            margin-left: 10px;
        }

    .submit-button:active {
        transform: translateY(0);
    }

/* Alert Messages */
.alert {
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: rgba(67, 233, 123, 0.9);
    color: white;
}

.alert-error {
    background: rgba(255, 107, 107, 0.9);
    color: white;
}

/* Form Message (appears below checkbox) */
.form-message {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    max-width: 425px;
    width: 100%;
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid transparent;
}

    .form-message.success {
        background: linear-gradient(90deg, rgba(67, 233, 123, 0.15) 0%, rgba(67, 233, 123, 0.25) 100%);
        color: rgba(67, 233, 123, 1);
        border-color: rgba(67, 233, 123, 0.3);
    }

    .form-message.error {
        background: linear-gradient(90deg, rgba(250, 108, 18, 0.1) 0%, rgba(255, 119, 215, 0.1) 100%);
        color: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(250, 108, 18, 0.3);
        box-shadow: 0 4px 12px rgba(250, 108, 18, 0.15);
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #FA6C12 0%, #FF77D7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(250,108,18,0.5) 0%, rgba(255,119,215,0.5) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 18px;
}

.badge-text {
    font-weight: 280;
}

.badge-icon {
    width: 11.8px;
    height: 16px;
    display: inline-block;
}

/* Heading */
.main-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Description */
.description {
    font-size: 16px;
    font-weight: 280;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
    position: relative;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.form-loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

.loading-spinner-form {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: conic-gradient( from 0deg, #FA6C12 0deg, #FF77D7 180deg, transparent 270deg );
    animation: spin 1s linear infinite;
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 5px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 5px));
}

    .loading-spinner-form::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        border-radius: 50%;
    }

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.form-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

.sent-icon {
    width: 60px;
    height: 60px;
}

.sent-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.email-form.loading .form-content,
.email-form.success .form-content {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.email-form.loading .form-loading-message {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: all;
}

.email-form.success .form-success-message {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: all;
}

.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
    border-radius: 12px;
    border: 1px solid #333333;
    padding: 0 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 425px;
    height: 60px;
}

    .email-input-wrapper:focus-within {
        box-shadow: 0 0 0 3px rgba(255, 119, 215, 0.2);
    }

.email-icon {
    color: rgba(255, 255, 255, 0.32);
    margin-right: 12px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 0;
    max-width: 425px;
    font-size: 16px;
    font-weight: 200;
    color: rgb(255, 255, 255, 0.9);
    outline: none;
}

    .email-input::placeholder {
        color: rgba(255, 255, 255, 0.32);
    }

    /* Prevent autofill from changing background color */
    .email-input:-webkit-autofill,
    .email-input:-webkit-autofill:hover,
    .email-input:-webkit-autofill:focus,
    .email-input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
        -webkit-text-fill-color: white !important;
        transition: background-color 5000s ease-in-out 0s;
    }

    .email-input:-moz-autofill,
    .email-input:-moz-autofill:hover,
    .email-input:-moz-autofill:focus {
        box-shadow: 0 0 0 30px #000000 inset !important;
        color: white !important;
        transition: background-color 5000s ease-in-out 0s;
    }

    .email-input:autofill {
        box-shadow: 0 0 0 30px #000000 inset !important;
        color: white !important;
        transition: background-color 5000s ease-in-out 0s;
    }

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    max-width: 425px;
    width: 100%;
}

.custom-checkbox {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

    .custom-checkbox:checked {
        background: linear-gradient(90deg, #FA6C12 0%, #FF77D7 100%);
        border: none;
    }

        .custom-checkbox:checked::after {
            content: "";
            position: absolute;
            top: 4px;
            left: 8px;
            width: 4px;
            height: 9px;
            border: solid black;
            border-width: 0 2.6px 2.6px 0;
            transform: rotate(45deg);
        }

.checkbox-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    cursor: pointer;
}

    .checkbox-label a {
        color: #FF77D7;
        text-decoration: none;
        font-weight: 500;
    }

        .checkbox-label a:hover {
            text-decoration: underline;
            color: #FA6C12;
        }

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.info-button {
    background: #333333;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 206.5px;
    height: 52px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .info-button::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(251,109,36,0) 0%, rgba(251,109,36,0.28) 50%, rgba(251,109,36,0) 100% );
        opacity: 0;
        filter: blur(5px);
        transition: opacity 0.4s ease;
        z-index: 0;
        border-radius: 12px;
    }

    .info-button:hover::before {
        opacity: 1;
    }

    .info-button .text {
        position: relative;
        z-index: 2;
        display: inline-block;
        transition: all 0.3s ease;
        color: white;
    }

    .info-button:hover .text {
        background: linear-gradient(90deg, #FA6C12 0%, #FF77D7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: backdrop-filter 0.4s ease;
}

.modal-content {
    position: relative;
    background: transparent;
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transform-origin: center;
}

    .modal-content::-webkit-scrollbar {
        display: none;
    }

.modal-close {
    position: fixed;
    top: 35px;
    right: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1002;
    opacity: 0.8;
}

    .modal-close img {
        width: 32px;
        height: 32px;
        display: block;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .modal-close:hover {
        opacity: 1;
        transform: scale(1.1);
    }

        .modal-close:hover img {
            transform: rotate(90deg);
        }

    .modal-close:active {
        transform: scale(0.95);
    }

.modal-title {
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.modal-description {
    font-size: 16px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 50px;
    max-width: 40%;
    width: 100%;
}

.modal-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 40%;
    width: 100%;
}

/* Modal Animations */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
}

/* Feature Cards for "How it works" modal */
.feature-card {
    flex: 1;
    max-width: 150px;
    text-align: center;
}

.feature-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(250, 108, 18, 0.6) 0%, rgba(255, 119, 215, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.feature-title {
    font-size: 16px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Info Feature Card for "What is Farasah" modal */
.info-feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.info-feature-icon {
    width: 115px;
    height: 165px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .info-feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.info-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.info-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.info-feature-description {
    font-size: 16px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Group Image and Pillars */
.group-image {
    width: 100%;
    max-width: 453px;
    height: auto;
    margin: 40px auto;
    display: block;
}

.group-pillars-wrapper {
    width: 100%;
    max-width: 453px;
    margin: 50px auto;
    text-align: center;
}

.modal-section-title {
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: left;
    width: 100%;
    max-width: 453px;
}

.pillars-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 40px;
    max-width: 453px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pillar-item {
    text-align: left;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.pillar-item-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.pillar-item-text {
    font-size: 16px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.feature-description {
    font-size: 14px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 8px;
    text-align: center;
}

/* See Video Button (Bottom Right Corner) */
.see-video-button {
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 1000;
    /*display: inline-flex;*/
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #FA6C12 0%, #FF77D7 100%);
    color: black;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 119, 215, 0.3);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

    .see-video-button:hover {
        transform: translateY(0) scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 119, 215, 0.5);
    }

    .see-video-button i {
        font-size: 20px;
    }

    .see-video-button span {
        white-space: nowrap;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .see-video-button {
        bottom: 30px;
        right: 40px;
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

        .see-video-button i {
            font-size: 18px;
        }
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-background {
        gap: 10px;
        padding: 0 15px;
    }

    .column {
        min-width: calc(100% / 3);
    }

    .content-frame {
        padding: 30px 20px 35px;
        width: 95%;
        max-width: 600px;
    }

    .main-heading {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .logo {
        height: 38px;
    }

    .logo-text {
        font-size: 26px;
    }

    .badge-container {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .email-form {
        gap: 16px;
        margin-bottom: 25px;
    }

    .email-input-wrapper {
        max-width: 100%;
        height: 56px;
        padding: 0 18px;
    }

    .email-icon {
        font-size: 20px;
        margin-right: 10px;
    }

    .email-input {
        font-size: 15px;
        padding: 16px 0;
    }

    .checkbox-wrapper {
        max-width: 100%;
        gap: 10px;
    }

    .checkbox-label {
        font-size: 11px;
    }

    .form-message {
        font-size: 12px;
        padding: 12px 18px;
        margin-top: 10px;
    }

    .submit-button {
        max-width: 100%;
        padding: 16px 35px;
        font-size: 15px;
        height: 56px;
    }

    .action-buttons {
        flex-direction: row;
        gap: 12px;
        max-width: 100%;
    }

    .info-button {
        max-width: calc(50% - 6px);
        min-width: 140px;
        padding: 12px 16px;
        font-size: 14px;
        height: 48px;
    }

    .image-wrapper {
        height: 300px;
    }

    /* See Video Button Responsive */
    .see-video-button {
        bottom: 10px;
        right: 10px;
        padding: 11px 18px;
        font-size: 13px;
        gap: 7px;
    }

        .see-video-button i {
            font-size: 17px;
        }

        .see-video-button span {
            display: inline;
        }

    /* Modal Responsive */
    .modal-content {
        padding: 50px 30px;
        width: 92%;
        max-height: 88vh;
    }

    .modal-title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .modal-description {
        font-size: 15px;
        max-width: 85%;
        margin-bottom: 40px;
    }

    .modal-features {
        max-width: 85%;
        gap: 25px;
    }

    .feature-card {
        max-width: 130px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
        padding: 16px;
    }

    .feature-title {
        font-size: 15px;
    }

    .info-feature-card {
        max-width: 85%;
        gap: 18px;
    }

    .info-feature-icon {
        width: 95px;
        height: 140px;
    }

    .info-feature-title {
        font-size: 18px;
    }

    .info-feature-description {
        font-size: 15px;
    }

    .group-image {
        max-width: 380px;
        margin: 35px auto;
    }

    .group-pillars-wrapper {
        max-width: 85%;
        margin: 40px auto;
    }

    .modal-section-title {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 35px;
        max-width: 85%;
    }

    .pillars-list {
        max-width: 85%;
        gap: 18px;
        margin-bottom: 35px;
        padding-left: 22px;
    }

    .pillar-item-title {
        font-size: 15px;
    }

    .pillar-item-text {
        font-size: 15px;
    }

    .modal-close {
        top: 25px;
        right: 25px;
    }

        .modal-close img {
            width: 28px;
            height: 28px;
        }
}

@media (max-width: 480px) {
    .animated-background {
        gap: 8px;
        padding: 0 10px;
    }

    .content-frame {
        padding: 25px 16px 30px;
        max-width: 95%;
    }

    .main-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .logo {
        height: 32px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-container {
        margin-bottom: 20px;
        gap: 10px;
    }

    .badge-container {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .badge-icon {
        width: 10px;
        height: 14px;
    }

    .email-form {
        gap: 14px;
        margin-bottom: 20px;
    }

    .email-input-wrapper {
        height: 52px;
        padding: 0 16px;
        border-radius: 10px;
    }

    .email-icon {
        font-size: 18px;
        margin-right: 8px;
    }

    .email-input {
        font-size: 14px;
        padding: 14px 0;
    }

    .checkbox-wrapper {
        gap: 8px;
    }

    .custom-checkbox {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

        .custom-checkbox:checked::after {
            top: 4px;
            left: 7px;
            width: 3px;
            height: 7px;
            border-width: 0 2px 2.6px 0;
        }

    .checkbox-label {
        font-size: 10px;
    }

    .form-message {
        font-size: 11px;
        padding: 10px 16px;
        margin-top: 8px;
    }

    .submit-button {
        padding: 14px 30px;
        font-size: 14px;
        height: 52px;
        border-radius: 10px;
    }

        .submit-button::after {
            height: 16px;
        }

        .submit-button:hover::after {
            width: 16px;
        }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .info-button {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        height: 46px;
        font-size: 14px;
        padding: 12px 18px;
    }

    .image-wrapper {
        height: 250px;
    }

    /* See Video Button Responsive */
    .see-video-button {
        bottom: 5px;
        right: 5px;
        padding: 10px;
        font-size: 11px;
        gap: 0;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
    }

        .see-video-button i {
            font-size: 20px;
        }

        .see-video-button span {
            display: none;
        }

    /* Modal Responsive */
    .modal-content {
        padding: 30px 18px;
        width: 96%;
    }

    .modal-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .modal-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .modal-features {
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
        padding: 12px;
    }

    .info-feature-card {
        max-width: 100%;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-feature-icon {
        width: 85px;
        height: 125px;
    }

    .info-feature-title {
        font-size: 16px;
        text-align: center;
    }

    .info-feature-description {
        font-size: 13px;
        text-align: center;
    }

    .group-image {
        margin: 25px auto;
    }

    .group-pillars-wrapper {
        margin: 30px auto;
    }

    .modal-section-title {
        font-size: 22px;
        margin-bottom: 18px;
        margin-top: 25px;
        max-width: 100%;
    }

    .pillars-list {
        max-width: 100%;
        gap: 16px;
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .pillar-item {
        line-height: 1.6;
    }

    .pillar-item-title {
        font-size: 14px;
    }

    .pillar-item-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .modal-close {
        top: 18px;
        right: 18px;
    }

        .modal-close img {
            width: 24px;
            height: 24px;
        }
}

@media (max-width: 360px) {
    .content-frame {
        padding: 20px 12px 25px;
    }

    .main-heading {
        font-size: 28px;
    }

    .description {
        font-size: 12px;
    }

    .email-input-wrapper,
    .submit-button {
        height: 48px;
    }

    .action-buttons {
        gap: 8px;
    }

    .info-button {
        height: 44px;
        font-size: 13px;
    }

    /* See Video Button - Hide text on very small screens */
    .see-video-button {
        bottom: 3px;
        right: 3px;
        padding: 8px;
        width: 42px;
        height: 42px;
    }

        .see-video-button i {
            font-size: 18px;
        }

        .see-video-button span {
            display: none;
        }

    /* Modal Responsive */
    .modal-content {
        padding: 30px 18px;
        width: 96%;
    }

    .modal-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .modal-description {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .modal-features {
        gap: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
        padding: 12px;
    }

    .info-feature-card {
        max-width: 100%;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-feature-icon {
        width: 85px;
        height: 125px;
    }

    .info-feature-title {
        font-size: 16px;
        text-align: center;
    }

    .info-feature-description {
        font-size: 13px;
        text-align: center;
    }

    .group-image {
        margin: 25px auto;
    }

    .group-pillars-wrapper {
        margin: 30px auto;
    }

    .modal-section-title {
        font-size: 20px;
        margin-bottom: 16px;
        margin-top: 25px;
    }

    .pillars-list {
        gap: 14px;
        margin-bottom: 25px;
        padding-left: 18px;
    }

    .pillar-item {
        line-height: 1.6;
    }

    .pillar-item-title {
        font-size: 13px;
    }

    .pillar-item-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }

        .modal-close img {
            width: 20px;
            height: 20px;
        }
}

/* Loading Spinner Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

    .loading-overlay.visible {
        opacity: 1;
        pointer-events: all;
    }

.loading-spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #FA6C12;
    border-right-color: #FF77D7;
    animation: spin 1s linear infinite;
    position: relative;
}

    .loading-spinner::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        border: 4px solid transparent;
        border-top-color: #FF77D7;
        border-right-color: #FA6C12;
        animation: spin-reverse 1.5s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
