:root {
    --red: #e61e2a;
    --red-light: #ff3b3b;
    --red-pale: #fff0f0;
    --bg: #fafafa;
    --bg-section: #ffffff;
    --bg-alt: #fff5f5;
    --text: #1a1a1a;
    --text-muted: #555555;
    --border: #f0d0d0;
    --card-bg: #ffffff;
    --shadow: rgba(230, 30, 42, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background-color: var(--bg); color: var(--text); line-height: 1.6; }

/* ── HEADER ── */
header {
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(230,30,42,0.08);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text);
    letter-spacing: -1px;
    cursor: pointer;
}
.logo span { color: var(--red); }

.header-install-btn {
    background: var(--red);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: 2px solid var(--red);
}
.header-install-btn:hover {
    background: transparent;
    color: var(--red);
}

/* ── HERO ── */
.hero {
    padding: 90px 5% 80px;
    text-align: center;
    background: linear-gradient(160deg, #fff0f0 0%, #fafafa 60%, #fff8f8 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,30,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -1px;
    position: relative;
}
.hero h1 span { color: var(--red); }

.hero p {
    color: var(--text-muted);
    max-width: 740px;
    margin: 0 auto 34px;
    font-size: 1.1rem;
    position: relative;
}

.btn-cta {
    background: var(--red);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(230,30,42,0.25);
    position: relative;
}
.btn-cta:hover {
    background: #c0101b;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230,30,42,0.35);
}

/* ── SECTION TITLES ── */
.section-title {
    text-align: center;
    margin: 0 0 40px;
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text);
}
.section-title span { color: var(--red); }

/* ── CONTAINERS ── */
.container {
    padding: 60px 5%;
}
.container.alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── GRID CARDS ── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--card-bg);
    padding: 38px 32px;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    transition: 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}
.card-icon {
    width: 54px; height: 54px;
    background: var(--red-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card-icon i {
    font-size: 1.5rem;
    color: var(--red);
}
.card h3 {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}
.card p { color: var(--text-muted); font-size: 0.97rem; }

/* ── SUPPORT BAR ── */
.support-bar {
    background: #ffffff;
    padding: 60px 5%;
    text-align: center;
    border-top: 2px solid var(--border);
}

.contact-info {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    background: var(--red-pale);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    transition: 0.3s;
}
.contact-info a:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.social-icons a {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--red-pale);
    border: 1.5px solid var(--border);
    color: var(--red);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px var(--shadow);
}

/* ── FOOTER ── */
footer {
    padding: 28px 5%;
    text-align: center;
    background: var(--bg);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.82rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    transition: 0.2s;
    cursor: pointer;
}
.footer-links a:hover { color: var(--red); }

/* ── PRIVACY POLICY SPECIFIC ── */
.privacy-page-container {
    padding: 20px;
}
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.2s;
    cursor: pointer;
}
.back-home:hover { color: #c0101b; }

.privacy-container {
    max-width: 900px;
    margin: auto;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px var(--shadow);
}

.privacy-header {
    background: linear-gradient(135deg, var(--red), #b30010);
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
}
.privacy-header h1 { font-size: 38px; margin-bottom: 10px; font-weight: 900; }
.privacy-header p { font-size: 15px; color: #ffe0e0; }

.privacy-content { padding: 35px 30px; }

.privacy-section { margin-bottom: 35px; }

.privacy-section h2 {
    color: var(--red);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 5px solid var(--red);
    padding-left: 12px;
    background: var(--red-pale);
    padding: 10px 10px 10px 15px;
    border-radius: 0 8px 8px 0;
}

.privacy-section p { color: var(--text-muted); font-size: 16px; }

.privacy-content ul { margin-top: 15px; padding-left: 25px; }
.privacy-content ul li {
    margin-bottom: 10px;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid #f5e5e5;
}
.privacy-content ul li:last-child { border-bottom: none; }

.delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    background: var(--red);
    color: #ffffff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px var(--shadow);
}
.delete-btn:hover {
    background: #c0101b;
    transform: scale(1.03);
}

.privacy-footer {
    background: var(--red-pale);
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid var(--border);
}
.privacy-footer h3 { color: var(--red); margin-bottom: 12px; font-size: 20px; }
.privacy-footer p { margin: 8px 0; color: var(--text-muted); }
.privacy-footer a { color: var(--red); text-decoration: none; font-weight: 600; }
.privacy-footer a:hover { text-decoration: underline; }
.copyright { margin-top: 20px; color: #999; font-size: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .hero { padding: 60px 5% 50px; }
    .logo { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .privacy-header h1 { font-size: 28px; }
    .privacy-section h2 { font-size: 18px; }
    .privacy-content { padding: 25px 18px; }
}
