/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 54px 0 20px 0;
    width: 100%;
    background: #FFFFFF;
    max-width: 100%;
    margin: 0;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Ensure the slider itself takes up the container width */
}

.testimonials-card {
    flex: 0 0 100%; /* Each card takes full width and doesn't shrink/grow */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 24px; /* Maintain existing padding if desired */
    min-height: 280px; /* Fixed height to keep arrows in same position */
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 768px;
    padding: 0;
}

.testimonial-chip {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.testimonial-chip span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.43;
    color: #413BB4;
    padding: 8px 24px;
    border: 2px solid #413BB4;
    border-radius: 100px;
    background: #FFFFFF;
}

.testimonial-quote-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 768px;
    padding-left: 60px;
    box-sizing: border-box;
}

.decorative-quote {
    position: absolute;
    left: -60px;
    top: -31px;
    font-family: 'BIZ UDPGothic', sans-serif;
    font-size: 134px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(104, 106, 255, 0.2);
    z-index: 0;
    pointer-events: none;
}

.testimonials-content .stars-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonials-content .stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.testimonials-content .star {
    width: 20px;
    height: 20px;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-content .star.filled {
    color: #FFD950;
    filter: drop-shadow(0px 2px 4px rgba(255, 217, 80, 0.3));
}

.testimonials-content .rating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4em;
    color: #000000;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    min-height: 100px;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.author-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.divider {
    width: 0;
    height: 33px;
    border-left: 2px solid #D1D1D1;
    background: transparent;
}

.company-logo {
    width: 127px;
    height: 34px;
    padding: 3px;
    object-fit: contain; /* Maintain aspect ratio within fixed dimensions */
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ddd;
    color: #333;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
}

.prev-arrow {
    left: 10px; /* Fixed position to keep arrows in same location */
}

.next-arrow {
    right: 10px; /* Fixed position to keep arrows in same location */
}

/* Responsive Styles for Testimonials */
@media (max-width: 1200px) {
    .testimonials-card {
        padding: 0 48px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 32px 0 0 0;
        gap: 0;
        align-items: center;
    }
    .testimonial-chip {
        margin-bottom: 24px;
    }
    .testimonial-slider-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 450px; /* Fixed minimum height for mobile to keep arrows in same location */
    }
    .testimonials-card {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
        align-items: center;
        min-height: 320px; /* Slightly taller for mobile layout */
    }
    .testimonials-content {
        width: 100%;
        max-width: 100%;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding: 20px 0 0;
    }
    .testimonial-quote-wrapper {
        padding-left: 0;
        width: 100%;
    }
    .decorative-quote {
        display: none;
    }
    .testimonial-quote {
        font-size: 18px;
        line-height: 1.4;
        margin: 0 0 12px 0;
        min-height: 120px; /* Fixed height for mobile */
    }
    .testimonial-author {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .divider {
        display: none;
    }
    .company-logo {
        margin-top: 8px;
        width: 100px;
        height: 28px;
        object-fit: contain;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        padding: 8px;
    }
    .prev-arrow {
        left: 8px;
    }
    .next-arrow {
        right: 8px;
    }
}

/* Mission Section */
.mission-section {
    position: relative;
    background: #EEF3FB;
    padding: 80px 0;
    overflow-x: hidden;
    width: 110%;
    box-sizing: border-box;
}

.mission-section::before {
    content: '';
    background: 
        radial-gradient(circle at 30% 50%, rgba(155, 147, 220, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(155, 147, 220, 0.12) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars {
    display: flex;
    gap: 24px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.star {
    width: 24px;
    height: 24px;
    opacity: 0.1;
}

.ai-star {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 48px;
    height: 48px;
}


.mission-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.mission-chip {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-chip span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #413BB4;
    padding: 8px 24px;
    border: 3px solid #413BB4;
    border-radius: 100px;
    background: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-text {
    text-align: center;
}

.mission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.25;
    color: var(--Text-primary, #000);
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
}

.mission-title .text-light {
    font-weight: 400;
    color: #85868B;
}

.mission-title .text-bold {
    font-weight: 700;
    color: #4D4E54;
    position: relative;
    display: inline-block;
}

.mission-title .ai-star-inline {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: absolute;
    top: -8px;
    right: -14px;
    vertical-align: top;
}

.mission-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #2E2F34;
    margin: 0;
    max-width: 800px;
    align-self: center;
    text-align: center;
}

.mission-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.mission-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    gap: 8px;
    background: none;
    border: none;
}

.mission-arrow-icon {
    width: 47px;
    height: 28px;
    flex-shrink: 0;
}

.mission-button span {
    color: #413BB4;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: underline;
    line-height: 24px;
    word-wrap: break-word;
}

.mission-button:hover {
    transform: translateY(-2px);
}

/* Responsive Styles for Mission Section */
@media (max-width: 1200px) {
    .mission-section {
        padding: 70px 0;
    }
    
    .mission-content {
        max-width: 100%;
        padding: 0 48px;
        gap: 26px;
    }
    
    .mission-title {
        font-size: 40px;
        line-height: 1.25;
    }
    
    .mission-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 50px 20px;
        background: #EEF3FB;
    }
    
    .mission-content {
        max-width: 100%;
        padding: 0;
        gap: 24px;
    }
    
    .mission-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .mission-title .ai-star-inline {
        width: 18px;
        height: 18px;
        top: -6px;
        right: -10px;
    }
    
    .mission-subtitle {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
    
    .mission-actions {
        justify-content: flex-start;
    }
    
    .stars {
        display: none;
    }
    
    .ai-star,
    .arrow {
        width: 32px;
        height: 32px;
    }
    
    .mission-arrow-icon {
        width: 38px;
        height: 22px;
    }
    
    .mission-button span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 20px;
    }
    
    .mission-content {
        padding: 0;
        gap: 20px;
    }
    
    .mission-chip span {
        font-size: 13px;
        padding: 6px 20px;
        border: 2.5px solid #413BB4;
    }
    
    .mission-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .mission-title .ai-star-inline {
        width: 16px;
        height: 16px;
        top: -4px;
        right: -8px;
    }
    
    .mission-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .mission-arrow-icon {
        width: 35px;
        height: 20px;
    }
    
    .mission-button span {
        font-size: 14px;
    }
}

.highlight-text {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Products Section */
.products-section {
    position: relative;
    background: #FFFFFF;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.products-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.products-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 10px;
    margin-bottom: 0;
    width: 100%;
}

.products-chip {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-chip span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #413BB4;
    padding: 8px 24px;
    border: 2px solid #413BB4;
    border-radius: 100px;
    background: #FFFFFF;
}

.products-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.5;
    color: #1F233D;
    text-align: center;
    margin: 0;
    max-width: 876px;
}

.products-title .text-light {
    font-weight: 300;
    color: #1F233D;
}

.products-title .text-bold {
    font-weight: 700;
    color: #1F233D;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1144px;
    padding: 60px 0;
    gap: 0;
}

.product-stream {
    padding-bottom: 80px;
    padding-top: 50px;
}

.product-text-wrapper {
    display: flex;
    align-items: flex-start;
    flex: 0 0 613px;
    padding-top: 3px;
}

.product-stream .product-text-wrapper {
    padding-top: 3px;
}

.product-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin: 0 0 8px 0;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    text-align: center;
}

/* Unblocker Product - Indigo/Purple Theme */
.product-unblocker .product-name {
    color: #5346FF;
    background: rgba(83, 70, 255, 0.1);
}

/* Stream Product - Teal/Cyan Theme */
.product-stream .product-name {
    color: #00B8A9;
    background: rgba(0, 184, 169, 0.1);
}

.product-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 56px;
    color: #1B1F1D;
    margin: 0;
}

.product-subtitle .text-normal {
    font-weight: 300;
}

.product-subtitle .text-bold {
    font-weight: 600;
}

.product-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666666;
    margin: 0;
}

.product-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #5346FF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.product-link:hover {
    opacity: 0.8;
}

.product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 447px;
    height: 424px;
}

.product-image-container {
    position: relative;
    width: 447px;
    height: 424px;
    background: #F6F6F6;
    border: 4px solid #E7E7E7;
    border-radius: 28px;
    overflow: hidden;
}

.unblocker-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unblocker-image .product-img-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stream-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-image .product-img-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Styles for Products Section */
@media (max-width: 1200px) {
    .products-content {
        padding: 0 48px;
    }
    
    .product-card {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-text-wrapper {
        flex: 1 1 100%;
        max-width: 613px;
        padding: 0;
    }
    
    .product-image-wrapper {
        flex: 1 1 100%;
        max-width: 447px;
    }
    
    .products-title {
        font-size: 40px;
    }
    
    .product-subtitle {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }
    
    .products-header {
        padding-top: 50px;
        gap: 20px;
    }
    
    .products-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .product-card {
        flex-direction: column;
        padding: 24px 0;
        gap: 24px;
    }
    
    .product-unblocker {
        padding-top: 10px;
    }
    
    .product-stream {
        flex-direction: column-reverse;
        padding-bottom: 50px;
    }
    
    .product-text-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .product-image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
    }
    
    .product-image-container {
        width: 100%;
        max-width: 447px;
        height: auto;
        aspect-ratio: 447 / 424;
    }
    
    .product-name {
        font-size: 16px;
        line-height: 24px;
        color: #5346FF;
        margin: 0 0 8px 0;
        display: inline-block;
        padding: 6px 16px;
        background: rgba(83, 70, 255, 0.1);
        border-radius: 100px;
    }
    
    .product-subtitle {
        font-size: 28px;
        line-height: 36px;
    }
    
    .product-description {
        font-size: 15px;
    }
    
    .unblocker-image .product-img-svg,
    .stream-image .product-img-svg {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 24px 0;
    }
    
    .products-content {
        padding: 0 32px;
    }
    
    .products-header {
        padding-top: 0;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .products-chip {
        display: flex;
    }
    
    .products-chip span {
        font-size: 13px;
        padding: 6px 20px;
    }
    
    .products-title {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        margin-bottom: 0;
    }
    
    .product-card {
        flex-direction: column;
        padding: 0;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    
    .product-unblocker {
        padding-top: 10px;
        padding-bottom: 0;
    }
    
    .product-stream {
        flex-direction: column-reverse;
        padding-top: 50px;
        padding-bottom: 0;
    }
    
    .product-text-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .product-name {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        margin: 0 0 8px 0;
        text-align: center;
        display: inline-block;
        padding: 6px 16px;
        border-radius: 100px;
    }
    
    .product-subtitle {
        font-size: 22px;
        line-height: 30px;
        margin: 0;
        text-align: center;
    }
    
    .product-description-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    
    .product-description {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #666666;
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .product-link {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #5346FF;
        text-decoration: none;
        margin-top: 0;
    }
    
    .product-image-wrapper {
        flex: 1 1 100%;
        max-width: 311px;
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    .product-image-container {
        width: 311px;
        height: 295px;
        max-width: 100%;
        border-radius: 19.481px;
        border: 2.783px solid #E7E7E7;
        background: #F6F6F6;
    }
    
    .unblocker-image .product-img-svg,
    .stream-image .product-img-svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Features Section */
.features-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    width: 100%;
    background: #FFFFFF;
}

.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1142px;
    margin: 0 auto;
    padding: 0 32px;
}

.features-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.features-chip {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-chip span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #3118bb;
    padding: 8px 24px;
    border: 2px solid #3118bb;
    border-radius: 100px;
    background: #FFFFFF;
}

.features-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #6d6d6d;
    text-align: center;
    margin: 0;
}

.features-title-bold {
    font-weight: 700;
}

.features-title-light {
    font-weight: 300;
}

.features-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #5d5d5d;
    text-align: center;
    max-width: 600px;
    margin: 0;
}

.features-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex: 1 0 0;
    min-width: 0;
    background: #FFFFFF;
    border: 2px solid #e7e7e7;
    border-radius: 18px;
    padding: 32px;
}

.feature-icon {
    height: 90px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: #262626;
    text-align: center;
    margin: 0;
    width: 100%;
}

.feature-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #262626;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Responsive Styles for Features Section */
@media (max-width: 1200px) {
    .features-content {
        padding: 0 24px;
        width: 90%;
    }
    
    .features-cards {
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .features-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .feature-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 32px 16px;
    }
    
    .features-content {
        padding: 0 16px;
        gap: 32px;
        width: 90%;
    }
    
    .features-text {
        width: 100%;
        align-items: center;
    }
    
    .features-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .features-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .features-cards {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .feature-card {
        width: 90%;
        padding: 32px 16px;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        height: 80px;
    }
    
    .feature-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .feature-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
}
