/* === BASE STYLES === */
body {
    font-family: 'Inter', sans-serif;
}

/* === GRADIENT EFFECTS === */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* === GLASS MORPHISM EFFECTS === */
.glass-effect-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === PRICING CARDS === */
.pricing-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* === HOVER EFFECTS === */
.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}

/* === PARTICLES.JS BACKGROUND === */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-hidden {
    transform: translateX(100%);
}

.mobile-menu-visible {
    transform: translateX(0);
}

/* === WORKFLOW ANIMATION === */
.workflow-line {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* === TOOLTIP SYSTEM === */
.info-tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted #667eea;
}

.info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    min-width: 230px;
    white-space: normal;
}

.info-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.info-tooltip:hover::after,
.info-tooltip:hover::before,
.info-tooltip:focus::after,
.info-tooltip:focus::before {
    opacity: 1;
    visibility: visible;
}

/* === BLOB ANIMATIONS === */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

/* === ANIMATION DELAYS === */
.animation-delay-1000 {
    animation-delay: 1s;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* === SVG DRAW ANIMATION === */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.animate-draw {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 2s ease-in-out forwards;
}

/* === SLIDESHOW COMPONENTS === */
.nav-dot.active {
    transform: scale(1.2);
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 768px) {
    .info-tooltip::after {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 280px;
        width: 280px;
    }

    .info-tooltip::before {
        display: none;
    }

    .slide h3 {
        font-size: 2.5rem !important;
    }

    .slide p {
        font-size: 1.1rem !important;
    }
}

/* === ACCORDION STYLES === */
.accordion-item.accordion-active {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.accordion-header:hover .accordion-chevron i {
    color: #667eea;
}

.accordion-content {
    transition: max-height 0.3s ease-in-out;
}