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

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    min-height: auto;
}

.header-background {
    display: none;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.countdown-banner {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.countdown-date {
    margin-left: 10px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: #ffd700;
}

.exam-types {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.subtitle-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-top-wrapper {
    margin: 30px 0 25px;
}

.cta-button-top {
    margin-bottom: 15px;
}

.guarantee-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 10px;
}

.guarantee-icon-inline {
    font-size: 18px;
}

.guarantee-text-inline {
    opacity: 0.95;
}

.format-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.feature-item {
    margin: 10px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 20px;
}

.bonus {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bonus-icon {
    font-size: 18px;
}

.guarantee-before-cta {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.guarantee-icon-small {
    font-size: 32px;
    flex-shrink: 0;
}

.guarantee-text-small {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.guarantee-text-small strong {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.trust-line {
    margin: 25px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.95;
}

.trust-icon {
    font-size: 18px;
}

.school-name {
    margin: 20px 0;
    font-size: 14px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b6b;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    margin: 30px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button-first,
.cta-button-top {
    animation: shake 2.5s ease-in-out infinite !important;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    5% {
        transform: translateX(-6px) translateY(0) rotate(-1deg);
    }
    10% {
        transform: translateX(6px) translateY(0) rotate(1deg);
    }
    15% {
        transform: translateX(-6px) translateY(0) rotate(-1deg);
    }
    20% {
        transform: translateX(6px) translateY(0) rotate(1deg);
    }
    25% {
        transform: translateX(-4px) translateY(-2px) rotate(0deg);
    }
    30% {
        transform: translateX(4px) translateY(2px) rotate(0deg);
    }
    35% {
        transform: translateX(-4px) translateY(-2px) rotate(0deg);
    }
    40% {
        transform: translateX(4px) translateY(2px) rotate(0deg);
    }
    45%, 55% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1.05);
    }
    50% {
        transform: translateX(0) translateY(-3px) rotate(0deg) scale(1.05);
    }
}

.cta-button:hover {
    animation: shake 0.4s ease-in-out infinite !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.cta-button-first:hover,
.cta-button-top:hover {
    animation: shake 0.4s ease-in-out infinite !important;
}

.cta-button-large:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    animation: shake 0.5s ease-in-out infinite;
}

.button-arrow {
    font-size: 20px;
}

.cta-price-old {
    font-size: 0.85em;
    opacity: 0.8;
    margin-left: 8px;
    font-weight: 400;
}

.cta-price-old del {
    text-decoration: line-through;
}

.price {
    margin: 30px 0;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.price-old {
    font-size: 20px;
    opacity: 0.8;
}

.price-old del {
    text-decoration: line-through;
}

.price-explanation {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.8;
}

.price-top {
    margin: 25px 0 10px;
}

.price-explanation-top {
    margin-bottom: 20px;
}

.price-check {
    color: #4ade80;
    font-weight: 700;
    margin-right: 5px;
}

.urgency {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.urgency-top {
    margin: 20px 0 15px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.countdown-top {
    margin: 15px 0 25px;
}

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

.countdown-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    display: block;
    transition: transform 0.2s ease;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.7;
    align-self: flex-start;
    margin-top: 15px;
}

.countdown-label-small {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 60px 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.section-title::after {
    display: none;
}

/* For Whom Section */
.for-whom {
    background-color: #f8f9fa;
}

.checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.checklist li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.check-icon {
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

/* What You Get Section */
.what-you-get {
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-location {
    font-size: 14px;
    color: #999;
}

/* Video Preview Section */
.video-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.video-icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-icon:hover {
    transform: scale(1.1);
}

.video-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.video-subtext {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.video-note {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.video-feature-icon {
    font-size: 20px;
}

/* Author Story Section */
.author-story {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.author-photo-container {
    text-align: center;
    margin-bottom: 30px;
}

.author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #666;
}

.author-info-block {
    text-align: center;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.author-info-block .author-name-large {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #667eea;
}

.author-info-block .author-title {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
}

.author-info-block .author-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.author-info-block .stat-item {
    flex: 0 0 auto;
    min-width: 120px;
}

.author-info-block .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.author-info-block .stat-label {
    font-size: 15px;
    color: #666;
}

.author-name {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-top: 30px;
}

/* About Author Section */
.about-author {
    background-color: #fff;
}

.author-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.author-avatar {
    margin-bottom: 20px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.author-name-large {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
}

.author-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: #666;
}

.author-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

/* Course Program Section */
.course-program {
    background-color: #f8f9fa;
}

.program-list {
    max-width: 900px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.program-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.program-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.program-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.program-day {
    width: 100%;
    margin: 40px 0 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    text-align: center;
}

.day-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.lesson-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.lesson-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.lesson-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.lesson-result {
    font-weight: 600;
    color: #667eea;
    margin-top: 15px;
    font-size: 16px;
}

.program-bonus {
    margin: 50px 0 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 10px;
    border: 2px solid #ff6b6b;
}

.bonus-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.bonus-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
}

.bonus-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bonus-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-item-header {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.bonus-item-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.results .section-title {
    color: white;
}

.results-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    transition: background 0.3s;
}

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

.result-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-card p {
    font-size: 18px;
    line-height: 1.7;
}

/* Upsell Section */
.upsell {
    background-color: #fff;
    padding: 60px 20px;
}

.upsell-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #667eea;
}

.upsell-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.upsell-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: #667eea;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

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

/* Guarantee Section */
.guarantee {
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.guarantee-period {
    font-size: 18px;
    color: #666;
}

/* Order Section */
.order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ff6b6b;
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: shake 3s ease-in-out infinite;
}

.cta-button-large:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    animation: shake 0.5s ease-in-out infinite;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info {
    margin: 20px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info p {
    margin: 5px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 30px 15px 40px;
        min-height: auto;
    }

    .countdown-banner {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 12px;
    }

    .main-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .exam-types {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .subtitle-text {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .price-top {
        margin: 20px 0 8px;
    }

    .price-explanation-top {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .urgency-top {
        margin: 15px 0 12px;
        font-size: 15px;
    }

    .countdown-top {
        margin: 12px 0 20px;
        gap: 20px;
    }

    .cta-top-wrapper {
        margin: 20px 0 15px;
    }

    .cta-button-top {
        padding: 16px 35px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .guarantee-inline {
        font-size: 12px;
        margin-top: 8px;
    }

    .format-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .trust-line {
        font-size: 14px;
        margin: 20px 0;
        flex-wrap: wrap;
        text-align: center;
    }

    .countdown-banner {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .countdown-date {
        margin-left: 8px;
    }

    .features-list {
        margin: 25px 0;
        width: 100%;
    }

    .feature-item {
        font-size: 16px;
        margin: 8px 0;
    }

    .bonus {
        font-size: 14px;
        margin: 15px 0;
    }

    .exam-types {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .subtitle-text {
        margin-bottom: 20px;
    }

    .cta-top-wrapper {
        margin: 25px 0 20px;
    }

    .guarantee-inline {
        font-size: 13px;
        flex-wrap: wrap;
        text-align: center;
    }

    .guarantee-before-cta {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        margin: 20px 0;
    }

    .guarantee-icon-small {
        font-size: 28px;
    }

    .guarantee-text-small {
        font-size: 15px;
    }

    .price-explanation {
        font-size: 14px;
        line-height: 1.6;
    }

    .school-name {
        font-size: 13px;
        margin: 15px 0;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 18px;
        margin: 25px 0;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .price {
        margin: 25px 0;
    }

    .price-current {
        font-size: 28px;
    }

    .price-old {
        font-size: 16px;
    }

    .price-explanation {
        font-size: 13px;
    }

    .urgency {
        font-size: 15px;
        margin: 15px 0;
    }

    .countdown {
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .countdown-box {
        padding: 12px 18px;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-separator {
        font-size: 24px;
        margin-top: 12px;
    }

    .countdown-label-small {
        font-size: 12px;
    }

    section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .checklist li {
        padding: 12px 0;
        padding-left: 25px;
        font-size: 16px;
    }

    .check-icon {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .story-content {
        padding: 30px 20px;
    }

    .author-photo {
        width: 150px;
        height: 150px;
    }

    .story-text {
        font-size: 16px;
        text-align: left;
    }

    .author-info-block {
        margin: 30px 0;
        padding: 25px 0;
    }

    .author-info-block .author-name-large {
        font-size: 28px;
    }

    .author-info-block .author-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .author-info-block .author-stats {
        flex-direction: column;
        gap: 25px;
    }

    .author-info-block .stat-item {
        min-width: 100%;
    }

    .author-info-block .stat-number {
        font-size: 28px;
    }

    .author-card {
        padding: 30px 20px;
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .author-name-large {
        font-size: 28px;
    }

    .author-title {
        font-size: 18px;
    }

    .author-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        min-width: 100%;
    }

    .stat-number {
        font-size: 28px;
    }

    .program-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .program-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .program-content h3 {
        font-size: 18px;
    }

    .program-content p {
        font-size: 15px;
    }

    .program-day {
        margin: 30px 0 15px;
        padding: 15px;
    }

    .day-title {
        font-size: 18px;
    }

    .lesson-list li {
        font-size: 15px;
    }

    .lesson-result {
        font-size: 15px;
    }

    .program-bonus {
        margin: 40px 0 15px;
        padding: 25px 20px;
    }

    .bonus-title {
        font-size: 20px;
    }

    .bonus-list li {
        font-size: 16px;
    }

    .results-intro {
        font-size: 18px;
    }

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

    .result-card {
        padding: 20px;
    }

    .result-number {
        font-size: 28px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .guarantee-content {
        padding: 30px 20px;
    }

    .guarantee-icon {
        font-size: 40px;
    }

    .guarantee-text {
        font-size: 20px;
    }

    .upsell-content {
        padding: 30px 20px;
    }

    .upsell-title {
        font-size: 24px;
    }

    .upsell-text {
        font-size: 16px;
    }

    .order {
        padding: 50px 15px;
    }

    .cta-button-large {
        padding: 20px 40px;
        font-size: 20px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 10px 30px;
    }

    .countdown-banner {
        padding: 5px 12px;
        font-size: 10px;
        margin-bottom: 8px;
    }

    .main-title {
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .exam-types {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .subtitle-text {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .price-top {
        margin: 15px 0 6px;
    }

    .price-explanation-top {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.6;
    }

    .urgency-top {
        margin: 12px 0 10px;
        font-size: 14px;
    }

    .countdown-top {
        margin: 10px 0 15px;
        gap: 15px;
    }

    .countdown-top .countdown-box {
        padding: 10px 15px;
        min-width: 60px;
    }

    .countdown-top .countdown-value {
        font-size: 28px;
    }

    .countdown-top .countdown-label-small {
        font-size: 11px;
    }

    .cta-top-wrapper {
        margin: 15px 0 10px;
    }

    .cta-button-top {
        padding: 14px 25px;
        font-size: 16px;
        margin-bottom: 6px;
        width: 100%;
        max-width: 100%;
    }

    .cta-price-old {
        font-size: 0.8em;
        margin-left: 5px;
    }

    .guarantee-inline {
        font-size: 11px;
        margin-top: 5px;
        flex-wrap: wrap;
    }

    .format-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .mobile-hide-on-small {
        display: none;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-box {
        padding: 10px 15px;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-separator {
        font-size: 18px;
        margin-top: 10px;
    }

    .countdown-label-small {
        font-size: 11px;
    }

    .price-current {
        font-size: 24px;
    }

    section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }

    .cta-button-large {
        font-size: 18px;
        padding: 18px 35px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .sticky-cta-text {
        font-size: 14px;
    }

    .sticky-cta-button {
        width: 100%;
        padding: 14px 25px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .video-placeholder {
        padding: 60px 25px;
    }

    .video-icon {
        font-size: 60px;
    }

    .video-text {
        font-size: 20px;
    }

    .video-subtext {
        font-size: 16px;
    }

    .video-features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .exit-popup-content {
        padding: 30px 20px;
    }

    .exit-popup-title {
        font-size: 20px;
    }

    .exit-popup-subtitle {
        font-size: 18px;
    }

    .slide-in {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
        transform: translateY(400px);
    }

    .slide-in.show {
        transform: translateY(0);
    }

    .benefits-popup-content {
        padding: 30px 20px;
    }

    .benefits-popup-title {
        font-size: 24px;
    }

    .benefits-popup-text {
        font-size: 15px;
    }

    .benefits-popup-price-current {
        font-size: 32px;
    }

    .benefits-popup-button {
        padding: 16px 40px;
        font-size: 16px;
    }

    .benefits-popup-icon {
        font-size: 50px;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 15px 20px;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.sticky-cta-button {
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    white-space: nowrap;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-popup.show .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.exit-popup-close:hover {
    color: #333;
}

.exit-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.exit-popup-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #667eea;
}

.exit-popup-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.exit-popup-guarantee {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.exit-popup-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.exit-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Slide-in */
.slide-in {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    max-width: 320px;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    border: 2px solid #667eea;
}

.slide-in.show {
    transform: translateX(0);
}

.slide-in-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.slide-in-close:hover {
    color: #333;
}

.slide-in-content {
    text-align: center;
}

.slide-in-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.slide-in-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.slide-in-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.slide-in-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.slide-in-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    width: 100%;
}

.slide-in-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Benefits Popup */
.benefits-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.benefits-popup.show {
    opacity: 1;
    visibility: visible;
}

.benefits-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.benefits-popup.show .benefits-popup-content {
    transform: scale(1) translateY(0);
}

.benefits-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    line-height: 1;
}

.benefits-popup-close:hover {
    color: #333;
}

.benefits-popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.benefits-popup-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.2;
}

.benefits-popup-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits-popup-price {
    margin: 25px 0;
}

.benefits-popup-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

.benefits-popup-price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.benefits-popup-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b6b;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin: 25px 0 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.benefits-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.benefits-popup-guarantee {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

/* Selection */
::selection {
    background: #667eea;
    color: white;
}
