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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #0B0D14;
    --text-primary: #E2E4E9;
    --text-secondary: rgba(226, 228, 233, 0.7);
    --text-muted: rgba(226, 228, 233, 0.6);
    --accent-gold: #F4B41A;
    --accent-gold-dark: #D4941A;
    --nav-text: #9BA1A6;
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Gradients */
.bg-gradient-1 {
    position: fixed;
    top: -112px;
    left: -112px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(244, 180, 26, 0.3), transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-2 {
    position: fixed;
    bottom: -96px;
    right: -112px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(244, 180, 26, 0.25), transparent 70%);
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    position: relative;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    color: var(--nav-text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary {
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-dark));
    background-size: 200% 100%;
    background-position: left center;
    color: #000;
    font-size: 18px;
    padding: 24px 32px;
    transition: background-position 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-position: right center;
}


.btn-full {
    width: 100%;
    font-size: 16px;
    padding: 16px 32px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 128px;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.badge-accent {
    font-size: 14px;
    color: var(--accent-gold);
}

.badge-separator {
    font-size: 14px;
    color: var(--text-muted);
}

.badge-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-white {
    color: #fff;
}

.title-gradient {
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 768px;
}

.glass-card {
    position: relative;
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08), 0 26px 70px -22px rgba(0, 0, 0, 0.9);
    max-width: 672px;
    text-align: left;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.bullet-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 8px;
    flex-shrink: 0;
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 64px;
}

.section-wrapper {
    max-width: 1152px;
    margin: 0 auto;
}

.section-wrapper-medium {
    max-width: 1024px;
    margin: 0 auto;
}

/* Myths Section */
.myths-section {
    position: relative;
    padding: 80px 0;
}

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

.myth-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08), 0 26px 70px -22px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
}

.myth-card:nth-child(1) {
    animation-delay: 0s;
}

.myth-card:nth-child(2) {
    animation-delay: 0.2s;
}

.myth-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.myth-card:hover {
    transform: translateY(-8px);
}

.myth-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
}

.myth-item:first-child {
    min-height: 5.5rem;
}

.myth-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.myth-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.reality-text {
    color: var(--text-secondary);
}

.myth-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 180, 26, 0.3), transparent);
}

/* Target Audience Section */
.target-section {
    position: relative;
    padding: 80px 0;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.target-card {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s;
}

.target-card:hover {
    transform: translateY(-4px);
}

.target-content {
    display: flex;
    align-items: start;
    gap: 16px;
}

.icon-wrapper {
    padding: 12px;
    border-radius: 12px;
    background: rgba(244, 180, 26, 0.1);
    border: 1px solid rgba(244, 180, 26, 0.2);
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.target-text {
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.cta-center {
    text-align: center;
}

/* Program Section */
.program-section {
    position: relative;
    padding: 80px 0;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.program-item {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08);
}

.program-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.program-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.1);
    border: 1px solid rgba(244, 180, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
}

.program-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

/* Results Section */
.results-section {
    position: relative;
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.result-card {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08);
}

.result-content {
    display: flex;
    align-items: start;
    gap: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.result-text {
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

/* Expert Section */
.expert-section {
    position: relative;
    padding: 80px 0;
}

.expert-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.expert-card {
    position: relative;
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(18, 24, 27, 0.92), rgba(10, 14, 16, 0.95));
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08), 0 26px 70px -22px rgba(0, 0, 0, 0.9);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.expert-photo {
    position: relative;
}

.photo-placeholder {
    aspect-ratio: 1;
    border-radius: 16px;
    background: linear-gradient(to bottom right, rgba(244, 180, 26, 0.2), transparent);
    border: 1px solid rgba(244, 180, 26, 0.3);
    overflow: hidden;
}

.expert-photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.expert-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expert-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.expert-title {
    font-size: 1.125rem;
    color: var(--accent-gold);
}

.expert-experience {
    color: var(--text-muted);
}

.expert-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.expert-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 8px;
    flex-shrink: 0;
}

.expert-quote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent-gold);
    padding-left: 16px;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 80px 0;
}

.final-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.final-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.final-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

/* Footer */
.footer {
    position: relative;
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
}

.footer-tagline {
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    max-width: 448px;
    width: 90%;
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

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

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

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 8px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

/* Burger button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
}

.burger--open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger--open .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger--open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(10, 14, 16, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu--open {
    max-height: 420px;
    padding: 24px 24px 28px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.25s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

/* Hero Gift Teaser */
.hero-gift-teaser {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 640px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(244, 180, 26, 0.07);
    border: 1px solid rgba(244, 180, 26, 0.25);
    text-align: left;
}

.hero-gift-icon {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.hero-gift-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.hero-gift-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Gift Files Section */
.gift-section {
    position: relative;
    padding: 80px 0;
}

.gift-files-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.gift-file-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.gift-file-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 180, 26, 0.35);
    background: rgba(244, 180, 26, 0.04);
}

.gift-file-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.12);
    border: 1.5px solid rgba(244, 180, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

.gift-file-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.gift-file-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

.gift-file-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gift-benefits {
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(244, 180, 26, 0.05);
    border: 1px solid rgba(244, 180, 26, 0.2);
    margin-bottom: 40px;
}

.gift-benefits-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.gift-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gift-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.gift-benefits-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 7px;
}

/* Modal Success Panel */
.success-panel {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding-top: 8px;
}

.success-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.1);
    border: 1px solid rgba(244, 180, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.success-title {
    margin-bottom: 0;
}

.success-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.success-tg-btn {
    display: block;
    text-decoration: none;
    text-align: center;
}

.success-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-right {
        margin-left: auto;
    }

    .header-right .live-indicator {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.875rem;
    }

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

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

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

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

    .glass-card {
        padding: 24px;
    }

    .expert-card {
        padding: 24px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 16px 24px;
    }

    .gift-file-card {
        padding: 20px;
        gap: 16px;
    }

    .gift-benefits {
        padding: 20px;
    }

    .hero-gift-teaser {
        padding: 14px 16px;
    }
}
