.center {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.primary-button-1 {
    padding: 14px 28px;
}

.primary-button-text-wrap {
    height: auto;
    overflow: hidden;
    max-height: 1.5em;
    line-height: 1.2;
}

.features-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.features-bullet-list li {
    margin-bottom: 0.35em;
    font-size: 16px;
    line-height: 22px;
    padding-left: 24px;
    background: url('../images/checkmark.svg') no-repeat 0 3px;
    background-size: 16px 16px;
}

.vsl-thumbnail {
    height: 360px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: blur(0px);
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.vsl-thumbnail:hover {
    filter: blur(0px);
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .vsl-thumbnail {
        width: 100%;
        height: auto;
    }

    .primary-button-1 {
        /* width: 100%; */
        padding: 16px 20px;
    }

    .primary-button-text-1 {
        font-size: 14px;
    }
}

.text-highlight {
    background: linear-gradient(180deg, #9376ff, #6e6fff 53.47%, #5db6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Comparison Section */
.comparison-section {
    padding-top: 0px;
    padding-bottom: 20px;
    margin-top: -40px;
}

.comparison-section .section-title-wrap {
    text-align: center;
    margin-bottom: 20px;
    max-width: 778px;
    margin-left: auto;
    margin-right: auto;
}

.grid.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch;
    position: relative;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.card.comparison {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--_color---border-color);
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
}

.card.comparison.without {
    background: radial-gradient(ellipse at center top, rgba(239, 68, 68, 0.18) 0%, transparent 70%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.card.comparison.without::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0) 0%, #ef4444 50%, rgba(239, 68, 68, 0) 100%);
    z-index: 1;
}

.card.comparison.with {
    background: radial-gradient(ellipse at center top, rgba(147, 118, 255, 0.2) 0%, transparent 70%);
    border: 1px solid rgba(147, 118, 255, 0.3);
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.card.comparison.with::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, rgba(147, 118, 255, 0) 0%, #9376ff 50%, rgba(147, 118, 255, 0) 100%);
    z-index: 1;
}

.comparison-header {
    text-align: center;
    /* padding-bottom: 16px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.comparison-header.without {
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.comparison-header.with {
    border-bottom-color: rgba(147, 118, 255, 0.2);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-item .icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comparison-item .icon-wrapper.check {
    background: rgba(147, 118, 255, 0.15);
}

.comparison-item .icon-wrapper.x-mark {
    background: rgba(239, 68, 68, 0.15);
    position: relative;
}

.comparison-item .icon-wrapper.x-mark::before,
.comparison-item .icon-wrapper.x-mark::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background: rgba(239, 68, 68, 0.8);
    border-radius: 1px;
}

.comparison-item .icon-wrapper.x-mark::before {
    transform: rotate(45deg);
}

.comparison-item .icon-wrapper.x-mark::after {
    transform: rotate(-45deg);
}

.comparison-item .icon.mini {
    width: 14px;
    height: 14px;
}

.vs-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: inset 0px 0px 10px 0px var(--token-efa3e356-ac9a-49c3-9f07-9b43f54692b7, rgb(167, 139, 250));
    color: black;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

.para-03.left {
    text-align: left;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .grid.comparison {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 30px;
    }

    .vs-circle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -20px auto;
    }
}

.logo {
    height: 80px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: transparent;
    border-radius: 20px;
    padding: 48px 32px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease-out;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--_color---dark);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.modal-title {
    color: white;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    padding: 4px 4px 4px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field:focus-within {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.field-icon {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-submit-btn {
    white-space: nowrap;
    width: 100%;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--_color---purple), var(--_color---silent-navy) 53.47%, var(--_color---adonis));
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(147, 118, 255, 0.4);
}

@media screen and (max-width: 480px) {
    .modal-container {
        margin: 16px;
        padding: 40px 24px;
    }

    .modal-title {
        font-size: 18px;
    }

    .form-input {
        font-size: 16px;
    }
}

@media screen and (max-width:768px) {
    .mg-top-cta{
    margin-top: -30px;
    }
    .mg-top-section{
    margin-top: -20px;
    }
}   

.badge-text {
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: inset 0px 0px 10px 0px rgba(167, 139, 250, 1);
    }
    50% {
        box-shadow: inset 0px 0px 20px 2px rgba(167, 139, 250, 0.4);
    }
}

.section-tag {
    padding: 6px 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}