@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}


.gradient-border-button {
    min-width: 300px;
    padding: 10px 24px;
    border: 3px solid transparent;
    border-radius: 13px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90.05deg, #0065f2, #e13019) border-box;
    font-weight: 600;
}

@media (max-width: 640px) {
    .gradient-border-button {
        padding: 8px 12px;
        /* smaller padding for mobile */
        min-width: 230px;
        /* optional: slightly reduce button width */
    }
}



.custom-gradient-text {
    background: linear-gradient(to right, #0065F2, #E13019);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.bg-radial-blobs {
    background: radial-gradient(circle at 20% 90%,
            rgba(225, 48, 25, 0.7) 0%,
            transparent 40%),
        radial-gradient(circle at 80% 30%,
            rgba(0, 101, 242, 0.7) 0%,
            transparent 40%);
    background-color: white;
    background-repeat: no-repeat;
    background-size: 40% 100%, 40% 100%;
    background-position: left bottom, right top;
}

@media (max-width: 768px) {
    .bg-radial-blobs {
        background:
            radial-gradient(circle at bottom left,
                rgba(225, 48, 25, 0.4) 0%,
                transparent 70%),
            radial-gradient(circle at 80% 30%,
                rgba(0, 101, 242, 0.3) 0%,
                transparent 70%),
            radial-gradient(circle at bottom right,
                rgb(248, 248, 248) 0%,
                transparent 60%),
            radial-gradient(circle at top left,
                rgb(255, 255, 255) 0%,
                transparent 60%);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom left, top right, bottom right, top left;
        background-blend-mode: screen;
    }
}



.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.pricing-card {
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 26px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6;
}

.checkmark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.rotate-180 {
    transform: rotate(180deg);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.feature-image {
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Responsive improvements */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 2.25rem;
        /* or use Tailwind: text-4xl sm:text-5xl */
        font-weight: 800;
        line-height: 1.2;
    }


    .feature-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.25rem;
        /* or use Tailwind: text-4xl sm:text-5xl */
        font-weight: 800;
        line-height: 1.2;
    }

    .feature-title {
        font-size: 3rem;
    }
}

@media (min-width: 769px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.25rem;
        /* or use Tailwind: text-4xl sm:text-5xl */
        font-weight: 800;
        line-height: 1.2;
    }

    .feature-title {
        font-size: 3.5rem;
    }
}

.custom-button-gradient {
    background: linear-gradient(270deg, #1B5FDA 0%, #E13019 106.1%);
}

.custom-button-gradient:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}


@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
        font-weight: 700;
        line-height: 83px;
    }

    .section-title {
        font-size: 2.25rem;
        /* or use Tailwind: text-4xl sm:text-5xl */
        font-weight: 800;
        line-height: 1.2;
    }

    .feature-title {
        font-size: 4rem;
    }
}

.custom-button {
    width: 100%;
    max-width: 217.21px;
    height: 46px;
    background: #E13019;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: linear-gradient(to right, #0065f2, #e13019);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .custom-button {
        font-size: 12px;
    }
}

.custom-contact {
    width: 100%;
    max-width: 147.8px;
    height: 56px;
    background: #E13019;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-contact:hover {
    background: linear-gradient(to right, #0065f2, #e13019);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .custom-contact {
        width: 150px;
        height: 46px;
    }
}

.custom-demo {
    max-width: 300px;
    height: 46px;
    background: #E13019;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    /* ensures text inside is perfectly centered */
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-demo:hover {
    background: linear-gradient(to right, #0065f2, #e13019);
    transform: scale(1.05);
}



.custom-card {

    width: 419px;
    height: 276px;
    background: #ffffff;
    border: 2px solid #DFE5EA;
    border-radius: 26px;
}

.custom-price {
    width: 100%;
    max-width: 265.62px;
    height: 57px;
    background: #0065F2;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-price:hover {
    background: rgb(3, 3, 178);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .custom-price {
        font-size: 14px;
    }
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


.card {
    position: absolute;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.35s ease-in-out;
    will-change: transform, opacity;
    width: 90%;
    max-width: 330px;
    user-select: none;
    cursor: pointer;
}

/* Active card → taller */
.active {
    transform: scale(1.05) translateX(0);
    height: 210px;
    z-index: 10;
}

.prev {
    transform: scale(0.95) translateX(-40px);
    z-index: 5;
    clip-path: inset(0 90% 0 0);
    height: 200px;
}

.next {
    transform: scale(0.95) translateX(40px);
    z-index: 5;
    clip-path: inset(0 0 0 90%);
    height: 200px;
}

/* Inactive (hidden completely) */
.hidden-card {
    opacity: 0;
    transform: scale(0.8);
    z-index: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer.opening,
.faq-answer.open {
    opacity: 1;
    transform: translateY(0);
}