/* 0092 - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111827;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gradient Backgrounds */
.gradient-hero {
    background: linear-gradient(160deg, #EEF2FF 0%, #E0E7FF 40%, #DBEAFE 100%);
}

.gradient-stats {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 40%, #2563EB 100%);
}

.gradient-cta {
    background: linear-gradient(135deg, #3730A3 0%, #4F46E5 40%, #2563EB 100%);
}

.gradient-nav {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -8px rgba(79, 70, 229, 0.4);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.55);
}

.btn-secondary {
    background: #ffffff;
    color: #374151;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #E5E7EB;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #4F46E5;
    color: #4F46E5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.1);
}

/* Cards */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.2);
    border-color: #C7D2FE;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-icon.shield {
    background: #EEF2FF;
    color: #4F46E5;
}

.feature-icon.bolt {
    background: #EFF6FF;
    color: #2563EB;
}

.feature-icon.trophy {
    background: #F5F3FF;
    color: #7C3AED;
}

/* Stats */
.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    color: #C7D2FE;
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

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

.stars {
    color: #F59E0B;
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

/* FAQ */
.faq-item {
    background: #F9FAFB;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    margin-bottom: 12px;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.faq-btn:hover {
    background: #F3F4F6;
}

.faq-btn i {
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.faq-btn.active i {
    transform: rotate(180deg);
    color: #4F46E5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 16px;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.nav-logo-text span {
    color: #4F46E5;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4F46E5;
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #374151;
    cursor: pointer;
}

/* Hero */
.hero-section {
    padding: 140px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4F46E5;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    border-radius: 24px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 480px;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge.left {
    bottom: -20px;
    left: -20px;
}

.floating-badge.right {
    top: -20px;
    right: -20px;
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

/* Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111827;
    margin: 12px 0 16px;
}

.section-desc {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

/* Footer */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    font-size: 20px;
}

.social-links a {
    color: #9CA3AF;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ffffff;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.store-btn {
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.2);
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn.ios {
    background: #ffffff;
    color: #4F46E5;
}

.store-btn.android {
    background: #1F2937;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero-section { padding: 120px 0 60px; }
    .section { padding: 60px 0; }
    .floating-badge { display: none; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 640px) {
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .store-btn { justify-content: center; }
}
