/* ===== Scroll Animations ===== */
.anim-fade-left,
.anim-fade-right,
.anim-fade-top {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-left {
    transform: translateX(-60px);
}

.anim-fade-right {
    transform: translateX(60px);
}

.anim-fade-top {
    transform: translateY(-50px);
}

.anim-fade-left.anim-visible,
.anim-fade-right.anim-visible,
.anim-fade-top.anim-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay for children */
.anim-delay-1 {
    transition-delay: 0.15s;
}

.anim-delay-2 {
    transition-delay: 0.3s;
}

/* ===== Sign Up Free Section ===== */
.signup-free {
    padding: 80px 24px;
    overflow: hidden;
}

.signup-free__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 80px;
    background-image: linear-gradient(to top, #f8f9ff, #dee7ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.signup-free__content {
    flex: 1;
    max-width: 700px;
}

.signup-free__title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #181c31;
    line-height: 1.35;
    margin: 0 0 16px 0;
}

.signup-free__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.6;
    margin: 0;
}

.signup-free__action {
    flex: 0 0 auto;
}

.signup-free__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #181C31;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-free__btn:hover {
    background-color: #2d3e66;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 28, 49, 0.2);
}

.signup-free__btn svg {
    transition: transform 0.3s ease;
}

.signup-free__btn:hover svg {
    transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .signup-free__container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 30px;
        padding: 50px 40px;
    }

    .signup-free__content {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .signup-free {
        padding: 60px 16px;
    }

    .signup-free__container {
        padding: 40px 24px;
    }

    .signup-free__title {
        font-size: 24px;
    }

    .signup-free__desc {
        font-size: 15px;
    }
}

/* ===== Support / FAQ Section ===== */
.support {
    padding: 100px 0;
    background-image: url('../images/bgr-FAQ.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.support__left {
    flex: 1;
}

.support__label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3b3a8e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 16px;
}

.support__title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #181c31;
    line-height: 1.3;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.support__title-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.support__title-highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgb(255 234 194 / 1);
    z-index: -1;
}

.support__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1e2a4a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support__link:hover {
    color: #3b3a8e;
}

.support__link:hover svg {
    transform: translateX(4px);
}

.support__link svg {
    transition: transform 0.3s ease;
}

/* FAQ Accordion */
.support__right {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #e8eaf0;
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #181c31;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: #181c31;
    transition: transform 0.3s ease;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item--active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.8;
    margin: 0;
    padding: 20px 24px;
    border-top: 1px solid #e8eaf0;
}

/* Support Responsive */
@media (max-width: 768px) {
    .support__container {
        flex-direction: column;
        gap: 40px;
    }

    .support__left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .support__right {
        max-width: 100%;
    }

    .support__title {
        font-size: 26px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0 120px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.testimonials__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials__badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: #edf5ff;
    color: #181c31;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.testimonials__title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 16px 0;
}

.testimonials__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    text-align: center;
}

.testimonials__slider-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.testimonials__slider {
    margin: 0 -15px;
}

.testimonials__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    margin: 15px;
    outline: none;
}

.testimonials__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

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

.testimonials__card-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 6px 0;
}

.testimonials__card-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
}

.testimonials__card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.testimonials__card-divider {
    border: none;
    height: 1px;
    background-color: #f3f4f6;
    margin: 0 0 24px 0;
}

.testimonials__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Slick Custom Dots */
.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.slick-dots li button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #EEEEEE;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
    background-color: #0066ff;
    width: 24px;
    border-radius: 10px;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 100px 0;
    background-color: #ffffff;
}

.pricing__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing__header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing__badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: #edf5ff;
    color: #181c31;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pricing__title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 16px 0;
}

.pricing__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    text-align: center;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing__card {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing__card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.pricing__card--popular {
    /* No extra border - only the POPULAR badge ribbon */
}

/* Popular Badge */
.pricing__popular-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background-color: #0066ff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 6px;
    border-radius: 0 0 6px 6px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.pricing__card-top {
    padding: 40px 40px 32px 40px;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.pricing__currency {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #181c31;
}

.pricing__amount {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #181c31;
    line-height: 1;
}

.pricing__period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
}

.pricing__pack-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 10px 0;
}

.pricing__pack-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #757693;
    line-height: 1.6;
    margin: 0;
}

.pricing__card-bottom {
    padding: 24px 40px 40px 40px;
    border-top: 1px solid #e8eaf0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing__feature {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #181c31;
}

.pricing__feature--disabled {
    color: #9ca6b6;
    text-decoration: none;
}

.pricing__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0066ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing__link:hover {
    color: #0052cc;
}

.pricing__link:hover svg {
    transform: translateX(4px);
}

.pricing__link svg {
    transition: transform 0.3s ease;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing__title {
        font-size: 24px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing__card-top {
        padding: 32px 24px 24px 24px;
    }

    .pricing__card-bottom {
        padding: 24px;
    }

    .pricing__amount {
        font-size: 40px;
    }
}

/* ===== Contact / Form Section ===== */
.contact {
    padding: 88px 24px 112px;
    background: #ffffff;
}

.contact__container {
    max-width: 1510px;
    margin: 0 auto;
    padding: 76px 72px 86px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 86px;
    background: transparent;
}

.contact__form-wrapper {
    flex: 0 1 900px;
    box-sizing: border-box;
    min-height: 640px;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8eaf0;
    box-shadow: 0 18px 55px rgba(17, 24, 39, 0.05);
    padding: 64px 62px 60px;
    overflow: hidden;
}

.contact__form-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 54px 0;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 52px;
    row-gap: 30px;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 0 0 20px;
    border: none;
    border-bottom: 1px solid #e8eaf0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #181c31;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #9ca6b6;
}

.contact__input:focus,
.contact__textarea:focus {
    border-bottom-color: #0066ff;
}

.contact__textarea {
    resize: vertical;
    min-height: 128px;
}

.contact__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 8px;
}

.contact__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.5;
    max-width: 480px;
    cursor: pointer;
}

.contact__checkbox {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    appearance: none;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background-color: #f3f4f6;
    cursor: pointer;
}

.contact__checkbox:checked {
    border-color: #0066ff;
    background-color: #0066ff;
}

.contact__submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background-color: #181C31;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact__submit-btn:hover {
    background-color: #2d3e66;
}

.contact__submit-btn svg {
    transition: transform 0.3s ease;
}

.contact__submit-btn:hover svg {
    transform: translateX(4px);
}

/* Find Us Info */
.contact__info {
    flex: 0 1 310px;
    padding-top: 70px;
}

.contact__info-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 54px 0;
}

.contact__info-block {
    margin-bottom: 32px;
}

.contact__info-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #181c31;
    margin: 0 0 16px 0;
}

.contact__info-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.55;
    margin: 0;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 64px 16px 88px;
    }

    .contact__container {
        flex-direction: column;
        gap: 40px;
        padding: 48px 24px 56px;
    }

    .contact__form-wrapper {
        min-height: auto;
        padding: 36px 24px;
    }

    .contact__form-grid {
        grid-template-columns: 1fr;
    }

    .contact__form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact__checkbox-label {
        max-width: 100%;
    }

    .contact__form-title,
    .contact__info-title {
        font-size: 24px;
    }
}

/* ===== Blog Section ===== */
.blog {
    padding: 70px 0 88px;
    background-color: #ffffff;
}

.blog__container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.blog__badge {
    display: inline-block;
    padding: 8px 22px;
    background-color: #edf5ff;
    color: #181c31;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 18px;
}

.blog__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #181c31;
    margin: 0 0 16px 0;
}

.blog__desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #757693;
    line-height: 1.6;
    max-width: 730px;
    margin: 0;
    text-align: center;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.blog__card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.blog__card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.blog__card-image {
    width: 100%;
    height: 238px;
    padding: 18px 18px 0 18px;
    box-sizing: border-box;
    overflow: hidden;
}

.blog__card-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.blog__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog__card:hover .blog__card-image img {
    transform: scale(1.08);
}

.blog__card-body {
    padding: 26px 30px 34px;
}

.blog__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #181c31;
    line-height: 1.4;
    margin: 0 0 14px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog__card-title:hover {
    color: #0066ff;
}

.blog__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.55;
    margin: 0;
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog__container {
        max-width: 1080px;
    }

    .blog__title {
        font-size: 36px;
    }

    .blog__card-image {
        height: 220px;
    }

    .blog__card-title {
        font-size: 20px;
    }

    .blog__card-text {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog {
        padding: 80px 0;
    }

    .blog__container {
        padding: 0 18px;
    }

    .blog__header {
        margin-bottom: 48px;
    }

    .blog__title {
        font-size: 32px;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .blog__card-image {
        height: 230px;
        padding: 14px 14px 0;
    }

    .blog__card-body {
        padding: 28px 24px 32px;
    }
}

/* ===== Footer Section ===== */
.footer {
    padding: 108px 0 0 0;
    background-color: #ffffff;
    border-top: 1px solid #e8eaf0;
}

.footer__container {
    max-width: 1670px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(360px, 520px) 200px 170px 320px;
    column-gap: clamp(56px, 8vw, 153px);
    row-gap: 56px;
    align-items: start;
    padding-bottom: 128px;
}

/* Brand Column */
.footer__brand {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 22px;
}

.footer__logo-img {
    width: 112px;
    height: auto;
}

.footer__logo-text {
    display: none;
}

.footer__brand-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.55;
    margin: 0 0 52px 0;
    max-width: 390px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #757693;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.footer__contact-email {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #181c31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-email:hover {
    color: #0066ff;
}

/* Links Columns */
.footer__col-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #181c31;
    margin: 0 0 44px 0;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #0066ff;
}

/* Newsletter Column */
.footer__newsletter-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757693;
    line-height: 1.55;
    margin: 0 0 22px 0;
    max-width: 248px;
}

.footer__newsletter-form {
    display: flex;
    align-items: center;
    border: 1px solid #e8eaf0;
    border-radius: 9999px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    min-height: 56px;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    transition: border-color 0.3s ease;
}

.footer__newsletter-form:focus-within {
    border-color: #0066ff;
}

.footer__newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 0 10px 0 30px;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #181c31;
    background: transparent;
}

.footer__newsletter-input::placeholder {
    color: #8b93a8;
}

.footer__newsletter-btn {
    width: 54px;
    min-width: 54px;
    height: 56px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #757693;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.footer__newsletter-btn svg {
    width: 22px;
    height: 22px;
}

.footer__newsletter-btn:hover {
    color: #0066ff;
}

/* Bottom Bar */
.footer__bottom {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 32px 0 38px 0;
    border-top: 1px solid #e8eaf0;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 38px;
    justify-self: start;
}

.footer__bottom-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #757693;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom-link:hover {
    color: #0066ff;
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #757693;
    margin: 0;
    justify-self: center;
    text-align: center;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 26px;
    justify-self: end;
    padding-right: 92px;
}

.footer__social {
    color: #d2d7e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__social:hover {
    color: #0066ff;
}

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer__top {
        grid-template-columns: minmax(320px, 1.4fr) minmax(170px, 0.7fr) minmax(170px, 0.7fr) minmax(300px, 1fr);
        column-gap: 56px;
    }
}

@media (max-width: 1200px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 56px 40px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 72px 0 0 0;
    }

    .footer__container {
        padding: 0 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 64px;
    }

    .footer__brand-desc,
    .footer__newsletter-desc {
        max-width: 100%;
    }

    .footer__contact-email {
        font-size: 26px;
        word-break: break-word;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
        padding: 30px 0 34px 0;
    }

    .footer__bottom-links {
        justify-content: center;
        justify-self: center;
        flex-wrap: wrap;
        gap: 18px 28px;
    }

    .footer__copyright {
        justify-self: center;
    }

    .footer__socials {
        justify-content: center;
        justify-self: center;
        padding-right: 0;
    }
}

/* ===== Scroll to top button ===== */
.scroll-top {
    position: fixed;
    bottom: 44px;
    right: 38px;
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.25);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials__slider {
        gap: 20px;
    }

    .testimonials__card {
        flex: 0 0 100%;
        padding: 30px 24px;
    }

    .testimonials__title {
        font-size: 32px;
    }
}

.animate_right,
.animate_down,
.animate_left,
.animate_top {
    opacity: 0;
    will-change: transform, opacity; 
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate_right.anim-visible {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate_down.anim-visible {
    animation: slideInDown 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.animate_left.anim-visible {
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate_top.anim-visible {
  animation: slideInDown 0.8s ease-out both;
}

.delay_700 {
  animation-delay: 0.7s;
}

.time_1300 {
    animation-duration: 1.8s;
}

.time_1000 {
    animation-duration: 1s;
}

/* ===== Dark Mode Overrides for Custom Sections ===== */
.dark body {
    background: #1C2136;
}

.dark .signup-free,
.dark .support,
.dark .testimonials,
.dark .pricing,
.dark .contact,
.dark .blog,
.dark .footer {
    background: #1C2136;
    border-top-color: #2D2F40;
}

.dark .contact__container {
    background: transparent;
}

.dark .signup-free__container,
.dark .testimonials__card,
.dark .pricing__card,
.dark .contact__form-wrapper,
.dark .blog__card {
    background: #262B40;
    border-color: #2D2F40;
}

.dark .contact__form-wrapper {
    background: #181d31;
    border-color: #30364f;
    box-shadow: 0 24px 70px rgba(3, 7, 18, 0.22);
}

.dark .blog__card {
    border: 1px solid #2D2F40;
}

.dark .signup-free__title,
.dark .support__title,
.dark .faq-item__question,
.dark .faq-item__icon,
.dark .testimonials__title,
.dark .testimonials__card-name,
.dark .pricing__title,
.dark .pricing__currency,
.dark .pricing__amount,
.dark .pricing__pack-name,
.dark .pricing__feature,
.dark .contact__form-title,
.dark .contact__info-title,
.dark .contact__info-label,
.dark .blog__title,
.dark .blog__card-title,
.dark .footer__logo-text,
.dark .footer__contact-email,
.dark .footer__col-title {
    color: #ffffff;
}

.dark .pricing__feature--disabled {
    color: #6b7280;
}

.dark .signup-free__desc,
.dark .support__label,
.dark .support__link,
.dark .faq-item__answer p,
.dark .testimonials__desc,
.dark .testimonials__card-role,
.dark .testimonials__card-text,
.dark .pricing__desc,
.dark .pricing__period,
.dark .pricing__pack-desc,
.dark .contact__checkbox-label,
.dark .contact__info-text,
.dark .blog__desc,
.dark .blog__card-text,
.dark .footer__brand-desc,
.dark .footer__contact-label,
.dark .footer__link,
.dark .footer__newsletter-desc,
.dark .footer__bottom-link,
.dark .footer__copyright,
.dark .footer__social {
    color: #9ca3af;
}

.dark .support__link:hover,
.dark .footer__link:hover,
.dark .footer__bottom-link:hover,
.dark .footer__social:hover,
.dark .blog__card-title:hover {
    color: #ffffff;
}

.dark .testimonials__badge,
.dark .pricing__badge,
.dark .blog__badge {
    background: #262B40;
    color: #9ca3af;
    border: 1px solid #2D2F40;
}

.dark .faq-item,
.dark .faq-item__answer p,
.dark .pricing__card-bottom,
.dark .contact__input,
.dark .contact__textarea,
.dark .footer__bottom,
.dark .footer__newsletter-form {
    border-color: #2D2F40;
}

.dark .contact__input,
.dark .contact__textarea,
.dark .footer__newsletter-input {
    color: #ffffff;
    background: transparent;
}

.dark .contact__input::placeholder,
.dark .contact__textarea::placeholder,
.dark .footer__newsletter-input::placeholder {
    color: #9ca3af;
}

.dark .footer__newsletter-form {
    background: #262B40;
}

.dark .footer__newsletter-btn {
    color: #9ca3af;
}

.dark .footer__newsletter-btn:hover {
    color: #ffffff;
}

.dark .support__title-highlight::before {
    background-color: rgba(0, 107, 255, 0.25);
}

.dark .signup-free__btn {
    background-color: #ffffff;
    color: #181C31;
}

.dark .signup-free__btn:hover {
    background-color: #e5e7eb;
}

.dark .contact__submit-btn {
    background-color: #2d334d;
    color: #ffffff;
}

.dark .contact__submit-btn:hover {
    background-color: #343b59;
}

.dark .contact__checkbox {
    border-color: #3f4864;
    background-color: #3f4864;
}

.dark .contact__checkbox:checked {
    border-color: #006BFF;
    background-color: #006BFF;
}
