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

:root {
    --brand:     #8f0661;
    --brand-alt: #c40878;
    --accent:    #f2a300;
    --ink:       #0f1720;
    --muted:     #5a6676;
    --line:      #e7ecf2;
    --bg:        #f8f9fb;
    --white:     #ffffff;
    --radius:    14px;
    --shadow:    0 8px 32px rgba(16,24,40,.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== SITE HEADER ===== */
.site-header {
    background: var(--brand);
    color: #fff;
    padding: 14px 0;
    text-align: center;
    letter-spacing: .04em;
    font-size: 14px;
}
.site-header__logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .08em;
    color: #fff;
    text-decoration: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-alt) 100%);
    color: #fff;
    padding: 60px 20px 50px;
    text-align: center;
}
.page-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.page-hero__title {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 14px;
}
.page-hero__sub {
    font-size: 16px;
    opacity: .82;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== CONTENT WRAP ===== */
.content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* ===== ARTICLE CARD ===== */
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px 52px;
}
@media (max-width: 600px) {
    .article-card { padding: 28px 20px; }
}

/* ===== TYPOGRAPHY ===== */
.article-card h2 {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--brand);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--line);
}
.article-card h2:first-child { margin-top: 0; }

.article-card h3 {
    font-size: 18px;
    color: var(--ink);
    margin: 22px 0 8px;
}

.article-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.article-card ul,
.article-card ol {
    padding-left: 22px;
    color: var(--muted);
    margin-bottom: 14px;
}
.article-card li { margin-bottom: 6px; }

.article-card strong { color: var(--ink); }

/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
}
.info-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 22px 20px;
    border-left: 4px solid var(--brand);
}
.info-card__icon { font-size: 28px; margin-bottom: 10px; }
.info-card__title { font-weight: 800; color: var(--ink); margin-bottom: 6px; font-size: 15px; }
.info-card__body { color: var(--muted); font-size: 14px; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, #fff5e6 0%, #fff9f0 100%);
    border: 2px solid #f2a300;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 24px 0;
}
.highlight-box p { color: var(--ink); margin: 0; }

/* ===== TABLE ===== */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.styled-table th {
    background: var(--brand);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}
.styled-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}
.styled-table tr:nth-child(even) td { background: #f8f9fb; }

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 13px;
}
.badge--green { background: #2ecc71; color: #fff; }
.badge--red   { background: #e74c3c; color: #fff; }

/* ===== STEPS ===== */
.steps { counter-reset: step; margin: 20px 0; }
.step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.step__num {
    counter-increment: step;
    flex-shrink: 0;
    width: 42px; height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}
.step__num::before { content: counter(step); }
.step__body { padding-top: 8px; }
.step__title { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.step__text  { color: var(--muted); font-size: 15px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(15,23,32,.96);
    color: #fff;
    z-index: 999;
    padding: 18px 24px;
    backdrop-filter: blur(6px);
}
.cookie-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: #ccd3db; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept,
.cookie-decline {
    padding: 9px 22px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: opacity .2s;
}
.cookie-accept  { background: var(--brand); color: #fff; }
.cookie-decline { background: transparent; color: #8a95a4; border: 1px solid #3a4454; }
.cookie-accept:hover, .cookie-decline:hover { opacity: .85; }

/* ===== FOOTER ===== */
.footer {
    background: #0f1720;
    color: #8a95a4;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}
.footer .container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-content { grid-template-columns: 1fr; gap: 28px; }
}
.footer-about h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: .06em;
}
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-legal a {
    color: #8a95a4;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.footer-nav a:hover, .footer-legal a:hover { color: #fff; }
.footer-contact p { font-size: 14px; margin-bottom: 8px; }
.footer-divider { border: none; border-top: 1px solid #1e2b3a; margin-bottom: 24px; }
.footer-bottom { text-align: center; }
.footer-copyright { font-size: 13px; }

/* Deco glows */
.footer-deco-glow-1 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143,6,97,.25) 0%, transparent 70%);
    top: -100px; right: -80px;
    pointer-events: none;
}
.footer-deco-glow-2 {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,163,0,.12) 0%, transparent 70%);
    bottom: -60px; left: 10%;
    pointer-events: none;
}
