/* Сброс и основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000B2C;
    color: #E8E9ED;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-width, 0%);
    height: 3px;
    z-index: 1200;
    background: linear-gradient(90deg, #2f5dff 0%, #5fd8ff 55%, #9fe5ff 100%);
    box-shadow: 0 0 18px rgba(70, 144, 255, 0.7);
    transition: width 0.12s linear;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Секции */
section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Первый экран */
#hero {
    --hero-cx: 50%;
    --hero-cy: 50%;
    --hero-shift-x: 0px;
    --hero-shift-y: 0px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000B2C;
    position: relative;
    overflow: hidden;
}

#hero .container {
    position: relative;
    z-index: 4;
}

#hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 0, 232, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 3;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
    pointer-events: none;
}

.hero-image {
    max-width: 500px;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.7);
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(32, 0, 232, 0.03) 2px, rgba(32, 0, 232, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(32, 0, 232, 0.03) 2px, rgba(32, 0, 232, 0.03) 4px);
    opacity: 0.35;
    z-index: 2;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.1) brightness(0.48);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at var(--hero-cx) var(--hero-cy), rgba(58, 123, 255, 0.26), transparent 44%),
        radial-gradient(circle at 82% 72%, rgba(40, 86, 232, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(2, 10, 32, 0.45) 0%, rgba(2, 8, 26, 0.75) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    bottom: -8%;
    left: var(--p-left, 50%);
    width: var(--p-size, 3px);
    height: var(--p-size, 3px);
    border-radius: 999px;
    background: rgba(180, 221, 255, 0.85);
    box-shadow: 0 0 10px rgba(86, 170, 255, 0.8);
    opacity: 0;
    animation: hero-particle-rise var(--p-duration, 10s) linear var(--p-delay, 0s) infinite;
}

@keyframes hero-particle-rise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.75);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translate3d(var(--p-drift, 0px), -115vh, 0) scale(1.1);
        opacity: 0;
    }
}

.hero-layout {
    display: block;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
    transition: transform 0.22s ease;
}

.hero-visual {
    display: none;
}

.hero-visual-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 93, 255, 0.35) 0%, rgba(47, 93, 255, 0.02) 65%, transparent 75%);
    filter: blur(6px);
    animation: pulse 9s ease-in-out infinite;
}

.hero-cover {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(84, 121, 255, 0.45);
    background: linear-gradient(160deg, rgba(9, 20, 58, 0.95) 0%, rgba(12, 32, 86, 0.82) 100%);
    box-shadow: 0 28px 65px rgba(5, 17, 58, 0.75), 0 0 0 1px rgba(128, 165, 255, 0.08) inset;
}

.hero-cover-back {
    position: absolute;
    width: 260px;
    top: 95px;
    left: 10px;
    transform: rotate(-11deg);
    opacity: 0.5;
    filter: saturate(0.8) brightness(0.8);
    z-index: 1;
}

.hero-cover-front {
    position: relative;
    z-index: 3;
    max-width: 340px;
}

.hero-cover-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-cover-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 14px;
    padding: 14px 16px;
    background: linear-gradient(125deg, rgba(6, 15, 45, 0.88) 0%, rgba(15, 38, 93, 0.76) 100%);
    border: 1px solid rgba(125, 158, 255, 0.42);
    backdrop-filter: blur(7px);
}

.hero-cover-overlay span {
    display: block;
    color: #a9bbff;
    font-size: 0.72rem;
    letter-spacing: 1.3px;
    margin-bottom: 5px;
}

.hero-cover-overlay strong {
    color: #f2f6ff;
    font-size: 1.06rem;
    letter-spacing: 0.4px;
}

.hero-chip {
    position: absolute;
    z-index: 3;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid rgba(117, 148, 255, 0.5);
    background: rgba(7, 17, 47, 0.78);
    color: #d4ddff;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    animation: hero-float 5s ease-in-out infinite;
}

.hero-chip-1 {
    top: 36px;
    left: -8px;
}

.hero-chip-2 {
    bottom: 138px;
    right: -32px;
    animation-delay: 1.2s;
}

.hero-chip-3 {
    bottom: 52px;
    left: -2px;
    animation-delay: 2.1s;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #A0A4B8;
}

.hero-top-logo {
    position: absolute;
    top: max(18px, calc(env(safe-area-inset-top) + 10px));
    left: max(22px, calc(env(safe-area-inset-left) + 14px));
    z-index: 12;
    display: inline-block;
}

.hero-logo-image {
    position: relative;
    display: block;
    width: clamp(150px, 17vw, 220px);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(86, 152, 255, 0.25)) drop-shadow(0 0 14px rgba(143, 197, 255, 0.22));
}

.hero-badge a {
    color: #2000E8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-badge a:hover {
    color: #9747FF;
}

.logo {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #4f7dff;
    text-shadow: 0 0 14px rgba(79, 125, 255, 0.3);
    animation: logo-color-flow 6s ease-in-out infinite;
}

@keyframes logo-color-flow {
    0%, 100% {
        color: #4f7dff;
        text-shadow: 0 0 14px rgba(79, 125, 255, 0.3);
    }
    33% {
        color: #78deff;
        text-shadow: 0 0 18px rgba(120, 222, 255, 0.4);
    }
    66% {
        color: #d17dff;
        text-shadow: 0 0 18px rgba(209, 125, 255, 0.42);
    }
}

.subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #E8E9ED;
}

.tagline {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #A0A4B8;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 16px 40px;
    background: #2000E8;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(32, 0, 232, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -45%;
    width: 34%;
    height: 340%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 50%, transparent 100%);
    transform: rotate(18deg);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(32, 0, 232, 0.7);
    background: #1800c0;
}

.btn-primary:hover::after {
    left: 115%;
}

.hero-subtext {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #A0A4B8;
}

.hero-social-proof {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.hero-avatars {
    display: flex;
    margin-left: -8px;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F5DFF 0%, #9747FF 100%);
    border: 3px solid #000B2C;
    margin-left: -8px;
    position: relative;
}

.hero-proof-text {
    font-size: 0.9rem;
    color: #A0A4B8;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(26, 29, 41, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(58, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item-single {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2000E8;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #A0A4B8;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(32, 0, 232, 0.3);
}

.info-text {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #A0A4B8;
}

/* О проекте */
#about {
    background: radial-gradient(600px 600px at 50% 0%, rgba(32, 0, 232, 0.05), transparent), #000B2C;
}

.about-terminal {
    max-width: 930px;
    margin: 0 auto;
    padding: 30px 32px;
    border-radius: 14px;
    border: 1px solid rgba(97, 150, 255, 0.35);
    background: linear-gradient(145deg, rgba(8, 20, 56, 0.84) 0%, rgba(5, 15, 42, 0.95) 100%);
    box-shadow: 0 18px 42px rgba(4, 11, 34, 0.45);
}

.terminal-prompt {
    margin: 0 0 14px;
    color: #7ec2ff;
    font-size: 0.86rem;
    letter-spacing: 0.4px;
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    opacity: 0.95;
}

.about-terminal h2 {
    text-align: left;
    margin-bottom: 16px;
}

.about-terminal .section-text {
    text-align: left;
    max-width: none;
    margin: 0;
}

.about-terminal .terminal-line {
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    line-height: 1.55;
}

.about-terminal .terminal-line.typing::after {
    content: '▌';
    display: inline-block;
    margin-left: 4px;
    color: #88d0ff;
    animation: terminal-caret-blink 0.9s steps(1) infinite;
}

@keyframes terminal-caret-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.section-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #C5C7D4;
}

#audience {
    background: radial-gradient(600px 600px at 80% 50%, rgba(151, 71, 255, 0.03), transparent), #000B2C;
}

#ethics {
    background-color: #0a0d1a;
}

#location {
    background: radial-gradient(600px 600px at 75% 10%, rgba(32, 0, 232, 0.05), transparent), #000B2C;
}

.location-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.location-card {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.06) 0%, rgba(26, 29, 41, 0.36) 100%);
    border: 1px solid rgba(32, 0, 232, 0.22);
    border-radius: 14px;
    padding: 22px;
}

.location-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    color: #d8e6ff;
}

.location-map-frame {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(85, 141, 255, 0.32);
}

.location-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.office-photo-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(85, 141, 255, 0.32);
}

.office-photo-link img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.location-note {
    margin-top: 12px;
    color: #aeb9d7;
    line-height: 1.55;
}

/* Социальное доказательство */
#trust {
    background-color: #0a0d1a;
    padding: 60px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    border-radius: 12px;
    border-left: 4px solid #2000E8;
}

.trust-icon {
    font-size: 4rem;
    color: #2000E8;
    flex-shrink: 0;
}

.trust-content h3 {
    font-size: 1.5rem;
    color: #2000E8;
    margin-bottom: 10px;
}

.trust-content p {
    color: #C5C7D4;
    line-height: 1.6;
}

#reviews {
    background: radial-gradient(600px 600px at 20% 0%, rgba(32, 0, 232, 0.05), transparent), #000B2C;
}

.reviews-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 22px;
}

.review-card {
    display: block;
    background: rgba(26, 29, 41, 0.4);
    border: 1px solid rgba(32, 0, 232, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(32, 0, 232, 0.55);
    box-shadow: 0 14px 30px rgba(32, 0, 232, 0.2);
}

.review-card img {
    display: block;
    width: 100%;
    height: auto;
}

.reviews-links {
    margin-top: 28px;
    text-align: center;
    color: #A0A4B8;
}

.reviews-links a {
    color: #2000E8;
    text-decoration: none;
    font-weight: 600;
}

.reviews-links a:hover {
    color: #9747FF;
}

.reviews-links span {
    margin: 0 8px;
    color: #6f7390;
}

/* Уникальность */
#unique {
    background: radial-gradient(420px 558px at left bottom, rgba(27, 120, 222, 0.3), transparent), 
                radial-gradient(420px 558px at right 125%, rgba(216, 0, 39, 0.3), transparent), 
                #000B2C;
    padding: 100px 0;
}

.unique-block {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.unique-block h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E8E9ED;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.comparison-item {
    padding: 30px 25px;
    background: rgba(160, 164, 184, 0.03);
    border: 1px solid rgba(160, 164, 184, 0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.comparison-item:hover {
    border-color: rgba(160, 164, 184, 0.3);
}

.comparison-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A0A4B8;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-item p {
    font-size: 1.2rem;
    color: #C5C7D4;
    margin: 0;
    font-style: italic;
}

.unique-result {
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(58, 123, 255, 0.15) 0%, rgba(107, 78, 255, 0.15) 100%);
    border-radius: 16px;
    border: 2px solid #2000E8;
    position: relative;
    overflow: hidden;
}

.unique-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2000E8 0%, #9747FF 100%);
}

.result-content {
    position: relative;
    z-index: 1;
}

.result-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2000E8;
    margin-bottom: 25px;
    font-weight: 700;
}

.unique-result h3 {
    font-size: 2.2rem;
    color: #E8E9ED;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 700;
}

.unique-subtitle {
    font-size: 1.3rem;
    color: #A0A4B8;
    font-style: italic;
    margin: 0;
}

.unique-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #A0A4B8;
    margin-bottom: 50px;
}

/* Формат обучения */
#format {
    background-color: #0a0d1a;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.format-item {
    --format-accent: #5bc6ff;
    --format-accent-rgb: 91, 198, 255;
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background:
        radial-gradient(140% 95% at 0% 0%, rgba(var(--format-accent-rgb), 0.16) 0%, transparent 58%),
        linear-gradient(145deg, rgba(20, 30, 56, 0.88) 0%, rgba(12, 18, 34, 0.95) 100%);
    border-radius: 12px;
    border: 1px solid rgba(var(--format-accent-rgb), 0.32);
    border-left: 4px solid var(--format-accent);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.format-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--format-accent) 0%, rgba(var(--format-accent-rgb), 0.2) 100%);
}

.format-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--format-accent-rgb), 0.58);
    box-shadow: 0 16px 32px rgba(var(--format-accent-rgb), 0.22);
}

.format-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--format-accent);
    text-shadow: 0 0 14px rgba(var(--format-accent-rgb), 0.35);
    margin-bottom: 15px;
    line-height: 1;
}

.format-item h3 {
    font-size: 1.2rem;
    color: #E8E9ED;
    font-weight: 600;
    margin-bottom: 12px;
}

.format-item p {
    font-size: 0.95rem;
    color: #A0A4B8;
    line-height: 1.5;
}

.format-grid .format-item:nth-child(1) {
    --format-accent: #5bc6ff;
    --format-accent-rgb: 91, 198, 255;
}

.format-grid .format-item:nth-child(2) {
    --format-accent: #6be8a1;
    --format-accent-rgb: 107, 232, 161;
}

.format-grid .format-item:nth-child(3) {
    --format-accent: #ffbf6b;
    --format-accent-rgb: 255, 191, 107;
}

.format-grid .format-item:nth-child(4) {
    --format-accent: #c58bff;
    --format-accent-rgb: 197, 139, 255;
}

.format-grid .format-item:nth-child(5) {
    --format-accent: #ff8bd7;
    --format-accent-rgb: 255, 139, 215;
}

/* Вечер в клубе */
#evening {
    background: radial-gradient(700px 400px at 15% 0%, rgba(32, 0, 232, 0.12), transparent), #000B2C;
}

.evening-timeline {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 18px;
}

.evening-item {
    position: relative;
    padding: 28px 28px 24px;
    border-radius: 14px;
    border: 1px solid rgba(32, 0, 232, 0.25);
    background: linear-gradient(145deg, rgba(13, 23, 61, 0.75) 0%, rgba(8, 14, 38, 0.9) 100%);
    box-shadow: 0 16px 36px rgba(5, 12, 36, 0.45);
    overflow: hidden;
}

.evening-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4a77ff 0%, #80a3ff 100%);
}

.evening-time {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #dbe5ff;
    background: rgba(74, 119, 255, 0.2);
    border: 1px solid rgba(113, 149, 255, 0.45);
}

.evening-time-text {
    animation: evening-time-pulse 7s ease-in-out infinite;
}

.evening-item p {
    margin: 0;
    color: #eaf0ff;
    font-size: 1.05rem;
    line-height: 1.55;
}

.evening-note {
    margin-top: 26px;
    text-align: center;
    color: #a7b1cf;
    font-size: 1rem;
}

@keyframes evening-time-pulse {
    0%, 22%, 100% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(122, 163, 255, 0.38);
    }
    32%, 40% {
        opacity: 0;
        text-shadow: none;
    }
    52%, 64% {
        opacity: 1;
        text-shadow: 0 0 14px rgba(122, 163, 255, 0.45);
    }
    74%, 84% {
        opacity: 0;
        text-shadow: none;
    }
}

#practice-look {
    background: radial-gradient(700px 450px at 85% 0%, rgba(32, 0, 232, 0.08), transparent), #0a0d1a;
}

.practice-videos {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.practice-video-card {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(32, 0, 232, 0.28);
    background: linear-gradient(150deg, rgba(15, 31, 82, 0.62) 0%, rgba(8, 16, 44, 0.86) 100%);
    box-shadow: 0 16px 36px rgba(5, 12, 36, 0.45);
}

.practice-video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #020816;
}

/* Членство / Резиденты */
#membership {
    background: radial-gradient(600px 600px at 80% 50%, rgba(151, 71, 255, 0.03), transparent), #000B2C;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

#membership .membership-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    #membership .membership-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    #membership .membership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.membership-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.15);
    transition: all 0.3s ease;
}

.membership-item:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 0, 232, 0.5);
    box-shadow: 0 10px 30px rgba(32, 0, 232, 0.2);
}

.membership-item h3 {
    font-size: 1.1rem;
    color: #E8E9ED;
    font-weight: 500;
    line-height: 1.4;
}

.membership-note {
    margin-top: 60px;
    text-align: left;
    padding: 28px 30px;
    border-radius: 14px;
    border: 1px solid rgba(97, 150, 255, 0.35);
    background: linear-gradient(145deg, rgba(8, 20, 56, 0.84) 0%, rgba(5, 15, 42, 0.95) 100%);
    box-shadow: 0 18px 42px rgba(4, 11, 34, 0.45);
}

.membership-note .terminal-prompt {
    margin: 0 0 12px;
}

.membership-terminal-text {
    margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    font-size: 1.2rem;
    color: #d7e8ff;
    line-height: 1.65;
}

.membership-terminal-accent {
    color: #8fd7ff;
    text-shadow: 0 0 10px rgba(143, 215, 255, 0.22);
}

.membership-note p {
    margin: 0;
}

.membership-note strong {
    color: inherit;
    font-size: inherit;
}

#brotherhood {
    padding-top: 34px;
    background:
        radial-gradient(720px 360px at 15% 0%, rgba(110, 182, 255, 0.16), transparent 68%),
        #000B2C;
}

.brotherhood-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: 34px 34px 30px;
    border-radius: 16px;
    border: 1px solid rgba(124, 170, 255, 0.4);
    background: linear-gradient(145deg, rgba(10, 22, 58, 0.9) 0%, rgba(8, 16, 38, 0.96) 100%);
    box-shadow: 0 20px 44px rgba(4, 12, 34, 0.5);
}

.brotherhood-card h2 {
    text-align: left;
    margin-bottom: 22px;
    font-size: 2rem;
}

.brotherhood-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.brotherhood-item {
    padding: 18px 18px 16px;
    border-radius: 12px;
    border: 1px solid rgba(117, 163, 255, 0.3);
    background:
        radial-gradient(120% 95% at 100% 0%, rgba(113, 186, 255, 0.14) 0%, transparent 70%),
        rgba(11, 24, 60, 0.72);
}

.brotherhood-item h3 {
    margin-bottom: 10px;
    color: #e7f1ff;
    font-size: 1.08rem;
}

.brotherhood-item p {
    margin: 0;
    color: #bccbe9;
    line-height: 1.6;
    font-size: 0.96rem;
}

.brotherhood-note {
    margin-top: 18px;
    color: #9fd6ff;
    font-size: 1.06rem;
    text-align: left;
}

/* Что изучаем */
#learning {
    background-color: #0a0d1a;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.curriculum-card {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 0, 232, 0.6);
    box-shadow: 0 18px 32px rgba(4, 14, 44, 0.45);
}

.curriculum-card-highlight {
    border: 2px solid #2000E8;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.curriculum-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.curriculum-card h3 {
    font-size: 1.4rem;
    color: #2000E8;
    margin: 0;
}

.curriculum-subtitle {
    font-size: 1rem;
    color: #A0A4B8;
    margin-bottom: 15px;
    font-style: italic;
}

.curriculum-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.curriculum-card ul li {
    padding: 8px 0;
    color: #C5C7D4;
    font-size: 0.98rem;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.curriculum-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2000E8;
    font-weight: 700;
    font-size: 1.2rem;
}

.curriculum-result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(32, 0, 232, 0.05);
    border-left: 3px solid #2000E8;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #E8E9ED;
    line-height: 1.6;
}

.curriculum-platforms {
    margin-top: 20px;
    padding: 15px;
    background: rgba(32, 0, 232, 0.05);
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.curriculum-platforms strong {
    color: #2000E8;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 5px;
}

.curriculum-platforms span {
    font-size: 0.85rem;
    color: #A0A4B8;
    background: #1a1d29;
    padding: 5px 12px;
    border-radius: 12px;
    border: 1px solid rgba(58, 123, 255, 0.2);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.learning-card {
    background: #1a1d29;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #2000E8;
    position: relative;
    transition: transform 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
}

.learning-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(32, 0, 232, 0.2);
}

.learning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2000E8;
}

.learning-card p {
    color: #C5C7D4;
    line-height: 1.6;
}

/* Результаты / Путь роста */
#results {
    background: radial-gradient(600px 600px at 20% 50%, rgba(32, 0, 232, 0.04), transparent), #000B2C;
}

.results-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.results-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.results-text .section-text {
    text-align: left;
}

.results-terminal {
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid rgba(97, 150, 255, 0.35);
    background: linear-gradient(145deg, rgba(8, 20, 56, 0.84) 0%, rgba(5, 15, 42, 0.95) 100%);
    box-shadow: 0 18px 42px rgba(4, 11, 34, 0.45);
}

.results-terminal .terminal-prompt {
    margin: 0 0 12px;
}

.results-intro-text {
    margin: 0;
    max-width: none;
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    color: #d7e8ff;
    line-height: 1.7;
}

.results-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.way-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(32, 0, 232, 0.3);
    border: 1px solid rgba(32, 0, 232, 0.2);
}

.growth-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.growth-item {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    padding: 30px 25px;
    border-radius: 12px;
    border: 2px solid rgba(32, 0, 232, 0.2);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
}

.growth-item:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 0, 232, 0.6);
}

.growth-item-ultimate {
    border-color: #2000E8;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
    position: relative;
}

.growth-item-ultimate::before {
    content: '🔥';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 2rem;
}

.growth-period {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2000E8;
    margin-bottom: 15px;
    text-align: center;
}

.growth-content p {
    font-size: 0.95rem;
    color: #C5C7D4;
    line-height: 1.6;
    margin: 0;
}

.growth-arrow {
    font-size: 2rem;
    color: #2000E8;
    flex-shrink: 0;
}

.growth-platforms {
    margin-top: 60px;
    text-align: center;
}

.growth-platforms h3 {
    font-size: 1.5rem;
    color: #E8E9ED;
    margin-bottom: 25px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.platform-tag {
    --platform-accent: #7ed0ff;
    --platform-accent-rgb: 126, 208, 255;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(var(--platform-accent-rgb), 0.22) 0%, transparent 65%),
        linear-gradient(145deg, rgba(18, 28, 58, 0.9) 0%, rgba(10, 18, 38, 0.96) 100%);
    color: #eaf3ff;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(var(--platform-accent-rgb), 0.45);
    box-shadow: 0 10px 20px rgba(var(--platform-accent-rgb), 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.platform-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--platform-accent-rgb), 0.95), rgba(var(--platform-accent-rgb), 0.2));
}

.platform-tag:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(var(--platform-accent-rgb), 0.72);
    box-shadow: 0 14px 28px rgba(var(--platform-accent-rgb), 0.24);
}

.platforms-grid .platform-tag:nth-child(1) {
    --platform-accent: #61d0ff;
    --platform-accent-rgb: 97, 208, 255;
}

.platforms-grid .platform-tag:nth-child(2) {
    --platform-accent: #7f9bff;
    --platform-accent-rgb: 127, 155, 255;
}

.platforms-grid .platform-tag:nth-child(3) {
    --platform-accent: #74e2b2;
    --platform-accent-rgb: 116, 226, 178;
}

.platforms-grid .platform-tag:nth-child(4) {
    --platform-accent: #ffbe6f;
    --platform-accent-rgb: 255, 190, 111;
}

.platforms-grid .platform-tag:nth-child(5) {
    --platform-accent: #c48cff;
    --platform-accent-rgb: 196, 140, 255;
}

.platforms-grid .platform-tag:nth-child(6) {
    --platform-accent: #ff88c7;
    --platform-accent-rgb: 255, 136, 199;
}

.platforms-grid .platform-tag:nth-child(7) {
    --platform-accent: #9bf07e;
    --platform-accent-rgb: 155, 240, 126;
}

@media (max-width: 980px) {
    .platforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.community-card {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #2000E8;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: #6B4EFF;
}

.community-card h3 {
    font-size: 1.5rem;
    color: #2000E8;
    margin-bottom: 20px;
}

.community-card ul {
    list-style: none;
    padding: 0;
}

.community-card ul li {
    padding: 10px 0;
    color: #C5C7D4;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.community-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2000E8;
    font-weight: 700;
}

.community-highlight {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, rgba(47, 93, 255, 0.1) 0%, rgba(151, 71, 255, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid #2000E8;
    text-align: center;
}

.community-highlight p {
    font-size: 1.2rem;
    color: #E8E9ED;
    margin: 0;
    line-height: 1.8;
}

.community-highlight strong {
    color: #2000E8;
    font-size: 1.3rem;
}

.community-highlight.terminal-vibe {
    padding: 28px 30px;
    border: 1px solid rgba(97, 150, 255, 0.35);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(8, 20, 56, 0.84) 0%, rgba(5, 15, 42, 0.95) 100%);
    box-shadow: 0 18px 42px rgba(4, 11, 34, 0.45);
    text-align: left;
}

.community-highlight.terminal-vibe .terminal-prompt {
    margin: 0 0 12px;
}

.community-highlight .community-terminal-text {
    margin: 0;
    color: #d7e8ff;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Почему офлайн */
#offline {
    background-color: #0a0d1a;
}

.offline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.offline-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 29, 41, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.offline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 0, 232, 0.4);
}

.offline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.offline-card h3 {
    font-size: 1.1rem;
    color: #E8E9ED;
    font-weight: 500;
}

/* AI в безопасности */
#ai-security {
    background-color: #0a0d1a;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ai-card {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 0, 232, 0.6);
}

.ai-card-highlight {
    border: 2px solid #2000E8;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ai-card h3 {
    font-size: 1.5rem;
    color: #2000E8;
    margin-bottom: 20px;
}

.ai-card ul {
    list-style: none;
    padding: 0;
}

.ai-card ul li {
    padding: 10px 0;
    color: #C5C7D4;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.ai-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2000E8;
    font-weight: 700;
}

.ai-note {
    margin-top: 50px;
    padding: 30px;
    background: rgba(32, 0, 232, 0.05);
    border-left: 4px solid #2000E8;
    border-radius: 8px;
}

.ai-note p {
    font-size: 1.1rem;
    color: #C5C7D4;
    margin: 0;
    line-height: 1.7;
}

.ai-note strong {
    color: #2000E8;
}

/* Кто ведёт */
#mentor {
    background-color: #0a0d1a;
}

.mentor-content {
    max-width: 800px;
    margin: 50px auto 0;
}

.mentor-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.2);
}

.mentor-placeholder {
    width: 150px;
    height: 150px;
    background: #000B2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(117, 167, 255, 0.65);
    box-shadow: 0 14px 28px rgba(6, 18, 55, 0.45);
}

.mentor-info h3 {
    font-size: 1.8rem;
    color: #2000E8;
    margin-bottom: 5px;
}

.mentor-nick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(120, 168, 255, 0.4);
    background: rgba(18, 32, 78, 0.5);
}

.mentor-nick-name {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #e5f1ff;
}

.mentor-nick-role-label {
    font-size: 0.78rem;
    color: #9ec6ff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mentor-role {
    font-size: 1rem;
    color: #A0A4B8;
    margin-bottom: 20px !important;
    font-style: italic;
}

.mentor-achievements {
    list-style: none;
    padding: 0;
}

.mentor-achievements li {
    padding: 8px 0;
    color: #C5C7D4;
    position: relative;
    padding-left: 25px;
}

.mentor-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2000E8;
}

.mentor-info p {
    color: #C5C7D4;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Цены */
#pricing {
    background: radial-gradient(600px 600px at 50% 50%, rgba(151, 71, 255, 0.04), transparent), #000B2C;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, #2F5DFF 0%, #9747FF 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(32, 0, 232, 0.4);
}

.glow-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.glow-card > * {
    position: relative;
    z-index: 1;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(105, 173, 255, 0.2), transparent 62%);
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 0;
}

.glow-card:hover::after {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 10px 0;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: #A0A4B8;
    font-style: italic;
}

#founder-cohort {
    padding-top: 40px;
    background:
        radial-gradient(780px 280px at 50% -20%, rgba(67, 128, 255, 0.16), transparent 70%),
        #000B2C;
}

.founder-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 38px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(17, 39, 96, 0.72) 0%, rgba(6, 20, 58, 0.9) 100%);
    border: 1px solid rgba(98, 150, 255, 0.4);
    box-shadow: 0 22px 56px rgba(3, 10, 34, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #d6e8ff;
    background: rgba(89, 152, 255, 0.15);
    border: 1px solid rgba(129, 177, 255, 0.42);
}

.founder-card h2 {
    margin-bottom: 24px;
    text-align: left;
    font-size: 2rem;
}

.founder-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.founder-item {
    position: relative;
    padding: 16px 18px 16px 48px;
    border-radius: 12px;
    background: rgba(12, 30, 78, 0.66);
    border: 1px solid rgba(111, 162, 255, 0.32);
    color: #dbe6ff;
    font-size: 1.02rem;
}

.founder-item strong {
    color: #ffffff;
}

.founder-item::before {
    content: '✓';
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b205f;
    font-weight: 700;
    background: linear-gradient(180deg, #8ac7ff 0%, #66a8ff 100%);
}

.founder-note {
    margin-top: 20px;
    color: #c5d5f7;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .founder-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .founder-card {
        padding: 30px 22px;
    }

    .founder-card h2 {
        font-size: 1.55rem;
    }

    .founder-item {
        padding: 14px 14px 14px 44px;
        font-size: 0.98rem;
    }
}

/* Ограниченность */
#limited {
    background-color: #0a0d1a;
}

.limited-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.limited-item {
    text-align: center;
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.2);
    transition: all 0.3s ease;
}

.limited-item:hover {
    transform: translateY(-3px);
    border-color: rgba(32, 0, 232, 0.5);
}

.limited-item p {
    font-size: 1.2rem;
    color: #E8E9ED;
    margin: 0;
    font-weight: 500;
}

/* После клуба */
#future {
    background-color: #0a0d1a;
}

.future-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
    margin-top: 50px;
}

@media (max-width: 1280px) {
    .future-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .future-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.future-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(26, 29, 41, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(32, 0, 232, 0.1);
    transition: all 0.3s ease;
}

.future-item:hover {
    border-color: rgba(32, 0, 232, 0.4);
    transform: translateY(-3px);
}

.future-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.future-item p {
    font-size: 1.1rem;
    color: #E8E9ED;
    margin: 0;
}

/* Это не для вас */
#not-for-you {
    background-color: #0a0d1a;
}

.not-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.not-for-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(26, 29, 41, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.not-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.not-for-item p {
    color: #E8E9ED;
    margin: 0;
    font-size: 1rem;
}

.for-you-block {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    border-radius: 12px;
    border: 2px solid #2000E8;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.for-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.for-you-block p {
    color: #E8E9ED;
    font-size: 1.1rem;
    margin: 0;
}

/* Структура обучения */
#structure {
    background-color: #0a0d1a;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.structure-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    border-radius: 10px;
    border: 1px solid rgba(32, 0, 232, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.structure-item:hover {
    transform: translateX(5px);
    border-color: rgba(32, 0, 232, 0.5);
}

.structure-check {
    font-size: 2rem;
    color: #2000E8;
    font-weight: 700;
    flex-shrink: 0;
}

.structure-item h3 {
    font-size: 1.1rem;
    color: #E8E9ED;
    font-weight: 500;
    margin: 0;
}

.structure-results {
    margin-top: 70px;
    padding: 50px;
    background: linear-gradient(145deg, rgba(14, 22, 42, 0.9) 0%, rgba(10, 16, 32, 0.96) 100%);
    border-radius: 16px;
    border: 1px solid rgba(143, 164, 214, 0.32);
}

.structure-results h3 {
    font-size: 2rem;
    color: #e7eeff;
    margin-bottom: 40px;
    text-align: center;
}

.results-timeline-simple {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

@media (max-width: 1200px) {
    .results-timeline-simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.timeline-simple-item {
    --accent-rgb: 91, 198, 255;
    padding: 28px;
    background: linear-gradient(145deg, rgba(20, 31, 60, 0.68) 0%, rgba(11, 18, 36, 0.88) 100%);
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.34);
    border-left: 4px solid rgb(var(--accent-rgb));
    box-shadow: 0 14px 28px rgba(var(--accent-rgb), 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.timeline-simple-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(var(--accent-rgb), 0.22);
    border-color: rgba(var(--accent-rgb), 0.52);
}

.timeline-period {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #eff7ff;
    margin-bottom: 15px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.2);
    border: 1px solid rgba(var(--accent-rgb), 0.45);
}

.timeline-simple-item p {
    font-size: 1.05rem;
    color: #d6deef;
    line-height: 1.7;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.results-timeline-simple .timeline-simple-item:nth-child(1) {
    --accent-rgb: 91, 198, 255;
}

.results-timeline-simple .timeline-simple-item:nth-child(2) {
    --accent-rgb: 107, 232, 161;
}

.results-timeline-simple .timeline-simple-item:nth-child(3) {
    --accent-rgb: 255, 191, 107;
}

.results-timeline-simple .timeline-simple-item:nth-child(4) {
    --accent-rgb: 236, 132, 255;
}

/* Для родителей */
#parents {
    background-color: #0a0d1a;
}

.parents-concern {
    margin-top: 50px;
}

.concern-item {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.05) 0%, rgba(26, 29, 41, 0.3) 100%);
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #2000E8;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.concern-item:hover {
    transform: translateX(5px);
}

.concern-item h3 {
    font-size: 1.3rem;
    color: #dce8ff;
    text-shadow: 0 0 10px rgba(147, 190, 255, 0.18);
    margin-bottom: 15px;
    font-weight: 600;
}

.concern-item p {
    font-size: 1.05rem;
    color: #C5C7D4;
    line-height: 1.7;
    margin: 0;
}

.concern-item strong {
    color: #E8E9ED;
    font-weight: 700;
}

.parents-timeline {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parents-stage {
    padding: 20px;
    background: rgba(32, 0, 232, 0.05);
    border-radius: 8px;
    border-left: 3px solid #2000E8;
}

.parents-stage strong {
    display: block;
    color: #2000E8;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.parents-stage p {
    font-size: 1rem;
    color: #C5C7D4;
    line-height: 1.6;
}

.parents-cta {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(90deg, rgba(47, 93, 255, 0.1) 0%, rgba(151, 71, 255, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid #2000E8;
    text-align: center;
}

.parents-cta p {
    font-size: 1.2rem;
    color: #E8E9ED;
    margin-bottom: 25px;
    line-height: 1.7;
}

.parents-cta strong {
    color: #2000E8;
}

.parents-cta .btn-primary {
    margin-top: 10px;
}

/* FAQ */
#faq {
    background-color: #0a0d1a;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(26, 29, 41, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(32, 0, 232, 0.1);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(32, 0, 232, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #E8E9ED;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: #2000E8;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #C5C7D4;
    line-height: 1.6;
    margin: 0;
}

/* Пробное занятие */
#trial {
    background-color: #0a0d1a;
    padding: 100px 0;
}

.trial-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.15) 0%, rgba(151, 71, 255, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid #2000E8;
    position: relative;
}

.trial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 30px;
    background: linear-gradient(90deg, #2000E8 0%, #9747FF 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trial-block h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #E8E9ED;
}

.trial-subtitle {
    font-size: 1.3rem;
    color: #A0A4B8;
    margin-bottom: 50px;
}

.trial-pilot-note {
    font-size: 1.2rem;
    color: #E8E9ED;
    line-height: 1.5;
    margin: -20px 0 40px;
    font-weight: 600;
}

.trial-format {
    margin-bottom: 50px;
}

.trial-duration {
    font-size: 3rem;
    font-weight: 700;
    color: #2000E8;
    margin-bottom: 40px;
}

.trial-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: left;
}

.trial-step {
    padding: 25px;
    background: rgba(26, 29, 41, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(32, 0, 232, 0.2);
}

.step-time {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2000E8;
    margin-bottom: 15px;
    font-weight: 700;
}

.trial-step h3 {
    font-size: 1.3rem;
    color: #E8E9ED;
    margin-bottom: 10px;
}

.trial-step p {
    font-size: 0.95rem;
    color: #A0A4B8;
    line-height: 1.6;
    margin: 0;
}

.trial-feeling {
    margin: 50px 0;
    padding: 30px;
    background: rgba(32, 0, 232, 0.05);
    border-radius: 12px;
}

.trial-feeling p {
    font-size: 1.4rem;
    color: #C5C7D4;
    margin: 0;
}

.trial-feeling strong {
    color: #2000E8;
    font-size: 1.5rem;
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

/* Форма */
#booking {
    background: radial-gradient(600px 600px at 50% 0%, rgba(32, 0, 232, 0.05), transparent), #000B2C;
}

.booking-form {
    max-width: 500px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #A0A4B8;
    pointer-events: none;
    z-index: 1;
}

.form-input-wrapper input {
    padding-left: 48px !important;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #A0A4B8;
    margin-top: -10px;
}

.booking-form input,
.booking-form select {
    padding: 16px;
    background: rgba(26, 29, 41, 0.5);
    border: 1px solid rgba(32, 0, 232, 0.3);
    border-radius: 8px;
    color: #E8E9ED;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #2000E8;
    background: rgba(26, 29, 41, 0.7);
}

.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232000E8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    min-height: 30px;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

/* Футер */
footer {
    background-color: #010714;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(32, 0, 232, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: #2000E8;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: #A0A4B8;
    margin-bottom: 10px;
}

.footer-address {
    margin-top: 15px;
    font-size: 1.1rem;
}

.footer-links h4 {
    color: #E8E9ED;
    margin-bottom: 15px;
}

.footer-links p {
    color: #A0A4B8;
    margin-bottom: 10px;
}

.footer-links a {
    color: #2000E8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6B4EFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(32, 0, 232, 0.1);
}

.footer-bottom p {
    color: #A0A4B8;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #2000E8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #6B4EFF;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    #hero {
        text-align: center;
        padding: 110px 0 80px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .stat-item-single {
        align-items: center;
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-cover {
        margin: 0 auto;
    }

    .hero-cover-back {
        width: 220px;
        left: 60px;
        top: 90px;
    }

    .hero-cover-front {
        max-width: 320px;
    }

    .hero-cover-image {
        height: 470px;
    }

    .hero-chip-1 {
        top: 16px;
        left: 24px;
    }

    .hero-chip-2 {
        right: 6px;
        bottom: 128px;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-top-logo {
        top: max(12px, calc(env(safe-area-inset-top) + 6px));
        left: max(14px, calc(env(safe-area-inset-left) + 8px));
    }

    .hero-logo-image {
        width: clamp(118px, 38vw, 168px);
    }

    .subtitle {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 300px;
        max-height: 400px;
    }

    #hero {
        padding: 96px 0 70px;
    }

    .hero-layout {
        gap: 28px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-cover {
        max-width: 300px;
    }

    .hero-cover-back {
        display: none;
    }

    .hero-cover-image {
        height: 420px;
    }

    .hero-cover-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }

    .hero-cover-overlay strong {
        font-size: 0.94rem;
    }

    .hero-chip {
        font-size: 0.72rem;
        padding: 7px 12px;
    }

    .hero-chip-1 {
        top: 8px;
        left: 12px;
    }

    .hero-chip-2 {
        right: 6px;
        bottom: 98px;
    }

    .hero-chip-3 {
        left: 8px;
        bottom: 16px;
    }

    .about-terminal {
        padding: 24px 18px;
    }

    .terminal-prompt {
        font-size: 0.8rem;
    }

    .about-terminal h2,
    .about-terminal .section-text {
        text-align: left;
    }

    .community-highlight.terminal-vibe {
        padding: 22px 18px;
    }

    .community-highlight .community-terminal-text {
        font-size: 0.98rem;
    }

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

    .location-map-frame,
    .office-photo-link img {
        height: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        display: none;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
    }

    .unique-block h2 {
        font-size: 1.8rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .unique-result {
        padding: 40px 25px;
    }

    .unique-result h3 {
        font-size: 1.5rem;
    }

    .unique-subtitle {
        font-size: 1rem;
    }

    .unique-intro {
        font-size: 1.1rem;
    }

    .results-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .results-text h2,
    .results-text .section-text {
        text-align: center;
    }

    .results-terminal {
        padding: 22px 18px;
    }

    .results-intro-text {
        font-size: 1rem;
    }

    .growth-path {
        flex-direction: column;
    }

    .growth-arrow {
        transform: rotate(90deg);
    }

    .growth-item {
        max-width: 100%;
    }

    .platforms-grid {
        justify-content: center;
    }

    .community-features {
        grid-template-columns: 1fr;
    }

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

    .evening-timeline {
        grid-template-columns: 1fr;
    }

    .evening-item {
        padding: 24px 22px 20px;
    }

    .evening-item p {
        font-size: 1rem;
    }

    .practice-videos {
        grid-template-columns: 1fr;
    }

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

    .membership-note {
        padding: 22px 18px;
    }

    .membership-terminal-text {
        font-size: 1.02rem;
    }

    .brotherhood-card {
        padding: 24px 18px 22px;
    }

    .brotherhood-card h2 {
        font-size: 1.55rem;
    }

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

    .brotherhood-note {
        font-size: 1rem;
    }

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

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

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

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

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

    .future-list {
        grid-template-columns: 1fr;
    }

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

    .mentor-card {
        flex-direction: column;
        text-align: center;
    }

    .limited-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .for-you-block {
        flex-direction: column;
        text-align: center;
    }

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

    .structure-results {
        padding: 30px 20px;
    }

    .structure-results h3 {
        font-size: 1.5rem;
    }

    .results-timeline-simple {
        grid-template-columns: 1fr;
    }

    .parents-timeline {
        gap: 15px;
    }

    .parents-cta {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trial-block {
        padding: 50px 25px;
    }

    .trial-block h2 {
        font-size: 2rem;
    }

    .trial-subtitle {
        font-size: 1.1rem;
    }

    .trial-duration {
        font-size: 2rem;
    }

    .trial-steps {
        grid-template-columns: 1fr;
    }

    .trial-feeling p {
        font-size: 1.1rem;
    }

    .trial-feeling strong {
        font-size: 1.2rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 16px 35px;
    }
}

/* Обновлённый контент лендинга */
.membership-item p {
    margin-top: 12px;
    color: #A0A4B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-links {
    margin-top: 24px;
    text-align: center;
    color: #A0A4B8;
    line-height: 1.6;
}

.review-links a {
    color: #2000E8;
    text-decoration: none;
    font-weight: 600;
}

.review-links a:hover {
    color: #9747FF;
}

.pricing-features {
    margin-top: 18px;
    padding-left: 18px;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.pricing-features li {
    margin-bottom: 6px;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(260px, 420px);
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.booking-grid .booking-form {
    max-width: 100%;
    margin: 0;
}

.booking-contacts {
    background: linear-gradient(135deg, rgba(47, 93, 255, 0.08) 0%, rgba(26, 29, 41, 0.35) 100%);
    border: 1px solid rgba(32, 0, 232, 0.25);
    border-radius: 12px;
    padding: 28px;
}

.booking-contacts h3 {
    color: #E8E9ED;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.contact-link {
    display: block;
    margin-bottom: 12px;
    color: #2000E8;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #9747FF;
}

.booking-reviews {
    margin-top: 18px;
    color: #A0A4B8;
    line-height: 1.6;
}

.booking-reviews a {
    color: #2000E8;
    text-decoration: none;
}

.booking-reviews a:hover {
    color: #9747FF;
}

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

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

    .reviews-links a {
        display: block;
        margin: 8px 0;
    }

    .reviews-links span {
        display: none;
    }
}
