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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF6A00, #FF7A00);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    z-index: 999;
    padding: 15px 0;
}

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: #FF6A00;
    transform: translateY(-1px);
}

.social-btn {
    background: rgba(255, 106, 0, 0.1);
    border-color: #FF6A00;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    font-size: 14px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF6A00, #FF7A00);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    background: linear-gradient(135deg, #FF7A00, #FF8A00);
}

.cta-btn.large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #FF6A00;
    color: #FF6A00;
}

.cta-btn.secondary:hover {
    background: #FF6A00;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
}

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

.hero-image {
    text-align: center;
}

.hero-cover {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
}

.hero-cover:hover {
    transform: scale(1.02);
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #FF6A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    background: rgba(255, 106, 0, 0.2);
    border: 1px solid #FF6A00;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border: 2px solid #FF6A00;
    border-radius: 50%;
    color: #FF6A00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6A00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

/* VSL Section */
.vsl-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 106, 0, 0.05));
}

.vsl-content {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 106, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: #FF6A00;
    transform: scale(1.1);
}

.unmute-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 106, 0, 0.9);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unmute-btn:hover {
    background: #FF6A00;
    transform: scale(1.05);
}

.video-callouts {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.callout {
    padding: 8px 16px;
    background: rgba(255, 106, 0, 0.9);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.callout.show {
    opacity: 1;
    transform: translateX(0);
}

.video-disclaimers {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FF6A00;
}

.video-disclaimers p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.05);
}

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

.problem-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.05), transparent);
}

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

.carousel-container {
    margin: 50px 0;
}

.carousel {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.module-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
    border-color: #FF6A00;
}

.module-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.module-content {
    padding: 20px;
}

.module-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.module-badge.basic {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.module-badge.intermediate {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border: 1px solid #ffff00;
}

.module-badge.advanced {
    background: rgba(255, 106, 0, 0.2);
    color: #FF6A00;
    border: 1px solid #FF6A00;
}

.module-badge.expert {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid #ff00ff;
}

.module-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.module-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.module-content li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.module-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6A00;
    font-weight: bold;
}

.module-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #FF6A00;
    color: #FF6A00;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.module-btn:hover {
    background: #FF6A00;
    color: #fff;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 106, 0, 0.2);
    border: 1px solid #FF6A00;
    border-radius: 50%;
    color: #FF6A00;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #FF6A00;
    color: #fff;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF6A00;
    transform: scale(1.2);
}

.solution-cta {
    text-align: center;
    margin-top: 50px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: rgba(0, 255, 0, 0.05);
}

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

.benefit-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-slider {
    margin: 50px 0;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonial-card {
    flex: 0 0 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.2);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6A00;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-proof-images {
    margin-top: 50px;
    text-align: center;
}

.social-proof-images h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.proof-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.proof-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
}

.proof-image:hover {
    transform: scale(1.05);
    border-color: #FF6A00;
}

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

/* Expert Section */
.expert-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), transparent);
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.expert-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.expert-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.expert-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
}

.pricing-card {
    max-width: 600px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #FF6A00;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.3);
    position: relative;
}

.pricing-header {
    background: linear-gradient(135deg, #FF6A00, #FF7A00);
    padding: 30px;
    text-align: center;
    color: #fff;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.pricing-old {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.pricing-current {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-savings {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
}

.pricing-content {
    padding: 40px;
}

.pricing-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateX(5px);
}

.benefit-item svg {
    color: #00ff00;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.bonus-value {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid #FF6A00;
    border-radius: 10px;
}

.bonus-value p {
    color: #FF6A00;
    font-size: 16px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
    padding: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.security-badge svg {
    color: #00ff00;
}

.urgency-message {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
}

.urgency-message p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 106, 0, 0.2);
    border: 1px solid #FF6A00;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #FF6A00;
}

.countdown-item label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: rgba(0, 255, 0, 0.05);
}

.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    margin-bottom: 30px;
}

.guarantee-icon svg {
    color: #00ff00;
}

.guarantee-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

.guarantee-link {
    color: #FF6A00;
    text-decoration: underline;
    font-weight: 500;
}

.guarantee-link:hover {
    color: #FF7A00;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 106, 0, 0.1);
}

.faq-question svg {
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.1));
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.final-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-content {
    text-align: center;
}

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

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

.footer-links a:hover {
    color: #FF6A00;
}

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

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    padding: 10px 0;
    z-index: 999;
    display: none;
}

.mobile-bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bottom-bar-item:hover,
.bottom-bar-item.active {
    color: #FF6A00;
    background: rgba(255, 106, 0, 0.1);
}

.bottom-bar-item.cta-item {
    background: linear-gradient(135deg, #FF6A00, #FF7A00);
    color: #fff;
    border-radius: 12px;
    padding: 10px 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #000;
    border: 2px solid #FF6A00;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    position: relative;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #FF6A00;
}

.gating-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6A00;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

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

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #FF6A00;
}

.password-strength {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.form-error {
    display: block;
    margin-top: 5px;
    color: #ff4444;
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FF6A00;
    border-color: #FF6A00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #FF6A00;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #FF7A00;
}

.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #FF6A00;
}

.security-notice svg {
    color: #FF6A00;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-notice p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Activity Toasts */
.activity-toasts {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 998;
    max-width: 300px;
}

.activity-toast {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #FF6A00;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.5s ease;
    backdrop-filter: blur(10px);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6A00;
}

.toast-content {
    flex: 1;
}

.toast-content p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.toast-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 997;
    display: none;
}

.floating-cta.show {
    display: block;
    animation: floatIn 0.5s ease;
}

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

.floating-cta .cta-btn {
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
    animation: floatPulse 3s infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-left,
    .nav-right {
        gap: 10px;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .online-indicator {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .module-card {
        flex: 0 0 250px;
    }
    
    .expert-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .expert-text h2 {
        font-size: 28px;
    }
    
    .pricing-current {
        font-size: 36px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    .floating-cta {
        bottom: 80px;
    }
    
    .activity-toasts {
        bottom: 160px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .module-card {
        flex: 0 0 220px;
    }
    
    .pricing-current {
        font-size: 32px;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header,
    .gating-form {
        padding: 20px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-item span {
        font-size: 18px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .cta-btn {
        border: 2px solid #fff;
    }
    
    .nav-btn {
        border-color: #fff;
    }
    
    .module-card,
    .benefit-card,
    .problem-card {
        border-color: #fff;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #FF6A00;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-bottom-bar,
    .floating-cta,
    .activity-toasts {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .section-title {
        color: #000;
    }
}



/* Expert Section Responsiveness */
.expert-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.expert-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.expert-image-container {
    flex-shrink: 0;
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    border-radius: 0;
    overflow: hidden;
    border: 5px solid #FF6A00;
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

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

.expert-text {
    flex-grow: 1;
}

.expert-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.expert-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .expert-content {
        flex-direction: column;
        text-align: center;
    }

    .expert-image-container {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }
}



/* Carrossel de Depoimentos das Alunas */
.testimonials-carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 106, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6A00" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23FF6A00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.testimonials-carousel {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel-section .testimonial-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonials-carousel-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 106, 0, 0.25);
    border-color: #FF6A00;
}

.testimonial-image {
    flex-shrink: 0;
    position: relative;
}

.student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF6A00;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonials-carousel-section .testimonial-card:hover .student-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.4);
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.student-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #FF6A00 0%, #FF7A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-carousel-section .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonials-carousel-section .testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: #FF6A00;
    font-family: serif;
    line-height: 1;
}

.testimonials-carousel-section .testimonial-text::after {
    content: '"';
    font-size: 40px;
    color: #FF6A00;
    font-family: serif;
    line-height: 1;
    margin-left: 5px;
}

/* Navegação do carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 106, 0, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: #FF6A00;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.4);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav svg {
    color: #fff;
    transition: color 0.3s ease;
}

/* Indicadores de paginação */
.testimonials-carousel-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0 20px;
}

.testimonials-carousel-section .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 106, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-carousel-section .dot:hover {
    background: rgba(255, 106, 0, 0.6);
    transform: scale(1.2);
}

.testimonials-carousel-section .dot.active {
    background: #FF6A00;
    transform: scale(1.3);
}

.testimonials-carousel-section .dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 50%;
    animation: testimonial-pulse 2s infinite;
}

@keyframes testimonial-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 60px 0;
    }
    
    .testimonials-carousel-container {
        padding: 0 15px;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .testimonials-carousel-section .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }
    
    .student-photo {
        width: 100px;
        height: 100px;
    }
    
    .student-name {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .testimonials-carousel-section .testimonial-text {
        font-size: 16px;
        padding-left: 0;
        text-align: center;
    }
    
    .testimonials-carousel-section .testimonial-text::before {
        display: none;
    }
    
    .testimonials-carousel-section .testimonial-text::after {
        display: none;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .testimonials-carousel-section .carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .testimonials-carousel-section .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 20px 15px;
    }
    
    .testimonials-carousel-section .testimonial-card {
        padding: 20px 15px;
    }
    
    .student-photo {
        width: 80px;
        height: 80px;
    }
    
    .student-name {
        font-size: 18px;
    }
    
    .testimonials-carousel-section .testimonial-text {
        font-size: 14px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav.prev {
        left: -17px;
    }
    
    .carousel-nav.next {
        right: -17px;
    }
}

