/* ================================================================
   CODERE ONLINE MX — Design System
   Brand: #00A859 (green), #121212 (dark), #F5F5F5 (light)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --green: #00A859;
    --green-lt: #00D470;
    --green-dk: #007A40;
    --dark: #0E0E0E;
    --dark2: #181818;
    --dark3: #222222;
    --card: #1C1C1C;
    --border: rgba(0, 168, 89, .18);
    --border2: rgba(255, 255, 255, .07);
    --text: #D4D4D4;
    --text-lt: #F0F0F0;
    --muted: #888;
    --white: #FFFFFF;
    --gold: #FFD000;
    --red: #FF3B3B;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4);
    --shadow-g: 0 0 30px rgba(0, 168, 89, .2);
    --trans: all .22s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--green-lt);
    text-decoration: none;
    transition: var(--trans);
}

a:hover {
    color: var(--white);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 9999;
    background: var(--green);
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--r-sm);
    transition: top .2s;
}

.skip-link:focus {
    top: 8px;
}

/* ─── LAYOUT ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-md {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 14, 14, .95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--green);
}

.header-wrap {
    display: flex;
    align-items: center;
    height: 62px;
    gap: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .03em;
    flex-shrink: 0;
    margin-right: 28px;
}

.logo-link img {
    width: 34px;
    height: 34px;
    border-radius: 4px;
}

.logo-co {
    color: var(--white);
}

.logo-dere {
    color: var(--green);
}

.site-nav {
    display: flex;
    gap: 2px;
    flex: 1;
}

.site-nav a {
    color: var(--text);
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: var(--r-sm);
    transition: var(--trans);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: rgba(0, 168, 89, .12);
}

.site-nav a.nav-live {
    color: var(--green-lt);
    position: relative;
}

.site-nav a.nav-live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: .85rem;
    padding: 9px 18px;
    border-radius: var(--r-sm);
    letter-spacing: .03em;
    white-space: nowrap;
    transition: var(--trans);
    margin-left: 12px;
    text-transform: uppercase;
}

.header-cta:hover {
    background: var(--green-lt);
    color: #000;
    transform: translateY(-1px);
}

/* burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-lt);
    border-radius: 2px;
    transition: var(--trans);
}

/* mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--dark2);
    border-bottom: 2px solid var(--green);
    padding: 12px 16px 16px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text);
    font-size: .95rem;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    border-bottom: 1px solid var(--border2);
}

.mobile-nav a:hover {
    color: var(--white);
    background: rgba(0, 168, 89, .1);
}

.mobile-cta {
    margin-top: 12px;
    background: var(--green);
    color: #000;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .8rem;
    color: var(--muted);
    padding: 10px 0 20px;
}

.breadcrumbs a {
    color: var(--green-lt);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .sep {
    color: var(--border2);
}

/* ─── HERO (homepage) ─── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .92) 45%, rgba(14, 14, 14, .3) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    padding: 70px 0 60px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green-lt);
    background: rgba(0, 168, 89, .1);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-h1 span {
    color: var(--green);
}

.hero-desc {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: var(--r-md);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: var(--trans);
}

.btn-primary:hover {
    background: var(--green-lt);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-g);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--green);
    color: var(--green-lt);
    font-weight: 600;
    font-size: .95rem;
    padding: 12px 22px;
    border-radius: var(--r-md);
    transition: var(--trans);
}

.btn-outline:hover {
    background: var(--green);
    color: #000;
}

/* Hero scorecard */
.hero-card {
    background: rgba(24, 24, 24, .9);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    backdrop-filter: blur(8px);
}

.hcard-title {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 18px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.rating-num {
    font-family: var(--font-head);
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-label {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 3px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crit-item {}

.crit-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.crit-name {
    font-size: .82rem;
    color: var(--text);
}

.crit-val {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
}

.crit-bar {
    height: 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: 99px;
    overflow: hidden;
}

.crit-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green-dk), var(--green-lt));
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--dark2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: var(--border2);
}

.stat-box {
    padding: 20px 24px;
    border-right: 1px solid var(--border2);
    text-align: center;
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.stat-text {
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* ─── SECTIONS ─── */
.section {
    padding: 64px 0;
}

.section-dark {
    background: var(--dark);
}

.section-card {
    background: var(--dark2);
}

.section-alt {
    background: var(--dark3);
}

.section-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--green-lt);
    margin-bottom: 10px;
}

.section-h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-h2 .accent {
    color: var(--green);
}

.section-lead {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.7;
    max-width: 620px;
}

/* ─── CARD GRIDS ─── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.grid-asym {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
}

.grid-asym-r {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: start;
}

/* ─── INFO CARD ─── */
.info-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r-md);
    padding: 24px;
    transition: var(--trans);
}

.info-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: rgba(0, 168, 89, .12);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.info-title {
    font-weight: 700;
    color: var(--text-lt);
    margin-bottom: 6px;
    font-size: .95rem;
}

.info-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── TABLES ─── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--r-md);
    border: 1px solid var(--border2);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

caption {
    caption-side: top;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green-lt);
    padding: 10px 16px;
    text-align: left;
    background: var(--dark3);
    border-bottom: 1px solid var(--border2);
}

thead th {
    background: var(--dark3);
    color: var(--green-lt);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--green);
}

tbody tr {
    border-bottom: 1px solid var(--border2);
    transition: background .12s;
}

tbody tr:hover {
    background: rgba(0, 168, 89, .04);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    padding: 11px 16px;
    color: var(--text);
}

.td-green {
    color: var(--green-lt);
    font-weight: 700;
}

.td-gold {
    color: var(--gold);
    font-weight: 600;
}

.td-red {
    color: var(--red);
}

.td-muted {
    color: var(--muted);
    font-size: .82rem;
}

.td-first {
    font-weight: 600;
    color: var(--text-lt);
}

.row-highlight {
    background: rgba(0, 168, 89, .06) !important;
}

.row-highlight td {
    color: var(--text-lt);
}

/* ─── CHART (CSS bar chart) ─── */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-row {
    display: grid;
    grid-template-columns: 160px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: .83rem;
    color: var(--text);
    text-align: right;
}

.bar-track {
    height: 14px;
    background: rgba(255, 255, 255, .06);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green-dk) 0%, var(--green-lt) 100%);
    transition: width 1s ease-out;
}

.bar-val {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
}

/* ─── DONUT CHART (SVG placeholder) ─── */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.donut-leg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text);
}

.donut-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── PROCESS STEPS ─── */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step;
}

.step-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    position: relative;
    padding-bottom: 28px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), transparent);
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 168, 89, .12);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
    counter-increment: step;
}

.step-body {}

.step-title {
    font-weight: 700;
    color: var(--text-lt);
    margin-bottom: 4px;
}

.step-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid var(--border2);
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--card);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    color: var(--text-lt);
    font-size: .93rem;
    font-weight: 600;
    text-align: left;
    transition: background .15s;
}

.faq-q:hover {
    background: rgba(0, 168, 89, .06);
}

.faq-q[aria-expanded="true"] {
    color: var(--green-lt);
}

.faq-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: transform .25s;
}

.faq-q[aria-expanded="true"] .faq-ico {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 20px;
}

.faq-a.open {
    max-height: 300px;
}

.faq-a p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    padding-bottom: 16px;
}

/* ─── BONUS BOX ─── */
.bonus-card {
    background: linear-gradient(135deg, #0E1E14, #162B1C);
    border: 1px solid rgba(0, 168, 89, .4);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(0, 168, 89, .12), transparent 60%);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin: 8px 0;
}

.bonus-up {
    font-size: .8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bonus-sub {
    color: var(--text);
    font-size: .9rem;
    margin: 8px 0 20px;
}

.bonus-terms {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 12px;
}

/* ─── AUTHOR ─── */
.author-box {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: start;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r-md);
    padding: 24px;
    margin-top: 36px;
}

.author-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
}

.author-tag {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green-lt);
    margin-bottom: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.author-bio {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── SEO CONTENT ─── */
.seo-block {}

.seo-block h2 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin: 32px 0 12px;
}

.seo-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-lt);
    margin: 22px 0 8px;
}

.seo-block p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-block .text-link {
    color: var(--green-lt);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-block .text-link:hover {
    color: var(--white);
}

/* ─── IMAGE BLOCKS ─── */
.img-frame {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border2);
    box-shadow: var(--shadow);
}

.img-frame img {
    width: 100%;
    object-fit: cover;
}

/* ─── BADGE / TAGS ─── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.badge-green {
    background: rgba(0, 168, 89, .14);
    color: var(--green-lt);
    border: 1px solid var(--border);
}

.badge-gold {
    background: rgba(255, 208, 0, .1);
    color: var(--gold);
    border: 1px solid rgba(255, 208, 0, .25);
}

.badge-red {
    background: rgba(255, 59, 59, .1);
    color: var(--red);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--dark2);
    border-top: 2px solid var(--green);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.7;
    margin-top: 10px;
    max-width: 260px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green-lt);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: .85rem;
    padding: 3px 0;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-legal {
    border-top: 1px solid var(--border2);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.footer-legal p {
    font-size: .75rem;
    color: var(--muted);
}

.footer-warning {
    background: rgba(255, 208, 0, .05);
    border: 1px solid rgba(255, 208, 0, .15);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    margin-bottom: 28px;
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── PAGE HERO (inner) ─── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--dark2);
    border-bottom: 2px solid var(--green);
    padding: 0;
}

.page-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    opacity: .4;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .9) 55%, rgba(14, 14, 14, .4) 100%);
    display: flex;
    align-items: center;
}

.page-hero-content {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.page-hero h1 span {
    color: var(--green);
}

.page-hero p {
    color: var(--text);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.7;
}

/* ─── CHECK LIST ─── */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
}

.check-item::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 168, 89, .15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: var(--green-lt);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item span {
    color: var(--muted);
    line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .site-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
        padding: 7px 11px;
        font-size: .72rem;
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 0 40px;
    }

    .hero-card {
        display: none;
    }

    .grid-2,
    .grid-asym,
    .grid-asym-r {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .author-box {
        grid-template-columns: 1fr;
    }

    .bar-row {
        grid-template-columns: 110px 1fr 40px;
    }

    .donut-wrap {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-img {
        height: 240px;
    }
}

@media (max-width:480px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section {
        padding: 44px 0;
    }
}