:root {
    --bg-1: #0a0f1f;
    --bg-2: #121b36;
    --text: #f6f8ff;
    --muted: #b8c1e8;
    --line: rgba(255, 255, 255, 0.12);
    --glass: rgba(15, 22, 45, 0.66);
    --primary: #8b5cf6;
    --secondary: #00d2ff;
    --accent: #ffd54a;
    --success: #4cffb2;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 210, 255, 0.16), transparent 26%),
        linear-gradient(180deg, var(--bg-1), var(--bg-2));
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    font-family: Consolas, Monaco, monospace;
    color: #ffffff;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 340px;
    height: 340px;
    background: rgba(139, 92, 246, 0.20);
    top: -40px;
    left: -80px;
}

.orb-2 {
    width: 360px;
    height: 360px;
    background: rgba(0, 210, 255, 0.18);
    right: -100px;
    top: 120px;
}

.hero,
.section {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: 100%;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
}

.hero-card-centered {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.glass-card,
.hero-card {
    background: var(--glass);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-left h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 760px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0 36px;
    margin-top: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #fff19c);
    color: #151a2d;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 40px rgba(255, 213, 74, 0.34);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.02);
}

.cta-button.large {
    min-height: 72px;
    padding: 0 36px;
    font-size: 22px;
}

.timer-wrap {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-title {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 14px;
    text-align: center;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-box {
    min-width: 112px;
    padding: 16px 14px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(0, 210, 255, 0.10));
    border: 1px solid var(--line);
}

.timer-box span {
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.timer-box small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.timer-sep {
    font-size: 44px;
    font-weight: 900;
    color: var(--accent);
    transform: translateY(-4px);
}

.section {
    padding: 18px 0;
}

.section-first-after-hero {
    padding-top: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefits-grid-headings {
    margin-top: 0;
}

.benefit-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.benefit-card-heading-only {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 118px;
    padding: 20px 22px;
    background:
        linear-gradient(180deg, rgba(18, 27, 54, 0.88), rgba(10, 15, 31, 0.90));
    backdrop-filter: blur(12px);
    color: var(--text);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.benefit-card-heading-only:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.30);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.benefit-icon {
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.benefit-heading-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.benefit-heading-top {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--muted);
    word-break: break-word;
}

.benefit-heading-bottom {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
    color: var(--text);
    word-break: break-word;
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card-heading-only {
        min-height: 104px;
    }
}

@media (max-width: 820px) {
    .benefit-card-heading-only {
        gap: 14px;
        min-height: 96px;
        padding: 16px 18px;
        border-radius: 18px;
    }

    .benefit-icon {
        flex-basis: 44px;
        font-size: 34px;
    }

    .benefit-heading-top {
        font-size: 15px;
    }

    .benefit-heading-bottom {
        font-size: 22px;
    }
}

.trust-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 26px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.trust-card-centered {
    min-height: 300px;
}

.trust-left {
    width: 100%;
}

.trust-left-centered {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-label {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    text-align: center;
}

.trust-number {
    margin-top: 14px;
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-align: center;
}

.trust-left p {
    margin: 18px 0 0;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.7;
    text-align: center;
}

.trust-right {
    display: none;
}

@media (max-width: 820px) {
    .trust-card {
        padding: 26px 18px;
    }

    .trust-card-centered {
        min-height: 220px;
    }

    .trust-number {
        font-size: clamp(52px, 18vw, 88px);
    }

    .trust-left p {
        font-size: 15px;
    }
}

.section-heading {
    margin-bottom: 18px;
}

.section-tag {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.review-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.review-media {
    min-height: 160px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    font-weight: 800;
    color: var(--muted);
    background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(0, 210, 255, 0.10)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.03) 0 14px,
            rgba(255,255,255,0.015) 14px 28px
        );
    border-bottom: 1px solid var(--line);
}

.review-content {
    padding: 16px;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.review-name {
    font-size: 16px;
    font-weight: 900;
}

.review-role {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.review-stars {
    color: var(--accent);
    font-size: 14px;
    white-space: nowrap;
}

.review-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.showcase-image {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    font-weight: 800;
    color: var(--muted);
    background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(0, 210, 255, 0.10)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.03) 0 14px,
            rgba(255,255,255,0.015) 14px 28px
        );
    border-bottom: 1px solid var(--line);
}

.showcase-text {
    padding: 18px;
}

.showcase-text h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.showcase-text p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.final-section {
    padding-bottom: 32px;
}

.final-card {
    padding: 30px 22px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.final-card h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.final-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .benefits-grid,
    .showcase-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 28px 18px;
    }

    .cta-button,
    .cta-button.large {
        width: 100%;
    }

    .timer-box {
        min-width: 92px;
    }

    .timer-box span {
        font-size: 32px;
    }

    .hero-left h1 {
        font-size: clamp(36px, 12vw, 56px);
    }
}

/* file: static/css/style.css */
/* ЗАМЕНИ ТЕКУЩИЙ БЛОК .section-heading ЭТИМ */

.section-heading {
    margin-bottom: 18px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 auto 12px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: center;
}

.section-heading p {
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
    text-align: center;
}

@media (max-width: 820px) {
    .section-heading {
        margin-bottom: 16px;
    }

    .section-heading h2 {
        font-size: clamp(24px, 8vw, 36px);
    }

    .section-heading p {
        max-width: 100%;
        font-size: 15px;
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-container,
.hero-card {
    position: relative;
    z-index: 2;
}

.hero-gold-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.gold-float {
    position: absolute;
    width: clamp(120px, 15vw, 220px);
    opacity: 0.16;
    mix-blend-mode: screen;
    filter:
        drop-shadow(0 0 18px rgba(255, 191, 73, 0.18))
        drop-shadow(0 0 36px rgba(255, 170, 0, 0.12))
        blur(0.2px);
    transform-origin: center center;
    user-select: none;
    will-change: transform, opacity, filter;
}

.gold-float::selection {
    background: transparent;
}

.gold-1 {
    top: 10%;
    left: 6%;
    transform: rotate(-18deg) scale(0.95);
    animation: goldFloatA 11s ease-in-out infinite;
}

.gold-2 {
    top: 14%;
    right: 8%;
    transform: rotate(16deg) scale(0.82);
    animation: goldFloatB 13s ease-in-out infinite;
}

.gold-3 {
    bottom: 14%;
    left: 10%;
    transform: rotate(12deg) scale(0.78);
    animation: goldFloatC 12s ease-in-out infinite;
}

.gold-4 {
    bottom: 10%;
    right: 12%;
    transform: rotate(-10deg) scale(0.9);
    animation: goldFloatA 14s ease-in-out infinite reverse;
}

.gold-5 {
    top: 50%;
    right: 22%;
    transform: translateY(-50%) rotate(-22deg) scale(0.68);
    animation: goldFloatB 10s ease-in-out infinite;
    opacity: 0.11;
}

.hero-gold-layer::before,
.hero-gold-layer::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(70px);
    opacity: 0.22;
}

.hero-gold-layer::before {
    width: 220px;
    height: 220px;
    left: 12%;
    top: 18%;
    background: radial-gradient(circle, rgba(255, 196, 77, 0.22) 0%, rgba(255, 196, 77, 0) 70%);
    animation: goldGlowA 8s ease-in-out infinite;
}

.hero-gold-layer::after {
    width: 260px;
    height: 260px;
    right: 10%;
    bottom: 16%;
    background: radial-gradient(circle, rgba(255, 168, 0, 0.18) 0%, rgba(255, 168, 0, 0) 72%);
    animation: goldGlowB 10s ease-in-out infinite;
}

@keyframes goldFloatA {
    0% {
        transform: translate3d(0, 0, 0) rotate(-18deg) scale(0.95);
    }
    25% {
        transform: translate3d(10px, -12px, 0) rotate(-14deg) scale(0.98);
    }
    50% {
        transform: translate3d(-6px, -22px, 0) rotate(-20deg) scale(0.94);
    }
    75% {
        transform: translate3d(8px, -10px, 0) rotate(-15deg) scale(0.97);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(-18deg) scale(0.95);
    }
}

@keyframes goldFloatB {
    0% {
        transform: translate3d(0, 0, 0) rotate(16deg) scale(0.82);
    }
    25% {
        transform: translate3d(-10px, 8px, 0) rotate(12deg) scale(0.84);
    }
    50% {
        transform: translate3d(8px, -16px, 0) rotate(18deg) scale(0.8);
    }
    75% {
        transform: translate3d(-6px, -8px, 0) rotate(14deg) scale(0.83);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(16deg) scale(0.82);
    }
}

@keyframes goldFloatC {
    0% {
        transform: translate3d(0, 0, 0) rotate(12deg) scale(0.78);
    }
    25% {
        transform: translate3d(12px, -8px, 0) rotate(8deg) scale(0.8);
    }
    50% {
        transform: translate3d(-10px, -18px, 0) rotate(15deg) scale(0.76);
    }
    75% {
        transform: translate3d(6px, -6px, 0) rotate(10deg) scale(0.79);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(12deg) scale(0.78);
    }
}

@keyframes goldGlowA {
    0% {
        opacity: 0.14;
        transform: scale(1);
    }
    50% {
        opacity: 0.24;
        transform: scale(1.08);
    }
    100% {
        opacity: 0.14;
        transform: scale(1);
    }
}

@keyframes goldGlowB {
    0% {
        opacity: 0.12;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.12);
    }
    100% {
        opacity: 0.12;
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .gold-float {
        width: clamp(90px, 24vw, 140px);
        opacity: 0.12;
    }

    .gold-5 {
        display: none;
    }

    .hero-gold-layer::before,
    .hero-gold-layer::after {
        filter: blur(50px);
        opacity: 0.16;
    }
}

@media (max-width: 640px) {
    .gold-2,
    .gold-4 {
        display: none;
    }

    .gold-float {
        width: clamp(80px, 28vw, 120px);
        opacity: 0.1;
    }
}

.review-media,
.showcase-image {
    overflow: hidden;
    padding: 0;
}

.review-media img,
.showcase-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.review-media {
    min-height: 220px;
}

.showcase-image {
    aspect-ratio: 16 / 10;
}

.payment-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.proof-step h3 {
    margin: 0 0 16px;
    font-size: clamp(22px, 3vw, 30px);
    text-align: center;
    line-height: 1.12;
}

.proof-step-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.proof-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
}

.proof-file,
.proof-input {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 16px;
    outline: none;
}

.proof-file::file-selector-button {
    margin-right: 14px;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--text);
    cursor: pointer;
}

.proof-input::placeholder {
    color: var(--muted);
}

.proof-button {
    width: 100%;
    margin-top: 0;
}

.proof-status {
    max-width: 560px;
    margin: 14px auto 0;
    padding: 14px 16px;
    border-radius: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid transparent;
}

.proof-status.success {
    color: #dfffee;
    background: rgba(76, 255, 178, 0.10);
    border-color: rgba(76, 255, 178, 0.24);
}

.proof-status.error {
    color: #ffd8df;
    background: rgba(255, 107, 139, 0.10);
    border-color: rgba(255, 107, 139, 0.24);
}

@media (max-width: 820px) {
    .payment-card {
        padding: 20px 16px;
    }

    .proof-file,
    .proof-input {
        min-height: 54px;
        font-size: 15px;
    }

    .proof-status {
        font-size: 15px;
    }
}