:root {
    --primary-blue: #3b5bdb;
    --primary-blue-hover: #4c6ef5;
    --black: #000000;
    --white: #ffffff;
    --red-placeholder: #ff0000;
    --green-placeholder: #00ff00;
    --text-color: #000000;
    --font-main: 'Inter', sans-serif;
    --container-width: 1005px;
}

header {
    background: linear-gradient(181deg, rgb(75, 75, 75) 0%, rgba(0, 0, 0, 1) 45%);
    box-shadow: 0 20px 32px 0px #9d9d9d;
}

.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

.br-desktop {
    display: inline;
}

.br-mobile {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.4;
    color: var(--text-color);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
}

/* Header Section */
.header {
    background-color: var(--black);
    width: 100%;
    padding: 60px 0 0 0;
    /* Removing bottom padding */
    display: flex;
    justify-content: center;
}

.main-title {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 30px;
}

.title-img-large {
    height: 177px;
    width: auto;
}

.title-img-sub {
    height: 177px;
    width: auto;
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out;
    margin-bottom: 40px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-cta span,
.btn-cta .arrow-icon {
    position: relative;
    z-index: 2;
}

.btn-cta:after {
    background: rgba(255, 255, 255, 0.4);
    content: "";
    height: 200px;
    left: -75px;
    opacity: 0.4;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 80px;
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 2.2rem;
    /* Was 1.2, increased significantly */
    padding: 24px 60px;
    border-radius: 12px;
    box-shadow: 0 20px 32px 0px #9d9d9d;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: var(--primary-blue-hover);
    box-shadow: 0 8px 15px rgba(59, 91, 219, 0.3);
    animation: rotate624 0.7s ease-in-out both;
}

.btn-cta:hover:after {
    left: 120%;
}

.btn-cta:hover span {
    animation: storm1261 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.arrow-icon {
    margin-left: 10px;
    height: 1em;
    width: auto;
    vertical-align: middle;
}

/* Placeholders and Videos */
.video-placeholder,
.video-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1005 / 520;
    /* Fixed aspect ratio from 1005x520 */
    overflow: hidden;
    background-color: var(--black);
}

.video-placeholder {
    background-color: var(--red-placeholder);
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    font-weight: 400;
}

.responsive-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-video {
    margin-bottom: 0px;
    /* Overlap effect */
    position: relative;
    z-index: 2;
    max-width: 885px;
    margin: 0 auto;
}

.small-video {
    max-width: 480px;
    margin: 10px auto 10px auto;
    margin-bottom: 75px;
}

/* Main Content */
.content {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
}

.intro-description {
    font-size: 2.5rem;
    /* Increased significantly */
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.1;
    letter-spacing: -1px;
}

.sub-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5px;
}

/* Pricing and Features */
.pricing-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-label {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: -10px;
}

.price-value {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: #888;
    margin-top: -5px;
}

.features-list {
    list-style: none;
    font-size: 1.4rem;
    /* Increased */
    font-weight: 600;
}

.features-list li {
    line-height: 1.7rem;
    margin-bottom: 2px;
    display: flex;
    align-items: flex-start;
    /* Changed back to flex-start for top alignment */
}

.features-list li i,
.features-list li svg {
    margin-right: 12px;
    margin-top: 0.25rem;
    /* Small offset to align with the first line's text center/baseline */
    stroke-width: 3px;
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
    min-width: 20px;
    /* Force minimum width */
    flex-shrink: 0;
}

/* Footer elements */
.footer-links {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: -10px;
}

.link-btn {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.separator {
    color: #ccc;
    margin: 0 5px;
}

.photo-placeholders {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 200px;
}

.social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.legal-footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    padding-bottom: 2px;
    opacity: 1 !important;
    /* Force visibility */
    transform: none !important;
    /* Disable animation transform */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    /* Changed via JS to flex */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    margin: 0;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }

    .main-video {
        max-width: none !important;
        width: calc(100% + 20px) !important;
        margin-left: -10px !important;
        margin-right: -10px !important;
        transform: none !important;
        left: auto !important;
        position: relative;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .br-desktop {
        display: none;
    }

    .br-mobile {
        display: inline;
    }

    .main-title {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 15px;
    }

    .header {
        padding: 30px 0 0 0;
    }

    .btn-primary {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .title-img-large,
    .title-img-sub {
        height: auto;
        width: 80%;
        max-width: 300px;
    }

    .pricing-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .features-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-links .separator {
        display: none;
    }

    .price-value {
        font-size: 6rem;
    }

    .intro-description {
        font-size: 1.8rem;
    }

    .btn-secondary {
        flex-direction: column;
        padding: 30px 40px;
        font-size: 1.8rem;
        line-height: 1.1;
        text-align: center;
        gap: 15px;
    }

    .btn-secondary .arrow-icon {
        margin-left: 0;
        width: 40px;
        height: 40px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure buttons remain snappy even during/after reveal */
.reveal.active.btn-cta {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out, opacity 1.5s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active.btn-cta:hover {
    transform: scale(1.05);
}

@keyframes rotate624 {
    0% {
        transform: scale(1.05) rotate(0deg);
    }

    25% {
        transform: scale(1.05) rotate(3deg);
    }

    50% {
        transform: scale(1.05) rotate(-3deg);
    }

    75% {
        transform: scale(1.05) rotate(1deg);
    }

    100% {
        transform: scale(1.05) rotate(0deg);
    }
}

@keyframes storm1261 {
    0% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(4px, 0, 0);
    }

    50% {
        transform: translate3d(-3px, 0, 0);
    }

    75% {
        transform: translate3d(2px, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Staggered delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}