/* ============================================
   LODOS.IO — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0b1e;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #6366f1, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.45);
}
.btn-ghost {
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.btn-ghost:hover { color: #e2e8f0; border-color: rgba(148, 163, 184, 0.4); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }
.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-white { background: #fff; color: #0a0b1e; }
.btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 11, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 0;
}
.navbar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover { color: #e2e8f0; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.2s;
}
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; }
.mobile-toggle { display: none; width: 28px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; }
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 24px 24px;
    background: rgba(10, 11, 30, 0.98);
    backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-link:hover { color: #e2e8f0; }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 32px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 13px; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 640px) {
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat strong { font-size: 24px; }
}

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section-header p { color: #94a3b8; font-size: 17px; max-width: 600px; margin: 0 auto; }

/* --- Category Tabs --- */
.category-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.category-tab {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
    cursor: pointer;
}
.category-tab:hover, .category-tab.active {
    color: #e2e8f0;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

/* --- Module Cards --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.module-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.module-card:hover::before { opacity: 1; }
.module-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}
.module-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.module-card .tagline {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}
.module-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.module-card .platforms {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}
.platform-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.05);
    color: #64748b;
}

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

/* --- Feature Highlights (Home) --- */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}
.feature-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

@media (max-width: 900px) { .features-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .features-row { grid-template-columns: 1fr; } }

/* --- Module Detail Page --- */
.module-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}
.module-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--module-gradient);
    opacity: 0.08;
}
.module-hero-inner { position: relative; z-index: 1; }
.module-hero .badge { margin-bottom: 20px; }
.module-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #fff;
}
.module-hero .desc {
    font-size: 18px;
    color: #94a3b8;
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.module-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.module-feature-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.2s;
}
.module-feature-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}
.module-feature-item span { font-size: 15px; color: #cbd5e1; line-height: 1.5; }
.module-cta {
    text-align: center;
    padding: 80px 0;
}
.module-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}
.module-cta p { color: #94a3b8; margin-bottom: 32px; font-size: 17px; }
.module-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Module nav (prev/next) */
.module-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.module-nav a {
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.2s;
    flex: 1;
    max-width: 300px;
}
.module-nav a:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.module-nav .label { font-size: 12px; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }
.module-nav .name { font-size: 16px; font-weight: 600; color: #e2e8f0; margin-top: 4px; }
.module-nav .next { text-align: right; margin-left: auto; }

@media (max-width: 640px) {
    .module-nav { flex-direction: column; }
    .module-nav a { max-width: 100%; }
    .module-nav .next { text-align: left; }
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}
.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.06);
    transform: scale(1.03);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 16px 0;
    line-height: 1;
}
.pricing-card .price span { font-size: 16px; font-weight: 400; color: #64748b; }
.pricing-card .price-desc { font-size: 14px; color: #64748b; margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #94a3b8;
}
.pricing-feature .check { color: #10b981; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* --- Download --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.download-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}
.download-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); transform: translateY(-4px); }
.download-icon { font-size: 48px; margin-bottom: 20px; }
.download-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.download-card p { font-size: 14px; color: #94a3b8; margin-bottom: 24px; }
.download-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

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

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}
.legal-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.legal-content .updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
}
.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 40px;
    margin-bottom: 16px;
}
.legal-content p, .legal-content li {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { list-style: disc; margin-bottom: 8px; }
.legal-content a { color: #818cf8; text-decoration: underline; }

/* --- About Page --- */
.about-hero { padding: 160px 0 60px; text-align: center; position: relative; }
.about-hero h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: #94a3b8; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
}
.about-value {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
}
.about-value h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.about-value p { font-size: 14px; color: #94a3b8; line-height: 1.7; }
@media (max-width: 768px) { .about-values { grid-template-columns: 1fr; } }

/* --- 404 --- */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.page-404 h1 { font-size: 120px; font-weight: 900; line-height: 1; }
.page-404 p { font-size: 18px; color: #94a3b8; margin: 16px 0 32px; }

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}
.footer-social a:hover { color: #e2e8f0; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #e2e8f0; margin-bottom: 16px; }
.footer-col a {
    display: block;
    font-size: 14px;
    color: #64748b;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: #475569;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.08));
    border-top: 1px solid rgba(99,102,241,0.15);
    border-bottom: 1px solid rgba(99,102,241,0.15);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: #94a3b8; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Scroll Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Extra Credits (Pricing) --- */
.credits-section { margin-top: 60px; text-align: center; }
.credits-section h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.credits-section > p { color: #94a3b8; margin-bottom: 32px; }
.credits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.credit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}
.credit-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.credit-card .amount { font-size: 28px; font-weight: 800; color: #fff; }
.credit-card .label { font-size: 13px; color: #64748b; margin: 4px 0 8px; }
.credit-card .price { font-size: 18px; font-weight: 700; color: #818cf8; }

@media (max-width: 640px) { .credits-grid { grid-template-columns: 1fr; max-width: 280px; } }

/* --- Store Badges (Download) --- */
.store-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}
.store-badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-badge svg { flex-shrink: 0; }

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #e2e8f0;
    font-family: inherit;
    transition: all 0.2s;
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #475569;
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: #0a0b1e; color: #e2e8f0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.04);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit { align-self: flex-start; }
.form-status {
    font-size: 14px;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s;
}
.form-status.success {
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}
.form-status.error {
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.2s;
}
.contact-info-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    margin-bottom: 14px;
}
.contact-info-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: #64748b; margin-bottom: 8px; }
.contact-link {
    font-size: 15px;
    font-weight: 600;
    color: #818cf8 !important;
    transition: color 0.2s;
}
.contact-link:hover { color: #a78bfa !important; }
.contact-detail { font-size: 15px; font-weight: 600; color: #cbd5e1; }
.contact-social { padding-top: 8px; }
.contact-social h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-bottom: 14px; }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { flex-direction: row; flex-wrap: wrap; }
    .contact-info-card { flex: 1; min-width: 200px; }
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .contact-info { flex-direction: column; }
    .contact-info-card { min-width: auto; }
    .contact-submit { width: 100%; }
}

/* --- Divider --- */
.divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0;
}
