/* ── Reset & Base ─────────────────────────────────────────────── */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #4361ee;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Layout ──────────────────────────────────────────────────── */

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Landing Hero ────────────────────────────────────────────── */

.hero {
    text-align: center;
    padding: 80px 0 48px;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero .tagline {
    font-size: 1.15rem;
    color: #555;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* ── Features ────────────────────────────────────────────────── */

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.feature {
    background: #f7f7fb;
    border-radius: 12px;
    padding: 24px;
}

.feature .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

/* ── Store Buttons ───────────────────────────────────────────── */

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: #1a1a2e;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s;
}

.store-btn:hover {
    background: #2d2d4a;
    text-decoration: none;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.store-btn .label-small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    line-height: 1;
}

.store-btn .label-big {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

/* ── Footer ──────────────────────────────────────────────────── */

footer {
    border-top: 1px solid #eee;
    padding: 32px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: #888;
}

footer a:hover {
    color: #4361ee;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

/* ── Privacy Policy Page ─────────────────────────────────────── */

.page-header {
    padding: 48px 0 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
}

.page-header .subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-top: 8px;
}

.page-content {
    padding-bottom: 64px;
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 12px;
    color: #1a1a2e;
}

.page-content p,
.page-content ul {
    margin-bottom: 16px;
    color: #444;
}

.page-content ul {
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 6px;
}

.back-link {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.lang-switcher {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.lang-switcher .lang-active {
    color: #1a1a2e;
    font-weight: 600;
}

/* ── Delete Account Page ─────────────────────────────────────── */

.deletion-option {
    background: #f7f7fb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.deletion-option h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.delete-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    background: #e63946;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 8px;
    transition: background 0.2s;
}

.delete-btn:hover {
    background: #c1121f;
    text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 560px) {
    .hero {
        padding: 56px 0 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
