body {
    background-color: rgb(45, 49, 45);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

.main-nav {
    position: relative;
    padding-top: 18px;
    margin-bottom: 0px;
}

.nav-brand {
    position: absolute;
    top: 5px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}


.nav-list {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 0;
}

.nav-list li {
    cursor: pointer;
}

.nav-list li:hover {
    text-decoration: underline;
}

.main-title {
    text-align: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 800;
    margin-top: 70px;
    margin-bottom: 16px; 
}

.main-subtitle {
    color: #C7C7C7;
    text-align: center;
    /* changed from 22 */ 
    font-size: 24px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    margin-bottom: 32px;  /* distance to button */
    margin-top: 0;        /* avoid extra collapsing margin */

}

.call-action-button {
    /* background-image: linear-gradient(to right, #7c5cfc 0%, #7c5cfc 50%, #7c5cfc 100%); */
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);    
    color: #FFFFFF;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    /* This centers the button horizontally */
    margin: 0 auto;
    display: block;
    background-size: 200% auto;
    margin-top: 0;
}

.call-action-button:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.hero {
    width: 100%;
}

.hero-video-container {
    max-width: 84rem;               /* wide, but tied to font size so it scales with text zoom */
    width: 100%;
    margin: 4rem auto 256px auto;   /* 256px vertical space below video container */
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;          /* 16:9 "frame" */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    aspect-ratio: 16 / 9; /* ensure video itself uses 16:9 aspect */
}

.benefits-wrapper {
    max-width: 84rem;               /* wide, but tied to font size so it scales with text zoom */
    width: 100%;
    margin: 0 auto 256px auto;      /* 256px vertical space below benefit section */
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    column-gap: 2.5rem;
    row-gap: 4rem;
    align-items: center;
}

.benefit-text-content {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    color: #FFFFFF;
}

.benefit-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.benefit-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: #FFFFFF;
    word-break: break-word;
}

.benefit-sentence {
    font-size: 24px;
    line-height: 1.65;
    color: #C7C7C7;
    letter-spacing: 0.02em;
    word-break: break-word;
}

.benefit-list {
    margin-top: 16px;
    margin-bottom: 0;
    padding-left: 1.4rem;
    list-style-type: disc;
    color: #C7C7C7;
    font-size: 22px;
    line-height: 1.8;
}

.benefit-list li {
    margin-bottom: 6px;
}

.pricing {
    text-align: center;
    margin-top: 6rem;
    padding: 0 3rem;
    color: #FFFFFF;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

.pricing-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-sentence {
    font-size: 20px;
    color: #C7C7C7;
    margin-bottom: 40px;
}

.pricing-plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-plan {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #7c5cfc;
    margin-bottom: 15px;
}

.plan-details {
    font-size: 16px;
    color: #C7C7C7;
    margin-bottom: 25px;
}

.plan-button {
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: 200% auto;
    display: block;
    width: 100%;
}

.plan-button:hover {
    background-position: right center;
}

@media (max-width: 768px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefit-text-content {
        width: 100%;
        max-width: 500px;
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .benefit-img {
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

    .benefit-title {
        font-size: 30px;
    }

    .benefit-sentence {
        font-size: 18px;
    }
}

.faq {
    text-align: center;
    margin-top: 0;
    padding: 0 1.5rem 3rem 1.5rem;
    color: #FFFFFF;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    width: 100%;
    max-width: 48.75rem; /* 780px -> 48.75rem assuming 16px base */
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #333834;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-question {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    cursor: pointer;
    margin-left:5px;
}

.faq-answer {
    display: none;
    font-size: 20px;
    color: #C7C7C7;
    line-height: 1.65;
    margin-left:5px;
}

.faq-item.open .faq-answer {
    display: block;
}

.final-cta-section {
    text-align: center;
    margin-top: 12rem;
    padding: 0 1.25rem 3rem 1.25rem;
    background-color: rgb(45, 49, 45); /* Match body background */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

.final-cta-title {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.final-cta-button {
    background-image: linear-gradient(to right, #FF3131 0%, #FF5F5F 50%, #FF3131 100%);    color: #fff;
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 18px; /* Slightly larger or same as other CTAs */
    padding: 18px 40px; /* Adjust padding for a prominent look */
    border: none;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block; /* Changed from block to inline-block to respect text-align: center */
    background-size: 200% auto;
    margin-top: 20px; /* Space above the button */
    margin-bottom: 0; /* Removed extra bottom margin */
}

.final-cta-button:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}