@keyframes typing {
    0%, 60%, 100% { opacity: 0.4; }
    30% { opacity: 1; }
}

@keyframes marquee-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes slide-up {
    from { 
        transform: translateY(30px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

@keyframes scale-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes counterBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float-social {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseMood {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes slideUpModal {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-scroll::-webkit-scrollbar {
    width: 4px;
}

.chat-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.chat-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.chat-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.typing-dots {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #64748b;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.glass {
    backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.message-bubble {
    animation: fade-in 0.3s ease-out;
}

.perspective-1000 {
    perspective: 1000px;
}

.preserve-3d {
    transform-style: preserve-3d;
}

.backface-hidden {
    backface-visibility: hidden;
}

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

.animate-marquee-left {
    animation: marquee-left 35s linear infinite;
}

.animate-marquee-right {
    animation: marquee-right 35s linear infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay-2 {
    animation: float 6s ease-in-out infinite -2s;
}

.animate-float-delay-4 {
    animation: float 6s ease-in-out infinite -4s;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite -2s;
}

.animate-scale-in {
    animation: scale-in 0.5s ease-out;
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

.animate-pulse-ring {
    animation: pulse-ring 2s infinite;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }

[data-aos="fade-up-custom"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="scale-in-custom"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="scale-in-custom"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="slide-right-custom"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="slide-right-custom"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-left-custom"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="slide-left-custom"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1335CD, #f59e0b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #1335CD);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: white;
    color: #1335CD;
    border: 2px solid #1335CD;
}

.btn-secondary:hover {
    background: #1335CD;
    color: white;
}

.btn-financial {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-financial:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-success-story {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s ease;
}

.btn-success-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-success-story:hover::before {
    left: 100%;
}

.btn-success-story:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-start {
    transition: all 0.2s ease;
}

.btn-start:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.checklist-item {
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    transform: translateX(4px);
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-bar {
    transition: width 1s ease-in-out;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1335CD;
    transition: width 0.3s ease;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.dropdown-menu {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    transform: translateY(0);
}

.timeline-item {
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 24px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, #e2e8f0, transparent);
}

.platform-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}

.feature-item.active .feature-content {
    max-height: 300px;
}

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

.feature-item.active .feature-toggle {
    transform: rotate(180deg);
}

.feature-item.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

.modal-overlay {
    backdrop-filter: blur(4px);
}

.social-float {
    animation: float-social 4s ease-in-out infinite;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

.financial-input {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.financial-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 53, 205, 0.15);
}

.health-score-ring {
    transition: stroke-dasharray 1s ease-in-out;
}

.kpi-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.kpi-primary {
    background: linear-gradient(135deg, #1335CD 0%, #0f2a9e 100%);
}

.kpi-accent {
    background: linear-gradient(135deg, #fdc500 0%, #d97706 100%);
}

.kpi-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.financial-table tr:hover {
    background: linear-gradient(135deg, rgba(19, 53, 205, 0.02) 0%, rgba(253, 197, 0, 0.02) 100%);
    transform: translateX(2px);
    transition: all 0.2s ease;
}

.mobile-menu-financial {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
}

.currency-input {
    font-family: 'Inter', 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.health-badge-excellent {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.health-badge-good {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.health-badge-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.health-badge-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-card.flipped:hover {
    transform: scale(1.05);
}

.filter-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    box-shadow: 0 4px 15px rgba(19, 53, 205, 0.3);
    transform: translateY(-2px);
}

.story-category-kuliner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.story-category-jasa {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.story-category-retail {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.story-category-digital {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.featured-story-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.success-metric {
    transition: all 0.3s ease;
}

.success-metric:hover {
    transform: translateY(-2px) scale(1.05);
}

.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(19, 53, 205, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating .fas.fa-star {
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--star-index) * 0.1s);
    transition: all 0.2s ease;
}

.star-rating .fas.fa-star:hover {
    transform: scale(1.1);
}

.counter-animate {
    display: inline-block;
    transition: transform 0.3s ease;
}

.counter-animate.counting {
    animation: counterBounce 0.6s ease-out;
}

.lesson-item {
    transition: all 0.3s ease;
    position: relative;
}

.lesson-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, rgba(19, 53, 205, 0.05) 0%, rgba(253, 197, 0, 0.05) 100%);
    transition: width 0.3s ease;
    border-radius: 12px;
}

.lesson-item:hover::before {
    width: 100%;
}

.lesson-item:hover {
    transform: translateX(8px);
}

.cta-floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-floating-elements::before,
.cta-floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-floating-elements::before {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: -2s;
}

.cta-floating-elements::after {
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-delay: -4s;
}

.stories-loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.stories-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1335CD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.material-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-card: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);
}

.pulse-mood {
    animation: pulseMood 2s infinite;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-element-delay-2 {
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
}

.mood-btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.mood-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mood-btn.active {
    border-color: #1335CD;
    background: rgba(14, 165, 233, 0.05);
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.badge-animation {
    animation: badgePulse 2s ease-in-out infinite;
}

.mood-btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-start:focus {
    outline: 2px solid #1335CD;
    outline-offset: 2px;
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1335CD, #fdc500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 9999;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #1335CD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.notification {
    position: fixed;
    top: 20px;
    right: 0px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1335CD;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
}

.notification.error {
    border-left-color: #ef4444;
}

.notification.warning {
    border-left-color: #f59e0b;
}

.text-primary {
    color: #1335CD;
}

html.scroll-smooth {
    scroll-behavior: smooth;
}

.hero-bg {
    background: linear-gradient(135deg, #0369a1 0%, #1335CD 100%);
}

.contact-input {
    transition: all 0.3s ease;
}

.contact-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.1);
}

.contact-input.border-red-500 {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-input.border-emerald-500 {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.social-btn {
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #1335CD;
    transition: all 0.3s ease;
}

.contact-input:focus + .form-icon {
    color: #0ea5e9;
    transform: translateY(-50%) scale(1.1);
}

.contact-info-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1335CD, #0ea5e9);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    margin-right: 12px;
}

textarea.contact-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox:checked {
    background: #1335CD;
    border-color: #1335CD;
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-bottom: 0;
    border-radius: 0;
}

.video-container.fullscreen iframe {
    border-radius: 0;
}

.course-item {
    transition: all 0.3s ease;
}

.course-item:hover {
    transform: translateY(-2px);
}

.course-item.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgb(34, 197, 94);
}

.course-item.current {
    background: rgba(19, 53, 205, 0.1);
    border-color: #1335CD;
    border-width: 2px;
}

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.share-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: slideUpModal 0.3s ease;
}

@media (max-width: 768px) {
    .sidebar-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .step-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .card-hover:hover {
        transform: translateY(-4px);
    }
    
    .feature-content {
        transition: max-height 0.3s ease-in-out;
    }
    
    .feature-item.active .feature-content {
        max-height: 200px;
    }
    
    .financial-input {
        font-size: 16px;
    }
    
    .kpi-card {
        min-height: 120px;
    }
    
    .financial-table {
        font-size: 0.75rem;
    }
    
    .flip-card {
        height: auto;
        min-height: 300px;
    }
    
    .flip-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .featured-story-card:hover {
        transform: translateY(-4px);
    }
    
    .testimonial-card:hover {
        transform: translateY(-3px);
    }
    
    .material-card:hover {
        transform: translateY(-2px);
    }
    
    .mood-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .grid.sm\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid.grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-bg {
        background: linear-gradient(135deg, #0369a1 0%, #1335CD 100%);
        background-attachment: scroll;
    }
    
    .platform-card {
        margin: 0 4px;
    }
    
    .contact-input {
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 16px 16px;
    }
    
    .map-container {
        margin: 0 -16px;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .course-item:hover {
        transform: translateY(-1px);
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media print {
    .no-print {
        display: none !important;
    }
    
    .step-card,
    .material-card {
        break-inside: avoid;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
}

@media (prefers-contrast: high) {
    .glass {
        background: rgba(255, 255, 255, 1);
        border: 2px solid #000;
    }
    
    .platform-card {
        border: 2px solid #000;
        background: white;
    }
    
    .contact-input {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-element,
    .floating-element-delay,
    .floating-element-delay-2 {
        animation: none;
    }
    
    .contact-input,
    .faq-toggle,
    .contact-info-card {
        transition: none;
    }
    
    .shake {
        animation: none;
        border-color: #ef4444 !important;
    }
}