/* =============================================
   Use-case page — GoLogin + Octo hybrid, site palette
   ============================================= */

.uc-page { padding-top: 0; }
.uc-page p { font-size: 18px; }

/* ---- Scroll animation base ---- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-animate="fade-up"]   { transform: translateY(32px); }
[data-animate="fade-down"] { transform: translateY(-20px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"]{ transform: translateX(-40px); }
[data-animate].is-visible  { opacity: 1; transform: none; }

/* ============ HERO ============ */
.uc-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    overflow: hidden;
}

.uc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.uc-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1c91f8;
    background: rgba(28,145,248,0.08);
    margin-bottom: 20px;
}

.uc-hero-title {
    font-family: "Geometria", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #484848;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.uc-hero-title span {
    color: #1c91f8;
}

/* Страница ecommerce-antidetect: заголовки заглавными, цвет текста #484848 */
.uc-page--ecommerce .uc-hero-title,
.uc-page--ecommerce .uc-section-title,
.uc-page--ecommerce .uc-problem-card-title,
.uc-page--ecommerce .uc-feature-title,
.uc-page--ecommerce .uc-step-title,
.uc-page--ecommerce .uc-cta-title,
.uc-page--ecommerce .uc-related-title {
    text-transform: uppercase;
}

.uc-page--ecommerce .uc-hero-title,
.uc-page--ecommerce .uc-section-title,
.uc-page--ecommerce .uc-problem-card-title,
.uc-page--ecommerce .uc-feature-title,
.uc-page--ecommerce .uc-float-label,
.uc-page--ecommerce .uc-platform-name,
.uc-page--ecommerce .uc-step-title,
.uc-page--ecommerce .uc-faq-q,
.uc-page--ecommerce .uc-related-title {
    color: #484848;
}

.uc-hero-subtitle {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin: 0 0 32px;
    max-width: 500px;
}

/* Hero button — uses global proxy-v2-cta, just position overrides */
.uc-hero-btn-wrap {
    width: auto;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(28,145,248,0.25);
}
.uc-hero-btn-wrap:hover {
    box-shadow: 0 8px 30px rgba(28,145,248,0.35);
}

/* ---- Ad Cabinets hero visual (advertising use case) ---- */
.uc-advis {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uc-advis-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(28,145,248,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28,145,248,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 20px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.uc-advis-cards {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    z-index: 2;
    padding: 20px;
}

.uc-advis-card {
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(28,145,248,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    opacity: 0;
    transform: scale(0.7) translateY(20px);
    animation: adCardIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.uc-advis-card:nth-child(1) { animation-delay: 0.3s; }
.uc-advis-card:nth-child(2) { animation-delay: 0.6s; }
.uc-advis-card:nth-child(3) { animation-delay: 0.9s; }
.uc-advis-card:nth-child(4) { animation-delay: 1.2s; }

@keyframes adCardIn {
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.uc-advis-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.uc-advis-card--fb .uc-advis-card-header { color: #1877f2; }
.uc-advis-card--google .uc-advis-card-header { color: #4285f4; }
.uc-advis-card--tiktok .uc-advis-card-header { color: #010101; }
.uc-advis-card--banned .uc-advis-card-header { color: #ef4444; }

.uc-advis-card--fb { border-color: rgba(24,119,242,0.2); }
.uc-advis-card--google { border-color: rgba(66,133,244,0.2); }
.uc-advis-card--tiktok { border-color: rgba(0,0,0,0.1); }
.uc-advis-card--banned {
    border-color: rgba(239,68,68,0.3);
    background: rgba(255,240,240,0.95);
    animation: adCardIn 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.2s forwards,
               adCardShake 0.6s ease 2.5s;
}

@keyframes adCardShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-6px) rotate(-1deg); }
    30% { transform: translateX(5px) rotate(1deg); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
}

.uc-advis-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.uc-advis-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.uc-advis-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.uc-advis-status--ok {
    background: rgba(52,199,89,0.12);
    color: #22c55e;
    animation: shieldPulse 3s ease-in-out infinite;
}

.uc-advis-status--ban {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    animation: banBlink 1.5s step-end infinite 3s;
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); }
    50% { box-shadow: 0 0 8px 2px rgba(52,199,89,0.2); }
}

@keyframes banBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.uc-advis-card-id {
    font-size: 10px;
    font-family: "SF Mono", "Fira Code", monospace;
    color: #9ca3af;
    letter-spacing: 0.05em;
}

.uc-advis-card--banned .uc-advis-card-id {
    color: #ef4444;
    font-weight: 700;
}

/* Hero illustration */
.uc-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.uc-hero-illustration {
    position: relative;
    width: 380px;
    height: 380px;
}

/* ---- Hero background video ---- */
.uc-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.uc-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uc-hero-rings {
    position: absolute;
    inset: 0;
}

.uc-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    background: transparent;
    background-clip: padding-box;
}

.uc-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(252,48,246,0.6), rgba(255,255,255,0.5), rgba(28,145,248,0.4), rgba(255,255,255,0.5), rgba(252,48,246,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.uc-ring--1 {
    inset: 60px;
    background: rgba(252,48,246,0.03);
    animation: uc-pulse 3.5s ease-in-out infinite;
}

.uc-ring--2 {
    inset: 25px;
    background: rgba(252,48,246,0.02);
    animation: uc-pulse 3.5s ease-in-out 0.6s infinite;
}

.uc-ring--3 {
    inset: -10px;
    background: rgba(252,48,246,0.01);
    animation: uc-pulse 3.5s ease-in-out 1.2s infinite;
}

@keyframes uc-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); border-color: rgba(28,145,248,0.12); }
    50%      { opacity: 1;   transform: scale(1.04); border-color: rgba(28,145,248,0.3); }
}

.uc-hero-floating-cards {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.uc-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    animation: uc-float 4s ease-in-out infinite;
}

.uc-float-card--1 { top: 40px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.uc-float-card--2 { bottom: 140px; left: 10px;  animation-delay: 0.7s; }
.uc-float-card--3 { bottom: 60px; right: 10px; animation-delay: 1.4s; }

@keyframes uc-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.uc-float-card--1 {
    animation-name: uc-float-center;
}
@keyframes uc-float-center {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}

.uc-float-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f9;
    border-radius: 10px;
}

.uc-float-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uc-float-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.uc-float-label {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1c1c1c;
}

.uc-float-status {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.uc-float-status--ok { color: #34c759; }

/* ============ STATS ============ */
.uc-stats {
    padding: 0;
    margin-top: -20px;
    position: relative;
    z-index: 3;
}

.uc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8ec;
    overflow: hidden;
}

.uc-stat {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid #e8e8ec;
}

.uc-stat:last-child { border-right: none; }

.uc-stat-value {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1c91f8;
    line-height: 1;
    margin-bottom: 6px;
}

.uc-stat-label {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
}

/* ============ SECTION HEADER ============ */
.uc-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.uc-section-title {
    font-family: "Geometria", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #1c1c1c;
    margin: 0 0 16px;
}
.uc-section-title span {
    color: #1c91f8;
}
.uc-section-title span {
    color: #1c91f8;
}

.uc-section-title--center {
    text-align: center;
    margin-bottom: 40px;
}

.uc-section-title--center-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.uc-section-subtitle {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============ PROBLEM ============ */
.uc-problem {
    padding: 100px 0 80px;
}

.uc-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.uc-problem-card {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 16px;
    padding: 28px 24px;
    transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}

.uc-problem-card:hover {
    border-color: #d0d0d8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.uc-problem-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 145, 248, 0.07);
    border-radius: 50%;
    margin-bottom: 18px;
}

.uc-problem-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    color: #1c91f8;
    stroke: #1c91f8;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uc-problem-card-title {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    margin: 0 0 8px;
}

.uc-problem-card-desc {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #71717a;
    margin: 0;
}

/* ============ SOLUTION (feature rows) ============ */
.uc-solution {
    padding: 80px 0 60px;
    background: #f8f9fc;
}

.uc-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.uc-feature:last-child { margin-bottom: 0; }

.uc-feature--right .uc-feature-text  { order: 2; }
.uc-feature--right .uc-feature-visual { order: 1; }

.uc-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28,145,248,0.08);
    border-radius: 14px;
    margin-bottom: 20px;
}

.uc-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #1c91f8;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uc-feature-title {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0 0 14px;
    line-height: 1.3;
}

.uc-feature-desc {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Feature mockups */
.uc-feature-visual {
    display: flex;
    justify-content: center;
}

.uc-feature-mockup {
    width: 100%;
    max-width: 420px;
}

/* -- VM window mockup -- */
.uc-mockup-window {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.uc-mockup-dots {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid #e8e8ec;
}

.uc-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.uc-mockup-dots span:nth-child(1) { background: #ff5f57; }
.uc-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.uc-mockup-dots span:nth-child(3) { background: #28c840; }

.uc-mockup-rows {
    padding: 8px 0;
}

.uc-mockup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 12px 20px;
    transition: background 0.2s;
}

.uc-mockup-row:hover { background: rgba(28,145,248,0.03); }

.uc-mockup-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.uc-mockup-chip--green  { background: rgba(52,199,89,0.1);  color: #28a745; }
.uc-mockup-chip--blue   { background: rgba(28,145,248,0.1); color: #1c91f8; }
.uc-mockup-chip--orange { background: rgba(245,166,35,0.1); color: #e09600; }

.uc-mockup-id {
    font-family: "SF Mono", "Menlo", monospace;
    font-size: 12px;
    color: #aaa;
}

/* -- Layers diagram -- */
.uc-layers-diagram {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uc-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 18px 24px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.uc-layer:hover { transform: translateX(6px); }

.uc-layer span {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.uc-layer small {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 13px;
    font-weight: 300;
    opacity: 0.7;
}

.uc-layer--hw { background: rgba(255,59,48,0.06);  color: #cc2d25; }
.uc-layer--os { background: rgba(245,166,35,0.08); color: #b87d00; }
.uc-layer--br { background: rgba(28,145,248,0.08); color: #1275c4; }

/* -- Shield checks -- */
.uc-shield-graphic {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.uc-shield-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.uc-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f4;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.uc-check:last-child { border-bottom: none; }

/* Visible states triggered by JS */
.uc-feature.is-visible .uc-mockup-row,
.uc-feature.is-visible .uc-layer,
.uc-feature.is-visible .uc-check {
    opacity: 1;
    transform: none;
}
.uc-feature.is-visible .uc-mockup-row:nth-child(1) { transition-delay: 0.2s; }
.uc-feature.is-visible .uc-mockup-row:nth-child(2) { transition-delay: 0.45s; }
.uc-feature.is-visible .uc-mockup-row:nth-child(3) { transition-delay: 0.7s; }
.uc-feature.is-visible .uc-layer:nth-child(1) { transition-delay: 0.2s; }
.uc-feature.is-visible .uc-layer:nth-child(2) { transition-delay: 0.45s; }
.uc-feature.is-visible .uc-layer:nth-child(3) { transition-delay: 0.7s; }
.uc-feature.is-visible .uc-check:nth-child(1) { transition-delay: 0.15s; }
.uc-feature.is-visible .uc-check:nth-child(2) { transition-delay: 0.3s; }
.uc-feature.is-visible .uc-check:nth-child(3) { transition-delay: 0.45s; }
.uc-feature.is-visible .uc-check:nth-child(4) { transition-delay: 0.6s; }
.uc-feature.is-visible .uc-check:nth-child(5) { transition-delay: 0.75s; }

/* ============ PLATFORMS ============ */
.uc-platforms {
    padding: 80px 0;
}

.uc-platforms-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}
.uc-page .uc-platforms-label {
    color: rgb(28, 145, 248);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
    line-height: 20px;
}
.uc-platforms-title {
    font-family: 'Geometria', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.96px;
    color: rgb(72, 72, 72);
    text-transform: uppercase;
    margin: 0;
}
.uc-platforms-nav {
    display: none;
    gap: 12px;
    flex-shrink: 0;
}
.uc-platforms-nav.is-active {
    display: flex;
}
.uc-platforms-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: all 0.2s;
}
.uc-platforms-nav button:hover {
    border-color: #1c91f8;
    background: #1c91f8;
    color: #fff;
}
.uc-platforms-nav button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}
@media (min-width: 640px) {
    .uc-platforms-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.uc-platforms-carousel {
    position: relative;
}
.uc-platforms-swiper {
    overflow: hidden;
    padding: 8px 0;
}
.uc-platforms-swiper .swiper-slide {
    height: auto;
}
.uc-platforms-swiper .swiper-slide .uc-platform {
    height: 100%;
}

.uc-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    border: 1px solid #e8e8ec;
    border-radius: 14px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    cursor: default;
}

.uc-platform:hover {
    border-color: rgba(28,145,248,0.3);
    box-shadow: 0 8px 24px rgba(28,145,248,0.08);
    transform: translateY(-3px);
}
.uc-page--dark .uc-platform {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    border-color: rgba(255,255,255,0.08);
}
.uc-page--dark .uc-platform:hover {
    border-color: rgba(28,145,248,0.4);
    box-shadow: 0 8px 24px rgba(28,145,248,0.15);
}

.uc-platform-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
}
.uc-platform-logo svg {
    width: 100%;
    max-width: 190px;
    height: auto;
}
svg.amaz_m {
    max-width: 240px;
}
svg.shopi_m {
    max-width: 210px;
}
svg.x_twitter_m {
    max-width: 160px;
}
svg.ebay_m {
    max-width: 210px;
}
svg.facebook_m,
svg.google_ad_m,
svg.snap_ch_m {
    max-width: 210px;
}
svg.tiktok_m {
    max-width: 190px;
}
.uc-platform-logo img.uc-platform-logo--shopify,
.uc-platform-logo img.uc-platform-logo--walmart,
.uc-platform-logo img.uc-platform-logo--aliexpress {
    width: 80px;
    height: 80px;
}

.uc-platform-letter {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1c91f8;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28,145,248,0.08);
    border-radius: 12px;
}

.uc-platform-name {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1c1c1c;
}

/* ============ STEPS ============ */
.uc-steps {
    padding: 80px 0;
    background: #f8f9fc;
}

.uc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.uc-step {
    text-align: center;
    position: relative;
}

.uc-step-num {
    font-family: "Geometria", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(28,145,248,0.12);
    line-height: 1;
    transition: color 0.8s ease;
    margin-bottom: 16px;
}

.uc-step-connector {
    display: none;
}

.uc-step-title {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1c1c1c;
    margin: 0 0 10px;
}

.uc-step-desc {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #666;
    margin: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ CTA ============ */
.uc-cta-section {
    padding: 80px 0;
}

.uc-cta-block {
    background: linear-gradient(135deg, #1c91f8 0%, #0d6edb 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.uc-cta-block::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.uc-cta-block::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.uc-cta-title {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.uc-cta-text {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}

/* CTA button — uses global proxy-v2-cta */
.uc-cta-block .proxy-v2-cta {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #fff;
    color: #1c91f8;
}
.uc-cta-block .proxy-v2-cta:hover {
    background: #484848;
    color: #fff;
}

/* ============ FAQ ============ */
.uc-faq {
    padding: 80px 0;
    background: #f8f9fc;
}

.uc-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.uc-faq-item {
    border-bottom: none;
    padding: 15px 0;
}

.uc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 45px 40px;
    padding-right: 80px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #1c1c1c;
    gap: 16px;
    position: relative;
}

.uc-faq-q svg {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
    color: #1c91f8;
}

.uc-faq-item.is-open .uc-faq-q svg {
    transform: translateY(-50%) rotate(180deg);
    color: #1c91f8;
}

.uc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.4s;
    padding: 0 0;
}

.uc-faq-item.is-open .uc-faq-a {
    max-height: 500px;
    padding: 0 40px 20px;
}

.uc-faq-a p {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ============ RELATED ============ */
.uc-related {
    padding: 80px 0;
}

.uc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uc-related-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid #e8e8ec;
    border-radius: 16px;
    text-decoration: none;
    transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}

.uc-related-card:hover {
    border-color: rgba(28,145,248,0.25);
    box-shadow: 0 12px 40px rgba(28,145,248,0.08);
    transform: translateY(-3px);
}

.uc-related-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28,145,248,0.07);
    border-radius: 50%;
    margin-bottom: 16px;
}

.uc-related-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #1c91f8;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uc-related-title {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1c1c1c;
    margin: 0 0 6px;
}

.uc-related-desc {
    font-family: "HelveticaNeueCyr", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============ RESPONSIVE ============ */

/* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
    .uc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .uc-hero-visual { display: none; }
    .uc-hero { padding: 60px 0 50px; }
    .uc-hero-title { font-size: 36px; }
    .uc-hero-subtitle { max-width: 100%; font-size: 15px; }
    .uc-hero-btn-wrap { max-width: 100%; }

    .uc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .uc-stat:nth-child(2) { border-right: none; }
    .uc-stat:nth-child(1),
    .uc-stat:nth-child(2) { border-bottom: 1px solid #e8e8ec; }

    .uc-problem { padding: 60px 0 50px; }
    .uc-problem-grid { grid-template-columns: repeat(2, 1fr); }

    .uc-feature { grid-template-columns: 1fr; gap: 30px; }
    .uc-feature--right .uc-feature-text,
    .uc-feature--right .uc-feature-visual { order: unset; }
    .uc-feature-title { font-size: 22px; }
    .uc-feature { margin-bottom: 50px; }

    .uc-section-title { font-size: 30px; }
    .uc-section-header { margin-bottom: 32px; }

    .uc-platforms { padding: 50px 0; }
    .uc-steps { padding: 50px 0; }
    .uc-steps-grid { grid-template-columns: 1fr; gap: 30px; }
    .uc-step-title { font-size: 22px; }

    .uc-faq { padding: 50px 0; }
    .uc-faq-q { font-size: 16px; padding: 25px; padding-right: 60px; }
    .uc-faq-q svg { right: 30px; }
    .uc-faq-a p { font-size: 15px; }

    .uc-cta-section { padding: 50px 0; }
    .uc-cta-title { font-size: 26px; }

    .uc-related { padding: 50px 0; }
    .uc-related-grid { grid-template-columns: repeat(2, 1fr); }

    .uc-comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .uc-comparison-table { min-width: 600px; }

    .uc-solution { padding: 50px 0 30px; }
}

.uc-swipe-hint { display: none; }

/* --- Mobile (max-width: 575px) --- */
@media (max-width: 575px) {
    .uc-page { padding-top: 0; }
    .uc-page p { font-size: 15px; }

    /* Side padding for container inside uc-page */
    .uc-page .container {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    /* Hero */
    .uc-hero { padding: 40px 0 30px; }
    .uc-hero-title { font-size: 24px; margin-bottom: 14px; }
    .uc-hero-subtitle { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
    .uc-hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
    .uc-hero-btn-wrap {
        max-width: 280px;
        width: auto;
        text-align: center;
        justify-content: center;
    }

    /* Stats */
    .uc-stats { margin-top: -10px; }
    .uc-stats-grid { grid-template-columns: 1fr 1fr; }
    .uc-stat { padding: 20px 14px; }
    .uc-stat-value { font-size: 24px; }
    .uc-stat-label { font-size: 11px; }

    /* Section titles */
    .uc-section-title { font-size: 22px; }
    .uc-section-subtitle { font-size: 14px; }
    .uc-section-header { margin-bottom: 24px; }

    /* Problem */
    .uc-problem { padding: 40px 0 30px; }
    .uc-problem-grid { grid-template-columns: 1fr; gap: 16px; }
    .uc-problem-card { padding: 20px 18px; }
    .uc-problem-card-title { font-size: 15px; }
    .uc-problem-card-desc { font-size: 13px; }

    /* Mid CTA */
    .uc-mid-cta-inner {
        padding: 24px 16px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .uc-mid-cta-headline { font-size: 17px; }
    .uc-mid-cta-inner .proxy-v2-cta { width: auto; max-width: 280px; justify-content: center; }

    /* Solution / Features */
    .uc-solution { padding: 40px 0 20px; }
    .uc-feature { margin-bottom: 40px; gap: 20px; }
    .uc-feature-title { font-size: 20px; }
    .uc-feature-desc { font-size: 14px; }
    .uc-feature-icon { width: 44px; height: 44px; margin-bottom: 14px; }
    .uc-feature-mockup { max-width: 100%; }
    .uc-mockup-row { padding: 10px 14px; }
    .uc-mockup-chip { font-size: 12px; padding: 3px 10px; }
    .uc-mockup-id { font-size: 10px; }
    .uc-layer { padding: 14px 16px; }
    .uc-layer span { font-size: 14px; }
    .uc-layer small { font-size: 12px; }
    .uc-shield-graphic { padding: 20px 16px; }
    .uc-check { font-size: 13px; gap: 8px; }

    /* Platforms */
    .uc-platforms { padding: 40px 0; }
    .uc-platforms-title { font-size: 24px; }
    .uc-platform { padding: 18px 10px; }
    .uc-platform-logo svg { max-width: 140px; }
    svg.amaz_m { max-width: 180px; }
    svg.shopi_m,
    svg.facebook_m,
    svg.google_ad_m,
    svg.snap_ch_m { max-width: 160px; }
    svg.tiktok_m { max-width: 140px; }
    svg.adnet_m,
    svg.payment_m { max-width: 160px; }
    .uc-platforms-nav button { width: 40px; height: 40px; }
    .uc-platforms-carousel { overflow: hidden; }

    /* Steps */
    .uc-steps { padding: 40px 0; }
    .uc-step-num { font-size: 36px; }
    .uc-step-title { font-size: 20px; }
    .uc-step-desc { font-size: 13px; max-width: 100%; }

    /* Comparison table — scrollable on mobile */
    .uc-comparison { padding: 2rem 0; overflow: hidden; }
    .uc-comparison .container { overflow: visible; }
    .uc-comparison-wrap {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: none;
        scrollbar-width: thin;
    }
    .uc-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 14px;
        color: #6b7280;
        margin-top: 1rem;
        animation: ucSwipeHint 2s ease-in-out infinite;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .uc-swipe-hint.hidden-hint {
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        pointer-events: none;
    }
    .uc-swipe-finger {
        font-size: 20px;
        animation: ucFingerSwipe 2s ease-in-out infinite;
    }
    .uc-swipe-hint.hidden-hint .uc-swipe-finger {
        animation: none;
    }
    .uc-swipe-chevrons {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #6b7280;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    @keyframes ucSwipeHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(18px); }
    }
    @keyframes ucFingerSwipe {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(12px); }
    }
    .uc-comparison-table { min-width: 500px; font-size: 13px; }
    .uc-comparison-table th,
    .uc-comparison-table td { padding: 10px 6px; }
    .uc-comparison-table th { font-size: 11px; word-break: break-word; }
    .uc-comparison-table th:first-child,
    .uc-comparison-table td:first-child { width: 90px; }
    .uc-ct-param { white-space: normal; }
    .uc-comparison-note { font-size: 13px; }

    /* CTA */
    .uc-cta-section { padding: 40px 0; }
    .uc-cta-block { padding: 32px 20px; border-radius: 16px; }
    .uc-cta-title { font-size: 22px; }
    .uc-cta-text { font-size: 14px; margin-bottom: 20px; }
    .uc-cta-block .proxy-v2-cta { max-width: 280px; width: auto; justify-content: center; }

    /* FAQ */
    .uc-faq { padding: 40px 0; }
    .uc-faq-q { font-size: 15px; padding: 20px; padding-right: 55px; gap: 12px; }
    .uc-faq-q svg { width: 18px; height: 18px; right: 20px; }
    .uc-faq-a p { font-size: 14px; line-height: 1.65; }
    .uc-faq-item.is-open .uc-faq-a { max-height: 500px; }

    /* Related */
    .uc-related { padding: 40px 0; }
    .uc-related-grid { grid-template-columns: 1fr; gap: 16px; }
    .uc-related-card { padding: 20px 18px; }
    .uc-related-title { font-size: 16px; }
    .uc-related-desc { font-size: 13px; }
}

/* --- Small mobile (max-width: 380px) --- */
@media (max-width: 380px) {
    .uc-hero-title { font-size: 21px; }
    .uc-section-title { font-size: 20px; }
    .uc-stat-value { font-size: 22px; }
    .uc-stat { padding: 16px 10px; }
    .uc-cta-title { font-size: 20px; }
    .uc-platforms-title { font-size: 20px; }
}

/* Breadcrumbs — uses global breadcrumbs.css */

/* =============================================
   MID-PAGE CTA
   ============================================= */
.uc-mid-cta { padding: 0 0 2rem; }
.uc-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0b1a3b 0%, #0f2557 50%, #122a6b 100%);
    border: 1px solid rgba(28,145,248,.15);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
}
.uc-mid-cta-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(28,145,248,.12) 0%, transparent 70%);
    pointer-events: none;
}
.uc-mid-cta-headline {
    font-family: 'Geometria', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    margin: 0;
}
/* Mid CTA button — uses global proxy-v2-cta */
.uc-mid-cta-inner .proxy-v2-cta {
    width: auto;
    white-space: nowrap;
}
.uc-mid-cta-note {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin: 0;
    width: 100%;
    text-align: center;
}

/* =============================================
   TECH COMPARISON TABLE
   ============================================= */
.uc-comparison { padding: 4rem 0; }
.uc-comparison-wrap {
    border-radius: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    margin-top: 2rem;
}
.uc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
}
.uc-comparison-table thead {
    color: #fff;
}
.uc-comparison-table th {
    padding: 16px 14px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}
.uc-comparison-table th:first-child { text-align: left; background: #0b1a3b; }
.uc-ct-col-vpn { background: #6b7280; }
.uc-ct-col-browser { background: #4b5563; }
.uc-ct-col-pc { background: #1e3a5f; }
.uc-ct-col-antidetect { background: linear-gradient(135deg, #0688fe 0%, #034a9e 100%); }
.uc-comparison-table td {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid #f0f2f5;
    color: #333;
}
.uc-comparison-table td:first-child { text-align: left; }
.uc-comparison-table tbody tr:hover { background: #f8faff; }
.uc-ct-param { font-weight: 600; color: #1a1a2e; white-space: nowrap; }
.uc-comparison-table .check-icon,
.uc-comparison-table .cross-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.uc-ct-warn { color: #f5a623; font-weight: 600; font-size: 13px; }
.uc-ct-highlight {
    background: rgba(28,145,248,.04) !important;
    border-left: 2px solid rgba(28,145,248,.15);
}
.uc-ct-row-result td {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #fafbff;
}
.uc-comparison-note {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 1.5rem;
    font-style: italic;
}

/* =============================================
   Crypto hero: wallet cards + rotating coin
   ============================================= */
/* Rotating coin in center of hero illustration */
.uc-crypto-coin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 5;
    perspective: 600px;
    pointer-events: none;
}
.uc-crypto-coin-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cryptoCoinFlip 6s ease-in-out infinite;
}
.uc-crypto-coin-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uc-crypto-coin-face svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 30px rgba(247, 147, 26, 0.5));
}
.uc-crypto-coin-face circle,
.uc-crypto-coin-face text {
    opacity: 1;
}
.uc-crypto-coin--usdt {
    transform: rotateY(180deg);
}
.uc-crypto-coin--usdt svg {
    filter: drop-shadow(0 4px 20px rgba(38, 161, 123, 0.3));
}

@keyframes cryptoCoinFlip {
    0%, 40% { transform: rotateY(0deg); }
    50%, 90% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* Particles around coin */
.uc-crypto-coin::before,
.uc-crypto-coin::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: cryptoParticle 3s ease-in-out infinite;
}
.uc-crypto-coin::before {
    background: #f7931a;
    top: -10px;
    left: 20px;
    animation-delay: 0s;
}
.uc-crypto-coin::after {
    background: #26a17b;
    bottom: -10px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes cryptoParticle {
    0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
    50% { opacity: 1; transform: scale(1) translateY(-20px); }
}

@media (max-width: 768px) {
    .uc-crypto-coin {
        width: 90px;
        height: 90px;
    }
}

/* =============================================
   Dark hero theme (crypto, etc.)
   ============================================= */
.uc-page--dark .uc-hero {
    background: linear-gradient(135deg, #010b19 0%, #1a1a3e 100%);
}
.uc-page--dark .uc-hero-title {
    color: #fff;
}
.uc-page--dark .uc-hero-subtitle {
    color: rgba(255,255,255,0.7);
}
.uc-page--dark .uc-hero-badge {
    background: rgba(28,145,248,0.15);
    color: #1c91f8;
    border-color: rgba(28,145,248,0.3);
}
.uc-page--dark .uc-hero-illustration {
    background: transparent;
}
.uc-page--dark .uc-hero-video-bg {
    opacity: 0.4;
}
.uc-page--dark .uc-ring {
    border-color: rgba(255,255,255,0.1);
}
.uc-page--dark .uc-ring--1 { border-color: rgba(252,48,246,0.2); }
.uc-page--dark .uc-ring--2 { border-color: rgba(28,145,248,0.15); }
.uc-page--dark .uc-ring--3 { border-color: rgba(255,255,255,0.08); }

/* Animated glow shadow left of hero circle (dark theme) */
.uc-page--dark .uc-hero-illustration::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(180deg, #4784c4 0%, #253d42 50%, #3c1754 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
    50% { opacity: 0.65; transform: translateY(-10px) scale(1.05); }
}

/* Dark theme breadcrumbs */
.uc-page--dark .article-breadcrumb {
    background: linear-gradient(135deg, #010b19 0%, #0d1a30 100%);
    border-bottom-color: rgba(255,255,255,0.08);
}
.uc-page--dark .article-breadcrumb .article-back,
.uc-page--dark .article-breadcrumb .article-breadcrumb-link {
    color: rgba(255,255,255,0.6);
}
.uc-page--dark .article-breadcrumb .article-back:hover,
.uc-page--dark .article-breadcrumb .article-breadcrumb-link:hover {
    color: #1c91f8;
}
.uc-page--dark .article-breadcrumb .article-breadcrumb-sep {
    color: rgba(255,255,255,0.3);
}
.uc-page--dark .article-breadcrumb .article-breadcrumb-current {
    color: rgba(255,255,255,0.5);
}
svg.adnet_m {
    max-width: 210px;
}
svg.payment_m {
    max-width: 210px;
}
