/* Landing page specific styles */

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero section */
.hero-section {
    min-height: 500px;
}

/* Value proposition icons */
.value-prop-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgb(219 234 254);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(37 99 235);
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Feature preview placeholder */
.feature-preview {
    background-color: rgb(229 231 235);
    border-radius: 0.5rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(107 114 128);
}

/* Carousel styles */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel navigation arrows - responsive positioning */
@media (max-width: 768px) {
    .carousel-container + button,
    .carousel-container ~ button {
        transform: translateY(-50%) translateX(0) !important;
    }
}

/* Lightbox styles */
#lightbox {
    backdrop-filter: blur(4px);
}

#lightbox img {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}

/* Carousel dot active state */
.carousel-dot.active {
    background-color: rgb(37 99 235);
}

/* Smooth image loading */
.carousel-slide img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.carousel-slide img[src=""] {
    opacity: 0;
}

/* Pricing card */
.pricing-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* B2B Landing Page - Pulsing badge dot */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pulse-dot {
    animation: pulse-dot 2s infinite;
}

/* Feature card hover effect */
.feature-card-b2b {
    transition: all 0.3s ease;
}

.feature-card-b2b:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
}

/* Timeline vertical line */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: #e5e7eb;
}
