/* Hide scrollbars globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #191919;
    background-color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
}
/* Scroll animation */
.hero__content,
.hero__actions,
.hero__case,
.container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.9s ease;
}

/* Scroll animation visible */
.hero__content.is-visible,
.hero__actions.is-visible,
.hero__case.is-visible,
.container.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    font-family: 'Zalando Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 26px 0 20px;
    height: 48px;
    border: none;
    border-radius: 40px;
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn__icon {
    flex-shrink: 0;
}

.btn--primary {
    background-color: #191919;
    color: #FFFFFF;
}

.btn--primary:hover {
    background-color: #1774FF;
}

.btn--secondary {
    background-color: transparent;
    color: #191919;
    border: 1px solid #DBDBDB;
}

.btn--secondary:hover {
    background-color: #eeeeee;
}

.btn--contact {
    background-color: transparent;
    color: #191919;
    border: 1px solid #DBDBDB;
    height: 38px;
    padding: 0 16px 0 14px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn--contact:hover {
    background-color: #191919;
    color: #FFFFFF;
    border: none;
    fill: #FFFFFF;
    transform: scale(1.07);
}

.btn--plan-starter {
    background-color: #1774FF;
    color: #FFFFFF;
    width: 100%;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.btn--plan-starter:hover {
    background-color: #191919;
}

.btn--plan-team {
    background-color: #E6E6E6;
    color: #404040;
    width: 100%;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.btn--plan-team:hover {
    background-color: #191919;
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 24px 0 120px;
    background-color: #FFFFFF;
}

.hero__top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 112px;
    will-change: transform, opacity;
}

.hero__logo img {
    width: 120px;
    height: 27px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
    will-change: transform, opacity;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    transition-delay: 0.3s;
}

.hero__title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: #191919;
}

.hero__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    color: #191919;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition-delay: 0.6s;
}

.hero__buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__subtext {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.38;
    text-align: center;
    color: #858585;
}

.hero__subtext strong {
    color: #1774FF;
}

.hero__case {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease-in-out;
}

.hero__case-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
    background-color: #D8E1FD;
}

.hero__case-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}

.hero__case:hover {
    transform: scale(1.02);
    transition: transform 0.4s ease-in-out;
}

.hero__case-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.54;
    text-align: center;
    color: #5C5C5C;
}

.hero__case-text strong {
    color: #1774FF;
}

/* Works Section */
.works {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.works__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
}

.works__heading {
    text-align: center;
    max-width: 800px;
}

.works__title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: #191919;
}

.works__description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    color: #858585;
}

.works__toggle {
    display: flex;
    background-color: #F0F0F0;
    border-radius: 24px;
    padding: 6px;
}

.toggle__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: none;
    border-radius: 24px;
    background-color: transparent;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #B3B3B3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle__button--active {
    background-color: #FFFFFF;
    color: #191919;
    cursor: default;
}

/* Carousel */
.carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.carousel__track {
    display: flex;
    gap: 0;
    width: max-content;
    will-change: transform;
}

/* Inner track */
.carousel__track-inner {
    display: flex;
    gap: 24px;
    padding-inline-end: 24px;
}

/* Common styles for cards */
.carousel__item {
    flex-shrink: 0;
    height: 668px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
}

/* For mobile */
.carousel__item--mobile {
    min-width: 300px;
}

/* For web */
.carousel__item--web {
    min-width: 1024px;
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Case Section */
.case {
    padding: 120px 0 80px;
    background-color: #FFFFFF;
}

.case__content {
    margin-bottom: 80px;
    will-change: transform, opacity;
    margin: 0px 112px 80px 112px;
}

.case__heading {
    text-align: left;
    margin-bottom: 32px;
}

.case__title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #191919;
}

.case__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
}

.case__study {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    will-change: transform, opacity;
    margin-top: 88px;
}

.case__study-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.case__study-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}

.case__study-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.54;
    text-align: center;
    color: #5C5C5C;
}

.case__study-text strong {
    color: #1774FF;
}

/* Tags Section */
/* Main container for tags with gradient fade effect */
.tags__container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    
    /* Gradient mask for smooth fade on sides */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    
    /* Browser compatibility */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* Individual row for each marquee */
.tags-row {
    padding: 10px 0;
    position: relative;
}

/* Marquee container */
.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee content with duplicated items for seamless animation */
.marquee__content {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
    animation: scroll 60s linear infinite;
    padding: 0 12px;
}

/* Reverse animation for second row */
.marquee--reverse .marquee__content {
    animation-direction: reverse;
}

/* Individual tag styles */
.marquee__content span {
    border: 1px solid #E6E6E6;
    padding: 16px 24px;
    border-radius: 40px;
    color: #191919;
    background-color: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    flex-shrink: 0;
}

/* Hover effects */
.marquee:hover .marquee__content {
    animation-play-state: paused;
}

.marquee__content span:hover {
    background-color: #EFFFE7;
    color: #428C1C;
    border-color: #D9FAC8;
    transform: scale(0.95);
    cursor: pointer;
}

.marquee__content span:active {
    transform: scale(0.95);
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .tags__container {
        padding: 16px 0;
        /* Wider visible area on mobile */
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
    
    .marquee__content {
        gap: 8px;
        animation-duration: 50s;
    }
    
    .marquee__content span {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 24px;
    }

    .tags-row {
        padding: 6px 0;
    }
}

/* Large screen optimization */
@media (min-width: 1920px) {
    .tags__container {
        /* Smaller transparent areas on wide screens */
        mask-image: linear-gradient(
            to right,
            transparent,
            black 15%,
            black 85%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 15%,
            black 85%,
            transparent
        );
    }
}

/* Prevent text selection during interaction */
.marquee__content span {
    user-select: none;
    -webkit-user-select: none;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.reviews-container {
    position: relative;
}

.reviews__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 58px;
    color: #191919;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.reviews__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

/* animation delay */
.review-card:nth-child(3n+1) { animation-delay: 1s; }
.review-card:nth-child(3n+2) { animation-delay: 2s; }
.review-card:nth-child(3n+3) { animation-delay: 3s; }

.review-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #191919;
}

.review-card__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.review-card__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #191919;
}

.review-card__position {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #5C5C5C;
}

.reviews__gradient {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.reviews__more-btn {
    display: none;
    width: 100%;
    padding: 16px;
    background: #F5F5F5;
    border: 1px solid #ececec;
    border-radius: 40px;
    font-size: 16px;
    color: #191919;
    cursor: pointer;
    margin-top: 16px;
}


/* Plans Section */
.plans {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.plans__heading {
    text-align: center;
    margin-bottom: 48px;
}

.plans__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #191919;
}

.plans__title br {
    display: none;
}
.plans__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    color: #191919;
    margin: 0 auto;
}

.plans__description .product-design {
    color: #149E59;
    font-weight: 600;
}

.plans__description .full-cycle-development {
    font-weight: 600;
}

.plans__list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    will-change: transform, opacity;
    align-items: center;
}

.plan {
    width: 400px;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.plan__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.plan__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.plan__title-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan__title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.plan__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #191919;
}

.plan__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.plan__badge--design {
    background-color: rgba(23, 116, 255, 0.08);
    border: 1px solid #1774FF;
    color: #1774FF;
}

.plan__badge--development {
    border: 1px solid #5C5C5C;
    color: #191919;
}

.plan__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.29;
    color: #5C5C5C;
}

.plan__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan__amount {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: #191919;
}

.plan__period {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #858585;
}

.plan__divider {
    height: 0;
    border-top: 1px dashed #DBDBDB;
}

.plan__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan__features-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #191919;
}

.plan__features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.plan__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.plan__feature-icon {
    flex-shrink: 0;
}

.plan__feature-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.02em;
    color: #191919;
}

/* FAQ Section */
.section-FAQ {
    display: flex;
    flex-direction: column;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    box-sizing: border-box;
  }
  
  .section-FAQ .text-wrapper {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-weight: 500;
    color: #191919;
    font-size: 40px;
    letter-spacing: -1.20px;
    line-height: 36px;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    align-self: stretch;
    width: 100%;
  }
  
  .faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-bottom: 1px solid #E6E6E6;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
  }
  
  .faq-question:hover {
    cursor: pointer;
  }
  
  .question-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px 0;
  }
  
  .question-text {
    position: relative;
    flex: 1;
    margin: 0;
    font-weight: 500;
    color: #191919;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 26px;
    padding-right: 20px;
  }
  
  .faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #191919;
  }
  
  .faq-item.open .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
  }
  
  .answer-content {
    padding: 0 0 32px 0;
    position: relative;
  }
  
  .answer-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E6E6E6;
  }
  
  .answer-content p {
    margin: 0 0 24px 0;
    font-weight: 300;
    color: #191919;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
  }
  
  .answer-content p:last-child {
    margin-bottom: 0;
  }
  
  .answer-content strong {
    font-weight: 500;
  }
    
/* Bottom CTA Section */
.bottom-cta {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.bottom-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin: 0 auto;
    background-color: #CBEAFE;
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
}

.bottom-cta_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bottom-cta__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1E3847;
    margin: 0;
}

.bottom-cta__description {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: #1E3847;
    margin: 0;
    max-width: 500px;
}

.bottom-cta__description br {
    display: none;
}

.bottom-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
    align-items: center;
}

.bottom-cta .btn--primary {
    background-color: #212121;
    color: #FFFFFF;
    border: none;
    padding: 0 32px 0 24px;
    height: 56px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 28px;
    transition: all 0.3s ease;
    justify-content: center;
    gap: 8px;
    align-self: center;
}

.bottom-cta .btn--primary:hover {
    background-color: #000000;
    transform: scale(0.95);
}

.bottom-cta__disclaimer {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #1E3847;
    margin: 0;
}

.bottom-cta__disclaimer br {
    display: none;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.footer__copyright {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #191919;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container, .faq_container {
        padding: 0 16px;
    }

    .hero {
        padding: 24px 0 0 0;
    }

    .hero__top-menu {
        margin-bottom: 72px;
    }

    .hero__cta {
        margin-bottom: 24px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__title br {
        display: none;
    }

    .hero__description {
        font-size: 18px;
    }

    .hero__description br {
        display: none;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__case {
        gap: 0;
    }

    .hero__case-image {
        border-radius: 8px;
        margin-bottom: 16px;
        padding: 16px;
    }

    .hero__case-image img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-position: center top;
        object-fit: cover;
    }

    .works {
        padding: 40px 0;
    }

    .works__title {
        font-size: 32px;
    }

    .works__description {
        font-size: 18px;
    }

    .works__description br {
        display: none;
    }

    .carousel__item--web {
        max-height: 400px;
        min-width: auto;
        border-radius: 12px;
    }
    
    .carousel__item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .line-text {
        font-size: 15px;
        gap: 8px;
    }

    .line-text span {
        padding: 12px 16px;
    }

    .marquee__inner {
        gap: 0.75rem;
        animation-duration: 20s;
      }
    
      .marquee__inner span {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 24px;
      }
    

    .case {
        padding: 40px 0;
    }

    .case__content {
        gap: 40px;
        margin: 0 0 40px 0;
    }

    .case__heading {
        padding: 0;
    }

    .case__title {
        font-size: 32px;
        line-height: 1.1;
    }

    .case__description {
        font-size: 18px;
    }

    .case__study {
        gap: 0;
        margin-top: 48px;
        border-radius: 8px;
        width: 100%;
    }

    .case__study-image {
        border-radius: 8px;
        margin-bottom: 16px;      
    }

    .case__study-image img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-position: center top;
        object-fit: cover;
    }

    .bottom-cta {
        padding: 60px 0;
    }

    .bottom-cta__content {
        padding: 48px 24px;
        border-radius: 12px;
        gap: 20px;
    }

    .bottom-cta__title {
        font-size: 32px;
    }

    .bottom-cta__description {
        font-size: 16px;
    }

    .bottom-cta .btn--primary {
        width: 100%;
        justify-content: center;
        height: 52px;
    }

    .bottom-cta__disclaimer {
        font-size: 13px;
    }

    .reviews {
        padding: 40px 0;
    }

    .reviews__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .review-card {
        width: 100%;
    }

    /* Show only first 4 reviews by default */
    .review-card:nth-child(n+5) {
        display: none;
    }

    .reviews__grid.expanded .review-card {
        display: flex !important;
    }

    .reviews__gradient {
        display: block;
    }

    .reviews__grid.expanded ~ .reviews__gradient {
        display: none;
    }

    .reviews__more-btn {
        display: block;
    }

    .reviews__grid.expanded ~ .reviews__more-btn {
        display: none;
    }


    .plans {
        padding: 0;
    }

    .plans br {
        display: none;
    }

    .plans__title {
        font-size: 32px;
        line-height: 1.1;
    }
    .plans__title br {
        display: block;
    }

    .plans__description {
        font-size: 16px;
    }

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

    .plan {
        width: 100%;
        max-width: 360px;
    }

    .section-FAQ {
        margin-top: 40px;
        gap: 8px;
        padding: 0 16px;
      }
      
      .section-FAQ .text-wrapper {
        font-size: 32px;
        letter-spacing: -0.96px;
        line-height: 28px;
      }
      
      .question-content {
        padding: 20px 0;
      }
      
      .question-text {
        font-size: 18px;
        line-height: 24px;
        padding-right: 16px;
      }
      
      .answer-content {
        padding: 0 0 24px 0;
      }
      
      .answer-content p {
        font-size: 15px;
        line-height: 22px;
      }
      
      /* Hide <br> tags on mobile */
      .answer-content br {
        display: none;
      }
    
    .bottom-cta {
        padding: 40px 0;
    }

    .bottom-cta__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .bottom-cta__description {
        font-size: 16px;
    }

    .bottom-cta__description br {
        display: block;
    }

    .bottom-cta__disclaimer br {
        display: block;
    }

    .bottom-cta__actions .btn {
        width: 240px;
        height: 48px;
        justify-content: center;
    }

    .footer {
        padding: 16px 0;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 40px;
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .carousel__track,
    .scroll-wrapper {
        animation-play-state: running;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel__track,
    .scroll-wrapper {
        animation-play-state: paused;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

  /* Small mobile styles */
  @media (max-width: 480px) {
    .section-FAQ .text-wrapper {
        font-size: 28px;
        letter-spacing: -0.84px;
        line-height: 24px;
      }
      
      .question-content {
        padding: 16px 0;
      }
      
      .question-text {
        font-size: 16px;
        line-height: 22px;
      }
      
      .answer-content p {
        font-size: 14px;
        line-height: 20px;
      }
    }


