@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --bg-deep: #edf1f8;
    --text: #0b1324;
    --muted: #5a6476;
    --accent: #6aa8ff;
    --accent-2: #6aa8ff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #f0f6ff, #f7f9fc 45%, #eef1f7 100%);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 80px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(47, 107, 255, 0.2);
}

.nav-links {
    display: flex;
    gap: 18px;
    font-weight: 600;
    color: var(--muted);
}

.nav-links a.active {
    color: var(--text);
}

.lang-switch {
    display: flex;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 6px;
    border-radius: 999px;
    backdrop-filter: blur(14px);
}

.lang-switch a {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    color: var(--muted);
}

.lang-switch a.active {
    background: #fff;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 32px;
    padding: 32px 0 48px;
}

.hero-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 107, 255, 0.1);
    color: var(--accent);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    background: var(--text);
    color: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.button.secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid #e2e8f0;
}

.hero-visual {
    display: grid;
    gap: 16px;
}

.glass-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 12px;
}

.section {
    margin-top: 48px;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.list {
    display: grid;
    gap: 10px;
    color: var(--muted);
    list-style: none;
    padding-left: 0;
}

.footer {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

.footer a {
    color: var(--text);
    font-weight: 600;
}

.page-title {
    padding: 20px 0 24px;
}

.page-title h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.page-title p {
    color: var(--muted);
    line-height: 1.6;
}

.policy {
    display: grid;
    gap: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.policy h2 {
    font-size: 20px;
    color: var(--text);
}

.policy ul {
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.12), rgba(0, 198, 167, 0.12));
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(47, 107, 255, 0.2);
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
