/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-dark: #1a1a2e;
    --primary-light: #f8f9ff;
    
    /* Accent Colors */
    --accent-purple: #667eea;
    --accent-pink: #f857a6;
    --accent-orange: #ff6b6b;
    --accent-gold: #ffd700;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-header {
    padding: 12px 28px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 107, 107, 0.95);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: shake 2s ease-in-out infinite;
    font-size: 15px;
    font-weight: 600;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.urgency-badge i {
    animation: flicker 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.detail-item i {
    font-size: 20px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--accent-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.price-tag {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-value {
    font-size: 28px;
    font-weight: 800;
}

/* ===================================
   VALUE SECTION
   =================================== */
.value-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-purple);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===================================
   PROGRAM SECTION (ENHANCED)
   =================================== */
.program-section {
    padding: 100px 0;
    background: var(--white);
}

.program-block {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid var(--gray-200);
}

.program-block:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-5px);
}

.program-block-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.program-block.zero .program-block-header {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
}

.program-block.three .program-block-header {
    background: linear-gradient(135deg, #ff922b 0%, #fd7e14 100%);
}

.program-block-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.3;
}

.program-block-title h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.program-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-badge.green {
    background: rgba(255, 255, 255, 0.25);
}

.program-badge.blue {
    background: rgba(255, 255, 255, 0.25);
}

.program-badge.orange {
    background: rgba(255, 255, 255, 0.25);
}

.program-block-content {
    padding: 40px;
}

.program-objective {
    padding: 20px 25px;
    background: var(--gray-50);
    border-left: 4px solid var(--accent-purple);
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--gray-800);
}

.program-block.zero .program-objective {
    border-left-color: #51cf66;
}

.program-block.three .program-objective {
    border-left-color: #ff922b;
}

.program-section-inner {
    margin-bottom: 30px;
}

.program-section-inner h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-section-inner h4 i {
    color: var(--accent-purple);
    font-size: 24px;
}

.program-section-inner.practice {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px dashed var(--accent-purple);
}

.program-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.program-list li {
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    color: var(--gray-700);
}

.program-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 18px;
}

.program-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.program-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

.step-content h5 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.program-subsection {
    margin-bottom: 20px;
}

.program-subsection h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.program-examples {
    margin-top: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.program-examples strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gray-800);
    font-size: 15px;
}

.example-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 13px;
    margin: 4px 4px 4px 0;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.example-tag:hover {
    background: var(--accent-purple);
    color: var(--white);
    border-color: var(--accent-purple);
}

.program-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    margin-top: 20px;
}

.program-highlight i {
    font-size: 28px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.program-highlight strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.program-highlight p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.program-highlight.small {
    padding: 12px 18px;
    display: inline-flex;
}

.program-highlight.small i {
    font-size: 18px;
}

.program-result {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.1) 0%, rgba(55, 178, 77, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(81, 207, 102, 0.3);
    margin-top: 30px;
}

.program-result i {
    font-size: 28px;
    color: #51cf66;
    flex-shrink: 0;
}

.program-result strong {
    font-size: 17px;
    color: var(--gray-900);
}

.program-final-result {
    margin-top: 60px;
    padding: 60px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    color: var(--white);
    box-shadow: var(--shadow-2xl);
}

.program-final-result h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.program-final-result h3 i {
    color: var(--accent-gold);
    font-size: 42px;
}

.final-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 50px;
    text-align: center;
}

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

.result-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    text-align: left;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.result-card.featured {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.result-card.featured:hover {
    background: rgba(255, 215, 0, 0.3);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.result-card.featured .result-icon {
    background: var(--accent-gold);
    color: var(--gray-900);
}

.result-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.result-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

.results-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.results-cta p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.results-cta i {
    color: var(--accent-gold);
    font-size: 24px;
}

.btn-results {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--white);
    color: var(--accent-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-results:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.final-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.final-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.final-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.final-item i {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.final-item span {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

/* ===================================
   SPEAKER SECTION
   =================================== */
.speaker-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.speaker-section .section-title {
    color: var(--white);
}

.speaker-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.speaker-image {
    position: relative;
}

.speaker-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.speaker-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-name {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
}

.speaker-position {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.speaker-quote {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    border-left: 4px solid var(--accent-gold);
}

.speaker-quote i {
    font-size: 28px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.speaker-quote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.speaker-achievements {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.achievement-item i {
    color: var(--accent-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.achievement-item span {
    font-size: 16px;
    line-height: 1.6;
}

/* ===================================
   WHY SECTION (BENEFITS)
   =================================== */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-main-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-2xl);
    align-items: center;
}

.why-stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

.why-divider {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

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

.why-card {
    background: var(--gray-50);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--accent-purple);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card.highlight-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 3px solid var(--accent-purple);
    position: relative;
    overflow: visible;
}

.why-card.highlight-card::after {
    content: '🔥 ВЫГОДА';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.why-card.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cost-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.cost-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 6px;
    font-weight: 600;
}

.cost-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
}

.old-cost .cost-value {
    color: var(--accent-orange);
    text-decoration: line-through;
    opacity: 0.7;
}

.new-cost .cost-value {
    color: #51cf66;
    font-size: 24px;
}

.cost-arrow {
    font-size: 28px;
    color: var(--accent-purple);
    font-weight: 700;
    flex-shrink: 0;
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white);
}

.why-icon.danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    animation: pulse-danger 2s ease-in-out infinite;
}

.why-icon.success {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
}

.why-icon.warning {
    background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
}

.why-icon.primary {
    background: var(--primary-gradient);
}

.why-icon.info {
    background: linear-gradient(135deg, #339af0 0%, #1c7ed6 100%);
}

.why-icon.gradient {
    background: linear-gradient(135deg, #f857a6 0%, #ff5858 100%);
}

@keyframes pulse-danger {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

.why-cta-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.why-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.why-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.why-cta-content h3 i {
    animation: flicker 1.5s ease-in-out infinite;
}

.why-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: var(--white);
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-why-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===================================
   AUDIENCE SECTION
   =================================== */
.audience-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.audience-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--white);
}

.audience-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.audience-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 50px;
}

.seats-counter {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 20px;
    color: var(--white);
}

.seats-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.seats-visual i {
    font-size: 48px;
}

.seats-number {
    font-size: 72px;
    font-weight: 900;
}

.seats-text {
    font-size: 24px;
    font-weight: 600;
}

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

.payment-card {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-card:hover {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-header i {
    font-size: 28px;
    color: var(--accent-purple);
}

.payment-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.payment-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-payment {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-bottom: 16px;
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-payment-secondary {
    background: linear-gradient(135deg, #f857a6 0%, #ff5858 100%);
    box-shadow: 0 10px 30px rgba(248, 87, 166, 0.3);
}

.btn-payment-secondary:hover {
    box-shadow: 0 15px 40px rgba(248, 87, 166, 0.4);
}

.payment-note {
    color: var(--gray-600);
    font-size: 14px;
    text-align: center;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 15px;
    border: 2px solid var(--gray-200);
}

.guarantee i {
    font-size: 28px;
    color: var(--accent-purple);
}

.guarantee p {
    color: var(--gray-700);
    font-size: 15px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-question i {
    color: var(--accent-purple);
    font-size: 20px;
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0;
    background: var(--gray-900);
    color: var(--white);
}

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

.footer-logo .logo-text {
    font-size: 28px;
}

.footer-logo p {
    margin-top: 8px;
    opacity: 0.7;
}

.footer-info p {
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .speaker-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .speaker-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .speaker-achievements {
        align-items: center;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-main-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-divider {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .value-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .program-block-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .program-block-number {
        font-size: 56px;
    }
    
    .program-block-content {
        padding: 30px 20px;
    }
    
    .program-step {
        flex-direction: column;
    }
    
    .step-number {
        align-self: center;
    }
    
    .final-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .program-final-result {
        padding: 35px 25px;
    }
    
    .program-final-result h3 {
        font-size: 26px;
        flex-direction: column;
    }
    
    .results-cta p {
        font-size: 17px;
        flex-direction: column;
    }
    
    .btn-results {
        width: 100%;
        justify-content: center;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .speaker-name {
        font-size: 32px;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-main-card {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .why-cta-content h3 {
        font-size: 24px;
        flex-direction: column;
    }
    
    .why-cta-box {
        padding: 30px;
    }
    
    .cost-comparison {
        flex-direction: column;
        gap: 10px;
    }
    
    .cost-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .why-card.highlight-card::after {
        top: -12px;
        right: 15px;
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-payment {
        width: 100%;
        justify-content: center;
    }
    
    .price-value {
        font-size: 24px;
    }
    
    .seats-number {
        font-size: 56px;
    }
    
    .value-card,
    .audience-card,
    .payment-card {
        padding: 30px 20px;
    }
}