/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Анимация градиента */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Основные стили */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #43e97b 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero */
.hero {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: keep-all;
    white-space: normal;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 22px 44px;
    font-size: 1.3rem;
}

/* Urgency */
.urgency {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 25px;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.urgency-text {
    color: #92400e;
    font-weight: 600;
}

/* Секции */
section {
    margin: 20px;
    padding: 60px 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

section:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
    position: relative;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}



.emoji {
    margin-right: 15px;
    font-size: 1.2em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.section-title:hover .emoji {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Problem section */
.problem {
    /* Фон задается базовыми стилями section */
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    border-left: 4px solid #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.problem-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    border-color: #a855f7;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.time {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    margin-right: 20px;
}

.text {
    color: #475569;
    flex: 1;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
    color: #1e293b;
}

/* Solution section */
.solution {
    /* Фон задается базовыми стилями section */
}

.solution-example {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.solution-input, .solution-output {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-input::before, .solution-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.8s;
}

.solution-input:hover::before, .solution-output:hover::before {
    left: 100%;
}

.solution-input:hover, .solution-output:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.solution-input {
    border-left: 4px solid #3b82f6;
}

.solution-output {
    border-left: 4px solid #10b981;
}

.solution-input h3 {
    color: #1e40af;
    margin-bottom: 20px;
}

.solution-output h3 {
    color: #059669;
    margin-bottom: 20px;
}

blockquote {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
    color: #475569;
    border-left: 3px solid #3b82f6;
}

/* Убираем двойную рамку для blockquote внутри solution-input */
.solution-input blockquote {
    border-left: none;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
}



.solution-output ul {
    list-style: none;
    margin-bottom: 20px;
}

.solution-output li {
    padding: 8px 0;
    color: #475569;
}

.time-saved {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #15803d;
}

/* ROI section */
.roi {
    /* Фон задается базовыми стилями section */
}

.roi-calculation {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.roi-label {
    color: #475569;
    text-align: left;
    padding-right: 5px;
}

.roi-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ea580c;
}

.roi-summary {
    margin: 30px 0;
}

.roi-period {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    border: 2px solid #f59e0b;
}

.amount {
    font-weight: 700;
    font-size: 1.5rem;
    color: #92400e;
}

.roi-conclusion {
    background: white;
    padding: 20px;
    border-radius: 15px;
    color: #1e293b;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

/* Benefits section */
.benefits {
    /* Фон задается базовыми стилями section */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    transition: left 0.6s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    border-top-width: 6px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #15803d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #475569;
    line-height: 1.6;
}

/* Location section */
.location {
    background: linear-gradient(135deg, #f0f9ff 0%, #0ea5e9 20%, #06b6d4 40%, #0891b2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.location-blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 30%, #93c5fd 60%, #60a5fa 100%);
    color: #0f172a;
}

.location-blue .section-title {
    color: #0f172a;
}

.location-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.location-experience {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-experience h3 {
    color: #0f172a;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.experience-items {
    margin-bottom: 30px;
}

.experience-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: #0f172a;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.experience-item:hover::before {
    left: 100%;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 1);
}

.experience-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    min-width: 30px;
}

.result {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #0f172a;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Target audience section */
.target-audience {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.experience-requirement {
    max-width: 800px;
    margin: 0 auto 50px;
}

.experience-requirement h3 {
    color: #7c3aed;
    margin-bottom: 20px;
}

.experience-block {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
    border-left: 4px solid #7c3aed;
}

.experience-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.experience-explanation {
    color: #475569;
    font-size: 1.1rem;
}

.value-proposition {
    max-width: 900px;
    margin: 0 auto 50px;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.value-card.junior {
    border-left: 4px solid #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.value-card.senior {
    border-left: 4px solid #22c55e;
}

.value-card h4 {
    margin-bottom: 15px;
}

.junior h4 {
    color: #dc2626;
}

.senior h4 {
    color: #15803d;
}

.role-description {
    color: #64748b;
    margin-bottom: 15px;
}

.automation-impact {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.automation-impact.negative {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-weight: 600;
}

.automation-impact.positive {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    font-weight: 600;
}

.expertise-benefits {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.expertise-benefits h4 {
    color: #7c3aed;
    margin-bottom: 20px;
}

.expertise-benefits ul {
    list-style: none;
}

.expertise-benefits li {
    padding: 8px 0;
    color: #475569;
}

.audience-list {
    max-width: 700px;
    margin: 0 auto 40px;
}

.audience-list h3 {
    color: #7c3aed;
    margin-bottom: 25px;
}

.audience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
    border-left: 4px solid #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.08), transparent);
    transition: left 0.6s;
}

.audience-item:hover::before {
    left: 100%;
}

.audience-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.position {
    font-weight: 600;
    color: #1e293b;
    padding-right: 10px;
}

.company-type {
    color: #64748b;
    font-style: italic;
    text-align: right;
}

.accreditation {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #22c55e;
    max-width: 800px;
    margin: 0 auto;
}

.accreditation p {
    color: #15803d;
    font-size: 1.1rem;
    margin: 0;
}

/* Urgency section */
.urgency {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.personalized-approach {
    max-width: 900px;
    margin: 0 auto;
}

.approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 40px;
}

.personal-benefits {
    margin-bottom: 50px;
}

.personal-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.personal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.08), transparent);
    transition: left 0.6s;
}

.personal-item:hover::before {
    left: 100%;
}

.personal-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
    border-left-width: 6px;
}

.personal-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 50px;
}

.personal-text h4 {
    color: #92400e;
    margin-bottom: 10px;
}

.personal-text p {
    color: #475569;
}

.booking-stats {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
    margin-bottom: 30px;
}

.booking-stats p {
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Program section */
.program {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #cbd5e1 60%, #94a3b8 100%);
}

.program .section-title {
    color: #0f172a;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.program-main, .program-bonuses {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.program-main {
    border-left: 4px solid #64748b;
}

.program-bonuses {
    border-left: 4px solid #64748b;
}

.program-main h3 {
    color: #475569;
    margin-bottom: 20px;
}

.program-bonuses h3 {
    color: #475569;
    margin-bottom: 20px;
}

.program-content ul {
    list-style: none;
}

.program-content li {
    padding: 8px 0;
    color: #475569;
}

/* Super bonus section */
.super-bonus {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 30%, #93c5fd 60%, #60a5fa 100%);
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.super-bonus .section-title {
    color: #0f172a;
}

.super-bonus::before {
    content: '';
    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% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.super-bonus-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.super-bonus-content h3 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
}

.super-bonus-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
}

.personal-life-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.life-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3b82f6;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.life-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.life-category h4 {
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.life-category p {
    color: #475569;
    line-height: 1.5;
}

.bonus-conclusion {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.bonus-conclusion p {
    color: #1e293b;
    font-size: 1.1rem;
}

/* Curriculum section */
.curriculum {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.curriculum-intro {
    max-width: 900px;
    margin: 0 auto 40px;
}

.curriculum-intro h3 {
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

.adaptation-benefits {
    margin-bottom: 30px;
}

.adaptation-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
}

.adaptation-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.adaptation-text {
    color: #475569;
}

.course-outcome {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.course-outcome h4 {
    color: #1e40af;
    margin-bottom: 20px;
}

.outcome-list {
    margin-bottom: 20px;
}

.outcome-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.outcome-icon {
    color: #22c55e;
    margin-right: 10px;
    font-weight: bold;
}

.outcome-text {
    color: #475569;
}

.outcome-details, .outcome-summary {
    color: #475569;
    margin-bottom: 15px;
}

.curriculum-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.toggle-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.expanded {
    transform: rotate(180deg);
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.curriculum-content.expanded {
    max-height: 2000px;
}

.curriculum-modules {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.module {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
}

.module:last-child {
    border-bottom: none;
}

.module h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.module ul {
    list-style: none;
}

.module li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.module li::before {
    content: "▶";
    color: #3b82f6;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Consultation section */
.consultation {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 30%, #86efac 60%, #4ade80 100%);
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.consultation-content h3 {
    color: #15803d;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.consultation-content > p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 30px;
}

.consultation-benefits {
    margin-bottom: 30px;
}

.consultation-item {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    color: #475569;
    box-shadow: 0 2px 10px rgba(21, 128, 61, 0.1);
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.consultation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.consultation-item:hover::before {
    left: 100%;
}

.consultation-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.2);
    border-left-width: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.consultation-result {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    color: #15803d;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.1);
}

.consultation-cta {
    background: linear-gradient(145deg, #065f46 0%, #047857 50%, #059669 100%);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(6, 95, 70, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.consultation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 70px rgba(6, 95, 70, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.consultation-cta > * {
    position: relative;
    z-index: 1;
}

.consultation-cta p {
    color: #f0fdf4;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.phone-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #a7f3d0;
    text-decoration: none;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(167, 243, 208, 0.3);
}

.phone-number:hover {
    color: #ffffff;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.consultation-cta .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #1f2937;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.consultation-cta .btn-primary:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    color: #111827;
}

/* Final warning section */
.final-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.warning-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.warning-content p {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.final-question {
    font-size: 1.5rem;
    color: #dc2626;
    margin: 30px 0;
}

.final-cta {
    margin: 40px 0;
}

.postscript {
    font-style: italic;
    color: #64748b;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    color: #f8fafc;
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgency-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.timer, .seats {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timer:hover, .seats:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.seats-count {
    color: #ea580c;
    font-weight: 700;
}

/* Отзывы */
.testimonials {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin: 0;
    color: #1e40af;
    font-size: 1.1rem;
}

.testimonial-info p {
    margin: 0.5rem 0 0 0;
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #475569;
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
    background: none;
}

.testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.metric {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.instructor-info {
    margin-top: 4rem;
}

.instructor-info h3 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 2rem;
}

.instructor-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(124, 58, 237, 0.03) 50%, 
        rgba(236, 72, 153, 0.03) 100%);
    border-radius: 25px;
    z-index: 0;
}

.instructor-card > * {
    position: relative;
    z-index: 1;
}

.instructor-photo {
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
}

.instructor-photo img {
    width: 280px;
    height: 310px;
    object-fit: cover;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02) contrast(1.05) saturate(1.1);
}

.instructor-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.6), 
        rgba(124, 58, 237, 0.6), 
        rgba(236, 72, 153, 0.6));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instructor-photo:hover::before {
    opacity: 1;
}

.instructor-photo:hover img {
    transform: scale(1.05);
    box-shadow: 
        0 25px 60px rgba(59, 130, 246, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.7);
    filter: brightness(1.08) contrast(1.15) saturate(1.2);
}

.instructor-details h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructor-title {
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}

.instructor-credentials {
    list-style: none;
}

.instructor-credentials li {
    padding: 0.8rem 0;
    color: #475569;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.instructor-credentials li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Промежуточный CTA */
.intermediate-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-benefit {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 15px;
    color: #1e40af;
    font-weight: 600;
    border: 1px solid #93c5fd;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-guarantee {
    margin-top: 1rem;
    color: #22c55e;
    font-size: 0.9rem;
}

/* Фильтр в герое */
.hero-filter {
    margin: 3rem 0;
    position: relative;
}

.filter-content {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.filter-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.filter-text {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
}

.filter-text strong {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.filter-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.4;
}

.filter-subtitle em {
    color: #7c3aed;
    font-weight: 500;
    font-style: normal;
}

.hero-subtitle-text {
    font-size: 0.45em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-top: 0.4rem;
    margin-bottom: 2.4rem;
    background: linear-gradient(135deg, #64748b, #1e293b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Гарантия возврата */
.value-guarantee {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #22c55e;
    margin-top: 2rem;
}

.value-guarantee h4 {
    color: #15803d;
    margin-bottom: 1rem;
}

.value-guarantee p {
    color: #475569;
    margin: 0;
}

/* Попап стили */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ec4899;
}

.popup-content h3 {
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #15803d;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}

.popup-content .btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-size: 18px;
}

.popup-content .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Адаптивность */

@media (max-width: 768px) {
    section {
        margin: 15px;
        padding: 40px 20px;
    }
    
    .hero {
        margin: 15px;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .solution-example {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .program-content {
        grid-template-columns: 1fr;
    }
    
    .urgency-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-life-benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-photo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .instructor-photo img {
        width: 250px;
        height: 250px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .testimonial-metrics {
        flex-direction: column;
    }
    
    .filter-content {
        padding: 16px 20px;
        margin: 0 15px;
    }
    
    .filter-text {
        font-size: 0.95rem;
        gap: 6px;
    }
    
    .filter-subtitle {
        font-size: 0.85rem;
    }
    
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 1.6rem;
        word-break: keep-all;
        white-space: nowrap;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .phone-number {
        font-size: 1.1rem;
        word-break: keep-all;
        white-space: nowrap;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        margin: 10px;
        padding: 30px 15px;
    }
    
    .hero {
        margin: 10px;
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .instructor-photo img {
        width: 200px;
        height: 200px;
    }
    
    .filter-content {
        padding: 12px 16px;
        margin: 0 10px;
    }
    
    .filter-text {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 4px;
    }
    
    .filter-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.3rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        margin: 8px;
        padding: 25px 10px;
    }
    
    .hero {
        margin: 8px;
        padding: 25px 10px;
    }
    
    .phone-number {
        font-size: 1.4rem;
        word-break: keep-all;
        white-space: nowrap;
        text-align: center;
    }
} 