/* ═══════════════════════════════════════════════════════════════
   BUMAGA CALL — Page Styles v1.0
   Location: /assets/css/call.css
   ═══════════════════════════════════════════════════════════════

   Namespace: cl-*
   Dependencies: tokens.css (--bp-* variables)
   Zero hardcoded colors — all via design tokens.
   Pattern: 1:1 copy of buyer.css architecture (byr-* → cl-*)
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   PAGE WRAPPER
   ══════════════════════════════════════════════════════════════ */
.cl-page {
    background: var(--bp-surface);
    min-height: 100vh;
}

/* All sections — same bg as page */
.cl-section,
.cl-section--alt,
.cl-faq-section-wrap,
.cl-cta {
    background: var(--bp-surface);
}

.cl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — icon + title + metrics + trust + CTA
   1:1 copy of byr-hero pattern (buyer.css)
   ══════════════════════════════════════════════════════════════ */
.cl-hero {
    text-align: center;
    padding: 52px 24px 40px;
}

.cl-hero-title {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--bp-text);
    line-height: 1.1;
}

.cl-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bp-accent) 0%, #2d7cd6 100%);
    border-radius: var(--bp-radius);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    flex-shrink: 0;
}

.cl-hero-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.cl-hero-sub {
    font-size: 16px;
    color: var(--bp-text-secondary);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 24px;
}

/* ── Metrics block ── */
.cl-hero-metrics {
    display: inline-flex;
    align-items: center;
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    margin-bottom: 14px;
    overflow: hidden;
}

.cl-hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 32px;
}

.cl-hero-metric-sep {
    width: 1px;
    height: 36px;
    background: var(--bp-border);
    flex-shrink: 0;
}

.cl-hero-metric-val {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--bp-mono);
    line-height: 1;
    color: var(--bp-text);
}

.cl-hero-metric-lbl {
    font-size: 11px;
    color: var(--bp-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
    white-space: nowrap;
}

.cl-hero-metric-lbl--sm {
    font-size: 10px;
    opacity: .8;
}

/* Color modifiers — calls / years / clients */
.cl-hero-metric-val--calls  { color: var(--bp-green); }
.cl-hero-metric-val--years  { color: var(--bp-accent); }
.cl-hero-metric-val--clients{ color: var(--bp-orange); }

/* ── Tagline (уточняющая строка под subtitle) ── */
.cl-hero-tagline {
    font-size: 14px;
    color: var(--bp-text-secondary);
    margin: -14px auto 24px;
    max-width: 480px;
    line-height: 1.5;
    opacity: 0.8;
}

/* ── Status strip (под метриками) ── */
.cl-hero-status {
    font-size: 12px;
    color: var(--bp-text-muted);
    margin: 0 auto 20px;
    max-width: 440px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* ● dot зелёный через span в PHP */
.cl-hero-status-dot {
    color: var(--bp-green);
    margin-right: 2px;
}

/* ── CTA hint (под кнопками) ── */
.cl-hero-cta-hint {
    font-size: 12px;
    color: var(--bp-text-muted);
    margin: 10px auto 0;
    max-width: 360px;
    line-height: 1.5;
}

/* ── Actions ── */
.cl-hero-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cl-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: var(--bp-accent);
    color: #fff;
    border-radius: var(--bp-radius-xs);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--bp-transition-fast);
}

.cl-hero-cta:hover {
    background: var(--bp-accent-hover);
    color: #fff;
}

.cl-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--bp-text-secondary);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xs);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition: border-color var(--bp-transition-fast),
                color var(--bp-transition-fast),
                opacity var(--bp-transition-fast);
}

.cl-hero-ghost:hover {
    border-color: var(--bp-accent);
    color: var(--bp-text);
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════════ */
.cl-section {
    padding: 56px 24px;
}

.cl-section--alt {
    background: var(--bp-bg);
}

.cl-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.cl-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--bp-text);
    margin: 0 0 8px;
}

.cl-section-sub {
    font-size: 15px;
    color: var(--bp-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — 4 cards "What We Do"
   Pattern: byr-flow-grid (4 col → 2 col → 1 col)
   ══════════════════════════════════════════════════════════════ */

/* Единый фон, мягкий разделитель сверху */
.cl-section--services {
    background: var(--bp-surface);
    border-top: 1px solid var(--bp-border-light);
}

.cl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.cl-service-card {
    position: relative;
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-top: 2px solid var(--bp-accent-border);
    border-radius: var(--bp-radius-sm);
    padding: 28px 22px;
    transition: border-color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

/* Micro-label — служебная категория, под иконкой */
.cl-service-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--bp-text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--bp-mono);
    opacity: 0.6;
}

.cl-service-card:hover {
    border-color: var(--bp-accent);
    border-top-color: var(--bp-accent);
    background: var(--bp-card-hover);
}

.cl-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bp-accent-dim);
    border: 1px solid var(--bp-accent-border);
    border-radius: var(--bp-radius-sm);
    margin-bottom: 16px;
    transition: background var(--bp-transition-fast),
                border-color var(--bp-transition-fast),
                transform var(--bp-transition-fast);
}

.cl-service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--bp-accent);
}

.cl-service-card:hover .cl-service-icon {
    background: rgba(74, 158, 255, 0.20);
    border-color: rgba(74, 158, 255, 0.45);
    transform: scale(1.08);
}

.cl-service-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 8px;
}

.cl-service-desc {
    font-size: 13px;
    color: var(--bp-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS — горизонтальный flow (не карточки)
   ══════════════════════════════════════════════════════════════ */
.cl-section--process {
    background: var(--bp-surface);
    border-top: 1px solid var(--bp-border-light);
}

.cl-process-flow {
    display: flex;
    align-items: stretch;
    margin-bottom: 24px;
}

.cl-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    background: var(--bp-card);
    transition: border-color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

.cl-process-step:hover {
    border-color: var(--bp-accent-border);
    background: var(--bp-card-hover);
}

.cl-process-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--bp-text-secondary);
    font-family: var(--bp-mono);
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: border-color var(--bp-transition-fast),
                color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

.cl-process-num--accent {
    background: var(--bp-accent-dim);
    border-color: var(--bp-accent-border);
    color: var(--bp-accent);
}

.cl-process-step:hover .cl-process-num {
    border-color: var(--bp-accent-border);
    color: var(--bp-accent);
    background: var(--bp-accent-dim);
}

.cl-process-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cl-process-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 8px;
}

.cl-process-text {
    font-size: 13px;
    color: var(--bp-text-secondary);
    line-height: 1.55;
    margin: 0;
}

.cl-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: var(--bp-text-muted);
    flex-shrink: 0;
    opacity: 0.35;
    align-self: center;
}

.cl-flow-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--bp-surface);
    border: 1px solid rgba(74, 158, 255, 0.12);
    border-radius: var(--bp-radius-sm);
    font-size: 13px;
    color: var(--bp-text-secondary);
}

.cl-flow-note svg {
    color: var(--bp-accent);
    flex-shrink: 0;
    opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   STRIP — тонкий разделитель с фактами
   ══════════════════════════════════════════════════════════════ */
.cl-strip {
    background: var(--bp-card);
    border-top: 1px solid var(--bp-border);
    border-bottom: 1px solid var(--bp-border);
    padding: 14px 24px;
}

.cl-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cl-strip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bp-green);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
}

.cl-strip-fact {
    font-size: 12px;
    color: var(--bp-text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.cl-strip-sep {
    font-size: 12px;
    color: var(--bp-text-muted);
}

/* ══════════════════════════════════════════════════════════════
   RESULTS — Что вы получите
   4 карточки с цветными иконками, единый фон
   ══════════════════════════════════════════════════════════════ */
.cl-section--results {
    background: var(--bp-surface);
    border-top: 1px solid var(--bp-border-light);
}

.cl-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.cl-result-card {
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-top: 2px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    padding: 36px 28px;
    transition: border-color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

.cl-result-card:hover {
    background: var(--bp-card-hover);
    border-color: var(--bp-border-hover);
}

.cl-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--bp-radius-sm);
    margin-bottom: 16px;
    transition: transform var(--bp-transition-fast);
}

.cl-result-card:hover .cl-result-icon {
    transform: scale(1.08);
}

.cl-result-icon svg {
    width: 26px;
    height: 26px;
}

/* Color variants */
.cl-result-icon--green {
    background: var(--bp-green-dim);
    border: 1px solid rgba(52, 211, 153, 0.2);
}
.cl-result-icon--green svg { color: var(--bp-green); }

.cl-result-icon--blue {
    background: var(--bp-accent-dim);
    border: 1px solid var(--bp-accent-border);
}
.cl-result-icon--blue svg { color: var(--bp-accent); }

.cl-result-icon--purple {
    background: var(--bp-purple-dim);
    border: 1px solid rgba(167, 139, 250, 0.2);
}
.cl-result-icon--purple svg { color: var(--bp-purple); }

.cl-result-icon--orange {
    background: var(--bp-orange-dim);
    border: 1px solid rgba(251, 191, 36, 0.2);
}
.cl-result-icon--orange svg { color: var(--bp-orange); }

.cl-result-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--bp-text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--bp-mono);
    opacity: 0.6;
}

.cl-result-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 10px;
}

.cl-result-desc {
    font-size: 13px;
    color: var(--bp-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   FORMATS — Форматы работы, 3 карточки
   ══════════════════════════════════════════════════════════════ */
.cl-section--formats {
    background: var(--bp-surface);
    border-top: 1px solid var(--bp-border-light);
}

.cl-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.cl-format-card {
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: border-color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

.cl-format-card:hover {
    border-color: var(--bp-border-hover);
    background: var(--bp-card-hover);
}

/* Featured card — Стандарт */
.cl-format-card--featured {
    border-color: var(--bp-accent-border-strong);
    border-top: 2px solid var(--bp-accent);
    background: var(--bp-card-raised);
}

.cl-format-card--featured:hover {
    border-color: var(--bp-accent);
}

/* Badge "Популярный" */
.cl-format-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bp-accent);
    background: var(--bp-accent-dim);
    border: 1px solid var(--bp-accent-border);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
    width: fit-content;
}

.cl-format-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--bp-text-muted);
    text-transform: uppercase;
    font-family: var(--bp-mono);
    opacity: 0.6;
    margin-bottom: 10px;
}

.cl-format-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 14px;
}

.cl-format-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--bp-accent);
    font-family: var(--bp-mono);
    line-height: 1;
    margin-bottom: 20px;
}

.cl-format-card--featured .cl-format-price {
    color: var(--bp-accent);
}

.cl-format-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cl-format-list li {
    font-size: 13px;
    color: var(--bp-text-secondary);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.cl-format-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--bp-accent);
    font-weight: 700;
}

.cl-format-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: transparent;
    border: 1px solid var(--bp-border);
    color: var(--bp-text-secondary);
    border-radius: var(--bp-radius-xs);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color var(--bp-transition-fast),
                color var(--bp-transition-fast),
                background var(--bp-transition-fast);
    margin-top: auto;
}

.cl-format-cta:hover {
    border-color: var(--bp-accent-border);
    color: var(--bp-text);
}

.cl-format-cta--accent {
    background: var(--bp-accent);
    border-color: var(--bp-accent);
    color: #fff;
}

.cl-format-cta--accent:hover {
    background: var(--bp-accent-hover);
    border-color: var(--bp-accent-hover);
    color: #fff;
}

.cl-formats-note {
    text-align: center;
    font-size: 12px;
    color: var(--bp-text-muted);
    margin: 0;
}

/* ── Language strip ── */
.cl-formats-lang {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 24px;
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
}

.cl-formats-lang-title {
    font-size: 13px;
    color: var(--bp-text-secondary);
    font-weight: 500;
}

.cl-formats-lang-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cl-formats-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xs);
    text-decoration: none;
    transition: border-color var(--bp-transition-fast),
                background var(--bp-transition-fast);
}

.cl-formats-lang-btn:hover {
    border-color: var(--bp-accent-border);
    background: var(--bp-card-hover);
}

.cl-formats-lang-flag {
    font-size: 18px;
    line-height: 1;
}

.cl-formats-lang-btn span:nth-child(2) {
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-text);
}

.cl-formats-lang-handle {
    font-size: 12px;
    color: var(--bp-accent);
    font-family: var(--bp-mono);
}

/* ══════════════════════════════════════════════════════════════
   CONDITIONS / PRICING — 2-col info grid
   Exact copy of byr-info-grid pattern
   ══════════════════════════════════════════════════════════════ */
.cl-info-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Left: conditions list block */
.cl-cond-block {
    flex: 55;
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-top: 2px solid var(--bp-accent-border);
    border-radius: var(--bp-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cl-cond-block-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 16px;
}

.cl-cond-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cl-cond-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--bp-text-secondary);
    line-height: 1.5;
}

.cl-cond-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--bp-accent-dim);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.cl-cond-icon svg {
    width: 11px;
    height: 11px;
    color: var(--bp-accent);
}

/* Warning alert box */
.cl-cond-alert {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: var(--bp-radius-xs);
}

.cl-cond-alert-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--bp-text-secondary);
    line-height: 1.45;
}

.cl-cond-alert-icon {
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.3;
}

/* Right: pricing block */
.cl-price-block {
    flex: 45;
    background: var(--bp-card);
    border: 1px solid var(--bp-accent-border);
    border-top: 2px solid var(--bp-accent);
    border-radius: var(--bp-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cl-price-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 16px;
    width: 100%;
    text-align: center;
}

.cl-price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.cl-price-val {
    font-size: 48px;
    font-weight: 900;
    color: var(--bp-accent);
    font-family: var(--bp-mono);
    line-height: 1;
}

.cl-price-suffix {
    font-size: 22px;
    font-weight: 700;
    color: var(--bp-text-secondary);
    font-family: var(--bp-mono);
    line-height: 1;
    align-self: flex-start;
    margin-top: 8px;
}

.cl-price-sub {
    font-size: 12px;
    color: var(--bp-text-muted);
    margin: 0 0 14px;
}

/* Example strip */
.cl-price-example {
    width: 100%;
    padding: 8px 12px;
    background: rgba(74, 158, 255, 0.06);
    border: 1px solid var(--bp-accent-border);
    border-radius: var(--bp-radius-xs);
    font-size: 13px;
    color: var(--bp-text-secondary);
    margin-bottom: 12px;
    text-align: center;
}

.cl-price-example strong {
    color: var(--bp-accent);
    font-weight: 600;
}

.cl-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.cl-price-item {
    font-size: 13px;
    color: var(--bp-text-secondary);
    padding: 7px 12px;
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xs);
}

.cl-price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: var(--bp-accent);
    color: #fff;
    border-radius: var(--bp-radius-xs);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--bp-transition-fast);
    margin-top: auto;
}

.cl-price-cta:hover {
    background: var(--bp-accent-hover);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   REQUIREMENTS — centered box with numbered list
   Exact copy of byr-req-box pattern
   ══════════════════════════════════════════════════════════════ */
.cl-req-box {
    background: var(--bp-accent-dim);
    border: 1px solid var(--bp-accent-border-strong);
    border-radius: calc(var(--bp-radius) + 4px);
    padding: 48px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cl-req-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--bp-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cl-req-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 8px;
    position: relative;
}

.cl-req-subtitle {
    font-size: 14px;
    color: var(--bp-text-secondary);
    margin-bottom: 28px;
    position: relative;
}

.cl-req-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    position: relative;
    margin-bottom: 28px;
}

.cl-req-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    transition: background var(--bp-transition),
                border-color var(--bp-transition),
                transform var(--bp-transition);
}

.cl-req-item:hover {
    background: rgba(74, 158, 255, 0.08);
    border-color: var(--bp-accent-border);
    transform: translateX(6px);
}

.cl-req-num {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--bp-accent), #2d7cd6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--bp-mono);
}

.cl-req-text {
    font-size: 14px;
    color: var(--bp-text-secondary);
    font-weight: 500;
}

.cl-req-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--bp-accent);
    color: #fff;
    border-radius: var(--bp-radius-xs);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: background var(--bp-transition-fast),
                transform var(--bp-transition-fast),
                box-shadow var(--bp-transition-fast);
}

.cl-req-btn:hover {
    background: var(--bp-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--bp-accent-glow);
}

/* ══════════════════════════════════════════════════════════════
   FAQ — accordion (DB-driven + lang fallback)
   Exact copy of byr-faq-* pattern
   ══════════════════════════════════════════════════════════════ */
.cl-faq-section-wrap {
    padding: 72px 24px;
}

.cl-faq-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.cl-faq-hd {
    margin-bottom: 24px;
}

.cl-faq-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--bp-text);
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: normal;
}

.cl-faq-title::before {
    content: '❓';
    font-size: 20px;
}

.cl-faq-subtitle {
    color: var(--bp-text-muted);
    font-size: 14px;
    margin: 0;
}

.cl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cl-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
    transition: border-color var(--bp-transition), background var(--bp-transition);
    cursor: pointer;
}

.cl-faq-item:hover {
    border-color: rgba(74, 158, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.cl-faq-item.active {
    border-color: rgba(74, 158, 255, 0.4);
    background: rgba(74, 158, 255, 0.05);
}

.cl-faq-q {
    width: 100%;
    padding: 20px 22px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: color var(--bp-transition);
    font-family: var(--bp-sans);
}

.cl-faq-q span {
    font-size: 15px;
    font-weight: 600;
    color: var(--bp-text);
    line-height: 1.5;
    text-align: left;
}

.cl-faq-item:hover .cl-faq-q span {
    color: var(--bp-accent);
}

.cl-faq-item.active .cl-faq-q span {
    color: var(--bp-accent);
}

.cl-faq-q svg {
    width: 14px;
    height: 14px;
    color: var(--bp-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cl-faq-q:hover {
    color: var(--bp-accent);
}

.cl-faq-q:hover svg {
    color: var(--bp-accent);
}

.cl-faq-item.active .cl-faq-q {
    color: var(--bp-accent);
}

.cl-faq-item.active .cl-faq-q svg {
    transform: rotate(180deg);
    color: var(--bp-accent);
}

.cl-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cl-faq-item.active .cl-faq-a {
    max-height: 480px;
}

.cl-faq-a-inner {
    padding: 0 22px 22px;
    border-top: 1px solid var(--bp-border);
    padding-top: 16px;
}

.cl-faq-a-inner p {
    font-size: 14px;
    color: var(--bp-text-secondary);
    line-height: 1.8;
    margin: 0 0 12px;
}

.cl-faq-a-inner p:last-child {
    margin-bottom: 0;
}

.cl-faq-a-inner strong {
    color: var(--bp-accent);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   CTA — final call-to-action
   Exact copy of byr-cta pattern
   ══════════════════════════════════════════════════════════════ */
.cl-cta {
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(74, 158, 255, 0.07) 0%,
        rgba(45, 124, 214, 0.05) 100%
    );
}

.cl-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.08) 0%, transparent 60%);
    animation: cl-cta-rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes cl-cta-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.cl-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cl-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 24px rgba(74, 158, 255, 0.5));
    animation: cl-pulse 2.4s ease-in-out infinite;
}

@keyframes cl-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}

.cl-cta-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--bp-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cl-cta-subtitle {
    font-size: 18px;
    color: var(--bp-text-secondary);
    margin-bottom: 44px;
    line-height: 1.6;
}

.cl-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--bp-accent), #2d7cd6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 28px var(--bp-accent-glow);
    transition: transform var(--bp-transition), box-shadow var(--bp-transition);
    border: 2px solid transparent;
}

.cl-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(74, 158, 255, 0.5);
    color: #fff;
}

.cl-cta-btn--outline {
    background: transparent;
    border-color: var(--bp-accent-border-strong);
    color: var(--bp-accent);
    box-shadow: none;
}

.cl-cta-btn--outline:hover {
    background: var(--bp-accent-dim);
    border-color: var(--bp-accent);
    box-shadow: 0 6px 20px var(--bp-accent-glow);
    color: var(--bp-accent);
}

.cl-cta-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL — IntersectionObserver hook classes
   Only hidden when JS is confirmed loaded (body.cl-js).
   Without JS — elements always visible (no broken page).
   ══════════════════════════════════════════════════════════════ */
body.cl-js .cl-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

body.cl-js .cl-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   HERO OPERATOR CONTACTS
   ══════════════════════════════════════════════════════════════ */

.cl-hero-contacts {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cl-hero-op-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: var(--bp-card);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-xs);
    text-decoration: none;
    transition: border-color var(--bp-transition-fast),
                background   var(--bp-transition-fast),
                transform    var(--bp-transition-fast);
}

.cl-hero-op-btn:hover {
    border-color: var(--bp-accent-border);
    background: var(--bp-card-hover);
    transform: translateY(-2px);
}

.cl-hero-op-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.cl-hero-op-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: left;
}

.cl-hero-op-lang {
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-text);
    line-height: 1.2;
}

.cl-hero-op-handle {
    font-size: 12px;
    color: var(--bp-accent);
    font-family: var(--bp-mono);
    line-height: 1.2;
}

.cl-hero-op-arrow {
    color: var(--bp-text-muted);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color     var(--bp-transition-fast),
                transform var(--bp-transition-fast);
}

.cl-hero-op-btn:hover .cl-hero-op-arrow {
    color: var(--bp-accent);
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cl-services-grid,
    .cl-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cl-formats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cl-process-flow {
        flex-wrap: wrap;
    }

    .cl-process-step {
        flex: calc(50% - 20px);
        min-width: calc(50% - 20px);
    }

    .cl-process-arrow {
        display: none;
    }

    .cl-info-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cl-hero {
        padding: 48px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cl-hero-title { font-size: 26px; justify-content: center; }
    .cl-hero-sub   { font-size: 14px; text-align: center; }

    .cl-hero-metrics {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 14px;
    }

    .cl-hero-metric     { padding: 14px 10px; flex: 1; }
    .cl-hero-metric-sep { width: 1px; height: auto; align-self: stretch; }
    .cl-hero-metric-val { font-size: 18px; }
    .cl-hero-metric-lbl { font-size: 9px; }

    .cl-hero-trust { text-align: center; }

    .cl-hero-actions {
        gap: 10px;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .cl-hero-cta,
    .cl-hero-ghost { padding: 10px 18px; font-size: 13px; }

    .cl-hero-contacts { gap: 10px; }
    .cl-hero-op-btn   { padding: 10px 16px; }

    .cl-services-grid,
    .cl-results-grid { grid-template-columns: 1fr; }

    .cl-formats-grid { grid-template-columns: 1fr; }

    .cl-process-step { flex: 100%; min-width: 100%; }

    .cl-flow-arrow { display: none; }

    .cl-section { padding: 48px 20px; }
    .cl-section-title { font-size: 22px; }

    .cl-faq-q  { font-size: 14px; padding: 16px 18px; }
    .cl-faq-a-inner { padding: 0 18px 18px; padding-top: 14px; }

    .cl-req-box { padding: 32px 24px; }

    .cl-cta-title { font-size: 32px; }
    .cl-cta-subtitle { font-size: 16px; }
    .cl-cta-btn  { padding: 14px 28px; font-size: 14px; }
}

@media (max-width: 480px) {
    .cl-hero-title { font-size: 22px; gap: 10px; }
    .cl-hero-icon  { width: 44px; height: 44px; }
    .cl-hero-icon svg { width: 24px; height: 24px; }

    .cl-hero-metrics { max-width: 100%; }
    .cl-hero-metric  { padding: 12px 6px; }
    .cl-hero-metric-val { font-size: 16px; }
    .cl-hero-metric-lbl { font-size: 8px; letter-spacing: 0; }

    .cl-hero-cta,
    .cl-hero-ghost { width: 100%; justify-content: center; }
    .cl-hero-actions { flex-direction: column; align-items: stretch; }

    .cl-hero-contacts { flex-direction: column; width: 100%; max-width: 280px; }
    .cl-hero-op-btn   { width: 100%; }

    .cl-cta-title { font-size: 26px; letter-spacing: 1px; }
}
