* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #01010F;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #EFF3FF;
}
h1, h2, h3, .font-display {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.glass-card {
    background: rgba(10, 20, 40, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 2rem;
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 45px -12px rgba(0, 90, 255, 0.25);
}
.btn-primary {
    background: linear-gradient(105deg, #2563FF 0%, #1E40AF 100%);
    box-shadow: 0 20px 35px -10px rgba(37,99,255,0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 28px 40px -12px rgba(37,99,255,0.5);
}
.service-card {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}
.service-card:hover {
    transform: translateY(-8px);
}
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: 0.05s linear;
}
@media (max-width: 768px) { .custom-cursor { display: none; } }

.process-step-card {
    background: rgba(8, 18, 36, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}
.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.6s ease;
}
.process-step-card:hover::before { left: 100%; }
.process-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 25px 40px -12px rgba(37, 99, 255, 0.3);
}
.step-number {
    background: linear-gradient(135deg, #1E40AF, #2563FF);
    box-shadow: 0 8px 20px -5px rgba(37, 99, 255, 0.4);
}
.badge-popular {
    background: rgba(37, 99, 255, 0.2);
    border: 1px solid rgba(37, 99, 255, 0.4);
    border-radius: 100px;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
}
details summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
}
details summary::-webkit-details-marker { display: none; }
details summary::before { content: '▶'; display: inline-block; margin-right: 12px; font-size: 12px; color: #2563FF; transition: transform 0.2s; }
details[open] summary::before { transform: rotate(90deg); }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.float-animation { animation: float 5s ease-in-out infinite; }
.testimonial-card { transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); border-color: #2563FF; }

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}
@media (max-width: 768px) {
    .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
}
/* Trust badge row */
.trust-badge-item {
    filter: grayscale(1) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}
.trust-badge-item:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
/* Mobile menu improvements */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}
.mobile-menu.active {
    transform: translateX(0);
}
@media (max-width: 768px) {
    .mobile-menu .text-2xl {
        font-size: 1.8rem;
        letter-spacing: -0.01em;
    }
}
/* Process section timeline connector (desktop) */
#process .relative .hidden.md\:block.absolute {
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% - 6rem);
    top: 3rem;
}

/* Process step staggered animation (add to GSAP if desired) */
.process-step {
    transition: all 0.3s ease;
}

/* Fix Swiper navigation buttons visibility */
.testimonial-swiper {
    padding: 0 2rem !important;
}
.swiper-button-prev,
.swiper-button-next {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(37, 99, 255, 0.6);
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
    color: white;
}
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #2563FF !important;
}
@media (max-width: 768px) {
    .testimonial-swiper {
        padding: 0 1rem !important;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 14px;
    }
}
.process-step {
    transition: all 0.3s ease;
}

/* Add sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    width: calc(100% - 40px);
    max-width: 280px;
    text-align: center;
}
@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}
/* Exit-intent modal (hidden by default) */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.exit-modal.active {
    display: flex;
}
.exit-modal-content {
    max-width: 450px;
    width: 90%;
    background: #0A1120;
    border: 1px solid rgba(37,99,255,0.5);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}
/* Recent activity toast */
.activity-toast {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: rgba(10,20,40,0.9);
    backdrop-filter: blur(8px);
    border-left: 4px solid #2563FF;
    border-radius: 12px;
    padding: 12px 20px;
    z-index: 1001;
    font-size: 14px;
    max-width: 280px;
    transform: translateX(-120%);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.activity-toast.show {
    transform: translateX(0);
}
/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,20,40,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(37,99,255,0.3);
    padding: 1rem;
    z-index: 1002;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.cookie-banner.active {
    display: flex;
}
@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
/* SVG icon styling */
svg {
    stroke: currentColor;
    fill: none;
    vertical-align: middle;
}
svg.fill-icon {
    fill: currentColor;
    stroke: none;
}
.icon-bg {
    background: rgba(37, 99, 255, 0.15);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
    }

    .sticky-cta {
        bottom: 20px;
    }
}