:root {
    --primary: #2C6FB7;
    --primary-light: #4A90E2;
    --primary-dark: #1A4D8C;
    --accent: #20B2AA;
    --accent-light: #38D3C9;

    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;

    --text-dark: #1E293B;
    --text: #475569;
    --text-light: #64748B;

    --border: #E2E8F0;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

    --gradient-blue: linear-gradient(135deg, var(--primary), var(--primary-light));

    --radius: 16px;
    --transition: all 0.3s ease;
    --focus-ring: 0 0 0 4px rgba(74, 144, 226, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1025px) {
    section { padding: 100px 0; }
}

h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

p {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 860px;
    margin-bottom: 60px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 650;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    letter-spacing: 0.01em;
    max-width: 100%;
    white-space: normal;
}

.btn-primary {
    background-color: #2C6FB7;
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
    box-shadow: none;
}
.btn-tertiary:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

a:focus-visible, button:focus-visible {
    outline: none;
            box-shadow: var(--focus-ring);
            border-radius: 12px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 18px;
        }

        .nav-links {
            display: flex;
            gap: 26px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 800;
            transition: var(--transition);
            padding: 8px 0;
            font-size: 0.98rem;
            white-space: nowrap;
        }

        .nav-links a:hover { color: var(--primary); }

        .nav-links .btn-primary {
            padding: 12px 22px;
            font-size: 0.95rem;
            margin-left: 6px;
            color: #fff !important;
            font-weight: 650;
        }

        .mobile-actions { display: none; align-items: center; gap: 10px; }

        .btn-cta-compact {
            padding: 10px 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #2C6FB7;
            background: var(--gradient-blue);
            color: #fff;
            box-shadow: var(--shadow-sm);
            max-width: 100%;
            white-space: normal;
        }

        .hamburger {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .hamburger:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

        .mobile-drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.45);
            z-index: 1200;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: min(420px, 92vw);
            height: 100vh;
            background: var(--bg-white);
            z-index: 1300;
            transform: translateX(100%);
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            border-left: 1px solid var(--border);
            display: flex;
            flex-direction: column;
        }

        .mobile-drawer.open { transform: translateX(0); }

        .drawer-header {
            padding: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
        }

        .drawer-title { font-weight: 900; color: var(--text-dark); }

        .drawer-close {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-white);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .drawer-close:hover { box-shadow: var(--shadow); transform: translateY(-1px); }

        .drawer-body { padding: 18px; overflow: auto; }

        .drawer-links { display: grid; gap: 12px; }

        .drawer-links a {
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: 14px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);
        }

        .drawer-links a:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        .drawer-cta { margin-top: 18px; display: grid; gap: 10px; }
        .drawer-cta .btn { width: 100%; }


footer {
    background: var(--bg-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 900;
}

.footer-links ul { list-style: none; padding-left: 0px}
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: var(--text); text-decoration: none; transition: var(--transition); font-weight: 700; }
.footer-links a:hover { color: var(--primary); }

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 700;
}


.store-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.store-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.store-badge i { color: var(--primary); }

@media (max-width: 480px) {
    .store-row { flex-wrap: nowrap; }
    .store-badge { padding: 9px 10px; font-size: 0.92rem; }
}




@media (max-width: 768px) {
        .footer-grid { grid-template-columns: 1fr; gap: 40px; }
        .footer-links { padding-top: 20px; border-top: 1px solid var(--border); }
        .footer-links ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
        }
        .footer-links li { margin-bottom: 0; }
    }

@media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .nav-links { gap: 18px; }
        }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .mobile-actions { display: inline-flex; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }

        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .logo img {
                max-width: 200px;
            }
            .btn-cta-compact {
                padding: 10px 10px
            }
            .mobile-actions {
                gap: 6px;
                padding-left: 6px;
            }
            .container {
                padding: 0 16px;
            }
        }


        @media (prefers-reduced-motion: reduce) {
            * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
        }
