* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a2332;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

img {
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(26, 35, 50, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 100px;

}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a2332, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-footer {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    padding: 2rem 0 1rem;
    text-align: center;
    background: linear-gradient(135deg, #1a2332 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

/* Features Section */
.features {
    padding: 0 0 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #fbbf24);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-1 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-2 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.icon-3 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.icon-4 { background: linear-gradient(135deg, #10b981, #047857); }
.icon-5 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-6 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.icon-7 { background: linear-gradient(135deg, #06d6a0, #028a5a); }
.icon-8 { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2332;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #1a2332;
    color: #e2e8f0;
    padding: 1rem 0 0;
    text-align: center;
}

.footer-content {
    border-bottom: 1px solid #334155;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0rem;
}

.footer-text {
    color: #94a3b8;
    padding-bottom: 1rem;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: float-up linear infinite;
}

.particle-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, rgba(6, 182, 212, 0.2) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.particle-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.2) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.particle-yellow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, rgba(251, 191, 36, 0.2) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(1);
    }
    95% {
        opacity: 1;
        transform: translateY(-20vh) translateX(var(--random-x)) rotate(340deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30vh) translateX(var(--random-x)) rotate(360deg) scale(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.particle.pulse {
    animation: float-up linear infinite, pulse 3s ease-in-out infinite;
}

/* Reduce particles on mobile */
@media (max-width: 768px) {
    .particle {
        animation-duration: 15s !important;
    }
}

.stats {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}
/* FAQ Tabs (scoped) */
.faq-tabs { max-width: 800px; margin: 0 auto; }
.faq-tabs .faq-tab-list { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.faq-tabs .faq-tab {
    background: linear-gradient(135deg, #f1f5f9 60%, #e0e7ef 100%);
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    position: relative;
}
.faq-tabs .faq-tab:hover {
    background: linear-gradient(135deg, #e0e7ef 60%, #bae6fd 100%);
    color: #2563eb;
}
.faq-tabs .faq-tab.active, .faq-tabs .faq-tab:focus {
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    color: #fff;
    outline: none;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
    z-index: 1;
}
.faq-tabs .faq-tab-content { display: none; }
.faq-tabs .faq-tab-content.active { display: block; }
.faq-tabs .faq-accordion details { border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 0.75rem; background: #fff; box-shadow: 0 1px 4px #e2e8f0; overflow: hidden; transition: box-shadow 0.2s; }
.faq-tabs .faq-accordion details[open] { box-shadow: 0 2px 8px #cbd5e1; }
.faq-tabs .faq-accordion summary { font-weight: 600; cursor: pointer; padding: 1rem 1.25rem; background: #f1f5f9; color: #1a2332; outline: none; border: none; font-size: 1.08rem; transition: background 0.2s; }
.faq-tabs .faq-accordion details[open] summary {
    background: linear-gradient(90deg, #bae6fd 0%, #a5b4fc 100%);
    color: #2563eb;
    font-weight: 700;
    box-shadow: 0 2px 8px #cbd5e1;
}
.faq-tabs .faq-accordion details div { padding: 0.75rem 1.25rem 1rem 1.25rem; color: #334155; font-size: 0.98rem; }
@media (max-width: 600px) { .faq-tabs .faq-tab-list { flex-direction: column; gap: 0.25rem; } .faq-tabs .faq-tab { width: 100%; border-radius: 6px; } }
