:root {
    /* Fondos (tema oscuro) */
    --cz-bg:          #1E1E2D;
    --cz-bg-soft:     #26263A;
    --cz-surface:     #2C2C44;
    --cz-surface-2:   #343452;
    --cz-deep:        #16161F;

    /* Acento / CTA */
    --cz-orange:      #FFAF36;
    --cz-orange-hover:#F59E0B;
    --cz-orange-soft: #FFC76B;

    /* Texto */
    --cz-text:        #EDEEF5;
    --cz-text-muted:  #9CA0B8;
    --cz-line:        #3A3A55;

    /* Servicio */
    --cz-star:        #FFAF36;
    --cz-ok:          #3DD68C;
    --cz-bad:         #FF6B6B;
    --cz-link:        #FFC76B;

    --cz-font-h: 'Sora', sans-serif;
    --cz-font-b: 'Inter', sans-serif;
    --cz-radius: 14px;
    --cz-stack: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

h2[id], h3[id], section[id] { scroll-margin-top: 90px; }
@media (max-width: 768px) {
    h2[id], h3[id], section[id] { scroll-margin-top: 72px; }
}

body {
    font-family: var(--cz-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cz-text);
    background: var(--cz-bg);
    background-image:
        radial-gradient(1100px 560px at 82% -8%, rgba(255,175,54,0.10), transparent 60%),
        radial-gradient(760px 480px at -8% 8%, rgba(255,175,54,0.05), transparent 60%);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--cz-link); text-decoration: none; transition: color .18s; }
a:hover { color: var(--cz-orange); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--cz-font-h); color: var(--cz-text); }
h1, h2, h3, h4, p { margin-top: 0; margin-bottom: var(--cz-stack); }
h1 { font-size: 2.25rem;  line-height: 1.2;  font-weight: 800; }
h2 { font-size: 1.75rem;  line-height: 1.3;  font-weight: 700; }
h3 { font-size: 1.375rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1.125rem; line-height: 1.4;  font-weight: 600; }
p, li { font-size: 1rem; line-height: 1.6; }

/* ===== Container & sections ===== */
.cz-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.cz-section { padding: 48px 0; }
.cz-section--soft { background: var(--cz-bg-soft); }
.cz-section.cz-section--inner-single { padding: 40px 0; }
.cz-section--toc { padding: 24px 0 8px; }

/* ===== Buttons ===== */
.cz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--cz-font-h);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .12s;
    white-space: nowrap;
}
.cz-btn--primary {
    background: var(--cz-orange);
    color: #16161F;
    box-shadow: 0 8px 22px rgba(255,175,54,0.30);
}
.cz-btn--primary:hover { background: var(--cz-orange-hover); color: #16161F; }
.cz-btn--primary:active { transform: translateY(1px); }
.cz-btn--secondary {
    background: transparent;
    color: var(--cz-orange);
    border: 1.5px solid var(--cz-orange);
}
.cz-btn--secondary:hover { background: rgba(255,175,54,0.12); color: var(--cz-orange-soft); }
.cz-btn--lg { padding: 14px 26px; font-size: 15px; }
.cz-btn--full { width: 100%; }

/* ===== Badge & chip ===== */
.cz-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--cz-font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,175,54,0.14);
    color: var(--cz-orange-soft);
    border: 1px solid rgba(255,175,54,0.32);
}
.cz-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255,175,54,0.12);
    color: var(--cz-orange-soft);
    border: 1px solid rgba(255,175,54,0.28);
}

/* ===== Header ===== */
.cz-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(22,22,31,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cz-line);
    height: 76px;
    display: flex;
    align-items: center;
}
.cz-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.cz-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.cz-logo img { height: 38px; width: auto; display: block; }

.cz-nav { flex: 1; display: flex; justify-content: center; }
.cz-nav__list { display: flex; gap: 26px; }
.cz-nav__link {
    position: relative;
    font-family: var(--cz-font-h);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cz-text);
    padding: 8px 0;
    transition: color .18s;
}
.cz-nav__link:hover, .cz-nav__link.cz-nav--active { color: var(--cz-orange); }
.cz-nav__link:hover::after, .cz-nav__link.cz-nav--active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--cz-orange);
    border-radius: 2px;
}
.cz-header__cta { display: flex; gap: 12px; align-items: center; }

.cz-burger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.cz-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--cz-text);
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}
body.cz-nav--open .cz-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.cz-nav--open .cz-burger span:nth-child(2) { opacity: 0; }
body.cz-nav--open .cz-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile overlay ===== */
.cz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22,22,31,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
body.cz-nav--open .cz-overlay { opacity: 1; transform: scale(1); pointer-events: auto; }
body.cz-nav--open { overflow: hidden; }
.cz-overlay__close { position: absolute; top: 20px; right: 20px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.cz-overlay__nav ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.cz-overlay__nav a {
    font-family: var(--cz-font-h);
    font-weight: 700;
    font-size: 24px;
    color: var(--cz-text);
    letter-spacing: 0.03em;
}
.cz-overlay__nav a:hover { color: var(--cz-orange); }
.cz-overlay__cta { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; gap: 12px; }
.cz-overlay__cta .cz-btn { flex: 1 1 50%; }

/* ===== Hero ===== */
.cz-hero {
    background: linear-gradient(180deg, #1E1E2D 0%, #26263A 55%, #2C2C44 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.cz-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cz-hero__text { max-width: 580px; }
.cz-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 18px 0 18px;
}
.cz-hero__bonus {
    font-family: var(--cz-font-h);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 8px 0 4px;
    color: var(--cz-text);
}
.cz-hero__bonus-num { color: var(--cz-orange); }
.cz-hero__bonus-sub { font-size: 18px; color: var(--cz-text-muted); margin: 0 0 16px; }
.cz-hero__lead { color: var(--cz-text-muted); font-size: 16px; margin: 0 0 22px; max-width: 560px; }
.cz-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.cz-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.cz-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(255,175,54,0.10);
    color: var(--cz-orange-soft);
    border: 1px solid rgba(255,175,54,0.22);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.cz-trust--tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.cz-trust--tiles > li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255,175,54,0.08);
    border: 1px solid rgba(255,175,54,0.22);
    color: var(--cz-text);
}
.cz-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,175,54,0.16);
    color: var(--cz-orange);
}
.cz-trust__icon svg { width: 18px; height: 18px; display: block; }
.cz-trust__label { font-size: 13px; font-weight: 600; line-height: 1.2; }
@media (max-width: 520px) {
    .cz-trust--tiles { grid-template-columns: 1fr; }
}
.cz-hero__disclaimer { font-size: 13px; color: var(--cz-text-muted); margin: 6px 0 0; }

.cz-hero__media { position: relative; display: flex; justify-content: flex-end; }
.cz-hero__image {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid var(--cz-line);
    overflow: hidden;
    line-height: 0;
    background: var(--cz-surface);
}
.cz-hero__photo { display: block; width: 100%; max-width: 750px; height: auto; vertical-align: top; }

/* Placeholder media (no images yet — blank template) */
.cz-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, var(--cz-surface) 0%, var(--cz-surface-2) 100%);
    color: var(--cz-text-muted);
    font-family: var(--cz-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}
.cz-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,175,54,0.16), transparent 60%);
    pointer-events: none;
}
.cz-ph__label { position: relative; z-index: 1; padding: 12px; }
.cz-hero__image .cz-ph { aspect-ratio: 16 / 11; line-height: 1.5; }

/* compact hero (inner pages) */
.cz-hero--compact { padding: 48px 0; }
.cz-hero__inner--compact { grid-template-columns: 1fr; gap: 12px; }
.cz-hero__title--compact { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 8px 0 0; }

.cz-breadcrumbs { font-size: 14px; color: var(--cz-text-muted); }
.cz-breadcrumbs a { color: var(--cz-link); }
.cz-breadcrumbs__sep { margin: 0 6px; color: var(--cz-text-muted); }

/* rating block on es-fiable hero */
.cz-hero__score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 8px;
}
.cz-hero__score-num { font-family: var(--cz-font-h); font-weight: 800; font-size: 2.4rem; color: var(--cz-orange); line-height: 1; }
.cz-hero__score-max { color: var(--cz-text-muted); font-size: 1rem; }
.cz-hero__score-stars { color: var(--cz-star); font-size: 18px; letter-spacing: 2px; }
.cz-hero__score-label { font-size: 13px; color: var(--cz-text-muted); }

/* ===== Slots ===== */
.cz-slots { padding: 24px 0 28px; background: var(--cz-bg); }
.cz-hero + .cz-slots { padding-top: 16px; }
.cz-slots__heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--cz-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cz-text-muted);
}
.cz-slots__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
}
.cz-slots__card {
    display: block;
    border-radius: var(--cz-radius);
    overflow: hidden;
    border: 1px solid var(--cz-line);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
a.cz-slots__card:hover, a.cz-slots__card:focus { color: inherit; text-decoration: none; }
.cz-slots__card:focus-visible { border-color: var(--cz-orange); box-shadow: 0 0 0 2px rgba(255,175,54,0.35); }
.cz-slots__card:hover { border-color: rgba(255,175,54,0.65); transform: translateY(-2px); }
.cz-slots__media {
    display: block;
    position: relative;
    aspect-ratio: 232 / 174;
    background: var(--cz-surface);
}
.cz-slots__media img { width: 100%; height: 100%; object-fit: cover; }
.cz-slots__overlay {
    position: absolute;
    inset: 0;
    background: rgba(22,22,31,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.cz-slots__card:hover .cz-slots__overlay,
.cz-slots__card:focus-visible .cz-slots__overlay { opacity: 1; }
.cz-slots__play { display: flex; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)); }

/* ===== TOC ===== */
.cz-toc {
    position: relative;
    background: var(--cz-surface);
    border: 1px solid rgba(255,175,54,0.28);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.cz-toc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--cz-orange); }
.cz-toc summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-family: var(--cz-font-h);
    font-size: 18px;
    font-weight: 700;
    color: var(--cz-text);
}
.cz-toc summary::-webkit-details-marker { display: none; }
.cz-toc summary::after { content: "\25BE"; color: var(--cz-orange); transition: transform .2s; font-size: 16px; line-height: 1; }
.cz-toc[open] summary::after { transform: rotate(180deg); }
.cz-toc[open] .cz-toc__list { margin-top: 14px; }
.cz-toc__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; counter-reset: toc; }
.cz-toc__list li { break-inside: avoid; margin-bottom: 10px; padding-left: 2px; counter-increment: toc; }
.cz-toc__list li::before { content: counter(toc) ". "; color: var(--cz-orange); font-weight: 700; margin-right: 6px; }
.cz-toc__list a { color: var(--cz-text); text-decoration: none; transition: color 0.2s ease; }
.cz-toc__list a:hover { color: var(--cz-orange); }

/* ===== Facts table ===== */
.cz-facts { margin-top: 10px; margin-bottom: 10px; }
.cz-facts__scroll {
    overflow-x: auto;
    border-radius: var(--cz-radius);
    border: 1px solid var(--cz-line);
    scrollbar-width: thin;
    scrollbar-color: var(--cz-orange) var(--cz-surface);
}
.cz-facts__scroll::-webkit-scrollbar { height: 8px; }
.cz-facts__scroll::-webkit-scrollbar-track { background: var(--cz-surface); }
.cz-facts__scroll::-webkit-scrollbar-thumb { background: var(--cz-orange); border-radius: 4px; }
.cz-facts__table { width: 100%; min-width: 620px; border-collapse: collapse; }
.cz-facts__table thead { background: var(--cz-bg-soft); }
.cz-facts__table thead th {
    text-align: left;
    padding: 14px 20px;
    font-family: var(--cz-font-h);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cz-orange-soft);
    font-weight: 700;
}
.cz-facts__table tbody tr:nth-child(odd)  { background: var(--cz-surface); }
.cz-facts__table tbody tr:nth-child(even) { background: var(--cz-bg-soft); }
.cz-facts__table tbody td, .cz-facts__table tbody th {
    padding: 14px 20px;
    border-top: 1px solid var(--cz-line);
    color: var(--cz-text);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}
.cz-facts__table tbody th { color: var(--cz-text-muted); font-weight: 600; width: 38%; }

/* ===== Prose ===== */
.cz-prose { font-size: 1rem; line-height: 1.6; color: var(--cz-text); }
.cz-prose p { margin: 0 0 var(--cz-stack); }
.cz-prose ul, .cz-prose ol { margin: 0 0 var(--cz-stack); padding-left: 1.5em; }
.cz-prose ul { list-style: disc; }
.cz-prose ol { list-style: decimal; }
.cz-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.cz-prose li:last-child { margin-bottom: 0; }
.cz-prose h2 { margin-top: 2.5rem; }
.cz-prose h3 { margin-top: 1.75rem; }
.cz-prose h4 { margin-top: 1.5rem; }
.cz-prose > :first-child { margin-top: 0; }
.cz-prose a { color: var(--cz-link); text-decoration: underline; text-decoration-color: rgba(255,199,107,0.4); }
.cz-prose a:hover { text-decoration: none; }
.cz-prose a.cz-btn { text-decoration: none; }
.cz-prose a.cz-btn--primary, .cz-prose a.cz-btn--primary:hover, .cz-prose a.cz-btn--primary:focus { color: #16161F; }
.cz-prose a.cz-btn--secondary, .cz-prose a.cz-btn--secondary:hover, .cz-prose a.cz-btn--secondary:focus { color: var(--cz-orange); }
.cz-prose img { max-width: min(750px, 100%); height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.cz-prose figure { display: block; width: min(100%, 750px); max-width: min(750px, 100%); margin: 1.5rem auto; box-sizing: border-box; }
.cz-prose figure .cz-ph { aspect-ratio: 16 / 9; border-radius: 8px; border: 1px solid var(--cz-line); }
.cz-prose figcaption { font-size: 0.875rem; color: var(--cz-text-muted); margin-top: 0.5rem; text-align: center; }
.cz-prose blockquote {
    margin: 0 0 var(--cz-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--cz-orange);
    background: rgba(255,175,54,0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--cz-text);
}
.cz-prose blockquote p:last-child { margin-bottom: 0; }
.cz-prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-bottom: 10px; }
.cz-prose th, .cz-prose td { padding: 12px 14px; border: 1px solid var(--cz-line); text-align: left; vertical-align: top; color: var(--cz-text); }
.cz-prose th { background: var(--cz-bg-soft); font-weight: 600; color: var(--cz-orange-soft); }
.cz-prose tbody tr:nth-child(even) td { background: var(--cz-surface); }
.cz-prose tbody tr:nth-child(odd) td { background: var(--cz-bg-soft); }
@media (max-width: 640px) {
    .cz-prose { font-size: 0.95rem; }
    .cz-prose table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ===== Info box (security note) ===== */
.cz-note {
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-left: 4px solid var(--cz-orange);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin: 1.5rem 0;
}
.cz-note h4 { margin: 0 0 8px; color: var(--cz-orange-soft); }
.cz-note p:last-child { margin-bottom: 0; }

/* ===== Pros / Cons ===== */
.cz-pc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 1.5rem 0; }
.cz-pc__col { background: var(--cz-surface); border: 1px solid var(--cz-line); border-radius: 12px; padding: 22px; }
.cz-pc__col--pros { border-top: 3px solid var(--cz-ok); }
.cz-pc__col--cons { border-top: 3px solid var(--cz-bad); }
.cz-pc__title { font-family: var(--cz-font-h); font-size: 1.125rem; font-weight: 700; margin: 0 0 14px; }
.cz-pc__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cz-pc__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--cz-text); }
.cz-pc__mark { flex-shrink: 0; font-weight: 800; }
.cz-pc__col--pros .cz-pc__mark { color: var(--cz-ok); }
.cz-pc__col--cons .cz-pc__mark { color: var(--cz-bad); }

/* ===== CTA banner ===== */
.cz-cta-banner {
    background: linear-gradient(135deg, #26263A 0%, #2C2C44 60%, #26263A 100%);
    border: 1px solid var(--cz-line);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cz-cta-banner__glow1 { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,175,54,0.16); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cz-cta-banner__glow2 { position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; background: rgba(255,175,54,0.10); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cz-cta-banner h2 { font-family: var(--cz-font-h); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin: 0 0 14px; line-height: 1.15; position: relative; }
.cz-cta-banner h2 span { color: var(--cz-orange); }
.cz-cta-banner__lead { color: var(--cz-text-muted); font-size: 17px; max-width: 540px; margin: 0 auto 26px; line-height: 1.55; position: relative; }
.cz-cta-banner__note { color: var(--cz-text-muted); font-size: 12px; margin: 14px 0 0; position: relative; }
.cz-cta-banner__note a { color: var(--cz-text-muted); text-decoration: underline; }

/* ===== Voices (reviews slider) ===== */
.cz-voices { position: relative; }
.cz-voices__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.cz-voices__track::-webkit-scrollbar { display: none; }
.cz-voice {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cz-voice__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cz-voice__stars { display: flex; gap: 2px; color: var(--cz-star); letter-spacing: 1px; }
.cz-voice__title { font-size: 16px; font-weight: 700; margin: 2px 0 0; font-family: var(--cz-font-h); }
.cz-voice__body { color: var(--cz-text-muted); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.cz-voice__foot { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--cz-text-muted); border-top: 1px solid var(--cz-line); padding-top: 10px; }
.cz-voice__name { color: var(--cz-text); font-weight: 600; }
.cz-voice__country {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(255,175,54,0.12);
    color: var(--cz-orange-soft);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
}
.cz-voices__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.cz-voices__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--cz-orange);
    color: var(--cz-orange);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s, opacity .18s, color .18s;
}
.cz-voices__arrow:hover { background: rgba(255,175,54,0.12); }
.cz-voices__arrow[disabled] { opacity: .35; cursor: not-allowed; }

/* ===== FAQ ===== */
.cz-faq { display: flex; flex-direction: column; gap: 14px; }
.cz-faq__item {
    position: relative;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cz-faq__item::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: background .25s ease;
}
.cz-faq__item.is-active { background: var(--cz-bg-soft); border-color: var(--cz-orange); box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
.cz-faq__item.is-active::before { background: var(--cz-orange); }
.cz-faq__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 22px;
    text-align: left;
    cursor: pointer;
    color: var(--cz-text);
    font: inherit;
}
.cz-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(255,175,54,0.14);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background .25s ease;
}
.cz-faq__icon svg { width: 18px; height: 18px; max-width: none; flex-shrink: 0; transition: transform .35s cubic-bezier(0.4,0,0.2,1); color: var(--cz-orange); }
.cz-faq__item.is-active .cz-faq__icon { background: var(--cz-orange); }
.cz-faq__item.is-active .cz-faq__icon svg { transform: rotate(180deg); color: #16161F; }
.cz-faq__item.is-active .cz-faq__icon svg path { stroke: #16161F; }
.cz-faq__head h3.cz-faq__q, h3.cz-faq__q {
    font-family: var(--cz-font-h);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cz-text);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.cz-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.4,0,0.2,1); }
.cz-faq__item.is-active .cz-faq__a { max-height: 2400px; }
.cz-faq__a > div { padding: 4px 22px 20px calc(22px + 32px + 14px); color: var(--cz-text-muted); font-size: 15px; line-height: 1.65; }
.cz-faq__a p { margin: 0; color: inherit; }

/* ===== Author block ===== */
.cz-author-strip {
    background: var(--cz-surface);
    border-top: 1px solid var(--cz-line);
    padding: 24px 0 0;
    margin-top: 24px;
}
.cz-author-strip + .cz-wave-divider { margin-top: 0; }
.cz-author-strip__box { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.cz-author-card { display: flex; flex-direction: row; align-items: center; gap: 24px; flex-wrap: wrap; }
.cz-author-card__media {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cz-line);
    width: 120px; height: 120px;
    aspect-ratio: 1;
    box-shadow: 0 4px 24px rgba(255,175,54,0.12);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.cz-author-card__media:hover { border-color: var(--cz-orange); box-shadow: 0 6px 28px rgba(255,175,54,0.22); }
.cz-author-card__img-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--cz-surface-2); }
.cz-author-card__img-wrap .cz-ph { width: 100%; height: 100%; font-size: 11px; }
.cz-author-card__text { flex: 1 1 240px; min-width: 0; }
.cz-author-card__name { font-family: var(--cz-font-h); font-size: 1.25rem; font-weight: 700; color: var(--cz-text); margin: 0 0 6px; }
.cz-author-card__role { font-size: 0.9375rem; color: var(--cz-orange-soft); margin: 0 0 10px; font-weight: 600; }
.cz-author-card__bio { font-size: 0.9375rem; color: var(--cz-text-muted); line-height: 1.6; margin: 0 0 12px; }
.cz-author-card__profile { display: inline-block; font-size: 0.9375rem; font-weight: 600; color: var(--cz-link); border-bottom: 1px solid transparent; transition: color 0.18s, border-color 0.18s; }
.cz-author-card__profile:hover { color: var(--cz-orange); border-bottom-color: var(--cz-orange); }
@media (max-width: 600px) {
    .cz-author-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .cz-author-strip__box { padding: 0 20px; }
}

/* ===== Wave divider ===== */
.cz-wave-divider { position: relative; width: 100%; height: 70px; line-height: 0; margin-top: 40px; }
.cz-wave-divider svg { width: 100%; height: 100%; display: block; }

/* ===== Footer ===== */
.cz-footer { background: var(--cz-deep); color: var(--cz-text-muted); padding: 48px 0 28px; }
.cz-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.cz-footer__top { display: grid; grid-template-columns: 1.2fr 2.8fr; gap: 40px; }
.cz-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.cz-footer__about { margin: 14px 0 16px; max-width: 360px; font-size: 14px; color: var(--cz-text-muted); line-height: 1.6; }
.cz-social { display: flex; gap: 10px; }
.cz-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    color: var(--cz-text-muted);
    transition: color .18s, border-color .18s, background .18s;
}
.cz-social a:hover { color: var(--cz-orange); border-color: var(--cz-orange); background: rgba(255,175,54,0.08); }
.cz-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.cz-footer__title { font-family: var(--cz-font-h); color: var(--cz-text); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-weight: 700; }
.cz-footer__col ul li { margin-bottom: 8px; font-size: 14px; }
.cz-footer__col a { color: var(--cz-text-muted); }
.cz-footer__col a:hover { color: var(--cz-orange); }
.cz-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cz-footer__divider { height: 1px; background: var(--cz-line); margin: 32px 0 18px; }
.cz-footer__bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; flex-direction: column; }
.cz-footer__copy { font-size: 13px; color: var(--cz-text-muted); margin: 0; }
.cz-footer__disclaimer { font-size: 12px; color: var(--cz-text-muted); margin: 0; max-width: 900px; line-height: 1.55; }

/* ===== 404 ===== */
.cz-404 { text-align: center; min-height: 56vh; }
.cz-404__inner { justify-items: center; grid-template-columns: 1fr; }
.cz-404__code { font-family: var(--cz-font-h); font-weight: 800; font-size: clamp(4rem, 10vw, 8rem); line-height: 1; color: var(--cz-orange); margin: 0; text-shadow: 0 6px 30px rgba(255,175,54,0.3); }
.cz-404__text { color: var(--cz-text-muted); margin: 0 0 24px; }

/* ===== Contact form ===== */
.cz-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 1.5rem 0; }
.cz-form label { font-size: 14px; font-weight: 600; color: var(--cz-text); margin-bottom: 4px; display: block; }
.cz-form input, .cz-form textarea {
    width: 100%;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--cz-text);
    font-family: var(--cz-font-b);
    font-size: 15px;
}
.cz-form input:focus, .cz-form textarea:focus { outline: none; border-color: var(--cz-orange); box-shadow: 0 0 0 2px rgba(255,175,54,0.25); }
.cz-form textarea { min-height: 130px; resize: vertical; }

/* ===== Responsive ===== */
@media (max-width: 1279px) {
    .cz-hero__inner:not(.cz-hero__inner--compact) { grid-template-columns: 1fr; }
    .cz-hero__media { justify-content: center; }
    .cz-hero__image, .cz-hero__photo { max-width: 100%; }
    .cz-voice { flex: 0 0 calc(50% - 10px); }
    .cz-footer__top { grid-template-columns: 1fr; }
    .cz-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .cz-hero { padding: 52px 0; }
    .cz-hero__title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }
    .cz-slots__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .cz-nav, .cz-header__cta { display: none; }
    .cz-burger { display: flex; }
    .cz-container { padding: 0 20px; }
    .cz-section { padding: 32px 0; }
    .cz-pc { grid-template-columns: 1fr; }
    .cz-voice { flex: 0 0 86%; min-width: 280px; }
    .cz-voices__nav { justify-content: center; }
    .cz-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .cz-footer__inner { padding: 0 20px; }
    .cz-toc__list { columns: 1; }
    .cz-facts__table tbody th { width: 45%; }
    .cz-hero__inner { padding: 0 20px; }
    .cz-cta-banner { padding: 36px 22px; }
}

@media (max-width: 520px) {
    .cz-slots { padding: 20px 0 24px; }
    .cz-slots__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .cz-slots__play svg { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .cz-footer__cols { grid-template-columns: 1fr; }
    .cz-hero__actions { flex-direction: column; align-items: stretch; }
    .cz-hero__actions .cz-btn { width: 100%; }
    .cz-faq__head { padding: 16px 18px; }
    .cz-faq__a > div { padding: 4px 18px 18px calc(18px + 32px + 14px); }
}

/* =====================================================================
   COOLZINO VARIANT — playful floating-cards hero, boxed-card TOC,
   rich slot hover, author quote card, author topics, footer newsletter
   ===================================================================== */

/* ----- A. Hero floating cards ----- */
.cz-hero__cards {
    position: relative;
    width: 100%;
    min-height: 360px;
    max-width: 520px;
}
.cz-hero__float {
    position: absolute;
    width: 46%;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    border: 1px solid rgba(255,175,54,0.40);
    background: linear-gradient(150deg, var(--cz-surface) 0%, var(--cz-surface-2) 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,0.38);
    overflow: hidden;
    line-height: 0;
}
.cz-hero__float .cz-ph { width: 100%; height: 100%; aspect-ratio: auto; line-height: 1.4; font-size: 12px; }
.cz-hero__float--1 { top: 4%;  left: 6%;   transform: rotate(-8deg);  z-index: 3; }
.cz-hero__float--2 { top: 0;   right: 4%;  transform: rotate(7deg);   z-index: 2; width: 42%; }
.cz-hero__float--3 { bottom: 2%; left: 18%; transform: rotate(5deg);  z-index: 4; width: 44%; }
.cz-hero__float--4 { bottom: 8%; right: 2%; transform: rotate(-6deg); z-index: 1; width: 38%; }

@media (prefers-reduced-motion: no-preference) {
    .cz-hero__float { animation: cz-float 6s ease-in-out infinite; }
    .cz-hero__float--1 { animation-delay: 0s; }
    .cz-hero__float--2 { animation-delay: -1.5s; }
    .cz-hero__float--3 { animation-delay: -3s; }
    .cz-hero__float--4 { animation-delay: -4.5s; }
}
@keyframes cz-float {
    0%, 100% { transform: translateY(0) var(--cz-rot, rotate(0deg)); }
    50%      { transform: translateY(-14px) var(--cz-rot, rotate(0deg)); }
}
.cz-hero__float--1 { --cz-rot: rotate(-8deg); }
.cz-hero__float--2 { --cz-rot: rotate(7deg); }
.cz-hero__float--3 { --cz-rot: rotate(5deg); }
.cz-hero__float--4 { --cz-rot: rotate(-6deg); }

@media (max-width: 1279px) {
    .cz-hero__cards { margin: 0 auto; min-height: 320px; }
}
@media (max-width: 520px) {
    .cz-hero__cards { min-height: 260px; max-width: 360px; }
}

/* ----- B. TOC numbered boxed cards ----- */
.cz-toc-cards__title {
    font-family: var(--cz-font-h);
    font-size: 18px;
    font-weight: 700;
    color: var(--cz-text);
    margin: 0 0 16px;
}
.cz-toc--cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.cz-toc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--cz-text);
    transition: border-color .18s, transform .12s, box-shadow .18s;
}
.cz-toc-card:hover {
    color: var(--cz-text);
    border-color: rgba(255,175,54,0.65);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.cz-toc-card:focus-visible { outline: 2px solid var(--cz-orange); outline-offset: 2px; }
.cz-toc-card__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,175,54,0.16);
    border: 1px solid rgba(255,175,54,0.45);
    color: var(--cz-orange);
    font-family: var(--cz-font-h);
    font-weight: 800;
    font-size: 15px;
}
.cz-toc-card:hover .cz-toc-card__num { background: var(--cz-orange); color: #16161F; }
.cz-toc-card__label { font-size: 15px; font-weight: 600; line-height: 1.3; }
@media (max-width: 768px) {
    .cz-toc--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .cz-toc--cards { grid-template-columns: 1fr; }
}

/* ----- C. Rich slot hover overlay (name + RTP + rating + Jugar) ----- */
.cz-slots__overlay {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(22,22,31,0.35) 0%, rgba(22,22,31,0.82) 100%);
}
.cz-slots__name {
    color: var(--cz-text);
    font-family: var(--cz-font-h);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cz-slots__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.cz-slots__rtp {
    font-size: 11px;
    font-weight: 700;
    color: var(--cz-orange-soft);
    background: rgba(255,175,54,0.16);
    border: 1px solid rgba(255,175,54,0.35);
    border-radius: 4px;
    padding: 2px 7px;
    letter-spacing: 0.02em;
}
.cz-slots__rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--cz-star);
    white-space: nowrap;
}
.cz-slots__btn {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 8px;
    background: var(--cz-orange);
    color: #16161F;
    font-family: var(--cz-font-h);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 16px rgba(255,175,54,0.30);
}
.cz-slots__card:hover .cz-slots__btn { background: var(--cz-orange-hover); }

/* ----- D. Author block: quote card ----- */
.cz-author-card--quote .cz-author-card__quote {
    position: relative;
    margin: 0 0 12px;
    padding: 14px 18px 14px 22px;
    background: rgba(255,175,54,0.07);
    border-left: 3px solid var(--cz-orange);
    border-radius: 0 10px 10px 0;
}
.cz-author-card__quote-mark {
    position: absolute;
    top: -6px; left: 8px;
    font-family: var(--cz-font-h);
    font-size: 40px;
    line-height: 1;
    color: rgba(255,175,54,0.45);
}
.cz-author-card--quote .cz-author-card__quote p {
    margin: 0 0 8px;
    font-style: italic;
    font-size: 1rem;
    color: var(--cz-text);
    line-height: 1.55;
}
.cz-author-card__cite {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cz-orange-soft);
}

/* ----- E. Author page: expertise topics grid + pull-quote ----- */
.cz-author-topics { margin: 0 0 8px; }
.cz-author-topics__title {
    font-family: var(--cz-font-h);
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--cz-text);
}
.cz-author-topics__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.cz-author-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cz-surface);
    border: 1px solid var(--cz-line);
    border-top: 3px solid var(--cz-orange);
    border-radius: 12px;
    padding: 16px 18px;
    font-family: var(--cz-font-h);
    font-weight: 600;
    font-size: 15px;
    color: var(--cz-text);
}
.cz-author-topic__icon { color: var(--cz-orange); font-size: 16px; }
.cz-author-pullquote {
    margin: 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--cz-surface) 0%, var(--cz-surface-2) 100%);
    border: 1px solid rgba(255,175,54,0.30);
    border-radius: 14px;
    position: relative;
}
.cz-author-pullquote p {
    margin: 0 0 10px;
    font-family: var(--cz-font-h);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--cz-text);
}
.cz-author-pullquote cite {
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cz-orange-soft);
}
@media (max-width: 768px) {
    .cz-author-topics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .cz-author-topics__grid { grid-template-columns: 1fr; }
    .cz-author-pullquote p { font-size: 1.1rem; }
}

/* ----- F. Footer newsletter band ----- */
.cz-footer__newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 40px;
    background: linear-gradient(135deg, var(--cz-surface) 0%, var(--cz-surface-2) 100%);
    border: 1px solid rgba(255,175,54,0.28);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}
.cz-footer__newsletter-title {
    font-family: var(--cz-font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cz-text);
    margin: 0 0 6px;
}
.cz-footer__newsletter-sub { margin: 0; font-size: 14px; color: var(--cz-text-muted); }
.cz-footer__newsletter-form { flex: 1 1 360px; max-width: 460px; }
.cz-footer__newsletter-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--cz-text);
    margin-bottom: 6px;
}
.cz-footer__newsletter-row { display: flex; gap: 10px; }
.cz-footer__newsletter-input {
    flex: 1;
    min-width: 0;
    background: var(--cz-deep);
    border: 1px solid var(--cz-line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--cz-text);
    font-family: var(--cz-font-b);
    font-size: 15px;
}
.cz-footer__newsletter-input::placeholder { color: var(--cz-text-muted); }
.cz-footer__newsletter-input:focus {
    outline: none;
    border-color: var(--cz-orange);
    box-shadow: 0 0 0 2px rgba(255,175,54,0.25);
}
@media (max-width: 768px) {
    .cz-footer__newsletter { padding: 20px; }
    .cz-footer__newsletter-row { flex-direction: column; }
    .cz-footer__newsletter-row .cz-btn { width: 100%; }
}

/* ── MOBILE HERO: image after bonus, trust 2col, reduced padding ── */
@media (max-width: 768px) {
    .cz-hero__inner:not(.cz-hero__inner--compact) {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    /* Flatten hero__text so its children become direct flex items */
    .cz-hero__text {
        display: contents;
    }
    /* Assign explicit order to control visual sequence */
    .cz-hero__title      { order: 1; width: 100%; }
    .cz-hero__bonus      { order: 2; width: 100%; }
    .cz-hero__bonus-sub  { order: 2; width: 100%; }
    .cz-hero__lead       { order: 2; width: 100%; }
    /* Image slots in between bonus and trust */
    .cz-hero__media      { order: 3; width: 100%; margin: 12px 0; }
    .cz-hero__image      { max-width: 100% !important; border-radius: 12px; }
    .cz-hero__photo      { max-width: 100%; }
    /* Trust and CTAs after image */
    .cz-trust            { order: 4; width: 100%; }
    .cz-hero__actions    { order: 5; width: 100%; }
    .cz-hero__disclaimer { order: 6; width: 100%; font-size: 12px; }
}

/* Trust tiles stay 2-column on small screens */
@media (max-width: 520px) {
    .cz-trust--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Reduce hero padding on mobile */
@media (max-width: 480px) {
    .cz-hero:not(.cz-hero--compact) { padding: 10px 0 20px; }
    .cz-hero__inner { padding-left: 16px; padding-right: 16px; }
}

/* ── Author hero: round avatar ── */
.cz-hero__author-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.cz-hero__inner--compact > .cz-hero__author-figure img {
    width: clamp(120px, 22vw, 200px) !important;
    height: clamp(120px, 22vw, 200px) !important;
    max-width: clamp(120px, 22vw, 200px) !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.30);
    box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .cz-hero__inner--compact > .cz-hero__author-figure {
        justify-self: center;
        margin-bottom: 8px;
    }
    .cz-hero__inner--compact > .cz-hero__author-figure img {
        width: clamp(80px, 28vw, 140px) !important;
        height: clamp(80px, 28vw, 140px) !important;
        max-width: clamp(80px, 28vw, 140px) !important;
    }
}

/* ── Center figures inside content containers ── */
.cz-container figure:not(.cz-hero__author-figure) {
    display: block;
    max-width: min(750px, 100%);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.cz-container figure:not(.cz-hero__author-figure) img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}
.cz-container figure:not(.cz-hero__author-figure) figcaption {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.75;
}

/* ── Figure CTA buttons ── */
.cz-figure-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 6px 0 28px;
}
.cz-figure-cta .cz-btn {
    min-width: 140px;
    text-align: center;
}
