/*!
 * dynamic-2656cd-layers.css
 * Color Game App - mobile-first styling layer.
 * All custom classes and CSS variables use the "c2656c-" prefix.
 * English comments only.
 */

:root {
    --c2656c-bg: #273746;
    --c2656c-bg-2: #1f2c38;
    --c2656c-bg-3: #324656;
    --c2656c-card: #2d3f4f;
    --c2656c-line: rgba(178, 223, 219, 0.16);
    --c2656c-teal-soft: #b2dfdb;
    --c2656c-teal: #80cbc4;
    --c2656c-teal-deep: #4db6ac;
    --c2656c-gold: #f6c66c;
    --c2656c-amber: #ffaf45;
    --c2656c-red: #ef6f6f;
    --c2656c-ink: #f4fbfa;
    --c2656c-ink-dim: #a9c3c0;
    --c2656c-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
    --c2656c-radius: 14px;
    --c2656c-radius-lg: 22px;
    --c2656c-tap: 44px;
    --c2656c-max: 430px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: var(--c2656c-bg);
    color: var(--c2656c-ink);
    font-family: "Segoe UI", "Helvetica Neue", "Noto Sans", Roboto, system-ui, -apple-system, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Center the mobile canvas on wider screens; no desktop layout is generated. */
.c2656c-shell {
    width: 100%;
    max-width: var(--c2656c-max);
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #2a3c4b 0%, #1f2c38 38%, #243443 100%);
    position: relative;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
    padding-bottom: 96px; /* safe space for the raised bottom nav */
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--c2656c-teal);
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover,
a:focus {
    color: var(--c2656c-teal-soft);
}

/* ===================== Header (minimal title action bar) ===================== */
.c2656c-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(39, 55, 70, 0.98) 0%, rgba(39, 55, 70, 0.92) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c2656c-line);
}

.c2656c-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.c2656c-brand__logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(178, 223, 219, 0.35);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.c2656c-brand__name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--c2656c-teal-soft);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c2656c-brand__name span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--c2656c-ink-dim);
    letter-spacing: 0.4px;
}

.c2656c-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.c2656c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--c2656c-tap);
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    line-height: 1;
}

.c2656c-btn--login {
    background: transparent;
    color: var(--c2656c-teal-soft);
    border: 1px solid rgba(178, 223, 219, 0.5);
    padding: 0 12px;
}

.c2656c-btn--register {
    background: linear-gradient(135deg, #f6c66c 0%, #ffaf45 100%);
    color: #2a1c05;
    box-shadow: 0 8px 18px rgba(255, 175, 69, 0.32);
    padding: 0 16px;
}

.c2656c-btn--register:hover {
    transform: translateY(-1px);
}

.c2656c-btn:active {
    transform: scale(0.97);
}

.c2656c-iconbtn {
    width: var(--c2656c-tap);
    height: var(--c2656c-tap);
    border-radius: 12px;
    background: rgba(178, 223, 219, 0.08);
    border: 1px solid var(--c2656c-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c2656c-teal-soft);
    flex-shrink: 0;
}

.c2656c-iconbtn:hover {
    background: rgba(178, 223, 219, 0.16);
}

/* ===================== Full-height menu layer ===================== */
.c2656c-mask {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 26, 0.62);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.c2656c-mask--show {
    opacity: 1;
    visibility: visible;
}

.c2656c-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 84%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(180deg, #243443 0%, #1c2832 100%);
    border-left: 1px solid var(--c2656c-line);
    z-index: 100;
    transform: translateX(105%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 18px 18px 32px;
}

.c2656c-menu--open {
    transform: translateX(0);
}

.c2656c-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.c2656c-menu__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c2656c-teal-soft);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.c2656c-menu__close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(178, 223, 219, 0.08);
    border: 1px solid var(--c2656c-line);
    color: var(--c2656c-teal-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.c2656c-menu__group {
    margin-bottom: 18px;
}

.c2656c-menu__label {
    font-size: 11px;
    color: var(--c2656c-ink-dim);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 8px 4px;
}

.c2656c-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    color: var(--c2656c-ink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.c2656c-menu__link:hover {
    background: rgba(128, 203, 196, 0.12);
    border-color: var(--c2656c-line);
    color: var(--c2656c-teal-soft);
}

.c2656c-menu__link svg {
    width: 20px;
    height: 20px;
    color: var(--c2656c-teal);
    flex-shrink: 0;
}

.c2656c-menu__cta {
    margin-top: 8px;
    width: 100%;
    font-size: 14px;
    padding: 14px;
}

/* ===================== Hero carousel ===================== */
.c2656c-hero {
    position: relative;
    margin: 12px;
    border-radius: var(--c2656c-radius-lg);
    overflow: hidden;
    box-shadow: var(--c2656c-shadow);
    background: #1c2832;
}

.c2656c-hero__track {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.c2656c-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    cursor: pointer;
}

.c2656c-hero__slide--active {
    opacity: 1;
}

.c2656c-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c2656c-hero__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 16px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 25, 33, 0.85) 100%);
    color: var(--c2656c-teal-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.c2656c-hero__caption span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--c2656c-ink-dim);
    margin-top: 2px;
}

.c2656c-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 25, 33, 0.55);
    border: 1px solid rgba(178, 223, 219, 0.35);
    color: var(--c2656c-teal-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.c2656c-hero__arrow--prev {
    left: 8px;
}

.c2656c-hero__arrow--next {
    right: 8px;
}

.c2656c-hero__dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.c2656c-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(178, 223, 219, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.c2656c-hero__dot--active {
    background: var(--c2656c-gold);
    width: 18px;
    border-radius: 4px;
}

/* ===================== Section heading ===================== */
.c2656c-section {
    margin: 22px 12px 6px;
}

.c2656c-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.c2656c-section__bar {
    width: 4px;
    height: 20px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--c2656c-teal) 0%, var(--c2656c-teal-deep) 100%);
}

.c2656c-section__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--c2656c-teal-soft);
    margin: 0;
    line-height: 1.2;
}

.c2656c-section__more {
    margin-left: auto;
    font-size: 12px;
    color: var(--c2656c-teal);
    font-weight: 600;
}

/* ===================== Game grid ===================== */
.c2656c-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (min-width: 375px) {
    .c2656c-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 9px;
    }
}

.c2656c-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background: var(--c2656c-card);
    border-radius: 12px;
    padding: 6px 4px 8px;
    border: 1px solid var(--c2656c-line);
    transition: transform 0.16s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    overflow: hidden;
}

.c2656c-game:hover {
    transform: translateY(-2px);
    border-color: rgba(128, 203, 196, 0.55);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.c2656c-game__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: #1c2832;
}

.c2656c-game__name {
    margin-top: 5px;
    font-size: 10.5px;
    color: var(--c2656c-ink);
    text-align: center;
    line-height: 1.2;
    height: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

/* ===================== Content modules ===================== */
.c2656c-module {
    margin: 20px 12px;
    padding: 18px 14px;
    background: var(--c2656c-card);
    border: 1px solid var(--c2656c-line);
    border-radius: var(--c2656c-radius-lg);
}

.c2656c-module__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--c2656c-teal-soft);
    margin: 0 0 10px;
    line-height: 1.3;
}

.c2656c-module p {
    color: var(--c2656c-ink);
    margin: 0 0 10px;
    font-size: 14px;
}

.c2656c-module__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 8px;
}

.c2656c-module__list li {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(128, 203, 196, 0.08);
    border-left: 3px solid var(--c2656c-teal-deep);
    font-size: 13.5px;
    color: var(--c2656c-ink);
}

.c2656c-module__list li strong {
    color: var(--c2656c-teal-soft);
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.c2656c-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.c2656c-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(246, 198, 108, 0.14);
    border: 1px solid rgba(246, 198, 108, 0.4);
    color: var(--c2656c-gold);
    font-size: 12px;
    font-weight: 600;
}

.c2656c-bar {
    display: grid;
    grid-template-columns: 78px 1fr 42px;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.c2656c-bar__label {
    font-size: 12.5px;
    color: var(--c2656c-ink);
    font-weight: 600;
}

.c2656c-bar__track {
    height: 9px;
    border-radius: 5px;
    background: rgba(178, 223, 219, 0.14);
    overflow: hidden;
}

.c2656c-bar__fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--c2656c-teal-deep), var(--c2656c-teal-soft));
}

.c2656c-bar__val {
    font-size: 12px;
    font-weight: 700;
    color: var(--c2656c-teal-soft);
    text-align: right;
}

/* ===================== Intro / lead text ===================== */
.c2656c-lead {
    margin: 4px 14px 10px;
}

.c2656c-lead h1 {
    font-size: 21px;
    line-height: 1.28;
    color: var(--c2656c-teal-soft);
    margin: 8px 0 10px;
    font-weight: 800;
}

.c2656c-lead p {
    margin: 0 0 10px;
    color: var(--c2656c-ink);
    font-size: 14px;
}

.c2656c-lead a {
    color: var(--c2656c-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===================== Extended footer (two-column directory) ===================== */
.c2656c-extfoot {
    margin: 26px 12px 10px;
    padding: 18px 14px;
    background: linear-gradient(180deg, #243443 0%, #1c2832 100%);
    border: 1px solid var(--c2656c-line);
    border-radius: var(--c2656c-radius-lg);
}

.c2656c-extfoot__brand {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--c2656c-line);
    margin-bottom: 14px;
}

.c2656c-extfoot__brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(178, 223, 219, 0.35);
    object-fit: cover;
}

.c2656c-extfoot__brand h2 {
    margin: 0;
    font-size: 15px;
    color: var(--c2656c-teal-soft);
    font-weight: 800;
}

.c2656c-extfoot__brand p {
    margin: 3px 0 0;
    font-size: 12px;
    color: var(--c2656c-ink-dim);
    line-height: 1.45;
}

.c2656c-extfoot__title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c2656c-teal);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.c2656c-extfoot__title svg {
    width: 15px;
    height: 15px;
}

.c2656c-extfoot__promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.c2656c-extfoot__promo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(246, 198, 108, 0.1);
    border: 1px solid rgba(246, 198, 108, 0.32);
    cursor: pointer;
    color: var(--c2656c-ink);
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.18s ease, transform 0.15s ease;
}

.c2656c-extfoot__promo:hover {
    background: rgba(246, 198, 108, 0.2);
    transform: translateY(-1px);
}

.c2656c-extfoot__promo svg {
    width: 18px;
    height: 18px;
    color: var(--c2656c-gold);
    flex-shrink: 0;
}

.c2656c-extfoot__promo--accent {
    background: rgba(128, 203, 196, 0.12);
    border-color: rgba(128, 203, 196, 0.38);
}

.c2656c-extfoot__promo--accent svg {
    color: var(--c2656c-teal-soft);
}

.c2656c-extfoot__dir {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.c2656c-extfoot__dir a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(178, 223, 219, 0.06);
    border: 1px solid var(--c2656c-line);
    font-size: 12px;
    color: var(--c2656c-ink);
    font-weight: 600;
    line-height: 1.25;
}

.c2656c-extfoot__dir a:hover {
    background: rgba(128, 203, 196, 0.14);
    color: var(--c2656c-teal-soft);
}

.c2656c-extfoot__dir svg {
    width: 14px;
    height: 14px;
    color: var(--c2656c-teal);
    flex-shrink: 0;
}

.c2656c-extfoot__disclaim {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(239, 111, 111, 0.08);
    border-left: 3px solid var(--c2656c-red);
    font-size: 11.5px;
    color: var(--c2656c-ink-dim);
    line-height: 1.5;
}

/* ===================== Common footer ===================== */
.c2656c-footer {
    margin: 18px 12px 6px;
    padding: 16px 14px;
    text-align: center;
    border-top: 1px solid var(--c2656c-line);
}

.c2656c-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    margin-bottom: 10px;
}

.c2656c-footer__nav a {
    font-size: 12px;
    color: var(--c2656c-ink-dim);
}

.c2656c-footer__nav a:hover {
    color: var(--c2656c-teal-soft);
}

.c2656c-footer__copy {
    font-size: 11.5px;
    color: var(--c2656c-ink-dim);
    line-height: 1.55;
}

/* ===================== Bottom nav (center-raised) ===================== */
.c2656c-bnav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: var(--c2656c-max);
    z-index: 60;
    background: linear-gradient(180deg, rgba(31, 44, 56, 0.97) 0%, rgba(24, 34, 42, 0.99) 100%);
    border-top: 1px solid var(--c2656c-line);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-end;
    padding: 6px 4px 8px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.32);
}

.c2656c-bnav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    padding: 4px 2px;
    color: var(--c2656c-ink-dim);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
    border-top: 3px solid transparent;
    transition: color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
    min-height: 52px;
}

.c2656c-bnav__link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.22s ease, color 0.22s ease;
}

.c2656c-bnav__link:hover {
    color: var(--c2656c-teal);
}

.c2656c-bnav__link:hover svg {
    transform: translateY(-1px);
}

/* Active marker emphasis: a soft top bar + tinted icon. */
.c2656c-bnav__link--active {
    color: var(--c2656c-teal-soft);
    border-top: 3px solid var(--c2656c-gold);
}

.c2656c-bnav__link--active svg {
    color: var(--c2656c-gold);
}

/* The raised center role lifts above the bar. */
.c2656c-bnav__link--center {
    position: relative;
    transform: translateY(-14px);
    background: linear-gradient(135deg, #f6c66c 0%, #ff8a3d 100%);
    color: #2a1c05;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    min-height: 56px;
    box-shadow: 0 10px 22px rgba(255, 138, 61, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.85);
    justify-content: center;
    border-top: 3px solid rgba(255, 255, 255, 0.85);
}

.c2656c-bnav__link--center svg {
    width: 24px;
    height: 24px;
    color: #2a1c05;
}

.c2656c-bnav__link--center .c2656c-bnav__label {
    display: none;
}

.c2656c-bnav__link--center:hover {
    transform: translateY(-16px);
}

.c2656c-bnav__label {
    font-size: 9.5px;
    letter-spacing: 0.2px;
}

/* ===================== Reveal animation ===================== */
.c2656c-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.c2656c-reveal--in {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== Utility ===================== */
.c2656c-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================== Help page reading layers ===================== */
.c2656c-help-hero {
    margin: 16px 12px 10px;
    padding: 22px 16px;
    border-radius: 24px 12px 24px 12px;
    background: radial-gradient(circle at 90% 0%, rgba(246, 198, 108, 0.22), transparent 42%), linear-gradient(145deg, #314b57, #202f3b);
    border: 1px solid rgba(178, 223, 219, 0.22);
    box-shadow: var(--c2656c-shadow);
}
.c2656c-help-hero h1 {
    margin: 0 0 10px;
    color: var(--c2656c-teal-soft);
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.c2656c-help-hero p { margin: 0; color: var(--c2656c-ink); font-size: 14px; }
.c2656c-answer {
    margin: 12px 12px 18px;
    padding: 14px;
    border-left: 4px solid var(--c2656c-gold);
    background: rgba(246, 198, 108, 0.1);
    border-radius: 8px 16px 16px 8px;
    color: var(--c2656c-ink);
    font-size: 14px;
}
.c2656c-help-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 12px 0; }
.c2656c-help-note { padding: 12px; min-height: 112px; border-radius: 12px; border: 1px solid var(--c2656c-line); background: rgba(178, 223, 219, 0.07); }
.c2656c-help-note strong { display: block; margin-bottom: 5px; color: var(--c2656c-teal-soft); font-size: 13px; }
.c2656c-help-note p { margin: 0; color: var(--c2656c-ink-dim); font-size: 12.5px; line-height: 1.5; }
.c2656c-timeline { list-style: none; margin: 10px 0 0; padding: 0; counter-reset: c2656c-step; }
.c2656c-timeline li { counter-increment: c2656c-step; position: relative; margin: 0 0 10px 8px; padding: 11px 12px 11px 42px; border: 1px solid var(--c2656c-line); border-radius: 12px; background: rgba(128, 203, 196, 0.07); color: var(--c2656c-ink); font-size: 13px; }
.c2656c-timeline li::before { content: counter(c2656c-step); position: absolute; left: 11px; top: 11px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--c2656c-teal-deep); color: #15252c; font-weight: 800; }
.c2656c-faq details { border-bottom: 1px solid var(--c2656c-line); padding: 12px 0; }
.c2656c-faq summary { cursor: pointer; color: var(--c2656c-teal-soft); font-weight: 700; font-size: 14px; padding-right: 12px; }
.c2656c-faq details p { margin: 8px 0 0; color: var(--c2656c-ink-dim); font-size: 13px; }
.c2656c-rating { display: grid; grid-template-columns: 82px 1fr; gap: 12px; align-items: center; padding: 13px; margin: 10px 0; border: 1px solid var(--c2656c-line); border-radius: 14px; background: rgba(178, 223, 219, 0.06); }
.c2656c-rating__score { color: var(--c2656c-gold); font-size: 25px; font-weight: 800; text-align: center; }
.c2656c-rating__score small { display: block; color: var(--c2656c-ink-dim); font-size: 10px; font-weight: 500; }
.c2656c-rating p { margin: 0; color: var(--c2656c-ink); font-size: 13px; }
.c2656c-checks { display: grid; gap: 8px; margin: 10px 0; }
.c2656c-checks label { display: flex; gap: 9px; align-items: flex-start; padding: 10px; border-radius: 10px; background: rgba(128, 203, 196, 0.08); color: var(--c2656c-ink); font-size: 13px; }
.c2656c-checks input { accent-color: var(--c2656c-teal); margin-top: 3px; }
.c2656c-actionrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.c2656c-actionrow .c2656c-btn { flex: 1 1 135px; min-width: 0; }
.c2656c-inline-cta { color: var(--c2656c-gold); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
