/* APROXY.PRO — Home page */

.page-home .header {
    background: transparent;
    border-bottom-color: transparent;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.page-home .header--scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
}
/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay { --reveal-delay: 0.15s; }

/* Hero content — каскад слева при загрузке */
.reveal--hero-content.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}
.reveal--hero-content .hero__label,
.reveal--hero-content .hero__title,
.reveal--hero-content .hero__text,
.reveal--hero-content .hero__actions,
.reveal--hero-content .hero__trust {
    opacity: 0;
    transform: translate3d(-12px, 20px, 0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--hero-content.is-visible .hero__label {
    opacity: 1;
    transform: none;
    transition-delay: 0.06s;
}
.reveal--hero-content.is-visible .hero__title {
    opacity: 1;
    transform: none;
    transition-delay: 0.14s;
}
.reveal--hero-content.is-visible .hero__text {
    opacity: 1;
    transform: none;
    transition-delay: 0.24s;
}
.reveal--hero-content.is-visible .hero__actions {
    opacity: 1;
    transform: none;
    transition-delay: 0.34s;
}
.reveal--hero-content.is-visible .hero__trust {
    opacity: 1;
    transform: none;
    transition-delay: 0.44s;
}

/* Hero visual — появление справа, каскад flow → карточка */
.reveal--hero-visual {
    --reveal-delay: 0.1s;
    transform: translate3d(36px, 12px, 0) scale(0.97);
}
.reveal--hero-visual.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}
.reveal--hero-visual:not(.is-visible) .flow,
.reveal--hero-visual:not(.is-visible) .proxy-card {
    opacity: 0;
}
.reveal--hero-visual:not(.is-visible) .flow {
    transform: translateY(-10px);
}
.reveal--hero-visual:not(.is-visible) .proxy-card {
    transform: translateY(28px) scale(0.96);
    animation: none;
}
.reveal--hero-visual.is-visible .flow {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.18s;
}
.reveal--hero-visual.is-visible .proxy-card {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s,
        box-shadow 0.25s;
    transition-delay: 0.38s, 0.38s, 0s, 0s;
}
.reveal--hero-visual.is-visible .proxy-card.is-float {
    animation: proxy-card-float 7s ease-in-out infinite;
    animation-delay: 0.5s;
}
.reveal--hero-visual.is-visible .flow__node,
.reveal--hero-visual.is-visible .flow__line {
    animation: hero-flow-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.reveal--hero-visual.is-visible .flow > :nth-child(1) { animation-delay: 0.22s; }
.reveal--hero-visual.is-visible .flow > :nth-child(2) { animation-delay: 0.32s; }
.reveal--hero-visual.is-visible .flow > :nth-child(3) { animation-delay: 0.42s; }
.reveal--hero-visual.is-visible .flow > :nth-child(4) { animation-delay: 0.52s; }
.reveal--hero-visual.is-visible .flow > :nth-child(5) { animation-delay: 0.62s; }
@keyframes hero-flow-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.reveal--hero-visual.is-visible .flow__line {
    transform-origin: left center;
}
.reveal--hero-visual.is-visible .flow__packet {
    animation-play-state: running;
}
.reveal--hero-visual:not(.is-visible) .flow__packet {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .reveal--hero-content .hero__label,
    .reveal--hero-content .hero__title,
    .reveal--hero-content .hero__text,
    .reveal--hero-content .hero__actions,
    .reveal--hero-content .hero__trust {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .faq__layout.is-revealed .faq__intro,
    .faq__layout.is-revealed .faq__item { opacity: 1; transform: none; transition: none; }
    .faq__answer { transition: none; }
    .card--faq[open] .faq__answer p { transition: none; }
    .marquee__track { animation: none; transform: none; }
    .hero__orb, .flow__packet, .proxy-card,
    .reveal--hero-visual .flow__node,
    .reveal--hero-visual .flow__line,
    .proxy-card__code--mask, .proxy-card__live, .proxy-card__bar-fill { animation: none; }
    .proxy-card__bar-fill { transform: scaleX(1); }
    .reveal--hero-visual:not(.is-visible) .flow,
    .reveal--hero-visual:not(.is-visible) .proxy-card { opacity: 1; transform: none; }
}

/* Hero */
.page-home .hero {
    position: relative;
    padding: 2.5rem 0 4rem;
    overflow: hidden;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero__orb--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(255, 255, 255, 0.04);
}
.hero__orb--2 {
    width: 300px;
    height: 300px;
    bottom: 0;
    left: -100px;
    background: rgba(255, 255, 255, 0.03);
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 15%, transparent 70%);
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
}
.hero__content {
    text-align: left;
    max-width: 34rem;
}
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.72);
    margin-bottom: 1.35rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero__pulse {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}
.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 1.35rem;
    letter-spacing: -0.035em;
}
.hero__title-primary {
    display: block;
}
.hero__title-line {
    display: block;
    margin-top: 0.06em;
    background: linear-gradient(105deg, #fff 0%, #c8c8c8 55%, #6a6a6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__text {
    color: rgba(136, 136, 136, 0.95);
    max-width: 28rem;
    margin-bottom: 1.85rem;
    font-size: clamp(1rem, 1.6vw, 1.08rem);
    line-height: 1.72;
}
.hero__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem 0.4rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.3;
    color: rgba(245, 245, 245, 0.78);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}
.hero__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}
.hero__trust-icon .icon {
    display: block;
}
.hero__trust-text {
    letter-spacing: 0.01em;
}

/* Flow diagram */
.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    perspective: 1200px;
}
.hero__visual-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    width: 100%;
    max-width: 400px;
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 65%),
        rgba(255, 255, 255, 0.015);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}
.reveal--hero-visual.is-visible .hero__visual-stage {
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow:
        0 40px 72px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 380px;
    padding: 0.5rem 0;
}
.flow__node {
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}
.flow__node--mid {
    border-color: #555;
    color: #ccc;
}
.flow__node--tg {
    border-color: #fff;
    color: #fff;
}
.flow__line {
    flex: 1;
    height: 2px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}
.flow__packet {
    position: absolute;
    top: 0;
    left: -20%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: packet 2s ease-in-out infinite;
}
.flow__packet--2 { animation-delay: 1s; }
@keyframes packet {
    0% { left: -20%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Proxy card (hero) */
.proxy-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(165deg, rgba(28, 28, 28, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.proxy-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.04);
}
.proxy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    pointer-events: none;
    z-index: 3;
}
.proxy-card__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 55%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.09), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.proxy-card > *:not(.proxy-card__glow) {
    position: relative;
    z-index: 2;
}
@keyframes proxy-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.proxy-card__chrome {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.35);
}
.proxy-card__dots {
    display: flex;
    gap: 5px;
}
.proxy-card__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2e2e2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.proxy-card__dot--on {
    background: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.2);
}
.proxy-card__title {
    font-size: 0.68rem;
    font-weight: 500;
    color: #777;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.proxy-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.22rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a7f3d0;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.22);
    border-radius: 999px;
}
.proxy-card__live {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
    animation: proxy-card-pulse 1.6s ease infinite;
}
@keyframes proxy-card-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}
.proxy-card__body {
    padding: 1.15rem 1rem 1rem;
}
.proxy-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.proxy-card__badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e5e5e5;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}
.proxy-card__badge--muted {
    color: #888;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
}
.proxy-card__badge--plan {
    margin-left: auto;
    color: #bbb;
    text-transform: none;
    letter-spacing: 0.02em;
}
.proxy-card__field {
    margin-bottom: 0.75rem;
}
.proxy-card__field:last-of-type {
    margin-bottom: 1rem;
}
.proxy-card__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.04em;
}
.proxy-card__value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
.proxy-card__code {
    flex: 1;
    min-width: 0;
    font-size: 0.76rem;
    font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
    color: #d4d4d4;
    letter-spacing: 0.03em;
    background: none;
    border: none;
    padding: 0;
}
.proxy-card__code--mask {
    background: linear-gradient(90deg, #d4d4d4 0%, #888 45%, #d4d4d4 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: proxy-card-shimmer 4s ease-in-out infinite;
}
.proxy-card__code--secret {
    color: #888;
    letter-spacing: 0.12em;
}
@keyframes proxy-card-shimmer {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: 0 0; }
}
.proxy-card__lock {
    flex-shrink: 0;
    color: #555;
    line-height: 0;
}
.proxy-card__hint {
    margin: 0.75rem 0 0.5rem;
    font-size: 0.72rem;
    line-height: 1.4;
    color: #666;
    text-align: center;
}

.proxy-card__btn {
    margin-top: 0;
}
.proxy-card__footer {
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.25);
}
.proxy-card__expiry-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    color: #666;
}
.proxy-card__expiry-head strong {
    font-size: 0.78rem;
    color: #ccc;
    font-weight: 600;
}
.proxy-card__bar {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.proxy-card__bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #666, #fff);
    transform: scaleX(0);
    transform-origin: left;
}
@keyframes proxy-card-bar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
.reveal--hero-visual.is-visible .proxy-card.is-ready .proxy-card__field {
    animation: proxy-card-field-in 0.5s ease backwards;
}
.reveal--hero-visual.is-visible .proxy-card.is-ready .proxy-card__field:nth-child(3) { animation-delay: 0.08s; }
.reveal--hero-visual.is-visible .proxy-card.is-ready .proxy-card__bar-fill {
    animation: proxy-card-bar 2s ease-out forwards;
    animation-delay: 0.55s;
}
@keyframes proxy-card-field-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Marquee */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 0.75rem 0;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee__track span {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.marquee__track span::after {
    content: '·';
    margin-left: 2.5rem;
    font-weight: 700;
    letter-spacing: 0;
    opacity: 0.35;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Metrics */
.metrics {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 55%),
        var(--bg);
}

.metrics .container {
    position: relative;
    z-index: 1;
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}

.metrics .card--stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 9.25rem;
    padding: 1rem 0.55rem;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.metric__slot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric__slot--eyebrow {
    flex: 0 0 1.125rem;
    min-height: 1.125rem;
}

.metric__slot--value {
    flex: 1 1 auto;
    min-height: 3.1rem;
}

.metric__slot--label {
    flex: 0 0 2.65em;
    min-height: 2.65em;
    align-items: flex-start;
    padding-top: 0.1rem;
}

.metrics .card--stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.metrics .card--stat:hover::before {
    opacity: 1;
}

.metrics .card--stat:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.metric--registrations {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(12, 12, 12, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.metric--registrations::before {
    opacity: 1;
}

.metric__eyebrow {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    line-height: 1.125rem;
}

.metric__eyebrow:empty::before {
    content: '\200b';
}

.metric--registrations .metric__eyebrow {
    color: #bbb;
}

.metrics .metric__value {
    display: block;
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.metrics .stat-label {
    display: block;
    width: 100%;
    max-width: 11.5rem;
    margin: 0 auto;
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    hyphens: auto;
}

/* Sections (главная) */
.page-home .section {
    position: relative;
    padding: clamp(3.25rem, 7vw, 5.25rem) 0;
    scroll-margin-top: 88px;
}

.page-home .section--steps {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .section--steps::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(640px, 85%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.page-home .section--alt {
    background: var(--bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-home .section--alt-features::before {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
        radial-gradient(ellipse 40% 35% at 0% 100%, rgba(120, 160, 255, 0.04), transparent 55%);
}

.page-home .section--alt-faq::before {
    background:
        radial-gradient(ellipse 70% 45% at 50% 100%, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(ellipse 45% 35% at 100% 0%, rgba(42, 171, 238, 0.05), transparent 55%);
}

.page-home .section--alt > .container {
    position: relative;
    z-index: 1;
}

.page-home .section--alt-features .card--bento {
    background: rgba(12, 12, 12, 0.65);
    border-color: rgba(255, 255, 255, 0.09);
}

.page-home .section--alt-features .card--bento:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(18, 18, 18, 0.85);
}

.page-home .section--compare {
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(74, 222, 128, 0.04), transparent 55%),
        var(--bg);
}

.page-home .section--compare::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.02), transparent 70%);
    pointer-events: none;
}

.page-home .section--compare > .container {
    position: relative;
    z-index: 1;
}

.page-home .section--compare::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(720px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* Section head */
.section__head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.section__head--narrow {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
}

.section__head .section__title {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section__subtitle {
    text-align: center;
    color: var(--muted);
    margin: 0.85rem auto 0;
    max-width: 32rem;
    font-size: 0.95rem;
    line-height: 1.65;
}

.section__title--left { text-align: left; }
.faq__intro .section__eyebrow,
.faq__intro .section__title { text-align: left; }
.faq__intro .section__eyebrow {
    display: inline-block;
}

/* Steps */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    z-index: 0;
}
.card--step {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    list-style: none;
}
.card--step:hover { transform: translateY(-6px); }
.step__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    color: var(--muted);
}
.step__icon svg { width: 22px; height: 22px; }
.step__num {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* Bento */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.card--bento {
    padding: 1.75rem;
}
.bento__item--lg {
    grid-column: span 2;
    grid-row: span 1;
}
.bento__item--wide { grid-column: span 3; }
.bento__icon {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--muted);
}
.bento__item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.bento__item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}
.bento__item p code {
    font-size: 0.8em;
    background: rgba(255,255,255,0.06);
    padding: 0.1em 0.35em;
    border-radius: 4px;
}
.bento__tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.bento__tags span {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
}

/* Compare */
.compare__wrap {
    max-width: 52rem;
    margin: 0 auto;
    padding: 0.35rem;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.compare__table {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(22, 22, 22, 0.98) 0%, rgba(6, 6, 6, 0.99) 100%);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.compare__table::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% * 1.45 / 3.45);
    width: calc(100% / 3.45);
    background: linear-gradient(180deg, rgba(74, 222, 128, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-inline: 1px solid rgba(74, 222, 128, 0.12);
    pointer-events: none;
    z-index: 0;
}

.compare__row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
}

.compare__row:last-child {
    border-bottom: none;
}

.compare__row--head {
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.compare__feature,
.compare__cell,
.compare__brand,
.compare__other {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1rem;
    text-align: center;
    min-height: 3.1rem;
}

.compare__feature {
    justify-content: flex-start;
    text-align: left;
    color: #aaa;
    padding-left: 1.25rem;
    padding-right: 0.75rem;
}

.compare__row--head .compare__feature {
    color: #666;
}

.compare__brand {
    flex-direction: column;
    gap: 0.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.03);
}

.compare__brand-name {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
}

.compare__brand-badge {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 100px;
    color: #0a0a0a;
    background: linear-gradient(90deg, #e8e8e8, #fff);
    font-weight: 700;
}

.compare__other {
    color: #666;
}

.compare__cell--win {
    flex-direction: row;
    gap: 0.4rem;
    color: #e8e8e8;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.04);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.compare__cell--lose {
    color: #555;
}

.compare__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    font-size: 0.62rem;
    font-weight: 700;
    color: #0a0a0a;
    background: #4ade80;
    flex-shrink: 0;
}

.compare__row:not(.compare__row--head):hover .compare__feature {
    color: #ccc;
}

.compare__row:not(.compare__row--head):hover .compare__cell--win {
    background: rgba(74, 222, 128, 0.1);
}

.compare__note {
    margin: 1.15rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #666;
}

/* Tariffs */
.section--tariffs {
    position: relative;
    overflow: hidden;
}
.section--tariffs::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 40%, rgba(120, 160, 255, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 45% at 85% 60%, rgba(255, 200, 120, 0.05), transparent 50%);
    pointer-events: none;
}
.section--tariffs .container { position: relative; z-index: 1; }

.tariffs {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
}
.tariffs--1 { grid-template-columns: minmax(280px, 400px); justify-content: center; }
.tariffs--2 { grid-template-columns: repeat(2, minmax(260px, 1fr)); max-width: 820px; margin: 0 auto; }
.tariffs--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.card--tariff {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: visible;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease;
}
.card--tariff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0.9;
}
.card--tariff > *:not(.tariff__badge) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.card--tariff .tariff__top { padding-top: 1.75rem; }
.card--tariff .btn { margin: 0 1.5rem 1.5rem; width: calc(100% - 3rem); }

/* Старт — спокойный, холодный */
.tariff--starter::before {
    background: linear-gradient(90deg, #5a6a7a, #8a9aaa);
}
.tariff--starter {
    border-color: rgba(130, 150, 170, 0.2);
    background: linear-gradient(165deg, rgba(30, 35, 42, 0.95) 0%, rgba(12, 12, 14, 0.99) 100%);
}
.tariff--starter .tariff__icon {
    background: rgba(130, 150, 170, 0.12);
    color: #9aabb8;
    border: 1px solid rgba(130, 150, 170, 0.2);
}
.tariff--starter .tariff__tier { color: #8a9aaa; }
.tariff--starter .tariff__chip {
    background: rgba(130, 150, 170, 0.1);
    border-color: rgba(130, 150, 170, 0.18);
    color: #a8b8c4;
}
.tariff--starter .tariff__perks li::before { color: #9aabb8; }
.tariff--starter:hover {
    border-color: rgba(130, 150, 170, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Стандарт — акцент, популярный */
.tariff--standard::before {
    background: linear-gradient(90deg, #fff, #b0b0b0);
}
.tariff--standard {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(165deg, rgba(40, 40, 42, 0.98) 0%, rgba(14, 14, 16, 0.99) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.tariffs--3 .tariff--standard {
    transform: scale(1.04);
}
.tariff--standard .tariff__icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.tariff--standard .tariff__tier { color: #ccc; }
.tariff--standard .tariff__amount { color: #fff; }
.tariff--standard .tariff__chip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
.tariff--standard:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 28px 60px rgba(0, 0, 0, 0.48);
}
.tariffs--2 .tariff--standard:hover,
.tariffs--1 .tariff--standard:hover {
    transform: translateY(-6px);
}

/* Про — премиум, тёплый золотой */
.tariff--pro::before {
    background: linear-gradient(90deg, #e8c547, #a67c2e, #e8c547);
}
.tariff--pro {
    border-color: rgba(232, 197, 71, 0.35);
    background: linear-gradient(165deg, rgba(42, 36, 22, 0.95) 0%, rgba(12, 11, 10, 0.99) 100%);
}
.tariff--pro .tariff__icon {
    background: rgba(232, 197, 71, 0.12);
    color: #e8c547;
    border: 1px solid rgba(232, 197, 71, 0.28);
}
.tariff--pro .tariff__tier { color: #c9a84a; }
.tariff--pro .tariff__amount {
    background: linear-gradient(135deg, #fff 0%, #e8c547 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tariff--pro .tariff__chip {
    background: rgba(232, 197, 71, 0.1);
    border-color: rgba(232, 197, 71, 0.22);
    color: #d4b85a;
}
.tariff--pro .tariff__perks li::before { color: #e8c547; }
.tariff--pro .tariff__badge {
    background: linear-gradient(135deg, #e8c547, #c9a030);
    color: #1a1408;
}
.tariff--pro:hover {
    border-color: rgba(232, 197, 71, 0.5);
    box-shadow: 0 16px 48px rgba(232, 197, 71, 0.12), 0 20px 50px rgba(0, 0, 0, 0.4);
}
.btn--tariff-pro {
    background: linear-gradient(135deg, #f0d060 0%, #c9a030 100%);
    color: #1a1408;
    border-color: #e8c547;
}
.btn--tariff-pro:hover {
    box-shadow: 0 8px 28px rgba(232, 197, 71, 0.35);
}

.tariff__badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.95rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #fff;
    color: #0a0a0a;
    border-radius: 100px;
    font-weight: 700;
    z-index: 3;
    white-space: nowrap;
}
.tariff--standard .tariff__badge {
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.tariff__top {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.tariff__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    flex-shrink: 0;
}
.tariff__titles { min-width: 0; }
.tariff__tier {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.tariff__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
    text-align: left;
}
.tariff__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}
.tariff__chip {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    border: 1px solid transparent;
}
.tariff__price {
    margin-bottom: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tariff__amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text);
}
.tariff__daily {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.35rem;
}
.tariff__desc {
    color: var(--muted);
    font-size: 0.84rem;
    margin-bottom: 1rem;
    line-height: 1.55;
    min-height: 0;
}
.tariff__perks {
    list-style: none;
    margin: 0 1.5rem 1.25rem;
    padding: 0;
    flex: 1;
}
.tariff__perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--muted);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tariff__perks li:last-child { border-bottom: none; }
.tariff__perks li::before {
    content: '✓';
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.1rem;
}

@media (max-width: 960px) {
    .tariffs--3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .tariffs--3 .tariff--standard { transform: none; }
    .tariff--standard:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
    .tariffs--2 { grid-template-columns: 1fr; max-width: 400px; }
}

/* FAQ layout */
.container--faq { max-width: 1040px; }

.faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 3.25rem);
    align-items: start;
}

.faq__intro {
    position: sticky;
    top: 5.5rem;
    padding-right: 0.5rem;
}

.faq__intro .section__title {
    margin-bottom: 0.85rem;
    max-width: 16rem;
}

.faq__intro-text {
    margin: 0;
    max-width: 18rem;
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq__layout:not(.is-revealed) .faq__intro {
    opacity: 0;
    transform: translateY(18px);
}

.faq__layout.is-revealed .faq__intro {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
}

.faq__layout:not(.is-revealed) .faq__item {
    opacity: 0;
    transform: translateY(14px);
}

.faq__layout.is-revealed .faq__item {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.22s ease,
        box-shadow 0.28s ease;
    transition-delay: var(--faq-delay, 0s);
}

.page-home .faq { max-width: none; margin: 0; }

.page-home .card--faq.card {
    margin: 0;
    padding: 0;
    overflow: hidden;
    transform: none !important;
    transition:
        border-color 0.22s ease,
        box-shadow 0.28s ease;
}

@media (hover: hover) {
    .page-home .faq__layout.is-revealed .card--faq:not([open]):hover {
        border-color: var(--card-border-hover);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    }
    .page-home .faq__layout.is-revealed .card--faq:not([open]) summary:hover {
        background: rgba(255, 255, 255, 0.03);
    }
}

.card--faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    min-height: 3.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    list-style: none;
    position: relative;
    z-index: 2;
    user-select: none;
    border-radius: inherit;
    transition: color 0.2s ease, background 0.2s ease;
}

.card--faq summary::-webkit-details-marker { display: none; }

.card--faq summary::after {
    content: '+';
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    color: var(--muted);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.card--faq[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.card--faq[open] {
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
}

.card--faq[open] summary::after {
    transform: rotate(45deg);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.card--faq.is-closing {
    border-color: var(--border);
    box-shadow: none;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__answer > p {
    overflow: hidden;
    margin: 0;
    min-height: 0;
}

.card--faq[open]:not(.is-closing) .faq__answer,
.card--faq.is-expanding .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer p {
    padding: 0.15rem 1.35rem 1.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.card--faq:not([open]) .faq__answer p {
    opacity: 0;
}

.card--faq[open]:not(.is-closing) .faq__answer p {
    opacity: 1;
    transition: opacity 0.28s ease 0.08s;
}

.card--faq.is-closing .faq__answer p {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card--faq summary:active {
    background: rgba(255, 255, 255, 0.04);
}

.card--faq.is-closing,
.card--faq.is-closing summary,
.card--faq.is-closing .faq__answer {
    pointer-events: none;
}

/* CTA */
.page-home .cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.cta__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta__inner {
    position: relative;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.cta__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cta__text {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.cta__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__content { text-align: center; max-width: none; }
    .reveal--hero-content .hero__label,
    .reveal--hero-content .hero__title,
    .reveal--hero-content .hero__text,
    .reveal--hero-content .hero__actions,
    .reveal--hero-content .hero__trust {
        transform: translate3d(0, 20px, 0);
    }
    .hero__text { margin-left: auto; margin-right: auto; }
    .hero__actions, .hero__trust { justify-content: center; }
    .metrics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric--registrations {
        grid-column: 1 / -1;
    }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .bento { grid-template-columns: 1fr; }
    .bento__item--lg,
    .bento__item--wide { grid-column: span 1; }
    .faq__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq__intro {
        position: static;
        padding-right: 0;
        text-align: center;
    }
    .faq__intro .section__title,
    .faq__intro-text {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .faq__intro .section__eyebrow,
    .faq__intro .section__title { text-align: center; }
    .section__title--left { text-align: center; }
}

@media (max-width: 768px) {
    .page-home .hero {
        padding: 1.5rem 0 2.5rem;
    }
    .flow { flex-wrap: wrap; justify-content: center; }
    .flow__line { display: none; }

    .compare__wrap {
        padding: 0;
        border: none;
        background: none;
        box-shadow: none;
    }

    .compare__table::before {
        display: none;
    }

    .compare__row--head {
        display: none;
    }

    .compare__row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-bottom: 0.65rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.35);
    }

    .compare__row:last-child {
        margin-bottom: 0;
    }

    .compare__feature {
        padding: 0.75rem 1rem 0.35rem;
        min-height: 0;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #777;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .compare__cell,
    .compare__brand,
    .compare__other {
        min-height: 2.75rem;
        padding: 0.65rem 1rem;
        border: none;
        justify-content: space-between;
    }

    .compare__cell--win {
        background: rgba(74, 222, 128, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .compare__cell--win::before {
        content: 'APROXY.PRO';
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #4ade80;
        font-weight: 700;
    }

    .compare__cell--lose::before {
        content: 'Самостоятельно';
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #555;
    }

    .compare__cell--lose {
        color: #666;
    }
}

@media (max-width: 480px) {
    .page-home .section {
        padding: 2.75rem 0;
    }

    .section__eyebrow {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
}
