/* ========== CSS RESET & VARIABLES ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #020617;
    --bg: #030712;
    --bg-elevated: #0a1628;
    --bg-card: #0f172a;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --accent-light: #34d399;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --bug: #ef4444;
    --feature: #8b5cf6;
    --improve: #06b6d4;
    --custom: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========== BACKGROUND CANVAS ========== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 12px 0;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.95) 0%, rgba(10, 22, 40, 0.92) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 8px 14px 8px 8px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    background: rgba(59, 130, 246, 0.08);
}

.logo-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary) 0deg, var(--accent) 90deg, var(--primary-light) 180deg, var(--primary) 360deg);
    opacity: 0.6;
    animation: logoRingSpin 8s linear infinite;
    filter: blur(2px);
}

.logo-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg);
    border-radius: 50%;
}

@keyframes logoRingSpin {
    to { transform: rotate(360deg); }
}

.logo-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0;
    animation: logoPulse 3s ease-out infinite;
}

@keyframes logoPulse {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(1.4); }
}

.logo-icon {
    display: block;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.navbar-logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.08);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.04em;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--text);
    background: rgba(59, 130, 246, 0.1);
}

.nav-icon {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.navbar-link:hover .nav-icon {
    opacity: 1;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 160px 40px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 12px;
    font-style: italic;
}

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

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 100px;
    position: relative;
    z-index: 1;
}

/* ========== SECTION STYLES ========== */
.section {
    margin-bottom: 60px;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge.bug-badge {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.section-badge.feature-badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: #a78bfa;
}

.section-badge.improve-badge {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.25);
    color: #22d3ee;
}

.section-badge.custom-badge {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 20%, rgba(59, 130, 246, 0.5) 50%, rgba(59, 130, 246, 0.3) 80%, transparent 100%);
}

.divider-glow {
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15), transparent 70%);
    filter: blur(20px);
    position: absolute;
}

/* ========== QUICK CONTACT CARDS ========== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.quick-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.email-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.email-card:hover .quick-card-icon {
    background: rgba(59, 130, 246, 0.2);
}

.phone-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.phone-card .quick-card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-light);
}

.phone-card:hover .quick-card-icon {
    background: rgba(16, 185, 129, 0.2);
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.whatsapp-card .quick-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.whatsapp-card:hover .quick-card-icon {
    background: rgba(37, 211, 102, 0.2);
}

.quick-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quick-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.quick-card-arrow {
    color: var(--text-dim);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.quick-card:hover .quick-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========== CONTACT FORMS ========== */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.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='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-bug {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-bug:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.btn-feature {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-improve {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

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

.btn-custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== SOCIAL SECTION ========== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.social-handle {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Social Card Colors */
.social-card.github:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-card.github .social-icon {
    color: #fff;
}

.social-card.linkedin:hover {
    border-color: rgba(0, 119, 181, 0.4);
}

.social-card.linkedin .social-icon {
    color: #0077b5;
}

.social-card.twitter:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.social-card.twitter .social-icon {
    color: #fff;
}

.social-card.facebook:hover {
    border-color: rgba(24, 119, 242, 0.4);
}

.social-card.facebook .social-icon {
    color: #1877f2;
}

.social-card.youtube:hover {
    border-color: rgba(255, 0, 0, 0.4);
}

.social-card.youtube .social-icon {
    color: #ff0000;
}

.social-card.instagram:hover {
    border-color: rgba(225, 48, 108, 0.4);
}

.social-card.instagram .social-icon {
    color: #e1306c;
}

/* ========== QUICK NAVIGATION ========== */
.quick-nav {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
}

.quick-nav-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.quick-nav-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.quick-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-chip:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.nav-chip.bug {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.nav-chip.bug:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

.nav-chip.feature {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.nav-chip.feature:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.nav-chip.improve {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.nav-chip.improve:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
}

.nav-chip.custom {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.nav-chip.custom:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 60px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-name {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links .separator {
    margin: 0 12px;
    color: var(--text-dim);
    opacity: 0.4;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-container {
        padding: 12px 16px;
    }

    .logo-tagline {
        display: none;
    }

    .navbar-menu {
        gap: 4px;
        padding: 4px;
    }

    .navbar-link {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .navbar-link span {
        display: none;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .main-content {
        padding: 0 24px 80px;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-divider {
        margin: 60px 0;
    }

    .quick-nav {
        padding: 30px 20px;
    }

    .quick-nav-links {
        gap: 8px;
    }

    .nav-chip {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        padding: 50px 24px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 10px 12px;
    }

    .logo-wrapper {
        width: 36px;
        height: 36px;
    }

    .logo-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .navbar-link {
        padding: 8px 12px;
    }

    .nav-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 110px 20px 50px;
    }

    .main-content {
        padding: 0 20px 60px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Google Play Dropdown Styles */
.google-play-dropdown {
    position: relative;
}

.google-play-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.google-play-btn:hover {
    background: linear-gradient(135deg, #00e676, #69f0ae);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.google-play-btn .dropdown-arrow {
    transition: transform 0.3s ease;
}

.google-play-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.play-store-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.google-play-dropdown.active .play-store-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.play-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.play-store-link:hover {
    background: rgba(0, 200, 83, 0.2);
}

.store-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #00c853;
}


/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== IMPACT TIERS ========== */
.impact-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 50px 0;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}
}

.store-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #00c853;
}


/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
.play-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.play-store-link:hover {
    background: rgba(0, 200, 83, 0.2);
}

.store-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #00c853;
}


/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
