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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --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);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    padding: 60px 20px;
}

.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: 2;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: shake 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Montserrat', sans-serif;
    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 {
    display: block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.info-item i {
    font-size: 32px;
    opacity: 0.9;
}

.info-label {
    font-size: 14px;
    opacity: 0.8;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 50px;
}

.urgency-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-text span {
    color: #fbbf24;
    font-weight: 700;
    font-size: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-pulse {
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(251, 191, 36, 0.8); }
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.section-subtitle.center {
    text-align: center;
}

/* Target Audience Intro Section */
.target-intro-section {
    background: white;
    padding: 80px 20px;
}

.target-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.target-intro-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid #e0e7ff;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.target-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.target-intro-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.target-intro-content {
    flex: 1;
}

.target-intro-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

.target-intro-result {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.target-intro-result-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.target-intro-result-icon i {
    font-size: 32px;
    color: white;
}

.target-intro-result p {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

.problem-section .section-subtitle {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-list {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
}

.problem-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.problem-bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 8px;
}

.problem-bullet i {
    font-size: 12px;
    color: var(--primary-color);
}

.problem-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    font-weight: 400;
}

.solution-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.solution-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.solution-box p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Results Section */
.results-section {
    background: white;
}

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

.result-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.result-card.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.result-card.highlight .result-icon {
    background: rgba(255, 255, 255, 0.2);
}

.result-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.result-card.highlight .result-icon i {
    color: white;
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.result-card.highlight p {
    color: white;
    opacity: 0.95;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

th, td {
    padding: 16px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid var(--border-color);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--bg-secondary);
}

.highlight-cell {
    color: var(--primary-color);
    font-weight: 600;
}

.success-cell {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.table-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-primary);
}

.table-note i {
    color: var(--secondary-color);
    font-size: 24px;
}

/* How It Works Section */
.how-it-works-section {
    background: white;
    padding: 80px 20px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid #e0e7ff;
    transition: all 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.how-it-works-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.how-it-works-icon i {
    font-size: 32px;
    color: white;
}

.how-it-works-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.how-it-works-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Highlight card */
.how-it-works-card.highlight-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.how-it-works-card.highlight-card:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.how-it-works-card.highlight-card .how-it-works-icon {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.how-it-works-card.highlight-card .how-it-works-icon i {
    color: white;
}

.how-it-works-card.highlight-card h3 {
    color: white;
}

.how-it-works-card.highlight-card p {
    color: white;
    opacity: 0.95;
}

/* Program Section */
.program-section {
    background: var(--bg-secondary);
}

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

.format-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.format-item strong {
    color: var(--primary-dark);
    font-size: 32px;
}

.days-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.day-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    flex-wrap: wrap;
}

.day-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 10px 30px;
    border-radius: 12px;
}

.day-date {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.module-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.module-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 60px;
}

.module-content {
    flex: 1;
}

.module-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.module-list {
    list-style: none;
    margin-bottom: 15px;
}

.module-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.module-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.module-tools {
    padding: 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.module-practice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.module-practice i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Program Bonus */
.program-bonus {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    color: white;
}

.program-bonus h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 400px;
}

.bonus-item:nth-child(3),
.bonus-item:nth-child(4),
.bonus-item:nth-child(5) {
    flex: 0 1 calc(33.333% - 20px);
}

.bonus-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.bonus-item i {
    font-size: 40px;
    color: #fbbf24;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.bonus-item:hover i {
    transform: scale(1.15) rotate(5deg);
    background: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.bonus-item span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

/* For Whom Section */
.forwom-section {
    background: white;
}

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

.forwom-card {
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.forwom-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.forwom-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.forwom-icon i {
    font-size: 36px;
    color: white;
}

.forwom-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.forwom-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trainer Section */
.trainer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.trainer-section .section-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    font-size: 38px;
    margin-bottom: 60px;
    padding-top: 50px;
}

.trainer-section::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% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trainer-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}

.trainer-photo {
    flex-shrink: 0;
    width: 500px;
    height: 580px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0;
}

.trainer-photo::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 0;
}

.trainer-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    display: block;
}

.trainer-content {
    flex: 1;
    color: white;
    padding-bottom: 0;
    margin-bottom: 0;
}

.trainer-content h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: none;
}

.trainer-role {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.trainer-experience {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.trainer-quote {
    position: relative;
    padding: 30px 30px 30px 60px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid #fbbf24;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trainer-quote i {
    position: absolute;
    left: 20px;
    top: 30px;
    font-size: 28px;
    color: #fbbf24;
    opacity: 0.7;
}

.trainer-quote p {
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.trainer-achievements {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 22px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.25);
}

.achievement-item i {
    color: #10b981;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.achievement-item span {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
}

.trainer-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* Speaker Message Section */
.speaker-message-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.speaker-message-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.speaker-message-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.speaker-message-icon i {
    font-size: 28px;
    color: white;
}

.speaker-message-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.4;
}

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

.speaker-goal-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.speaker-goal-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.speaker-goal-item i {
    font-size: 22px;
    color: #667eea;
    margin-top: 2px;
    flex-shrink: 0;
}

.speaker-goal-item span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.speaker-message-footer {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: white;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 200px;
}

.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.logo-item {
    width: 100%;
    max-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.logo-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Participants Feedback Section */
.participants-feedback-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 80px 20px;
}

.participants-feedback-section .section-title {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.feedback-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 160px;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feedback-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.feedback-text {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.65;
    margin: 0;
}

.feedback-conclusion {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.feedback-conclusion::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% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feedback-conclusion-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.feedback-conclusion-icon i {
    font-size: 36px;
    color: white;
}

.feedback-conclusion p {
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Registration Section */
.registration-section {
    background: var(--bg-secondary);
    padding: 80px 20px;
}

.registration-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.registration-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    text-align: center;
}

.registration-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.registration-content-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 50px;
    max-width: 800px;
    margin: 0 auto;
}

.price-block-large {
    text-align: center;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    width: 100%;
}

.price-block-large .price-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price-block-large .price-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.price-block-large .price-note {
    font-size: 16px;
    color: var(--text-secondary);
}

.registration-includes-centered {
    width: 100%;
}

.registration-includes-centered h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.registration-includes-centered ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.registration-includes-centered li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.registration-includes-centered li i {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.roi-block-centered {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0fdf4;
    padding: 25px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    width: 100%;
}

.roi-block-centered i {
    font-size: 36px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.roi-block-centered strong {
    display: block;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.roi-block-centered p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-cta {
    font-size: 20px;
    padding: 20px 50px;
    margin-top: 10px;
}

.registration-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-block {
    text-align: center;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 16px;
}

.price-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.registration-includes h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.registration-includes ul {
    list-style: none;
}

.registration-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.registration-includes i {
    color: var(--secondary-color);
    font-size: 18px;
}

.roi-block {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.roi-block i {
    color: var(--secondary-color);
    font-size: 32px;
}

.roi-block strong {
    display: block;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.roi-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Registration Form */
.registration-form-wrapper {
    position: relative;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    border: 2px solid var(--secondary-color);
}

.success-message i {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Corporate Payment Section */
.corporate-payment-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
}

.corporate-payment-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.corporate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.corporate-icon i {
    font-size: 36px;
    color: white;
}

.corporate-payment-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.corporate-payment-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.corporate-payment-box .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.corporate-payment-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
}

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

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--bg-secondary);
}

.final-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.final-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.urgency-item i {
    font-size: 36px;
    color: var(--primary-color);
}

.urgency-item strong {
    display: block;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.urgency-item span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.guarantee-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.guarantee-badge i {
    color: var(--secondary-color);
    font-size: 24px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item i {
    color: var(--primary-light);
    font-size: 18px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .registration-content-simple {
        padding: 50px 40px;
        gap: 35px;
    }
    
    .registration-includes-centered ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .trust-badges {
        gap: 30px;
    }
    
    .trust-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .problems-grid,
    .results-grid,
    .forwom-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-section {
        padding: 60px 20px;
    }
    
    .how-it-works-grid {
        gap: 25px;
    }
    
    .how-it-works-card {
        padding: 30px 25px;
    }
    
    .how-it-works-icon {
        width: 60px;
        height: 60px;
    }
    
    .how-it-works-icon i {
        font-size: 28px;
    }
    
    .how-it-works-card h3 {
        font-size: 20px;
    }
    
    .how-it-works-card p {
        font-size: 15px;
    }
    
    .problems-list {
        padding: 35px 30px;
    }
    
    .problem-item {
        gap: 15px;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }
    
    .problem-item p {
        font-size: 16px;
    }
    
    .solution-box {
        padding: 35px 30px;
    }
    
    .solution-box h3 {
        font-size: 24px;
    }
    
    .solution-box p {
        font-size: 16px;
    }
    
    .target-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-intro-card {
        padding: 25px 20px;
    }
    
    .target-intro-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .target-intro-content p {
        font-size: 16px;
    }
    
    .target-intro-result {
        flex-direction: column;
        padding: 30px 25px;
        gap: 20px;
    }
    
    .target-intro-result-icon {
        width: 60px;
        height: 60px;
    }
    
    .target-intro-result-icon i {
        font-size: 28px;
    }
    
    .target-intro-result p {
        font-size: 18px;
        text-align: center;
    }
    
    .program-format {
        flex-direction: column;
        gap: 20px;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .module-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-grid {
        gap: 20px;
    }
    
    .bonus-item {
        flex: 0 1 calc(50% - 15px);
        min-width: 240px;
    }
    
    .bonus-item:nth-child(3),
    .bonus-item:nth-child(4),
    .bonus-item:nth-child(5) {
        flex: 0 1 calc(50% - 15px);
    }
    
    .urgency-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .urgency-item {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .registration-content {
        padding: 30px 20px;
    }
    
    .registration-content-simple {
        padding: 40px 25px;
        gap: 30px;
    }
    
    .price-block-large {
        padding: 30px 25px;
    }
    
    .price-block-large .price-value {
        font-size: 48px;
    }
    
    .btn-cta {
        font-size: 18px;
        padding: 18px 40px;
    }
    
    .corporate-payment-section {
        padding: 50px 20px;
    }
    
    .corporate-payment-box {
        padding: 40px 30px;
    }
    
    .corporate-payment-box h3 {
        font-size: 26px;
    }
    
    .corporate-payment-box p {
        font-size: 16px;
    }
    
    .trust-stats {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 30px 35px;
    }
    
    .logo-item {
        max-width: 150px;
        height: 70px;
    }
    
    .trainer-card {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
        padding-bottom: 0;
        align-items: center;
    }
    
    .trainer-photo {
        width: 380px;
        height: 450px;
        margin: 0 auto;
        margin-bottom: 0;
        order: 2;
    }
    
    .trainer-photo::before {
        width: 360px;
        height: 90px;
        bottom: 0;
    }
    
    .trainer-content {
        order: 1;
        padding-bottom: 20px;
    }
    
    .trainer-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding-top: 50px;
    }
    
    .trainer-content {
        text-align: center;
    }
    
    .trainer-content h3 {
        font-size: 36px;
    }
    
    .trainer-role {
        font-size: 20px;
    }
    
    .trainer-experience {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .trainer-quote {
        padding: 25px 25px 25px 55px;
        margin-bottom: 30px;
    }
    
    .trainer-quote i {
        font-size: 24px;
        left: 18px;
        top: 25px;
    }
    
    .trainer-quote p {
        font-size: 17px;
    }
    
    .achievement-item {
        text-align: left;
    }
    
    .speaker-message-section {
        padding: 50px 20px;
    }
    
    .speaker-message-card {
        padding: 40px 30px;
        border-radius: 16px;
    }
    
    .speaker-message-icon {
        width: 50px;
        height: 50px;
        top: -25px;
    }
    
    .speaker-message-icon i {
        font-size: 24px;
    }
    
    .speaker-message-content h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .speaker-goals {
        gap: 18px;
        margin-bottom: 35px;
    }
    
    .speaker-goal-item {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .speaker-goal-item i {
        font-size: 20px;
    }
    
    .speaker-goal-item span {
        font-size: 16px;
    }
    
    .speaker-message-footer {
        font-size: 16px;
        padding: 25px 30px;
    }
    
    .participants-feedback-section {
        padding: 60px 20px;
    }
    
    .participants-feedback-section .section-title {
        margin-bottom: 50px;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .feedback-card {
        padding: 30px 25px;
    }
    
    .feedback-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .feedback-text {
        font-size: 17px;
    }
    
    .feedback-conclusion {
        padding: 35px 40px;
        gap: 25px;
    }
    
    .feedback-conclusion-icon {
        width: 65px;
        height: 65px;
    }
    
    .feedback-conclusion-icon i {
        font-size: 32px;
    }
    
    .feedback-conclusion p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .how-it-works-section {
        padding: 50px 15px;
    }
    
    .how-it-works-grid {
        gap: 20px;
    }
    
    .how-it-works-card {
        padding: 25px 20px;
    }
    
    .how-it-works-icon {
        width: 55px;
        height: 55px;
    }
    
    .how-it-works-icon i {
        font-size: 26px;
    }
    
    .how-it-works-card h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .how-it-works-card p {
        font-size: 14px;
    }
    
    .problem-section .section-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .problems-list {
        padding: 25px 20px;
    }
    
    .problem-item {
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .problem-bullet {
        width: 10px;
        height: 10px;
        margin-top: 6px;
    }
    
    .problem-bullet i {
        font-size: 10px;
    }
    
    .problem-item p {
        font-size: 15px;
    }
    
    .solution-box {
        padding: 30px 20px;
    }
    
    .solution-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .solution-box p {
        font-size: 15px;
    }
    
    .target-intro-section {
        padding: 50px 15px;
    }
    
    .target-intro-card {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .target-intro-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .target-intro-content p {
        font-size: 15px;
    }
    
    .target-intro-result {
        padding: 25px 20px;
    }
    
    .target-intro-result-icon {
        width: 50px;
        height: 50px;
    }
    
    .target-intro-result-icon i {
        font-size: 24px;
    }
    
    .target-intro-result p {
        font-size: 16px;
    }
    
    .trust-stats {
        margin-bottom: 40px;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 25px 20px;
    }
    
    .logo-item {
        max-width: 130px;
        height: 60px;
    }
    
    .corporate-payment-section {
        padding: 40px 15px;
    }
    
    .corporate-payment-box {
        padding: 35px 25px;
    }
    
    .corporate-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .corporate-icon i {
        font-size: 32px;
    }
    
    .corporate-payment-box h3 {
        font-size: 24px;
    }
    
    .corporate-payment-box p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .day-block {
        padding: 25px 20px;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px;
    }
    
    .bonus-grid {
        gap: 15px;
    }
    
    .bonus-item {
        flex: 1 1 100%;
        min-width: auto;
        padding: 25px 20px;
    }
    
    .bonus-item:nth-child(3),
    .bonus-item:nth-child(4),
    .bonus-item:nth-child(5) {
        flex: 1 1 100%;
    }
    
    .bonus-item i {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .trainer-card {
        padding: 0 20px;
        padding-bottom: 0;
        gap: 30px;
    }
    
    .trainer-photo {
        width: 320px;
        height: 380px;
        margin-bottom: 0;
    }
    
    .trainer-photo::before {
        width: 300px;
        height: 70px;
        bottom: 0;
    }
    
    .trainer-content {
        padding-bottom: 15px;
    }
    
    .trainer-section .section-title {
        font-size: 26px;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    
    .trainer-content h3 {
        font-size: 28px;
    }
    
    .trainer-role {
        font-size: 18px;
    }
    
    .trainer-experience {
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .trainer-quote {
        padding: 20px 20px 20px 50px;
        margin-bottom: 25px;
    }
    
    .trainer-quote i {
        font-size: 22px;
        left: 15px;
        top: 20px;
    }
    
    .trainer-quote p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .achievement-item {
        padding: 15px 18px;
    }
    
    .achievement-item span {
        font-size: 16px;
    }
    
    .speaker-message-section {
        padding: 40px 15px;
    }
    
    .speaker-message-card {
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .speaker-message-icon {
        width: 45px;
        height: 45px;
        top: -22px;
    }
    
    .speaker-message-icon i {
        font-size: 20px;
    }
    
    .speaker-message-content h3 {
        font-size: 19px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .speaker-goals {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .speaker-goal-item {
        padding: 15px 18px;
        gap: 12px;
        border-left-width: 3px;
    }
    
    .speaker-goal-item i {
        font-size: 18px;
    }
    
    .speaker-goal-item span {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .speaker-message-footer {
        font-size: 15px;
        padding: 20px 20px;
        line-height: 1.6;
    }
    
    .participants-feedback-section {
        padding: 50px 15px;
    }
    
    .participants-feedback-section .section-title {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    
    .feedback-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feedback-card {
        padding: 25px 20px;
        gap: 18px;
    }
    
    .feedback-number {
        width: 42px;
        height: 42px;
        font-size: 22px;
        border-radius: 10px;
    }
    
    .feedback-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .feedback-conclusion {
        flex-direction: column;
        padding: 30px 25px;
        gap: 20px;
        text-align: center;
    }
    
    .feedback-conclusion-icon {
        width: 60px;
        height: 60px;
    }
    
    .feedback-conclusion-icon i {
        font-size: 30px;
    }
    
    .feedback-conclusion p {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Booking Notification */
.booking-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: bottom 0.3s ease;
}

.booking-notification.show {
    bottom: 40px;
}

.booking-notification i {
    font-size: 20px;
}