/* ═══════════════════════════════════════════════════
   Panorama Games — Promo Landing Page
   Premium corporate styles with scroll-driven animations
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --promo-ease: cubic-bezier(.22, 1, .36, 1);
    --promo-dur: 1.4s;
    --promo-radius: 20px;
    --promo-radius-sm: 12px;
    --promo-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    --promo-shadow-hover: 0 16px 48px rgba(102, 126, 234, .18);
    --promo-glow: 0 0 60px rgba(102, 126, 234, .15);
    --promo-section-py: clamp(80px, 10vw, 140px);
}


/* ═══════════ SCROLL ANIMATION SYSTEM ═══════════ */
[data-animate] {
    opacity: 0;
    transition:
        opacity var(--promo-dur) var(--promo-ease),
        transform var(--promo-dur) var(--promo-ease);
}

[data-animate="fade-up"]        { transform: translateY(40px); }
[data-animate="fade-down"]      { transform: translateY(-40px); }
[data-animate="fade-left"]      { transform: translateX(40px); }
[data-animate="fade-right"]     { transform: translateX(-40px); }
[data-animate="zoom-in"]        { transform: scale(.92); }

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ═══════════ SHARED SECTION ═══════════ */
.promo-section {
    padding: var(--promo-section-py) 0;
    position: relative;
    overflow: hidden;
}

.promo-section__header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 60px;
}

.promo-section__header--narrow {
    max-width: 880px;
}

.promo-section__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.promo-section__lead {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    line-height: 1.65;
}


/* ═══════════ SHARED BUTTON ═══════════ */
.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--promo-radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .35s var(--promo-ease);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.promo-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.25) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-110%);
    transition: transform .5s var(--promo-ease);
}

.promo-btn:hover::after {
    transform: translateX(110%);
}

.promo-btn--primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.promo-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, .35);
    color: var(--primary-dark);
}

.promo-btn--lg {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 16px;
}

.promo-btn--gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, .3);
}

.promo-btn--gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, .45);
    color: var(--white);
}

.promo-btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(102, 126, 234, .3);
}

.promo-btn--outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════
   BLOCK 1 — HERO  (jaw-dropping version)
   ═══════════════════════════════════════════════ */
.promo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 100px;
    background: #0a0a1a;
}

/* ── Animated gradient background ── */
.promo-hero__gradient {
    position: absolute;
    inset: -22%;
    width: 144%;
    height: 144%;
    left: -22%;
    top: -22%;
    background:
        radial-gradient(circle at 18% 22%, rgba(79, 172, 254, .42) 0%, rgba(79, 172, 254, .24) 16%, rgba(79, 172, 254, 0) 42%),
        radial-gradient(circle at 82% 18%, rgba(240, 147, 251, .42) 0%, rgba(240, 147, 251, .24) 17%, rgba(240, 147, 251, 0) 44%),
        radial-gradient(circle at 50% 52%, rgba(118, 75, 162, .34) 0%, rgba(102, 126, 234, .18) 20%, rgba(102, 126, 234, 0) 46%),
        radial-gradient(circle at 22% 78%, rgba(245, 87, 108, .28) 0%, rgba(245, 87, 108, .14) 18%, rgba(245, 87, 108, 0) 40%),
        radial-gradient(circle at 76% 74%, rgba(102, 126, 234, .34) 0%, rgba(102, 126, 234, .16) 18%, rgba(102, 126, 234, 0) 42%),
        linear-gradient(145deg, rgba(74, 63, 207, .9) 0%, rgba(102, 126, 234, .86) 25%, rgba(118, 75, 162, .84) 55%, rgba(155, 89, 182, .8) 78%, rgba(240, 147, 251, .72) 100%);
    filter: blur(90px) saturate(120%);
    transform-origin: 50% 50%;
    animation: heroGradientDrift 18s var(--promo-ease) infinite alternate;
    opacity: .92;
}

.promo-hero__gradient::before,
.promo-hero__gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.promo-hero__gradient::before {
    background:
        radial-gradient(circle at 35% 38%, rgba(255, 255, 255, .09) 0%, rgba(255, 255, 255, 0) 28%),
        radial-gradient(circle at 64% 48%, rgba(79, 172, 254, .18) 0%, rgba(79, 172, 254, 0) 34%),
        radial-gradient(circle at 46% 66%, rgba(240, 147, 251, .16) 0%, rgba(240, 147, 251, 0) 32%);
    animation: heroGradientBloom 14s ease-in-out infinite alternate;
    opacity: .8;
}

.promo-hero__gradient::after {
    background:
        radial-gradient(circle at 52% 44%, rgba(118, 75, 162, .16) 0%, rgba(118, 75, 162, 0) 30%),
        radial-gradient(circle at 58% 58%, rgba(102, 126, 234, .12) 0%, rgba(102, 126, 234, 0) 26%);
    animation: heroGradientBloom 17s ease-in-out infinite alternate-reverse;
    opacity: .7;
}

@keyframes heroGradientDrift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.02);
    }
    50% {
        transform: translate3d(2%, 1.5%, 0) scale(1.08);
    }
    100% {
        transform: translate3d(0%, 3%, 0) scale(1.04);
    }
}

@keyframes heroGradientBloom {
    0% {
        transform: scale(.96) translate3d(-1.5%, 0, 0);
        opacity: .55;
    }
    100% {
        transform: scale(1.08) translate3d(1.5%, 2%, 0);
        opacity: .9;
    }
}

/* ── Subtle grid overlay ── */
.promo-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* ── Glowing orbs ── */
.promo-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.promo-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 6s ease-in-out infinite alternate;
    will-change: transform;
}

.promo-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,.6) 0%, transparent 70%);
    top: -8%;
    right: 5%;
    animation-duration: 5s;
}

.promo-hero__orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,.5) 0%, transparent 70%);
    bottom: 0;
    left: -5%;
    animation-duration: 7s;
    animation-delay: -2s;
}

.promo-hero__orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(79,172,254,.5) 0%, transparent 70%);
    top: 45%;
    right: 18%;
    animation-duration: 6s;
    animation-delay: -3s;
}

.promo-hero__orb--4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,87,108,.4) 0%, transparent 70%);
    top: 15%;
    left: 12%;
    animation-duration: 8s;
    animation-delay: -1s;
}

.promo-hero__orb--5 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102,126,234,.5) 0%, transparent 70%);
    bottom: 20%;
    right: 35%;
    animation-duration: 5.5s;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -50px) scale(1.15); }
}

/* ── Light rays from top center ── */
.promo-hero__rays {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at 50% 0%, rgba(102,126,234,.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: raysPulse 4s ease-in-out infinite alternate;
}

@keyframes raysPulse {
    0%   { opacity: .6; }
    100% { opacity: 1; }
}

/* ── Particles ── */
.promo-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.promo-hero__particles i {
    position: absolute;
    display: block;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: particleRise linear infinite;
    bottom: -10px;
}

.promo-hero__particles i:nth-child(1)  { left: 5%;  animation-duration: 9s;  animation-delay: 0s;    width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(2)  { left: 12%; animation-duration: 7s;  animation-delay: -1s;   }
.promo-hero__particles i:nth-child(3)  { left: 20%; animation-duration: 11s; animation-delay: -3s;   width: 4px; height: 4px; background: rgba(102,126,234,.6); }
.promo-hero__particles i:nth-child(4)  { left: 28%; animation-duration: 8s;  animation-delay: -5s;   }
.promo-hero__particles i:nth-child(5)  { left: 35%; animation-duration: 10s; animation-delay: -2s;   width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(6)  { left: 42%; animation-duration: 6s;  animation-delay: -4s;   background: rgba(240,147,251,.5); }
.promo-hero__particles i:nth-child(7)  { left: 48%; animation-duration: 12s; animation-delay: -1s;   width: 4px; height: 4px; }
.promo-hero__particles i:nth-child(8)  { left: 55%; animation-duration: 7s;  animation-delay: -6s;   }
.promo-hero__particles i:nth-child(9)  { left: 62%; animation-duration: 9s;  animation-delay: -3s;   background: rgba(79,172,254,.5); width: 3px; height: 3px; }
.promo-hero__particles i:nth-child(10) { left: 68%; animation-duration: 8s;  animation-delay: -7s;   width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(11) { left: 75%; animation-duration: 11s; animation-delay: -2s;   }
.promo-hero__particles i:nth-child(12) { left: 82%; animation-duration: 6s;  animation-delay: -5s;   width: 4px; height: 4px; background: rgba(102,126,234,.5); }
.promo-hero__particles i:nth-child(13) { left: 88%; animation-duration: 10s; animation-delay: -1s;   }
.promo-hero__particles i:nth-child(14) { left: 93%; animation-duration: 8s;  animation-delay: -4s;   width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(15) { left: 97%; animation-duration: 7s;  animation-delay: -6s;   background: rgba(240,147,251,.4); }
.promo-hero__particles i:nth-child(16) { left: 8%;  animation-duration: 13s; animation-delay: -2s;   }
.promo-hero__particles i:nth-child(17) { left: 16%; animation-duration: 9s;  animation-delay: -8s;   width: 3px; height: 3px; }
.promo-hero__particles i:nth-child(18) { left: 32%; animation-duration: 7s;  animation-delay: -3s;   background: rgba(79,172,254,.4); }
.promo-hero__particles i:nth-child(19) { left: 52%; animation-duration: 10s; animation-delay: -5s;   width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(20) { left: 72%; animation-duration: 8s;  animation-delay: -7s;   }
.promo-hero__particles i:nth-child(21) { left: 38%; animation-duration: 11s; animation-delay: -1s;   background: rgba(102,126,234,.4); width: 4px; height: 4px; }
.promo-hero__particles i:nth-child(22) { left: 58%; animation-duration: 6s;  animation-delay: -4s;   }
.promo-hero__particles i:nth-child(23) { left: 78%; animation-duration: 9s;  animation-delay: -6s;   width: 2px; height: 2px; }
.promo-hero__particles i:nth-child(24) { left: 45%; animation-duration: 14s; animation-delay: -3s;   background: rgba(240,147,251,.3); width: 5px; height: 5px; }

@keyframes particleRise {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}

/* ── Content ── */
.promo-hero__content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ── Title with shimmer ── */
.promo-hero__title {
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 28px;
    letter-spacing: -.02em;
}

.promo-hero__title-line {
    display: block;
}

.promo-hero__title-accent {
    display: block;
    background: linear-gradient(90deg, #fff 0%, #4facfe 30%, #f093fb 60%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
    padding-top: 4px;
}

@keyframes shimmerText {
    0%   { background-position: 100% 50%; }
    50%  { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.promo-hero__subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    margin-bottom: 28px;
    opacity: .92;
    text-shadow: 0 1px 20px rgba(0,0,0,.3);
}

.promo-hero__desc {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: .88;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero__features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 48px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--promo-radius-sm);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .3s, transform .3s, border-color .3s;
}

.promo-hero__features li:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-3px);
}

.promo-hero__features-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.3;
}

.promo-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ── Hero CTA button with glow ── */
.promo-btn--hero {
    padding: 22px 56px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 16px;
    background: var(--white);
    color: #4a3fcf;
    box-shadow:
        0 4px 20px rgba(0,0,0,.15),
        0 0 40px rgba(102,126,234,.3),
        0 0 80px rgba(102,126,234,.1);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.promo-btn--hero:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 32px rgba(0,0,0,.2),
        0 0 60px rgba(102,126,234,.5),
        0 0 120px rgba(102,126,234,.15);
    color: #4a3fcf;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.15), 0 0 40px rgba(102,126,234,.3), 0 0 80px rgba(102,126,234,.1); }
    50%      { box-shadow: 0 4px 20px rgba(0,0,0,.15), 0 0 60px rgba(102,126,234,.45), 0 0 100px rgba(102,126,234,.2); }
}

/* ── Scroll hint ── */
.promo-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.promo-hero__scroll-hint span {
    display: block;
    width: 26px;
    height: 42px;
    border-radius: 13px;
    border: 2px solid rgba(255, 255, 255, .35);
    position: relative;
}

.promo-hero__scroll-hint span::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: rgba(255, 255, 255, .6);
    border-radius: 2px;
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%      { opacity: 1; transform: translateY(0); }
    50%     { opacity: 0; transform: translateY(12px); }
    100%    { opacity: 1; transform: translateY(0); }
}


/* ═══════════ BLOCK 2 — ПРОБЛЕМА ═══════════ */
.promo-problem {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}

.promo-problem .promo-section__title {
    color: var(--white);
}

.promo-problem .promo-section__lead {
    color: rgba(255, 255, 255, .7);
}

.promo-problem__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.promo-problem__card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--promo-radius);
    padding: 36px 30px;
    transition: all .4s var(--promo-ease);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 14px;
    align-items: start;
}

.promo-problem__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e74c3c 0%, #f39c12 100%);
    border-radius: 2px;
    opacity: .6;
    transition: opacity .3s;
}

.promo-problem__card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .15);
}

.promo-problem__card:hover::before {
    opacity: 1;
}

.promo-problem__icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 28px;
    line-height: 1;
    margin-top: 2px;
}

.promo-problem__card-title {
    grid-column: 2;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

.promo-problem__card p {
    grid-column: 1 / -1;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.promo-problem__conclusion {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, .15) 0%, rgba(118, 75, 162, .15) 100%);
    border: 1px solid rgba(102, 126, 234, .25);
    border-radius: var(--promo-radius);
}

.promo-problem__conclusion p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}


/* ═══════════ BLOCK 3 — ПЕРЕВАГИ ═══════════ */
.promo-features {
    background: var(--white);
}

.promo-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.promo-features__card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(145deg, #fafbff 0%, #f5f6fa 100%);
    border-radius: var(--promo-radius);
    border: 1px solid rgba(102, 126, 234, .08);
    transition: all .4s var(--promo-ease);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 14px;
    align-items: start;
}

.promo-features__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--promo-shadow-hover);
    border-color: rgba(102, 126, 234, .2);
}

.promo-features__icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 34px;
    margin-bottom: 0;
    display: block;
    line-height: 1;
    margin-top: 2px;
    transition: transform .4s var(--promo-ease);
}

.promo-features__card:hover .promo-features__icon {
    transform: scale(1.15) rotate(-5deg);
}

.promo-features__card h3 {
    grid-column: 2;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.35;
}

.promo-features__card p {
    grid-column: 1 / -1;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}


/* ═══════════ BLOCK 4a — ЗАСНОВНИЦЯ ═══════════ */
.promo-founder {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.promo-founder__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.promo-founder__avatar-col {
    text-align: center;
    position: sticky;
    top: 120px;
}

.promo-founder__avatar {
    width: var(--promo-founder-avatar-width, 160px);
    height: var(--promo-founder-avatar-height, 160px);
    border-radius: var(--promo-founder-avatar-radius, 999px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 40px rgba(102, 126, 234, .25);
}

.promo-founder__avatar span {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.promo-founder__avatar-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.promo-founder__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.promo-founder__role {
    font-size: 14px;
    color: var(--text-light);
}

.promo-founder__text-col p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.promo-founder__greeting {
    font-size: 20px !important;
}

.promo-founder__pain-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.promo-founder__pain-list li {
    position: relative;
    padding: 16px 20px 16px 24px;
    margin-bottom: 12px;
    background: rgba(231, 76, 60, .04);
    border-left: 3px solid #e74c3c;
    border-radius: 0 var(--promo-radius-sm) var(--promo-radius-sm) 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dark);
}

.promo-founder__quote {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--primary-color) !important;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, .06) 0%, rgba(118, 75, 162, .06) 100%);
    border-radius: var(--promo-radius-sm);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 0 !important;
}


/* ═══════════ BLOCK 4b — ВІДЕО ═══════════ */
.promo-video {
    background: linear-gradient(180deg, #0f0c29 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white);
}

.promo-video .promo-section__title { color: var(--white); }
.promo-video .promo-section__lead  { color: rgba(255, 255, 255, .7); }

.promo-video__player {
    max-width: 860px;
    margin: 0 auto 50px;
    border-radius: var(--promo-radius);
    overflow: hidden;
    box-shadow: var(--promo-glow), 0 20px 60px rgba(0, 0, 0, .4);
}

.promo-video__player iframe,
.promo-video__player video {
    display: block;
    width: 100%;
    height: var(--promo-video-player-height, 560px);
    border: 0;
}

.promo-video__placeholder {
    position: relative;
    height: var(--promo-video-player-height, 560px);
    background: linear-gradient(145deg, #2d1b69 0%, #1a1a2e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: background .4s;
}

.promo-video__placeholder:hover {
    background: linear-gradient(145deg, #3a2080 0%, #221c3e 50%, #143d6e 100%);
}

.promo-video__play-btn {
    width: 80px;
    height: 80px;
    transition: transform .4s var(--promo-ease);
}

.promo-video__placeholder:hover .promo-video__play-btn {
    transform: scale(1.1);
}

.promo-video__play-btn svg {
    width: 100%;
    height: 100%;
}

.promo-video__coming {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.promo-video__highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.promo-video__highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    padding: 14px 18px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--promo-radius-sm);
    border: 1px solid rgba(255, 255, 255, .06);
}

.promo-video__highlights li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}


/* ═══════════ BLOCK 5 — ДЛЯ КОГО ═══════════ */
.promo-audience {
    background: var(--white);
}

.promo-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}

.promo-audience__card {
    padding: 44px 36px;
    background: linear-gradient(145deg, #fafbff 0%, var(--white) 100%);
    border-radius: var(--promo-radius);
    border: 1px solid rgba(102, 126, 234, .1);
    transition: all .4s var(--promo-ease);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 14px;
    align-items: start;
}

.promo-audience__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--promo-ease);
}

.promo-audience__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--promo-shadow-hover);
}

.promo-audience__card:hover::after {
    transform: scaleX(1);
}

.promo-audience__icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 38px;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 2px;
}

.promo-audience__card h3 {
    grid-column: 2;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.35;
}

.promo-audience__card p {
    grid-column: 1 / -1;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}


/* ═══════════ BLOCK 6 — ТАРИФИ ═══════════ */
.promo-pricing {
    background: var(--bg-light);
}

.promo-pricing__embed {
    position: relative;
}


/* ═══════════ BLOCK 7 — ФІНАЛЬНИЙ CTA ═══════════ */
.promo-cta {
    background: linear-gradient(145deg, #4a3fcf 0%, var(--primary-color) 30%, var(--primary-dark) 60%, #9b59b6 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.promo-cta__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.promo-cta__title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.promo-cta__desc {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    opacity: .93;
    margin-bottom: 40px;
}

.promo-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
}

.promo-cta__sub {
    font-size: 15px;
    opacity: .8;
}

.promo-cta__sub a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .3s;
}

.promo-cta__sub a:hover {
    opacity: .7;
}


/* ═══════════ BLOCK 8 — FAQ ═══════════ */
.promo-faq {
    background: var(--white);
}

.promo-faq__list {
    max-width: 880px;
    margin: 0 auto 50px;
}

.promo-faq__item {
    border-bottom: 1px solid #eaecf0;
}

.promo-faq__item:first-child {
    border-top: 1px solid #eaecf0;
}

.promo-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color .3s;
    line-height: 1.4;
}

.promo-faq__question:hover {
    color: var(--primary-color);
}

.promo-faq__chevron {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--text-light);
    transition: transform .35s var(--promo-ease), color .3s;
}

.promo-faq__item.is-open .promo-faq__chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.promo-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--promo-ease), padding .4s var(--promo-ease);
    padding: 0 4px;
}

.promo-faq__item.is-open .promo-faq__answer {
    padding-bottom: 24px;
}

.promo-faq__answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.promo-faq__footer {
    text-align: center;
}

.promo-faq__footer > p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.promo-faq__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}


/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .promo-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .promo-hero__scroll-hint { display: none; }

    .promo-hero__features {
        grid-template-columns: 1fr;
    }

    .promo-problem__grid {
        grid-template-columns: 1fr;
    }

    .promo-founder__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-founder__avatar-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .promo-hero__title-line,
    .promo-hero__title-accent {
        display: inline;
    }

    .promo-hero__features {
        grid-template-columns: 1fr;
    }

    .promo-features__grid,
    .promo-audience__grid {
        grid-template-columns: 1fr;
    }

    .promo-problem__grid {
        grid-template-columns: 1fr;
    }

    .promo-video__highlights {
        grid-template-columns: 1fr;
    }

    .promo-video__player iframe,
    .promo-video__player video,
    .promo-video__placeholder {
        height: min(var(--promo-video-player-height, 560px), 56vw);
        min-height: 220px;
    }

    .promo-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .promo-btn--hero {
        width: 100%;
        padding: 20px 32px;
        font-size: 17px;
    }

    .promo-btn--lg {
        width: 100%;
    }

    .promo-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .promo-cta__buttons .promo-btn {
        width: 100%;
    }

    .promo-faq__question {
        font-size: 15px;
        padding: 20px 4px;
    }

    .promo-faq__footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .promo-hero {
        padding: 90px 0 60px;
    }

    .promo-features__card,
    .promo-audience__card {
        padding: 28px 22px;
    }

    .promo-problem__card {
        padding: 28px 22px 28px 26px;
    }

    .promo-problem__conclusion {
        padding: 24px 20px;
    }

    .promo-founder__avatar {
        width: 120px;
        height: 120px;
    }

    .promo-founder__avatar span {
        font-size: 48px;
    }
}
