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

/* tw-grid-cols-7 — injected manually, no rebuild needed */
.tw-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
@media (min-width: 640px) {
    .sm\:tw-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}


/* hero-grid: 58/42 split on lg+ */
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 58% 42%; }
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Tailwind CSS gradient variables (needed because @tailwind base is commented) */
*,
::before,
::after {
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.gradient-text {
    background: linear-gradient(90deg, #259FB5 0%, #2BA9A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #E5E7EB !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2BA9A7 !important;
}

.feature-card.active {
    background: linear-gradient(135deg, rgba(42, 169, 167, 0.1) 0%, rgba(37, 159, 181, 0.1) 100%);
    border: 3px solid #2BA9A7 !important;
}

.btn-primary {
    background: #FAAC18;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #E59A07;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 172, 24, 0.3);
}

.mockup-container {
    perspective: 1000px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg);
    }
}

.banner-top {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8px 0;
    text-align: center;
    color: white;
    font-size: 14px;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2BA9A7;
}

/* Dropdown Styles */
.dropdown-container:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

.dropdown-container:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Infinite Logo Carousel */
.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .logo-slide {
        gap: 60px;
        padding: 0 30px;
    }
}

.logo-item {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .logo-item {
        height: 60px;
    }
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* Loading Indicator */
.iframe-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
}

.iframe-loading.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(42, 169, 167, 0.2);
    border-top: 4px solid #2BA9A7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Partnership Carousel Navigation Arrows */
.partnership-prev,
.partnership-next {
    width: 40px !important;
    height: 40px !important;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partnership-prev:hover,
.partnership-next:hover {
    opacity: 1;
}

.partnership-prev:after,
.partnership-next:after {
    font-size: 16px !important;
    font-weight: bold;
    color: #333;
}

/* Features Carousel Navigation Arrows */
.features-prev,
.features-next {
    width: 40px !important;
    height: 40px !important;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.features-prev:hover,
.features-next:hover {
    opacity: 1;
}

.features-prev:after,
.features-next:after {
    font-size: 16px !important;
    font-weight: bold;
    color: #333;
}
