/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052a3;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.urgency-text {
    font-size: 0.95rem;
    color: #ff6b35;
    font-weight: 600;
    margin: 0;
}

.hero-visual {
    animation: fadeInRight 0.8s ease;
}

.hero-image-placeholder {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contrast-visual {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

.chaos-side, .structured-side {
    text-align: center;
    flex: 1;
}

.chaos-side {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.structured-side {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.chaos-icon, .structured-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.chaos-side p, .structured-side p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.arrow {
    font-size: 2rem;
    color: #0066cc;
    font-weight: bold;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
    background: #f9f9f9;
    padding: 80px 20px;
}

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

.problem-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.problem-text p {
    color: #333;
    margin-bottom: 1.5rem;
}

.problem-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 20px;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cost-calculation {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cost-calculation h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.cost-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0066cc;
}

.cost-value {
    color: #666;
}

.highlight-cost {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.highlight-cost .cost-label {
    color: #d32f2f;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   CURRICULUM SECTION
   ============================================ */

.curriculum {
    background: #f9f9f9;
    padding: 80px 20px;
}

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

.timeline-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.timeline-item.bonus {
    border-left-color: #ff6b35;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
}

.timeline-time {
    font-weight: 700;
    color: #0066cc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.timeline-item.bonus .timeline-time {
    color: #ff6b35;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   BONUS SECTION
   ============================================ */

.bonus {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 20px;
}

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

.bonus .section-subtitle {
    color: #a0a0a0;
}

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

.bonus-text h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.bonus-text p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.bonus-protocols {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.protocol {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.protocol h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.protocol p {
    color: #d0d0d0;
    margin: 0;
    font-size: 0.95rem;
}

.elite-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.elite-panel h4 {
    color: white;
    margin-bottom: 2rem;
}

.panel-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */

.deliverables {
    padding: 80px 20px;
    background: white;
}

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

.deliverable-item {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    background: #e8ecf1;
    transform: translateY(-5px);
}

.deliverable-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.deliverable-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.deliverable-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: #f9f9f9;
    padding: 80px 20px;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f5f7fa;
    color: #0066cc;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer.open {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 80px 20px;
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pricing-duration {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-guarantee {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #00d4ff;
}

.pricing-guarantee p {
    color: #0066cc;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.btn-large {
    margin: 2rem 0;
}

.pricing-includes {
    text-align: left;
    margin: 2rem 0;
}

.pricing-includes h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.pricing-includes li {
    color: #666;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-urgency {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */

.registration {
    background: white;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form {
    background: #f5f7fa;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.success-message {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #51cf66;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #51cf66;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.success-message h3 {
    color: #2e7d32;
    margin: 0;
}

.success-message p {
    color: #558b2f;
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */

.speakers {
    background: #f9f9f9;
    padding: 80px 20px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.speaker-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.speaker-image {
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.placeholder-image {
    font-size: 4rem;
    opacity: 0.5;
}

.speaker-card h3 {
    padding: 20px 20px 10px 20px;
    color: #1a1a1a;
    margin: 0;
}

.speaker-role {
    color: #0066cc;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 20px;
    margin: 0 0 15px 0;
}

.speaker-bio {
    color: #666;
    font-size: 0.95rem;
    padding: 0 20px 20px 20px;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-final .btn-primary {
    background: white;
    color: #0066cc;
    font-weight: 700;
}

.cta-final .btn-primary:hover {
    background: #f0f0f0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer a {
    color: #00d4ff;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-content {
        grid-template-columns: 1fr;
    }

    .bonus-content {
        grid-template-columns: 1fr;
    }

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

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        max-width: 100%;
    }

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

    .pricing-value {
        margin: 1.5rem 0;
    }

    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problem, .solution, .curriculum, .bonus, .deliverables, .registration, .speakers, .faq, .cta-final, .pricing {
        padding: 40px 20px;
    }

    .registration-form {
        padding: 20px;
    }

    .contrast-visual {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricing-card {
        padding: 20px 15px;
    }
}
