html {
    scroll-behavior: smooth;
}
[x-cloak] { display: none !important; }

.flip-card {
    perspective: 1000px;
    height: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-card-wrapper {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.faq-card-wrapper:hover {
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3), 0 10px 30px rgba(168, 85, 247, 0.3);
}

.faq-card-inner {
    background: #111827;
    border-radius: calc(0.5rem - 2px);
    overflow: hidden;
}

.faq-card-default {
    border: 1px solid #374151;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.faq-card-default:hover {
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.facts-section {
    background-color: #020617;
}

.facts-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.45), transparent 55%);
    filter: blur(40px);
    opacity: 0.8;
}

.facts-panel {
    background: rgba(10, 15, 35, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.8);
    overflow: hidden;
}

.facts-item {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
}

.facts-item:last-child {
    border-right: none;
}

@media (max-width: 640px) {
    .facts-item {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }
    
    .facts-item:last-child {
        border-bottom: none;
    }
}

.contact-section {
    position: relative;
    background-color: #010409;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.5), rgba(99,102,241,0.1) 60%, transparent);
    filter: blur(30px);
    opacity: 0.8;
}

.contact-input {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #f8fafc;
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
    font-weight: 300;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    outline: none;
}

.contact-button {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.contact-button:hover {
    opacity: 0.9;
}

.footer-section {
    background-color: #010409;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-link {
    color: #9ca3af;
    transition: color 0.2s ease;
    font-weight: 300;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #2563eb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

