/* Index Page Specific Styles */
/* Extracted from inline styles */

/* Hero Investment & Urgentie Styles */
.investment-urgency {
    margin: 2rem 0;
    font-size: 1.2rem;
    color: var(--accent-copper);
    animation: fadeIn 1s ease-in;
}

.investment-urgency p:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.urgency-bar {
    background: rgba(184, 115, 51, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    animation: slideInUp 0.8s ease-out;
    border: 1px solid rgba(184, 115, 51, 0.2);
}

.urgency-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .urgency-bar {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .investment-urgency p:first-child {
        font-size: 1.1rem;
    }
    
    /* Fix approach-showcase for mobile */
    .approach-showcase {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    .approach-image {
        flex: none !important;
        max-width: 100% !important;
    }
    
    .approach-description {
        flex: none !important;
    }
    
    /* Fix transformation timeline for mobile */
    .transformation-timeline .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Timeline container modifications for mobile */
    .transformation-timeline div[style*="position: relative"] {
        padding: 0 1rem !important;
    }
    
    /* Timeline line - hide on mobile for cleaner look */
    .transformation-timeline div[style*="position: absolute"][style*="left: 50%"][style*="width: 4px"] {
        display: none !important;
    }
    
    /* Timeline items - stack vertically */
    .transformation-timeline div[style*="display: flex"][style*="align-items: center"] {
        display: block !important;
        margin-bottom: 2rem !important;
    }
    
    /* Timeline markers - adjust for mobile */
    .transformation-timeline div[style*="position: absolute"][style*="left: 50%"][style*="border-radius: 50%"] {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 1rem !important;
        display: flex !important;
    }
    
    /* Timeline content boxes */
    .transformation-timeline div[style*="width: 45%"] {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Stats grid in final timeline item */
    .transformation-timeline div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Quick Social Proof - Premium Design */
.quick-proof {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.proof-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.proof-avatar {
    flex-shrink: 0;
}

.proof-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-copper);
}

.proof-content {
    flex: 1;
}

.proof-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.proof-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.proof-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.proof-name span {
    opacity: 0.7;
    font-size: 0.8rem;
}

.proof-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .proof-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .proof-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, #e9ecef, transparent);
    }
    
    .proof-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Value Anchoring Elements */
.value-anchor {
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.investment-note {
    color: var(--accent-copper);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.premium-note {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(184, 115, 51, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--accent-copper);
}

.premium-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-note i {
    color: var(--accent-copper);
    font-size: 1.1rem;
}

/* Value Positioning Section */
.value-positioning {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.value-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    align-items: center;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.comparison-item.premium {
    border: 2px solid var(--accent-copper);
    transform: scale(1.05);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.comparison-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-item li:before {
    content: "•";
    color: var(--accent-copper);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.total-cost {
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    margin-top: 1rem;
}

.total-cost div {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7f1d1d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-cost div:last-child {
    margin-bottom: 0;
}

.total-value {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
    margin-top: 1rem;
}

.total-value div {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-value div:last-child {
    margin-bottom: 0;
}

.total-value i {
    color: #16a34a;
    font-size: 1rem;
}

.premium-investment {
    border-radius: 8px;
    overflow: hidden;
}

.investment-cta {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.investment-cta:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.vs-divider {
    background: var(--accent-copper);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    justify-self: center;
}

.value-note {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile responsiveness voor Value Section */
@media (max-width: 768px) {
    .value-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-item.premium {
        transform: scale(1);
    }
    
    .vs-divider {
        justify-self: center;
        margin: 1rem 0;
    }
    
    .investment-note {
        font-size: 0.9rem;
    }
}

/* Exclusive Features Grid */
.exclusive-features {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(184, 115, 51, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-copper), #d4841a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.15);
    border-color: var(--accent-copper);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-copper);
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.feature-card strong {
    color: var(--accent-copper);
    font-weight: 600;
}

/* Mobile responsiveness voor Features */
@media (max-width: 768px) {
    .exclusive-features {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
}

/* Foundation Section - Clean Design */
.foundation-clean {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.foundation-clean .text-center {
    text-align: center;
}

.foundation-clean .section-subtitle {
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.foundation-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.transformation-visual {
    margin-bottom: 2rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.image-card {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-arrow {
    font-size: 2.5rem;
    color: var(--accent-copper);
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

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

.foundation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.foundation-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.quote-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-copper);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quote-box p {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quote-box cite {
    display: block;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: normal;
}

/* Mobile responsiveness voor Foundation */
@media (max-width: 768px) {
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .image-card {
        max-width: 100%;
    }
    
    .image-card img {
        height: 180px;
    }
    
    .foundation-content h3 {
        font-size: 1.5rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
}

.gradient_section_1 {
    background: linear-gradient(135deg, #b87333 0%, #8b5a2b 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 600;
}

.styled_element_2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.styled_element_3 {
    margin: 0;
}

.styled_element_4 {
    margin: 0;
}

.card_styled_5 {
    background: rgba(184, 115, 51, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-copper);
}

.styled_element_6 {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
}

.styled_element_7 {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.emotion-photo_inline {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.lion-foundation-photo_inline {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.foundation_styled {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 0 80px;
    position: relative;
}

.centered_content_8 {
    text-align: center;
    margin-bottom: 5rem;
}

.styled_element_9 {
    color: var(--primary-navy);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.styled_element_10 {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.styled_element_11 {
    max-width: 1000px;
    margin: 0 auto;
}

.styled_element_12 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 3rem;
}

.grid_layout_13 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.styled_element_14 {
    padding: 3rem;
}

.styled_element_15 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.styled_element_16 {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.gradient_section_17 {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05), rgba(184, 115, 51, 0.02));
    border-left: 4px solid var(--accent-copper);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.styled_element_18 {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.styled_element_19 {
    text-align: right;
    font-size: 0.9rem;
    color: var(--accent-copper);
    font-weight: 600;
    margin: 1rem 0 0;
}

.styled_element_20 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.styled_element_21 {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.gradient_section_22 {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.centered_content_23 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.grid_layout_24 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.styled_element_25 {
    position: relative;
}

.styled_element_26 {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card_styled_27 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.styled_element_28 {
    position: relative;
}

.styled_element_29 {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card_styled_30 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--accent-copper);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.gradient_section_31 {
    background: linear-gradient(90deg, #999 0%, var(--accent-copper) 100%);
    height: 3px;
    border-radius: 2px;
    margin: 1.5rem auto;
    width: 80%;
}

.gradient_section_32 {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(26, 35, 126, 0.02));
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.styled_element_33 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card_styled_34 {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.styled_element_35 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.styled_element_36 {
    color: var(--accent-copper);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.styled_element_37 {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.gradient_section_38 {
    text-align: center;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05), rgba(184, 115, 51, 0.02));
    padding: 3rem;
    border-radius: 20px;
}

.styled_element_39 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_40 {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card_styled_41 {
    display: inline-block;
    background: var(--accent-copper);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(184, 115, 51, 0.3);
}

.expert_network_styled {
    background-image: linear-gradient(rgba(26, 35, 126, 0.95), rgba(44, 62, 153, 0.95)), url('https;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.section-title_inline {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle_inline {
    color: rgba(255,255,255,0.95);
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.elite-collaborations_inline {
    margin-bottom: 4rem;
}

.centered_content_42 {
    color: #b87333;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.grid_layout_43 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.premier-expert_inline {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.styled_element_44 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid #b87333;
}

.styled_element_45 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.styled_element_46 {
    color: #b87333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.styled_element_47 {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.premier-expert_inline {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.styled_element_48 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid #b87333;
}

.styled_element_49 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.styled_element_50 {
    color: #b87333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.styled_element_51 {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.network-grid_inline {
    margin-bottom: 3rem;
}

.centered_content_52 {
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.grid_layout_53 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_54 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_55 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_56 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_57 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_58 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_59 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_60 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_61 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_62 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_63 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_64 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_65 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_66 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_67 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_68 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.styled_element_69 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.styled_element_70 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_71 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-expert_inline {
    text-align: center;
}

.centered_content_72 {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(184, 115, 51, 0.8);
    color: white;
    line-height: 80px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}

.styled_element_73 {
    color: #b87333;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.styled_element_74 {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network-cta_inline {
    text-align: center;
    margin-top: 3rem;
}

.card_styled_75 {
    display: inline-block;
    background: #b87333;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(184,115,51,0.3);
}

.styled_element_76 {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.exclusivity_styled {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.centered_content_77 {
    text-align: center;
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.centered_content_78 {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.gradient_section_79 {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #151f6d 100%);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.styled_element_80 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.styled_element_81 {
    color: #b87333;
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.styled_element_82 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.card_styled_83 {
    background: rgba(184,115,51,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #b87333;
}

.styled_element_84 {
    margin: 0;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.styled_element_85 {
    margin: 0.5rem 0 0 0;
    color: #b87333;
    font-weight: 600;
}

/* Transformation CTA Section - Premium Redesign */
.transformation-cta {
    background: linear-gradient(135deg, #0a0e27 0%, var(--primary-navy) 50%, #151f6d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.transformation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 115, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 115, 51, 0.2);
    border: 1px solid rgba(184, 115, 51, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--accent-copper);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(184, 115, 51, 0.2); }
    50% { box-shadow: 0 0 30px rgba(184, 115, 51, 0.4); }
}

.cta-badge i {
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-description strong {
    color: var(--accent-copper);
    font-weight: 600;
}

.cta-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #d4905f 100%);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 20px 40px rgba(184, 115, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-primary-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(184, 115, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-primary-button i {
    transition: transform 0.3s ease;
    font-size: 1.4rem;
}

.cta-primary-button:hover i {
    transform: translateX(5px);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    color: #ffc107;
    font-size: 0.95rem;
    font-weight: 500;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { 
        background: rgba(255, 193, 7, 0.1);
        transform: scale(1);
    }
    50% { 
        background: rgba(255, 193, 7, 0.15);
        transform: scale(1.02);
    }
}

.cta-urgency i {
    font-size: 1.1rem;
}

.cta-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.cta-exclusive i {
    color: var(--accent-copper);
    font-size: 1.1rem;
}

/* Legacy class support for smooth transition */
.transformation_cta_styled {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #151f6d 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.container_inline {
    position: relative;
    z-index: 2;
}

.styled_element_86 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.styled_element_87 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.styled_element_88 {
    margin-bottom: 2.5rem;
}

.styled_element_89 {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.centered_content_90 {
    text-align: center;
    margin-top: 3rem;
}

.cta-button_inline {
    background: var(--accent-copper);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.3);
    transition: all 0.3s ease;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .transformation-cta {
        padding: 80px 0;
    }
    
    .cta-headline {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-primary-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
    }
    
    .cta-action-wrapper {
        width: 100%;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

.styled_element_91 {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

.application_process_styled {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.centered_content_92 {
    text-align: center;
    margin-bottom: 4rem;
}

.styled_element_93 {
    color: var(--primary-navy);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_94 {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.styled_element_96 {
    position: relative;
}

.gradient_section_97 {
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-copper), var(--primary-navy));
    z-index: 1;
}

.styled_element_98 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.styled_element_99 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(184,115,51,0.3);
}

.styled_element_100 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.card_styled_101 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
}

.styled_element_102 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_103 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card_styled_104 {
    background: rgba(26,35,126,0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-copper);
}

.styled_element_105 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
}

.styled_element_106 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.styled_element_107 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(26,35,126,0.3);
}

.styled_element_108 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.card_styled_109 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
}

.styled_element_110 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_111 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card_styled_112 {
    background: rgba(26,35,126,0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-navy);
}

.styled_element_113 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
}

.styled_element_114 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.styled_element_115 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(40,167,69,0.3);
}

.styled_element_116 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.card_styled_117 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
}

.styled_element_118 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_119 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card_styled_120 {
    background: rgba(26,35,126,0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.styled_element_121 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
}

.styled_element_122 {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.gradient_section_123 {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.styled_element_124 {
    color: #1a237e;
    font-size: 1.2rem;
    font-weight: 700;
}

.gradient_section_125 {
    background: linear-gradient(135deg, #1a1f4a 0%, #0d1133 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex: 1;
    color: white;
}

.styled_element_126 {
    color: #b87333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.styled_element_127 {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card_styled_128 {
    background: rgba(184,115,51,0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #b87333;
}

.styled_element_129 {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.95);
    font-style: italic;
}

.centered_content_130 {
    text-align: center;
    margin-top: 4rem;
}

.styled_element_131 {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.card_styled_132 {
    background: var(--accent-copper);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(184,115,51,0.3);
    transition: all 0.3s ease;
}

.styled_element_133 {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.social_proof_notifications_styled {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 350px;
}

.floating_testimonial_styled {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left: 4px solid var(&#45;
    &#45: undefined;
    accent-copper): undefined;
    margin-bottom: 1rem;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    animation: slideInTestimonial 8s infinite;
}

.styled_element_134 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.styled_element_135 {
    width: 40px;
    height: 40px;
    background: var(&#45;
    &#45: undefined;
    accent-copper): undefined;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.styled_element_136 {
    font-weight: 600;
    color: var(&#45;
    &#45: undefined;
    text-dark): undefined;
    font-size: 0.9rem;
}

.styled_element_137 {
    font-size: 0.8rem;
    color: var(&#45;
    &#45: undefined;
    text-gray): undefined;
}

.styled_element_138 {
    margin: 0;
    font-size: 0.85rem;
    color: var(&#45;
    &#45: undefined;
    text-dark): undefined;
    line-height: 1.4;
    font-style: italic;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .elite-collaborations > div {
        grid-template-columns: 1fr !important;
    }
    
    .network-grid > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .foundation_main_card > div {
        grid-template-columns: 1fr !important;
    }
}

/* Foundation Section Specific */
.foundation_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 0 80px;
    position: relative;
}

.foundation_header {
    text-align: center;
    margin-bottom: 5rem;
}

.foundation_title {
    color: var(--primary-navy);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.foundation_subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.foundation_main_container {
    max-width: 1000px;
    margin: 0 auto;
}

.foundation_main_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 3rem;
}

.foundation_card_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.foundation_content {
    padding: 3rem;
}

.foundation_card_title {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.foundation_card_text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.foundation_quote_box {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05), rgba(184, 115, 51, 0.02));
    border-left: 4px solid var(--accent-copper);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.foundation_quote {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.foundation_quote_author {
    text-align: right;
    font-size: 0.9rem;
    color: var(--accent-copper);
    font-weight: 600;
    margin: 1rem 0 0;
}

.foundation_transformation_section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.foundation_transformation_title {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.foundation_transformation_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.foundation_image_container {
    position: relative;
}

.foundation_transformation_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.foundation_image_label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.foundation_image_label_before {
    background: rgba(0,0,0,0.7);
}

.foundation_image_label_after {
    background: var(--accent-copper);
}

.foundation_progress_bar {
    background: linear-gradient(90deg, #999 0%, var(--accent-copper) 100%);
    height: 3px;
    border-radius: 2px;
    margin: 1.5rem auto;
    width: 80%;
}

/* Expert Network Section */
.expert_network_section {
    background-image: linear-gradient(rgba(26, 35, 126, 0.95), rgba(44, 62, 153, 0.95)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&h=1000&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.expert_network_header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.expert_network_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.elite_collaborations {
    margin-bottom: 4rem;
}

.elite_collaborations_title {
    color: #b87333;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.elite_collaborations_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.premier_expert_card {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.premier_expert_image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid #b87333;
}

.premier_expert_name {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.premier_expert_title {
    color: #b87333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.premier_expert_role {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.network_grid {
    margin-bottom: 3rem;
}

.network_grid_title {
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.network_experts_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.network_expert_item {
    text-align: center;
}

.network_expert_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(255,255,255,0.3);
}

.network_expert_name {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.network_expert_description {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.network_more_experts {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(184, 115, 51, 0.8);
    color: white;
    line-height: 80px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}

.network_cta {
    text-align: center;
    margin-top: 3rem;
}

.network_cta_button {
    display: inline-block;
    background: #b87333;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(184,115,51,0.3);
}

.network_cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(184,115,51,0.4);
}

.network_cta_text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}
