/* ExO Model Pages - Specific Styles */

/* ============================================
   INDEX PAGE - HERO
   ============================================ */
.exo-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #E8E9FE 0%, #F5F5FF 30%, #FFFFFF 60%);
    text-align: center;
}

.exo-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.exo-hero .highlight {
    color: #6366F1;
}

.exo-formula {
    font-size: 32px;
    margin: 20px 0 30px;
    font-weight: 700;
    color: #6366F1;
}

.exo-hero p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   DETAIL PAGE - HERO
   ============================================ */
.exo-detail-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    text-align: center;
}

.exo-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exo-detail-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
}

.exo-detail-hero .subtitle {
    font-size: 24px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.exo-detail-hero p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* ============================================
   ATTRIBUTES SECTION
   ============================================ */
.exo-attributes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.exo-section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.exo-section-intro h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.exo-section-intro p {
    font-size: 20px;
    color: #666;
}

/* ============================================
   ATTRIBUTE CARDS
   ============================================ */
.exo-attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.exo-attribute-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f3f4f6;
}

.exo-attribute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    border-color: #6366F1;
    text-decoration: none;
    color: #333;
}

.exo-attribute-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #6366F1;
    font-weight: 700;
}

.exo-attribute-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* ============================================
   MTP CARD (Featured)
   ============================================ */
.exo-mtp-card {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    margin-bottom: 60px;
}

.exo-mtp-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.exo-mtp-card p {
    font-size: 20px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
}

.exo-mtp-btn {
    display: inline-block;
    background: #FFE600;
    color: #000;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 230, 0, 0.3);
}

.exo-mtp-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
    text-decoration: none;
    color: #000;
}

/* ============================================
   CONTENT WITH SIDEBAR
   ============================================ */
.exo-content-section {
    padding: 80px 0;
    background: white;
}

.exo-content-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.exo-sidebar {
    position: relative;
}

.exo-sidebar-sticky {
    position: sticky;
    top: 100px;
    background: #f8f9fa;
    padding: 30px 24px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.exo-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.exo-nav-group {
    margin-bottom: 24px;
}

.exo-nav-header {
    font-size: 14px;
    font-weight: 700;
    color: #6366F1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.exo-nav-header a {
    color: #6366F1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s;
}

.exo-nav-header a:hover {
    color: #4F46E5;
}

.exo-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exo-nav-group ul li {
    margin-bottom: 8px;
}

.exo-nav-group ul li a {
    display: block;
    padding: 10px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 15px;
}

.exo-nav-group ul li a:hover {
    background: white;
    color: #6366F1;
}

.exo-nav-group ul li.active a {
    background: #6366F1;
    color: white;
    font-weight: 600;
}

.exo-back-link {
    display: block;
    text-align: center;
    padding: 12px;
    background: white;
    color: #6366F1;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #6366F1;
    transition: all 0.2s;
    margin-top: 20px;
}

.exo-back-link:hover {
    background: #6366F1;
    color: white;
    text-decoration: none;
}

/* Main Content */
.exo-main-content {
    min-width: 0;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.exo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.exo-content-grid.reverse {
    direction: rtl;
}

.exo-content-grid.reverse > * {
    direction: ltr;
}

.exo-content-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.exo-content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.exo-content-image {
    text-align: center;
}

.exo-content-image img {
    max-width: 100%;
    max-height: 400px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.exo-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.exo-section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.exo-section-header p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.exo-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.exo-feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.exo-feature-card:hover {
    border-color: #6366F1;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.exo-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #6366F1;
    margin-bottom: 16px;
}

.exo-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* ============================================
   TIPS SECTION
   ============================================ */
.exo-tips-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 24px;
    margin: 80px 0;
}

.exo-tips-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.exo-tips-section > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.exo-tips-section ul {
    list-style: none;
    padding: 0;
}

.exo-tips-section ul li {
    padding: 12px 0 12px 32px;
    font-size: 18px;
    color: #333;
    position: relative;
}

.exo-tips-section ul li:before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.exo-tips-highlight {
    margin-top: 20px;
    font-style: italic;
    color: #6366F1;
    font-weight: 600;
}

/* ============================================
   PAGE NAVIGATION
   ============================================ */
.exo-page-nav {
    padding: 60px 0;
    background: #f8f9fa;
}

.exo-page-nav .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.exo-nav-btn {
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
}

.exo-nav-btn.prev {
    background: white;
    color: #6366F1;
    border: 2px solid #6366F1;
}

.exo-nav-btn.next {
    background: #6366F1;
    color: white;
}

.exo-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.exo-nav-btn.prev:hover {
    color: #6366F1;
}

.exo-nav-btn.next:hover {
    color: white;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.exo-cta-section {
    padding: 80px 0;
}

.exo-cta-section.bg-gray {
    background: #f8f9fa;
}

.exo-cta-section.bg-white {
    background: white;
}

/* Workshop CTA */
.cta-workshop {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
}

.cta-workshop-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-workshop h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.cta-workshop h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #FFE600;
    letter-spacing: -1px;
}

.cta-workshop-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-workshop-subtitle strong {
    color: #FFE600;
}

.cta-workshop-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.cta-feature-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-feature-desc {
    font-size: 14px;
    opacity: 0.9;
}

.cta-workshop-btn {
    display: inline-block;
    background: #FFE600;
    color: #000;
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 230, 0, 0.3);
    margin-top: 20px;
}

.cta-workshop-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    text-decoration: none;
    color: #000;
}

.cta-workshop-guarantee {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.9;
}

/* Community CTA */
.cta-community {
    background: white;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-community-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-community h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-community-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-community-form {
    max-width: 500px;
    margin: 40px auto;
}

.cta-community-form .form-group {
    text-align: left;
    margin-bottom: 16px;
}

.cta-community-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.cta-community-form input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-community-form input:focus {
    border-color: #6366F1;
    outline: none;
}

.cta-community-btn {
    width: 100%;
    background: #6366F1;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.cta-community-btn:hover {
    background: #4F46E5;
    transform: translateY(-2px);
}

.cta-form-note {
    font-size: 14px;
    color: #888;
    margin-top: 16px;
}

.cta-community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.cta-benefit {
    text-align: center;
    padding: 20px;
}

.cta-benefit-icon {
    color: #10B981;
    font-size: 32px;
    margin-bottom: 8px;
}

.cta-benefit-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 16px;
}

.cta-benefit-desc {
    color: #666;
    font-size: 14px;
}

.cta-community-trust {
    font-size: 14px;
    color: #888;
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .exo-attributes-grid {
        grid-template-columns: 1fr;
    }
    
    .exo-content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .exo-sidebar {
        order: 2;
        margin-top: 60px;
    }

    .exo-sidebar-sticky {
        position: static;
    }

    .exo-main-content {
        order: 1;
    }

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

    .exo-feature-cards {
        grid-template-columns: 1fr;
    }

    .exo-page-nav .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .exo-hero h1,
    .exo-detail-hero h1 {
        font-size: 36px;
    }

    .exo-formula {
        font-size: 24px;
    }
    
    .exo-section-intro h2,
    .exo-section-header h2 {
        font-size: 32px;
    }
    
    .exo-content-text h2 {
        font-size: 32px;
    }
    
    .exo-tips-section {
        padding: 40px 24px;
    }
    
    .exo-tips-section h2 {
        font-size: 28px;
    }
    
    .cta-workshop h2,
    .cta-community h2 {
        font-size: 32px;
    }
    
    .cta-workshop h3 {
        font-size: 36px;
    }
    
    .cta-workshop,
    .cta-community {
        padding: 40px 24px;
    }
    
    .cta-workshop-features,
    .cta-community-benefits {
        grid-template-columns: 1fr;
    }

    .exo-mtp-card {
        padding: 40px 24px;
    }

    .exo-mtp-card h3 {
        font-size: 28px;
    }
}
