/* =========================================================
   ИИ-Пикничок v2 — Summer Light Theme (Blue + Green)
   ========================================================= */

:root {
    --blue-50:  #eff8ff;
    --blue-100: #d9eeff;
    --blue-200: #b6dfff;
    --blue-300: #7ec6ff;
    --blue-400: #3aa8ff;
    --blue-500: #1d8dee;
    --blue-600: #0a72c9;
    --blue-700: #075a9d;

    --green-50:  #effdf3;
    --green-100: #d4f7df;
    --green-200: #a8eec1;
    --green-300: #6fdf99;
    --green-400: #2fc56e;
    --green-500: #16a64f;
    --green-600: #0d8540;

    --sand:      #fffbf2;
    --paper:     #ffffff;
    --ink:       #0b2540;
    --ink-soft:  #1e3a5f;
    --muted:     #4f6b8a;
    --line:      rgba(11, 37, 64, 0.08);
    --line-2:    rgba(11, 37, 64, 0.14);

    --shadow-sm: 0 4px 16px rgba(7, 90, 157, 0.07);
    --shadow-md: 0 18px 40px -16px rgba(7, 90, 157, 0.22);
    --shadow-lg: 0 30px 70px -20px rgba(7, 90, 157, 0.28);

    --radius-sm: 12px;
    --radius:    18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --grad-hero: linear-gradient(135deg, #cbeefe 0%, #e8f8ee 55%, #fdf7e4 100%);
    --grad-blue: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-400) 100%);
    --grad-green: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    --grad-mix: linear-gradient(135deg, #1d8dee 0%, #2fc56e 100%);

    --font: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Unbounded', 'Onest', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.v2-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 32px);
    max-width: 1240px;
    transition: top .3s ease, transform .3s ease;
}
.v2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px -10px rgba(7, 90, 157, 0.18);
}
.v2-header.scrolled .v2-header__inner {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px -14px rgba(7, 90, 157, 0.28);
}
.v2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
    font-size: 17px;
    letter-spacing: -0.01em;
}
.v2-logo__mark {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--grad-mix);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow:
        0 8px 18px -5px rgba(29, 141, 238, .55),
        inset 0 2px 3px rgba(255, 255, 255, .55),
        inset 0 -4px 8px rgba(11, 37, 64, .22);
    overflow: hidden;
}
.v2-logo__mark::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.6), transparent 70%);
    pointer-events: none;
}
.v2-logo__mark svg { position: relative; filter: drop-shadow(0 1.5px 1px rgba(11,37,64,.3)); }
.v2-logo__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(7, 90, 157, .22));
}
.v2-logo__img {
    height: 46px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(7, 90, 157, .18));
}
.footer__logo .v2-logo__img { height: 50px; filter: none; }
.v2-nav {
    display: flex;
    gap: 4px;
}
.v2-nav__link {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, color .2s;
}
.v2-nav__link:hover { background: rgba(29, 141, 238, .1); color: var(--blue-700); }
.v2-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s, transform .2s;
}
.v2-header__cta:hover { background: var(--blue-700); transform: translateY(-1px); color: #fff; }
.v2-header__cta svg { width: 16px; height: 16px; }

.v2-header__lead {
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,.5);
    transition: background .2s, border-color .2s, transform .2s;
}
.v2-header__lead:hover { background: #fff; border-color: var(--blue-300); transform: translateY(-1px); }

.v2-burger { display: none; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); background: rgba(255,255,255,.6); }

.v2-mobile {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(239, 248, 255, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 110px 24px 40px;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.5, 0, .25, 1);
    overflow-y: auto;
}
.v2-mobile.open { transform: translateY(0); }
.v2-mobile__link {
    display: block;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    width: 100%;
    text-align: left;
}
.v2-mobile__cta {
    margin-top: 16px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    background: var(--grad-mix);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
}
.v2-mobile__cta--lead {
    margin-top: 28px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line-2);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero__video,
.hero__video-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11, 37, 64, .78) 0%, rgba(11, 37, 64, .62) 42%, rgba(11, 37, 64, .28) 68%, rgba(255, 255, 255, .92) 90%, rgba(255, 255, 255, .82) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.7);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.hero__badge-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--grad-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero__badge-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 999px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .5; }
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #9fd8ff 0%, #8ef0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub {
    font-size: clamp(17px, 1.5vw, 21px);
    color: rgba(255, 255, 255, .92);
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.55;
}
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 999px;
    background: var(--grad-mix);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 18px 40px -14px rgba(29, 141, 238, .55);
    transition: transform .25s, box-shadow .25s, color .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(29, 141, 238, .65); color: #fff; }
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(11, 37, 64, .12);
    backdrop-filter: blur(6px);
    transition: background .2s, transform .25s, color .2s;
}
.btn-secondary:hover { background: #fff; transform: translateY(-2px); color: var(--ink); }
.btn-secondary svg { width: 18px; height: 18px; color: var(--blue-600); }

.hero__meta-card {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 22px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}
.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-right: 1px solid var(--line);
    min-width: 0;
}
.hero__meta-item:last-child { border-right: 0; }
.hero__meta-icon {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, .55),
        inset 0 -4px 8px rgba(11, 37, 64, .22);
}
.hero__meta-icon::after {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}
.hero__meta-icon svg { position: relative; filter: drop-shadow(0 1.5px 1px rgba(11,37,64,.3)); }
.hero__meta-icon--blue { background: var(--grad-blue); box-shadow: 0 8px 16px -6px rgba(10,114,201,.6), inset 0 2px 3px rgba(255,255,255,.55), inset 0 -4px 8px rgba(11,37,64,.22); }
.hero__meta-icon--green { background: var(--grad-green); box-shadow: 0 8px 16px -6px rgba(13,133,64,.55), inset 0 2px 3px rgba(255,255,255,.55), inset 0 -4px 8px rgba(11,37,64,.22); }
.hero__meta-icon--sun {
    background: linear-gradient(135deg, #fdc54a, #fa9c2d);
    box-shadow: 0 8px 16px -6px rgba(250,156,45,.55), inset 0 2px 3px rgba(255,255,255,.6), inset 0 -4px 8px rgba(150,80,0,.22);
}
.hero__meta-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.hero__meta-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hero__meta-value { font-size: 16px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero__meta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: background .2s, transform .2s, color .2s;
    align-self: flex-start;
}
.hero__meta-btn:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    color: #fff;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .8;
    animation: bounceY 2s infinite;
}
.scroll-cue svg { margin: 6px auto 0; opacity: .6; }
@keyframes bounceY {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes bounceY-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============ SECTIONS BASE ============ */
.section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;
}
.section--photo-bg {
    --edge-fog: clamp(96px, 12vw, 168px);
    --photo-mask-fade: 120px;
    --overlay-top: rgba(11, 37, 64, .72);
    --overlay-mid: rgba(11, 37, 64, .38);
    --overlay-mid-pos: 44%;
    --overlay-bottom: rgba(11, 37, 64, .76);
}
.section--photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    filter: saturate(108%) blur(3.2px);
    transform: scale(1.035);
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, .35) calc(var(--photo-mask-fade) * .42),
        #000 var(--photo-mask-fade),
        #000 calc(100% - var(--photo-mask-fade)),
        rgba(0, 0, 0, .35) calc(100% - var(--photo-mask-fade) * .42),
        transparent 100%
    );
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, .35) calc(var(--photo-mask-fade) * .42),
        #000 var(--photo-mask-fade),
        #000 calc(100% - var(--photo-mask-fade)),
        rgba(0, 0, 0, .35) calc(100% - var(--photo-mask-fade) * .42),
        transparent 100%
    );
}
.section--photo-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .84) calc(var(--edge-fog) * .26),
            rgba(255, 255, 255, .42) calc(var(--edge-fog) * .62),
            rgba(255, 255, 255, 0) calc(var(--edge-fog) + 18px),
            rgba(255, 255, 255, 0) calc(100% - var(--edge-fog) - 18px),
            rgba(255, 255, 255, .42) calc(100% - var(--edge-fog) * .62),
            rgba(255, 255, 255, .84) calc(100% - var(--edge-fog) * .26),
            rgba(255, 255, 255, .98) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            transparent calc(var(--edge-fog) * .45),
            var(--overlay-mid) var(--overlay-mid-pos),
            transparent calc(100% - var(--edge-fog) * .45),
            transparent 100%
        );
}
.section--photo-bg-soft {
    --overlay-top: rgba(11, 37, 64, .58);
    --overlay-mid: rgba(11, 37, 64, .42);
    --overlay-mid-pos: 46%;
    --overlay-bottom: rgba(11, 37, 64, .64);
}
.section--photo-bg-deep {
    --overlay-top: rgba(7, 32, 56, .9);
    --overlay-mid: rgba(7, 90, 157, .62);
    --overlay-mid-pos: 48%;
    --overlay-bottom: rgba(11, 37, 64, .84);
}
#audience.section--photo-bg {
    --overlay-top: rgba(9, 44, 36, .68);
    --overlay-mid: rgba(11, 37, 64, .4);
    --overlay-bottom: rgba(11, 37, 64, .58);
}
#value.section--photo-bg {
    --overlay-top: rgba(11, 37, 64, .62);
    --overlay-mid: rgba(11, 37, 64, .36);
    --overlay-bottom: rgba(11, 37, 64, .7);
}
#program.section--photo-bg {
    --overlay-top: rgba(11, 37, 64, .66);
    --overlay-mid: rgba(11, 37, 64, .38);
    --overlay-bottom: rgba(11, 37, 64, .56);
}
#speakers.section--photo-bg {
    --overlay-top: rgba(11, 37, 64, .58);
    --overlay-mid: rgba(11, 37, 64, .34);
    --overlay-bottom: rgba(10, 42, 34, .64);
}
#location.section--photo-bg {
    padding: clamp(52px, 7vw, 80px) 0;
    --edge-fog: clamp(72px, 9vw, 120px);
    --photo-mask-fade: 88px;
    --overlay-top: rgba(10, 42, 34, .62);
    --overlay-mid: rgba(11, 37, 64, .54);
    --overlay-mid-pos: 52%;
    --overlay-bottom: rgba(14, 108, 58, .78);
}
#outcomes.section--photo-bg {
    --overlay-top: rgba(13, 120, 58, .7);
    --overlay-mid: rgba(11, 37, 64, .36);
    --overlay-bottom: rgba(11, 37, 64, .72);
}
#reviews.section--photo-bg {
    --overlay-top: rgba(11, 37, 64, .68);
    --overlay-mid: rgba(11, 37, 64, .4);
    --overlay-bottom: rgba(8, 32, 56, .66);
}
#invite.section--photo-bg {
    --overlay-top: rgba(8, 32, 56, .72);
    --overlay-mid: rgba(7, 32, 56, .58);
    --overlay-bottom: rgba(7, 32, 56, .86);
}
#photos.section--photo-bg {
    --overlay-top: rgba(7, 32, 56, .84);
    --overlay-mid: rgba(11, 37, 64, .38);
    --overlay-bottom: rgba(11, 37, 64, .72);
}
#organizers.section--photo-bg {
    --edge-fog: clamp(112px, 14vw, 188px);
    --photo-mask-fade: 140px;
    --overlay-top: rgba(11, 37, 64, .7);
    --overlay-mid: rgba(7, 32, 56, .52);
    --overlay-bottom: rgba(248, 251, 255, .92);
}
#faq.section--photo-bg {
    --overlay-top: rgba(248, 251, 255, .86);
    --overlay-mid: rgba(11, 37, 64, .34);
    --overlay-bottom: rgba(11, 37, 64, .58);
}
#pricing.section--photo-bg {
    --overlay-top: rgba(11, 37, 64, .6);
    --overlay-mid: rgba(11, 37, 64, .38);
    --overlay-bottom: rgba(7, 90, 157, .68);
}

.section--photo-bg + .section--black::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 140px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 251, 242, .98) 0%, rgba(255, 251, 242, .45) 42%, rgba(7, 11, 16, 0) 100%);
}
.section--black + .section--photo-bg {
    --overlay-mid: rgba(11, 37, 64, .42);
}
.section--photo-bg.section--photo-bg-deep,
.section--photo-bg.section--photo-bg-deep h2,
.section--photo-bg.section--photo-bg-deep h3,
.section--photo-bg.section--photo-bg-deep h4 { color: #fff; }
.section--photo-bg.section--photo-bg-deep .section__sub { color: rgba(255,255,255,.9); }

.section--photo-bg .section__label {
    background: rgba(255, 255, 255, .92);
    color: var(--blue-700);
    border: 1px solid rgba(255, 255, 255, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 22px rgba(11, 37, 64, .12);
}
.section--photo-bg .section__title {
    color: #fff;
    text-shadow: 0 2px 28px rgba(11, 37, 64, .42);
}
.section--photo-bg .section__sub {
    color: rgba(255, 255, 255, .9);
}

.section--black {
    position: relative;
    background: #070b10;
    color: #fff;
}
.section--black > .container {
    position: relative;
    z-index: 1;
}
.section--black .section__title { color: #fff; }
.section--black .section__label {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(29, 141, 238, .1);
    color: var(--blue-700);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.section__label-dot {
    width: 7px; height: 7px; border-radius: 999px;
    background: var(--green-400);
    box-shadow: 0 0 0 4px rgba(47, 197, 110, .25);
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -0.025em;
}
.section__sub {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

/* ============ MARQUEE STRIP ============ */
.strip {
    position: relative;
    background: var(--grad-mix);
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
}
.strip::before,
.strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: clamp(72px, 10vw, 120px);
    pointer-events: none;
    z-index: 1;
}
.strip::before {
    top: calc(-1 * clamp(72px, 10vw, 120px));
    background: linear-gradient(180deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, 0) 100%);
}
.strip::after {
    bottom: calc(-1 * clamp(72px, 10vw, 120px));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .82) 100%);
}
.strip__track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 36s linear infinite;
    width: max-content;
}
.strip__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.strip__item svg { width: 18px; height: 18px; opacity: .9; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============ AUDIENCE ============ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.audience-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .35s, box-shadow .35s, border-color .35s;
    overflow: hidden;
}
.audience-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--grad-mix);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(29, 141, 238, .25); }
.audience-card:hover::before { transform: scaleX(1); }
.audience-card__num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: var(--blue-300);
    letter-spacing: -0.04em;
    line-height: 1;
}
.audience-card__icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--grad-mix);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow:
        0 12px 24px -8px rgba(29, 141, 238, .55),
        inset 0 2px 3px rgba(255, 255, 255, .55),
        inset 0 -5px 10px rgba(11, 37, 64, .2);
}
.audience-card__icon::after {
    content: '';
    position: absolute;
    top: -30%; left: -12%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}
.audience-card__icon svg { position: relative; width: 30px; height: 30px; filter: drop-shadow(0 2px 1.5px rgba(11,37,64,.3)); }
.audience-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}
.audience-card p {
    color: var(--muted);
    font-size: 15px;
}

/* ============ VALUE ============ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.value-card {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.value-card__icon {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: var(--grad-mix);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow:
        0 14px 28px -10px rgba(29, 141, 238, .6),
        inset 0 2px 4px rgba(255, 255, 255, .55),
        inset 0 -6px 12px rgba(11, 37, 64, .2);
}
.value-card__icon::after {
    content: '';
    position: absolute;
    top: -28%; left: -12%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}
.value-card__icon svg { position: relative; width: 32px; height: 32px; filter: drop-shadow(0 2px 1.5px rgba(11,37,64,.3)); }
.value-card h3 { font-size: 21px; margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 16px; }

/* ============ PROGRAM / TIMELINE ============ */
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-300), var(--green-300));
    border-radius: 2px;
}
.tl-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 40px;
    height: 40px;
    background: var(--grad-blue);
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-shadow:
        0 10px 20px -6px rgba(10, 114, 201, .55),
        inset 0 2px 3px rgba(255, 255, 255, .6),
        inset 0 -4px 8px rgba(11, 37, 64, .22);
}
.tl-item__dot::after {
    content: '';
    position: absolute;
    top: -28%; left: -10%;
    width: 75%; height: 65%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.6), transparent 70%);
    pointer-events: none;
}
.tl-item__dot svg { position: relative; width: 18px; height: 18px; filter: drop-shadow(0 1.5px 1px rgba(11,37,64,.3)); }
.tl-item:nth-child(even) .tl-item__dot {
    background: var(--grad-green);
    box-shadow: 0 10px 20px -6px rgba(13,133,64,.5), inset 0 2px 3px rgba(255,255,255,.6), inset 0 -4px 8px rgba(11,37,64,.22);
    color: #fff;
}
.tl-item__card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.tl-item__time {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-700);
    letter-spacing: .04em;
    padding: 5px 10px;
    background: var(--blue-50);
    border-radius: 999px;
    margin-bottom: 10px;
}
.tl-item:nth-child(even) .tl-item__time {
    color: var(--green-600);
    background: var(--green-50);
}
.tl-item__card h3 { font-size: 19px; margin-bottom: 6px; }
.tl-item__card p { color: var(--muted); font-size: 15px; }

/* ============ SPEAKERS ============ */
.speaker-main {
    display: grid;
    grid-template-columns: minmax(0, 360px) 1fr;
    gap: 50px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    align-items: center;
    margin-bottom: 32px;
}
.speaker-main__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: var(--grad-hero);
}
.speaker-main__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: inset 0 -60px 80px -40px rgba(7, 90, 157, .2);
}
.speaker-main__photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-main__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--grad-mix);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.speaker-main__name {
    font-size: clamp(22px, 2.5vw, 30px);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.speaker-main__tg {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--blue-500);
    color: #fff;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.speaker-main__tg:hover { background: var(--blue-700); transform: translateY(-2px); color: #fff; }
.speaker-main__tg svg { width: 20px; height: 20px; }
.speaker-main__role {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 22px;
}
.speaker-main__list { display: grid; gap: 12px; }
.speaker-main__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.speaker-main__list li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-500); margin-top: 1px; }

.speakers-team-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 60px 0 28px;
}
.speakers-team-title::before,
.speakers-team-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line-2);
}
.speakers-team-title span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
}
.speaker-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.speaker-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.speaker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.speaker-card__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.speaker-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--grad-hero);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.speaker-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker-card__name { font-size: 19px; margin-bottom: 6px; }
.speaker-card__role { color: var(--muted); font-size: 14px; }
.speaker-card__list { display: grid; gap: 10px; }
.speaker-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}
.speaker-card__list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-500); margin-top: 1px; }

/* ============ LOCATION CTA ============ */
.location-cta {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

/* ============ LEAD TOUCH (CTA strip) ============ */
.lead-touch {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    margin-top: 48px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--green-50) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(29, 141, 238, .15);
    box-shadow: var(--shadow-sm);
}
.lead-touch--light {
    background: #fff;
    border: 1px solid var(--line);
}
.lead-touch__icon {
    position: relative;
    width: 58px; height: 58px;
    border-radius: 17px;
    background: var(--grad-mix);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow:
        0 12px 24px -8px rgba(29, 141, 238, .55),
        inset 0 2px 3px rgba(255, 255, 255, .55),
        inset 0 -4px 8px rgba(11, 37, 64, .2);
}
.lead-touch__icon::after {
    content: '';
    position: absolute;
    top: -30%; left: -12%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}
.lead-touch__icon svg { position: relative; filter: drop-shadow(0 2px 1.5px rgba(11,37,64,.3)); }
.lead-touch__text { flex: 1; min-width: 0; }
.lead-touch__text h3 { font-size: 19px; margin-bottom: 4px; }
.lead-touch__text p { color: var(--muted); font-size: 14px; }
.lead-touch__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s, transform .2s, color .2s;
    flex-shrink: 0;
}
.lead-touch__btn:hover { background: var(--blue-700); transform: translateY(-1px); color: #fff; }

/* ============ OUTCOMES ============ */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.outcome-item {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.outcome-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.outcome-item__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--green-600);
    margin-bottom: 18px;
}
.outcome-item__icon {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green-400), var(--blue-500));
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow:
        0 11px 22px -8px rgba(13, 133, 64, .5),
        inset 0 2px 3px rgba(255, 255, 255, .55),
        inset 0 -4px 8px rgba(11, 37, 64, .2);
}
.outcome-item__icon::after {
    content: '';
    position: absolute;
    top: -30%; left: -12%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}
.outcome-item__icon svg { position: relative; width: 28px; height: 28px; filter: drop-shadow(0 2px 1.5px rgba(11,37,64,.3)); }
.outcome-item h3 { font-size: 19px; margin-bottom: 10px; }
.outcome-item p { color: var(--muted); font-size: 15px; }

/* ============ PHOTOS ============ */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    grid-auto-rows: 200px;
}
.photo-tile {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    background: var(--blue-50);
}
.photo-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 37, 64, .25));
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}
.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}
.photo-tile:hover img { transform: scale(1.08); }
.photo-tile:hover::after { opacity: 1; }
.photo-tile--lg { grid-column: span 6; grid-row: span 2; }
.photo-tile--md { grid-column: span 6; }
.photo-tile--sm { grid-column: span 3; }
.photo-tile--full { grid-column: span 12; grid-row: span 1; }

/* ============ REVIEWS ============ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__video {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #1d8dee 0%, #2fc56e 100%);
    overflow: hidden;
}
.review-card__video video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.review-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}
.review-card__play.is-hidden { opacity: 0; pointer-events: none; }
.review-card__play::before {
    content: '';
    position: absolute;
    width: 64px; height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.review-card__play svg {
    position: relative;
    color: var(--blue-600);
    width: 26px; height: 26px;
    margin-left: 3px;
}
.review-card video:not([poster]) ~ .review-card__play,
.review-card video[playing] + .review-card__play { display: none; }
.review-card__info { padding: 18px 22px; }
.review-card__name { font-weight: 800; color: var(--ink); margin-bottom: 4px; font-size: 16px; }
.review-card__desc { color: var(--muted); font-size: 14px; }

.reviews-trust {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 28px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.reviews-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.reviews-trust__num {
    font-size: 32px;
    font-weight: 800;
    background: var(--grad-mix);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.reviews-trust__sep {
    width: 1px;
    height: 36px;
    background: var(--line-2);
}

/* ============ STATS BAND ============ */
.stats-band {
    background: var(--grad-mix);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 15% 0%, rgba(255,255,255,.18), transparent 60%),
        radial-gradient(50% 70% at 90% 100%, rgba(13,133,64,.4), transparent 60%);
    pointer-events: none;
}
.stats-band__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats-band__item {
    text-align: center;
    color: #fff;
    padding: 0 14px;
    border-right: 1px solid rgba(255,255,255,.18);
}
.stats-band__item:last-child { border-right: 0; }
.stats-band__num {
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.stats-band__num span {
    font-size: 17px;
    font-weight: 700;
    opacity: .85;
    letter-spacing: 0;
}
.stats-band__label {
    font-size: 14px;
    color: rgba(255,255,255,.82);
    line-height: 1.45;
    max-width: 200px;
    margin: 0 auto;
}

/* ============ PERKS BAND ============ */
.perks-band {
    background: linear-gradient(135deg, #0d8540 0%, #16a64f 45%, #1d8dee 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.perks-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 85% 0%, rgba(255,255,255,.18), transparent 60%),
        radial-gradient(50% 70% at 10% 100%, rgba(29,141,238,.45), transparent 60%);
    pointer-events: none;
}
.perks-band__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.perk {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 18px 4px 4px;
}
.perk__icon {
    position: relative;
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, .4),
        inset 0 -4px 8px rgba(11, 37, 64, .15);
}
.perk__icon::after {
    content: '';
    position: absolute;
    top: -30%; left: -12%;
    width: 80%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.45), transparent 70%);
    pointer-events: none;
}
.perk__icon svg { position: relative; filter: drop-shadow(0 2px 1.5px rgba(11,37,64,.25)); }
.perk__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.perk__text strong { font-size: 16px; color: #fff; font-weight: 800; }
.perk__text span { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.4; }

/* ============ INVITE VIDEO ============ */
.invite {
    display: grid;
    grid-template-columns: 1fr minmax(0, 360px);
    gap: 56px;
    align-items: center;
}
.invite__title {
    font-size: clamp(28px, 3.4vw, 44px);
    color: #fff;
    margin: 16px 0 16px;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.invite__sub {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
}
.invite__list {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}
.invite__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.95);
    font-size: 16px;
}
.invite__list svg {
    width: 30px; height: 30px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    color: #fff;
    flex-shrink: 0;
}
.invite__player {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.14);
}
.invite__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.invite__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}
.invite__play::before {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 40px rgba(0,0,0,.4);
    transition: transform .25s;
}
.invite__play:hover::before { transform: scale(1.08); }
.invite__play svg {
    position: relative;
    color: var(--blue-600);
    margin-left: 4px;
}
.invite__play.is-hidden { opacity: 0; pointer-events: none; }

/* ============ ORGANIZERS (sponsors) — как в бэкапе пикника ============ */
#organizers .sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
#organizers .sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(34, 197, 94, .14);
    border-radius: 24px;
    padding: 0 32px 32px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, .07), 0 2px 8px rgba(56, 189, 248, .04);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
#organizers .sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e, #38bdf8);
    opacity: 0;
    transition: opacity .4s;
}
#organizers .sponsor-card:hover {
    border-color: rgba(34, 197, 94, .35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, .12);
}
#organizers .sponsor-card:hover::before { opacity: 1; }
#organizers .sponsor-card__logo {
    width: calc(100% + 64px);
    margin: 0 -32px 24px;
    height: 148px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 52%, #1d4ed8 100%);
    border-radius: 24px 24px 16px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}
#organizers .sponsor-card__logo--dark {
    background: #070b10;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
#organizers .sponsor-card__logo--dark .sponsor-card__logo-img {
    filter: brightness(1.12);
}
#organizers .sponsor-card__logo-img {
    width: 240px;
    height: 120px;
    object-fit: contain;
    filter: brightness(1.08);
    transition: all .4s ease;
}
#organizers .sponsor-card:hover .sponsor-card__logo-img {
    filter: brightness(1.2);
    transform: scale(1.05);
}
#organizers .sponsor-card__body { width: 100%; }
#organizers .sponsor-card__body h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 6px;
}
#organizers .sponsor-card__role {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .18);
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
#organizers .sponsor-card__desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}
#organizers .sponsor-card__stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    justify-content: center;
}
#organizers .sponsor-card__stat {
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .05);
    border: 1px solid rgba(34, 197, 94, .12);
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.25;
}
#organizers .sponsor-card__stat span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #16a34a, #22c55e, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#organizers .sponsor-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #0ea5e9;
    transition: color .3s, gap .2s;
}
#organizers .sponsor-card__link:hover {
    color: #16a34a;
    gap: 8px;
}

/* ============ FAQ ============ */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: transform .3s, background .3s;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    content: '×';
    background: var(--grad-mix);
    color: #fff;
}
.faq-item__body {
    padding: 0 28px 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* ============ PRICING ============ */
.price-wrap {
    max-width: 560px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--grad-mix);
}
.price-card__tag {
    display: inline-block;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    color: var(--blue-700);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.price-card__name { font-size: 26px; margin-bottom: 8px; }
.price-card__sub { color: var(--muted); margin-bottom: 30px; }
.price-card__list { text-align: left; display: grid; gap: 12px; margin-bottom: 32px; }
.price-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.45;
}
.price-card__list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-500); margin-top: 2px; }
.price-card__amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--grad-mix);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
}
.price-card__btn {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    transition: background .2s, transform .2s, color .2s;
}
.price-card__btn:hover { background: var(--blue-700); transform: translateY(-2px); color: #fff; }

/* ============ FINAL CTA ============ */
.final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.final-cta__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scaleX(-1);
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .55) 14%, transparent 28%),
        linear-gradient(135deg, rgba(7, 90, 157, .85) 0%, rgba(13, 133, 64, .8) 100%);
}
.final-cta__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.final-cta__title {
    font-size: clamp(34px, 5vw, 60px);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}
.final-cta__title span {
    background: linear-gradient(135deg, #fff, #d4f7df);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.final-cta__sub {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.5;
}
.final-cta__list { display: grid; gap: 14px; }
.final-cta__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.95);
    font-size: 16px;
}
.final-cta__list svg {
    width: 28px; height: 28px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    color: #fff;
    flex-shrink: 0;
}
.final-cta__form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    color: var(--ink);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.final-cta__form h3 { font-size: 22px; margin-bottom: 8px; }
.final-cta__form-sub { color: var(--muted); margin-bottom: 22px; font-size: 14px; }

/* ============ FORMS ============ */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.field__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
}
.field__label em { color: var(--blue-500); font-style: normal; }
.field__input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--line-2);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border .2s, box-shadow .2s;
}
.field__input:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 4px rgba(58, 168, 255, .15);
}
.field__error { color: #e23a3a; font-size: 13px; min-height: 0; }
.field__error:not(:empty) { min-height: 18px; }
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 16px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
}
.consent input { margin-top: 2px; accent-color: var(--blue-500); }
.form-submit {
    width: 100%;
    padding: 17px;
    border-radius: 14px;
    background: var(--grad-mix);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(29, 141, 238, .45); }
.form-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-success {
    display: none;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--green-50);
    color: var(--green-600);
    font-weight: 600;
    font-size: 14px;
}
.form-success.show { display: block; }

/* ============ FOOTER ============ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.75);
    padding: 70px 0 28px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer__brand p { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 16px; max-width: 380px; line-height: 1.55; }
.footer__col-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a, .footer__links button {
    color: rgba(255,255,255,.7);
    text-align: left;
    padding: 0;
    transition: color .2s;
    font-size: 14px;
}
.footer__links a:hover, .footer__links button:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; font-size: 14px; }
.footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-300);
    font-weight: 600;
}
.footer__contact a:hover { color: var(--green-200); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    flex-wrap: wrap;
    gap: 14px;
}
.footer__bottom a { color: rgba(255,255,255,.6); margin-left: 18px; }
.footer__bottom a:hover { color: #fff; }
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(11, 37, 64, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}
.modal.open { display: flex; opacity: 1; }
.modal__box {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    padding: 36px 32px 32px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    transform: scale(.96);
    transition: transform .3s;
    max-height: 92vh;
    overflow-y: auto;
}
.modal.open .modal__box { transform: scale(1); }
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--blue-50);
    color: var(--ink);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.modal__close:hover { background: var(--blue-100); }
.modal__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--grad-mix);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.modal__title { font-size: 22px; margin-bottom: 6px; }
.modal__desc { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.modal__price {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-700);
    background: var(--blue-50);
    padding: 4px 10px;
    border-radius: 999px;
}

/* ============ FLOAT BUTTON ============ */
.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .3s, transform .3s, background .3s;
    box-shadow: 0 14px 30px -10px rgba(11, 37, 64, .4);
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--blue-700); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ MEDIA ============ */
@media (max-width: 1024px) {
    .v2-nav { display: none; }
    .v2-burger { display: flex; }
    .speaker-main { grid-template-columns: 1fr; gap: 30px; padding: 32px; }
    .speaker-main__photo { max-width: 340px; margin: 0 auto; }
    .final-cta__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__meta-card { grid-template-columns: 1fr; }
    .hero__meta-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero__meta-item:last-child { border-bottom: 0; }
    .photos-grid { grid-auto-rows: 160px; }
    .photo-tile--lg { grid-column: span 12; grid-row: span 2; }
    .photo-tile--md { grid-column: span 6; }
    .photo-tile--sm { grid-column: span 6; }
    .loc__gallery { grid-template-columns: repeat(2, 1fr); }
    .loc__features { grid-template-columns: repeat(2, 1fr); }
    .lead-touch { flex-wrap: wrap; }
    .lead-touch__text { flex-basis: 60%; }
    .lead-touch__btn { margin-left: auto; }
    #organizers .sponsors-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .stats-band__item:nth-child(2) { border-right: 0; }
    .perks-band__grid { grid-template-columns: repeat(2, 1fr); }
    .invite { grid-template-columns: 1fr; gap: 36px; max-width: 560px; margin: 0 auto; }
    .invite__player { max-width: 360px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
    .container { padding: 0 18px; }
    .v2-header { top: 10px; width: calc(100% - 20px); }
    .v2-header__inner { padding: 8px 8px 8px 14px; }
    .v2-logo { font-size: 15px; }
    .v2-logo__mark { width: 34px; height: 34px; }
    .v2-header__cta { display: none; }
    .v2-header__lead { display: none; }
    .section { padding: 70px 0; }
    .section__head { margin-bottom: 40px; }
    .hero { padding: 116px 0 70px; min-height: auto; }
    .scroll-cue { bottom: 22px; }
    .lead-touch {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    .lead-touch__text { flex-basis: auto; width: 100%; }
    .lead-touch__btn { margin-left: 0; width: 100%; justify-content: center; }
    .hero__actions { gap: 10px; }
    .btn-primary { padding: 15px 22px; font-size: 15px; }
    .btn-secondary { padding: 14px 18px; font-size: 14px; }
    .hero__meta-card { padding: 4px; }
    .hero__meta-item { padding: 12px 16px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .footer__bottom a { margin-left: 0; margin-right: 14px; }
    .loc__head { flex-wrap: wrap; padding: 18px 20px; gap: 14px; }
    .loc__map-pill { margin-left: 0; width: 100%; justify-content: center; }
    .loc__features { grid-template-columns: 1fr; }
    .loc__tile { aspect-ratio: 1 / 1; }
    #organizers .sponsor-card { padding: 0 24px 26px; }
    #organizers .sponsor-card__logo {
        width: calc(100% + 48px);
        margin: 0 -24px 20px;
        height: 132px;
    }
    #organizers .sponsor-card__logo-img { width: 200px; height: 90px; }
    #organizers .sponsor-card__body h4 { font-size: 18px; }
    .reviews-trust { gap: 18px; padding: 22px; }
    .reviews-trust__sep { display: none; }
    .stats-band__inner { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
    .stats-band__item { border-right: 0; padding: 0 6px; }
    .stats-band__label { font-size: 13px; }
    .perks-band__grid { grid-template-columns: 1fr; }
    .price-card { padding: 32px 24px; }
    .price-card__amount { font-size: 42px; }
    .timeline::before { left: 22px; }
    .tl-item { padding-left: 64px; }
    .tl-item__dot { left: 4px; width: 36px; height: 36px; }
    .final-cta__form { padding: 24px; }
    .photos-grid { grid-auto-rows: 120px; gap: 10px; }
    .photo-tile--md, .photo-tile--sm { grid-column: span 12; }
}

/* ============ PAY PAGE ============ */
a.v2-nav__link,
a.v2-header__lead,
a.v2-header__cta,
a.v2-mobile__link,
a.v2-mobile__cta {
    text-decoration: none;
    color: inherit;
}
a.v2-header__cta { color: #fff; }
a.v2-header__cta:hover { color: #fff; }
a.v2-mobile__cta { color: #fff; display: block; text-align: center; }
a.v2-mobile__cta--lead { color: var(--ink); }

.pay-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    isolation: isolate;
}
.pay-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.pay-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(11, 37, 64, .62) 0%,
        rgba(11, 37, 64, .28) 22%,
        transparent 48%
    );
}
.pay-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.pay-hero__title {
    font-size: clamp(34px, 4.8vw, 58px);
    margin: 18px 0 20px;
    letter-spacing: -0.025em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(11, 37, 64, .35);
}
.pay-hero__sub {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 28px;
    text-shadow: 0 1px 16px rgba(11, 37, 64, .28);
}
.pay-hero__meta {
    margin-top: 8px;
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.95fr);
}
.pay-hero__meta .hero__meta-item {
    padding: 14px 16px;
    align-items: flex-start;
}
.pay-hero__meta .hero__meta-text {
    min-width: 0;
    flex: 1;
}
.pay-hero__meta .hero__meta-value {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.25;
}
.pay-hero__content .section__label {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--shadow-sm);
}
.pay-hero__form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 30px 60px -20px rgba(7, 90, 157, .28);
    border: 1px solid rgba(255, 255, 255, .8);
}
.pay-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.pay-hero__chip svg { width: 12px; height: 12px; }
.pay-hero__form-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.pay-hero__form-head h2 { font-size: 24px; }
.pay-hero__price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-600);
    white-space: nowrap;
}
.pay-hero__form-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px;
}
.pay-hero__footnote {
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
}
.pay-page__error {
    color: #e23a3a;
    font-size: 14px;
    margin: 0 0 10px;
}
.pay-page__success {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    color: var(--green-600);
    font-size: 14px;
    font-weight: 600;
}
.pay-page__promo-status {
    color: var(--muted);
    font-size: 13px;
    margin: 8px 0 0;
    min-height: 18px;
    line-height: 1.4;
}
.pay-page__promo-status.is-success { color: var(--green-600); }
.pay-page__promo-status.is-error { color: #e23a3a; }

@media (max-width: 1024px) {
    .pay-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .pay-hero__content { text-align: center; }
    .pay-hero__sub { margin-left: auto; margin-right: auto; }
    .pay-hero__meta { max-width: 640px; margin-left: auto; margin-right: auto; }
    .pay-hero__meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pay-hero {
        padding: 120px 0 56px;
    }
    .pay-hero__form {
        padding: 24px;
    }
    .pay-hero__form-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .pay-hero__price { font-size: 24px; }
}
