/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0B0B2A;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(11, 11, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 91, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo {
    flex: 1;
    min-width: 200px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #FFD85B;
}

.header-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9C6CFF;
    font-size: 14px;
}

.calendar-icon {
    color: #FFD85B;
}

.timer-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-label {
    font-size: 14px;
    color: #ffffff;
}

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

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(156, 108, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 60px;
}

.timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFD85B;
    line-height: 1;
}

.timer-label-small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.timer-separator {
    font-size: 24px;
    font-weight: 700;
    color: #FFD85B;
    padding: 0 4px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
}

.crypto-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 91, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 108, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(156, 108, 255, 0.2), rgba(255, 215, 91, 0.2));
    border-radius: 50px;
    padding: 12px 24px;
    width: fit-content;
    border: 1px solid rgba(255, 215, 91, 0.3);
}

.days {
    font-size: 18px;
    font-weight: 600;
    color: #FFD85B;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.price-new {
    font-size: 28px;
    font-weight: 800;
    color: #FFD85B;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #FFD85B, #9C6CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.income-range {
    color: #FFD85B;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD85B, #FFC700);
    color: #0B0B2A;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 215, 91, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 215, 91, 0.5);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 215, 91, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 91, 0.6);
    }
}

.expert-info {
    margin-top: 20px;
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFD85B;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.expert-card {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.expert-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(156, 108, 255, 0.2), rgba(255, 215, 91, 0.2));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.crypto-icon {
    position: absolute;
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.crypto-bitcoin {
    top: 10%;
    left: 10%;
    color: #FFD85B;
}

.crypto-ethereum {
    bottom: 15%;
    right: 10%;
    color: #9C6CFF;
    animation-delay: 1.5s;
}

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

.expert-name-card {
    text-align: center;
    margin-top: 20px;
    background: rgba(156, 108, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(156, 108, 255, 0.2);
}

.expert-name-card h3 {
    font-size: 24px;
    color: #FFD85B;
    margin-bottom: 8px;
}

.expert-name-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD85B, #9C6CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(255, 215, 91, 0.3), rgba(156, 108, 255, 0.3));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-year {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    min-width: 100px;
    text-align: right;
}

.timeline-content {
    flex: 1;
    background: rgba(20, 20, 50, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.timeline-item.missed .timeline-content {
    border-color: rgba(255, 100, 100, 0.2);
}

.timeline-item.current .timeline-content {
    border-color: rgba(255, 215, 91, 0.5);
    background: rgba(255, 215, 91, 0.05);
}

.timeline-icon {
    position: absolute;
    left: -20px;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.missed-icon {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6b6b;
}

.current-icon {
    background: rgba(255, 215, 91, 0.3);
    color: #FFD85B;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
}

.missed-label {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 14px;
}

.current-label {
    color: #FFD85B;
    font-weight: 600;
    font-size: 14px;
}

.opportunity-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    background: linear-gradient(135deg, #9C6CFF, #7B4DFF);
    box-shadow: 0 8px 20px rgba(156, 108, 255, 0.3);
}

.cta-secondary:hover {
    box-shadow: 0 12px 30px rgba(156, 108, 255, 0.5);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.result-card {
    background: rgba(20, 20, 50, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 91, 0.5);
    box-shadow: 0 10px 30px rgba(156, 108, 255, 0.2);
}

.result-card.highlight-card {
    background: linear-gradient(135deg, rgba(255, 215, 91, 0.1), rgba(156, 108, 255, 0.1));
    border-color: rgba(255, 215, 91, 0.3);
}

.result-icon {
    margin-bottom: 20px;
    color: #FFD85B;
}

.result-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD85B;
}

.result-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.audience-card {
    background: rgba(20, 20, 50, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.audience-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon.beginner {
    background: rgba(255, 215, 91, 0.2);
    color: #FFD85B;
}

.audience-icon.advanced {
    background: rgba(156, 108, 255, 0.2);
    color: #9C6CFF;
}

.audience-header h3 {
    font-size: 28px;
    color: #ffffff;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.audience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD85B;
    font-weight: 700;
}

.audience-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-highlight .price-old {
    font-size: 32px;
}

.price-highlight .price-new {
    font-size: 48px;
}

/* Program */
.gift-timer-section {
    background: linear-gradient(135deg, rgba(156, 108, 255, 0.15), rgba(255, 215, 91, 0.15));
    border: 2px solid rgba(255, 215, 91, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0 60px;
    text-align: center;
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #FFD85B;
    margin-bottom: 20px;
}

.gift-icon {
    font-size: 32px;
}

.gift-timer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.gift-timer-label {
    font-size: 18px;
    color: #ffffff;
}

#giftTimer {
    background: rgba(11, 11, 42, 0.5);
    padding: 15px 30px;
    border-radius: 15px;
}

#giftTimer .timer-unit {
    background: transparent;
    padding: 0 10px;
}

.gift-description {
    font-size: 18px;
    color: #ffffff;
    margin-top: 20px;
}

.program-days {
    display: grid;
    gap: 30px;
    margin: 60px 0;
}

.program-day {
    background: rgba(20, 20, 50, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.program-day:hover {
    border-color: rgba(156, 108, 255, 0.5);
    transform: translateX(5px);
}

.day-number {
    display: inline-block;
    background: linear-gradient(135deg, #FFD85B, #9C6CFF);
    color: #0B0B2A;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.program-day h3 {
    font-size: 24px;
    color: #FFD85B;
    margin-bottom: 10px;
}

.program-day p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    margin-bottom: 20px;
}

.program-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9C6CFF;
    font-weight: 700;
}

.gift-item {
    background: rgba(255, 215, 91, 0.1);
    border: 1px solid rgba(255, 215, 91, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    color: #FFD85B;
    font-weight: 600;
    font-size: 15px;
}

.program-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Expert Section */
.expert-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.expert-main-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(156, 108, 255, 0.2), rgba(255, 215, 91, 0.2));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 36px;
    font-weight: 800;
    color: #FFD85B;
    margin-bottom: 10px;
}

.expert-title {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.credential-item svg {
    color: #9C6CFF;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.expert-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: rgba(156, 108, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(156, 108, 255, 0.2);
}

.achievement-number {
    font-size: 32px;
    font-weight: 800;
    color: #FFD85B;
    margin-bottom: 8px;
}

.achievement-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(20, 20, 50, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 108, 255, 0.5);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD85B, #9C6CFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0B0B2A;
}

.testimonial-name {
    font-weight: 700;
    color: #ffffff;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(20, 20, 50, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 91, 0.5);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(156, 108, 255, 0.15), rgba(255, 215, 91, 0.15));
    border: 2px solid rgba(255, 215, 91, 0.5);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD85B, #FFC700);
    color: #0B0B2A;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-free {
    font-size: 32px;
    font-weight: 800;
    color: #FFD85B;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.pricing-features svg {
    color: #9C6CFF;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FFD85B, #FFC700);
    color: #0B0B2A;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 91, 0.4);
}

.pricing-button.outline {
    background: transparent;
    border: 2px solid #FFD85B;
    color: #FFD85B;
}

.pricing-button.outline:hover {
    background: rgba(255, 215, 91, 0.1);
}

/* Registration Form */
.registration {
    background: rgba(20, 20, 50, 0.3);
}

.registration-content {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

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

.form-group label {
    font-weight: 600;
    color: #FFD85B;
    font-size: 16px;
}

.form-group input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 50, 0.5);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FFD85B;
    background: rgba(20, 20, 50, 0.8);
}

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

.form-submit {
    margin-top: 10px;
}

.form-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.6;
}

.form-privacy a {
    color: #9C6CFF;
    text-decoration: underline;
}

.form-privacy a:hover {
    color: #FFD85B;
}

/* Footer */
.footer {
    background: rgba(11, 11, 42, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD85B;
    text-decoration: underline;
}

.footer-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Quiz */
.quiz {
    background: rgba(20, 20, 50, 0.3);
}

.quiz-container {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(20, 20, 50, 0.5);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #FFD85B, #9C6CFF);
    border-radius: 10px;
    width: 25%;
    transition: width 0.3s ease;
}

.quiz-steps {
    position: relative;
    min-height: 400px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD85B;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quiz-option {
    background: rgba(20, 20, 50, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
}

.quiz-option:hover {
    border-color: #FFD85B;
    background: rgba(255, 215, 91, 0.05);
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: #9C6CFF;
    background: rgba(156, 108, 255, 0.1);
}

.option-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.option-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.option-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-btn {
    padding: 12px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.quiz-btn:hover {
    border-color: #FFD85B;
    background: rgba(255, 215, 91, 0.1);
}

.quiz-btn-back {
    color: rgba(255, 255, 255, 0.8);
}

/* Quiz Result */
.quiz-result {
    text-align: center;
}

.result-icon-success {
    margin: 0 auto 30px;
    color: #FFD85B;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.quiz-result-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFD85B;
    margin-bottom: 20px;
}

.quiz-result-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quiz-result-recommendation {
    background: rgba(156, 108, 255, 0.1);
    border: 1px solid rgba(156, 108, 255, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.quiz-result-recommendation h4 {
    color: #9C6CFF;
    font-size: 20px;
    margin-bottom: 15px;
}

.quiz-result-recommendation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quiz-result-recommendation li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.quiz-result-recommendation li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9C6CFF;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        order: -1;
    }
    
    .expert-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 50px;
    }
    
    .timeline-year {
        min-width: 50px;
        font-size: 28px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-info {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .expert-stats {
        grid-template-columns: 1fr;
    }
    
    .expert-achievements {
        grid-template-columns: 1fr;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .timer-value {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-container {
        padding: 30px 20px;
    }
    
    .quiz-question {
        font-size: 22px;
    }
    
    .quiz-option {
        padding: 20px;
    }
    
    .option-title {
        font-size: 18px;
    }
    
    .quiz-result-title {
        font-size: 24px;
    }
}
