@import url("cookies.css");


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
    max-width: 100%;
}

/* ============================================================
VARIABLES
============================================================ */
:root {
    --orange: #E86A00;
    --orange-dark: #cc5c00;
    --dark: #111111;
    --dark-brown: #2d1a0e;
    --text-brown: #3d2010;
    --muted-brown: #7a5c44;
    --white: #ffffff;
    --light: #f5f3f0;
    --border: rgba(0, 0, 0, 0.08);
    --max: 1280px;
    --px: 48px;
}

/* ============================================================
HERO
============================================================ */
.hero {
    position: relative;
    background: #111;
    min-height: 620px;
    overflow: hidden;
}

.hero-glow-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    mix-blend-mode: screen;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    mix-blend-mode: screen;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.hero-stairs {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    min-height: 620px;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    padding: 28px 0 0;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo svg {
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 52px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-phone {
    text-align: right;
    white-space: nowrap;
}

.nav-phone-num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.nav-phone-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* BADGES */
.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    margin-top: 36px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* HERO BODY */
.hero-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 52px;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
    max-width: 760px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.18s;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background: var(--orange-dark);
}

.btn--wide {
    width: 380px;
    padding: 18px 0;
}

.btn--full {
    width: 100%;
}

/* TICKET — позиционируется абсолютно в правом нижнем углу поверх картинки */
.hero-right {
    position: absolute;
    right: 48px;
    bottom: 52px;
    z-index: 5;
}

.ticket {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 360px;
    overflow: visible;
}

.ticket::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 36px;
    background: rgba(20, 10, 5, 0.6);
    border-radius: 0 18px 18px 0;
}

.ticket::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 36px;
    background: rgba(20, 10, 5, 0.6);
    border-radius: 18px 0 0 18px;
}

.ticket-info {
    flex: 1;
    padding-right: 28px;
}

.ticket-date {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ticket-meta {
    display: flex;
    gap: 36px;
}

.ticket-meta span {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.ticket-sep {
    width: 1.5px;
    align-self: stretch;
    margin-right: 28px;
    flex-shrink: 0;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.3) 4px,
            transparent 4px, transparent 8px);
}

.ticket-barcode {
    flex-shrink: 0;
    opacity: 0.72;
}

/* ============================================================
FOR SUBSCRIBERS
============================================================ */
.for-subs {
    background: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.for-subs-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    position: relative;
    z-index: 2;
}

.for-subs-stairs {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
}

.for-subs-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

.for-subs-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.for-subs-text {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    padding-top: 8px;
}

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

.benefit-card {
    background: var(--light);
    border-radius: 20px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
}


.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-brown);
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--muted-brown);
    line-height: 1.55;
    font-weight: 400;
}

.benefit-card:hover {
    background: var(--orange);
    position: relative;
    overflow: hidden;
    background-image: url('../img/stairs_light.png');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.benefit-card:hover h3 {
    color: #fff;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.88);
}

.benefit-cta {
    border-radius: 20px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.benefit-cta h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ============================================================
PROGRAM
============================================================ */
.program {
    background: #111;
    padding: 72px 0;
}

.program-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 48px;
}

.session {
    margin-bottom: 32px;
}

.session-label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding: 0;
}

.session-label span {
    color: var(--orange);
}

.session-row {
    background: #222;
    border-radius: 16px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 20% 40% 40%;
    gap: 0;
    align-items: center;
    margin-bottom: 8px;
}

.session-row:last-child {
    margin-bottom: 0;
}

.session-time-col {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
    padding-right: 24px;
}

.session-main {
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.session-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.speaker-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.speaker-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.speaker-info {}

.speaker-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.speaker-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    margin-top: 2px;
}

.session-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    margin-left: 24px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 2px;
}

.sidebar-label span {
    color: var(--orange);
    font-weight: 600;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.sidebar-link {
    display: block;
    background: #f5f3f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #2d1a0e;
    line-height: 1.35;
    font-weight: 400;
    transition: background 0.15s;
    cursor: pointer;
    text-decoration: none;
}

.sidebar-link:hover {
    background: #ede9e4;
    color: #2d1a0e;
}

/* ============================================================
ORGANIZER
============================================================ */
.organizer {
    background: var(--orange);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.organizer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.organizer h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.organizer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 480px;
}

.organizer-media {
    flex-shrink: 0;
}

.organizer-laptop {
    width: 480px;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.2));
}

/* ============================================================
FINAL CTA / REGISTER
============================================================ */
.register {
    background: var(--dark-brown);
    padding: 64px 0;
}

.register-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.register h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.register h2 span {
    color: var(--orange);
}

.register-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.discount-badge {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.discount-pct {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.discount-text {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--orange);
}

.form-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.form-agree input {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-agree span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.form-agree a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
}

/* ============================================================
FOOTER
============================================================ */
footer {
    background: #1a0e08;
    padding: 36px 0 28px;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-phone {
    text-align: right;
    white-space: nowrap;
}

.footer-phone-num {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-phone-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.aktion-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.aktion-logo-text {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.aktion-logo-text span {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
PROMO CALLBACK BLOCK
============================================================ */
.promo-callback {
    background: #f0ede8;
    padding: 120px 0 52px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.promo-callback-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: end;
}

.promo-callback-left {}

.promo-callback-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.promo-callback-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.promo-input {
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    flex: 1;
    min-width: 0;
}

.promo-input::placeholder {
    color: #aaa;
}

.promo-input:focus {
    border-color: var(--orange);
}

.promo-callback-form .btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-callback-agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
}

.promo-callback-agree input {
    margin-top: 2px;
    flex-shrink: 0;
}

.promo-callback-agree span {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.promo-callback-agree a {
    color: #888;
    text-decoration: underline;
}

/* Правая колонка: ноутбук вылезает вверх + кнопка снизу */
.promo-callback-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.promo-callback-media {
    margin-top: -100px;
    /* уходит вверх за пределы блока */
    position: relative;
    z-index: 2;
}

.promo-callback-media img {
    width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.promo-callback-right .btn {
    margin-top: 16px;
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
}

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    :root {
        --px: 32px;
    }

    .hero-title {
        font-size: 44px;
    }

    /* На планшете: 2 колонки (время + контент), sidebar переезжает под них на всю ширину */
    .session-row {
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto;
    }

    .session-sidebar {
        display: flex;
        grid-column: 1 / -1;
        /* на всю ширину */
        margin-left: 0;
        margin-top: 8px;
        align-self: auto;
    }

    .session-main {
        border-right: none;
    }

    .register-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .discount-badge {
        display: flex;
        margin: 0 auto;
    }

    .organizer-inner {
        grid-template-columns: 1fr;
    }

    .organizer-media {
        display: none;
    }

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

    .promo-callback-right {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --px: 20px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-stairs {
        height: 55%;
        opacity: 0.5;
    }

    .hero-title {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-body {
        padding-bottom: 40px;
    }

    .hero-right {
        position: static;
        margin-top: 16px;
    }

    .ticket {
        width: 380px;
        max-width: 100%;
        min-width: auto;
    }

    .btn--wide {
        width: 100%;
        max-width: 380px;
    }

    .nav-links {
        display: none;
    }

    .for-subs-top {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-cta h3 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .organizer h2 {
        font-size: 28px;
    }

    .register h2 {
        font-size: 28px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-phone {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* На мобильном: всё в одну колонку, sidebar под контентом */
    .session-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .session-time-col {
        font-size: 14px;
    }

    .session-sidebar {
        grid-column: 1;
        margin-left: 0;
        margin-top: 0;
    }

    .promo-callback-form {
        flex-direction: column;
    }

    .promo-input {
        width: 100%;
    }

    .promo-callback-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .ticket {
        min-width: auto;
        padding: 16px 20px;
    }

    .ticket-date {
        font-size: 20px;
    }
}