/* RemoteLeader Custom Stylesheet - Anti-AI Fingerprint Design */

/* CSS Variables with unique naming convention */
:root {
    --ocean-depth: #3a86ff;
    --sky-whisper: #e6f0ff;
    --midnight-navy: #0b4cb2;
    --forest-embrace: #28a745;
    --mint-breath: #e8f5e8;
    --sunset-flame: #ff6b35;
    --coral-glow: #ffe5dc;
    --violet-dream: #8e44ad;
    --lavender-mist: #f3e8ff;
    --charcoal-shadow: #2c3e50;
    --pearl-essence: #f8f9fa;
    --silver-thread: #dee2e6;
    --amber-warning: #ffc107;
    --emerald-success: #20c997;

    /* Typography scale with organic spacing */
    --text-scale-1: 14px;
    --text-scale-2: 16px;
    --text-scale-3: 18px;
    --text-scale-4: 22px;
    --text-scale-5: 28px;
    --text-scale-6: 36px;
    --text-scale-7: 48px;

    /* Spacing system with Fibonacci-inspired values */
    --space-micro: 3px;
    --space-tiny: 5px;
    --space-small: 8px;
    --space-medium: 13px;
    --space-large: 21px;
    --space-xl: 34px;
    --space-xxl: 55px;
    --space-massive: 89px;

    /* Custom timing functions */
    --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-energetic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-organic: cubic-bezier(0.23, 1, 0.320, 1);
}

/* Reset with personal preferences */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base typography */
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-scale-2);
    line-height: 1.618; /* Golden ratio */
    color: var(--midnight-navy);
    background-color: var(--pearl-essence);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.23;
    margin-bottom: var(--space-medium);
}

h1 { font-size: var(--text-scale-7); }
h2 { font-size: var(--text-scale-6); }
h3 { font-size: var(--text-scale-5); }
h4 { font-size: var(--text-scale-4); }
h5 { font-size: var(--text-scale-3); }
h6 { font-size: var(--text-scale-2); }

p {
    margin-bottom: var(--space-medium);
    font-weight: 400;
}

/* Container system */
.content_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-large);
}

/* Navigation implementation */
.navigation_wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--silver-thread);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.23s var(--ease-gentle);
}

.primary_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-medium) 0;
    position: relative;
}

.brand_identity img {
    height: 42px;
    width: auto;
    transition: transform 0.31s var(--ease-energetic);
}

.brand_identity:hover img {
    transform: scale(1.08);
}

/* Mobile navigation toggle */
.menu_toggle_input {
    display: none;
}

.toggle_menu_trigger {
    display: none;
    cursor: pointer;
    padding: var(--space-medium);
    z-index: 2;
}

.burger_icon {
    width: 28px;
    height: 3px;
    background: var(--midnight-navy);
    position: relative;
    transition: all 0.27s var(--ease-gentle);
    border-radius: 2px;
}

.burger_icon:before,
.burger_icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--midnight-navy);
    transition: all 0.27s var(--ease-gentle);
    border-radius: 2px;
}

.burger_icon:before { top: -9px; }
.burger_icon:after { top: 9px; }

/* Navigation panel */
.navigation_panel {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.menu_element {
    list-style: none;
}

.menu_connector {
    color: var(--midnight-navy);
    text-decoration: none;
    font-size: var(--text-scale-2);
    font-weight: 500;
    padding: var(--space-small) var(--space-medium);
    border-radius: 8px;
    transition: all 0.19s var(--ease-gentle);
    position: relative;
}

.menu_connector:hover {
    color: var(--ocean-depth);
    background-color: var(--sky-whisper);
    transform: translateY(-1px);
}

/* Hero showcase */
.primary_showcase {
    background: linear-gradient(127deg, var(--sky-whisper) 0%, var(--pearl-essence) 100%);
    padding: var(--space-massive) 0 var(--space-xxl);
    margin-top: 72px;
}

.showcase_arrangement {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xxl);
    align-items: center;
}

.message_zone {
    padding-right: var(--space-large);
}

.dominant_heading {
    font-size: clamp(var(--text-scale-6), 5vw, var(--text-scale-7));
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
    line-height: 1.15;
}

.descriptive_content {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.67;
}

.action_buttons_cluster {
    display: flex;
    gap: var(--space-large);
    flex-wrap: wrap;
}

.primary_call_button {
    background: var(--ocean-depth);
    color: white;
    padding: var(--space-medium) var(--space-xl);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-scale-3);
    transition: all 0.23s var(--ease-energetic);
    border: 2px solid var(--ocean-depth);
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.25);
}

.primary_call_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.35);
    background: var(--midnight-navy);
}

.secondary_info_button {
    background: transparent;
    color: var(--ocean-depth);
    padding: var(--space-medium) var(--space-xl);
    border: 2px solid var(--ocean-depth);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-scale-3);
    transition: all 0.21s var(--ease-gentle);
}

.secondary_info_button:hover {
    background: var(--ocean-depth);
    color: white;
    transform: translateY(-1px);
}

.visual_element {
    position: relative;
}

.visual_element img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.31s var(--ease-gentle);
}

.visual_element:hover img {
    transform: scale(1.03);
}

/* Methodology section */
.methodology_presentation {
    padding: var(--space-massive) 0;
    background: white;
}

.section_introduction {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section_main_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.section_overview {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    line-height: 1.72;
}

.features_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.feature_component {
    background: white;
    border: 2px solid var(--silver-thread);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.27s var(--ease-gentle);
    position: relative;
    overflow: hidden;
}

.feature_component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-depth), var(--violet-dream));
    transform: scaleX(0);
    transition: transform 0.29s var(--ease-energetic);
}

.feature_component:hover::before {
    transform: scaleX(1);
}

.feature_component:hover {
    border-color: var(--ocean-depth);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(58, 134, 255, 0.15);
}

.feature_visual_wrapper {
    margin-bottom: var(--space-large);
    border-radius: 12px;
    overflow: hidden;
}

.feature_visual_wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.33s var(--ease-gentle);
}

.feature_component:hover .feature_visual_wrapper img {
    transform: scale(1.05);
}

.feature_headline {
    color: var(--midnight-navy);
    margin-bottom: var(--space-medium);
}

.feature_explanation {
    color: var(--charcoal-shadow);
    line-height: 1.68;
}

/* Solutions showcase */
.solutions_showcase {
    padding: var(--space-massive) 0;
    background: var(--sky-whisper);
}

.solutions_arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.solutions_visual_block img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solutions_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.solutions_description {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.71;
}

.benefits_enumeration {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.benefit_item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-large);
    padding: var(--space-large);
    background: white;
    border-radius: 14px;
    border-left: 4px solid var(--ocean-depth);
    transition: all 0.25s var(--ease-gentle);
}

.benefit_item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit_marker {
    background: var(--ocean-depth);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.benefit_text {
    color: var(--charcoal-shadow);
    margin: 0;
}

/* Testimonials area */
.testimonials_area {
    padding: var(--space-massive) 0;
    background: white;
}

.testimonials_heading {
    text-align: center;
    color: var(--midnight-navy);
    margin-bottom: var(--space-xxl);
}

.testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial_card {
    background: var(--pearl-essence);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 2px solid var(--silver-thread);
    position: relative;
    transition: all 0.29s var(--ease-gentle);
}

.testimonial_card:hover {
    border-color: var(--ocean-depth);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial_quote {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-large);
    line-height: 1.65;
    font-style: italic;
}

.author_name {
    color: var(--midnight-navy);
    display: block;
    margin-bottom: var(--space-tiny);
}

.author_position {
    color: var(--charcoal-shadow);
    font-size: var(--text-scale-1);
}

/* CTA section */
.consultation_invitation {
    background: linear-gradient(135deg, var(--ocean-depth), var(--violet-dream));
    padding: var(--space-massive) 0;
    text-align: center;
}

.cta_content_wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.cta_primary_headline {
    color: white;
    margin-bottom: var(--space-large);
}

.cta_supporting_text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-scale-3);
    margin-bottom: var(--space-xl);
    line-height: 1.68;
}

.cta_action_button {
    background: white;
    color: var(--ocean-depth);
    padding: var(--space-large) var(--space-xxl);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-scale-3);
    transition: all 0.25s var(--ease-energetic);
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta_action_button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Contact section */
.contact_area {
    padding: var(--space-massive) 0;
    background: var(--pearl-essence);
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
}

.contact_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.contact_description {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.69;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.contact_label {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.contact_value {
    color: var(--charcoal-shadow);
    margin: 0;
}

/* Form styling */
.contact_form_wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: 18px;
    border: 2px solid var(--silver-thread);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.consultation_form {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.form_field_group {
    display: flex;
    flex-direction: column;
}

.field_label {
    color: var(--midnight-navy);
    font-weight: 600;
    margin-bottom: var(--space-small);
    font-size: var(--text-scale-1);
}

.form_input_field,
.form_select_field,
.form_textarea_field {
    padding: var(--space-medium);
    border: 2px solid var(--silver-thread);
    border-radius: 10px;
    font-size: var(--text-scale-2);
    font-family: inherit;
    transition: all 0.21s var(--ease-gentle);
}

.form_input_field:focus,
.form_select_field:focus,
.form_textarea_field:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.form_textarea_field {
    resize: vertical;
    min-height: 120px;
}

.form_submit_button {
    background: var(--ocean-depth);
    color: white;
    padding: var(--space-medium) var(--space-xl);
    border: none;
    border-radius: 12px;
    font-size: var(--text-scale-3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.23s var(--ease-energetic);
    align-self: flex-start;
}

.form_submit_button:hover {
    background: var(--midnight-navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.3);
}

/* Footer */
.site_footer {
    background: var(--midnight-navy);
    color: white;
    padding: var(--space-xxl) 0 var(--space-large);
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer_logo {
    height: 36px;
    margin-bottom: var(--space-medium);
    filter: brightness(0) invert(1);
}

.footer_brand_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.64;
}

.footer_section_title {
    color: white;
    margin-bottom: var(--space-medium);
    font-size: var(--text-scale-3);
}

.footer_nav_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.footer_nav_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.19s var(--ease-gentle);
}

.footer_nav_link:hover {
    color: white;
}

.footer_contact_details {
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.footer_contact_item {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer_bottom_bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-large);
    text-align: center;
}

.copyright_notice {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mobile navigation */
@media screen and (max-width: 890px) {
    .toggle_menu_trigger {
        display: block;
    }

    .navigation_panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.31s var(--ease-gentle);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: var(--space-large);
    }

    .menu_element {
        width: 100%;
        text-align: center;
        margin: var(--space-medium) 0;
    }

    .menu_connector {
        display: inline-block;
        padding: var(--space-medium) var(--space-large);
        font-size: var(--text-scale-3);
        color: var(--midnight-navy);
    }

    .menu_toggle_input:checked ~ .navigation_panel {
        left: 0;
    }

    .menu_toggle_input:checked ~ .toggle_menu_trigger .burger_icon {
        background: transparent;
    }

    .menu_toggle_input:checked ~ .toggle_menu_trigger .burger_icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu_toggle_input:checked ~ .toggle_menu_trigger .burger_icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive breakpoints */
@media screen and (max-width: 1280px) {
    .content_container {
        padding: 0 var(--space-medium);
    }

    .showcase_arrangement {
        gap: var(--space-xl);
    }
}

@media screen and (max-width: 890px) {
    .showcase_arrangement {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .solutions_arrangement {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact_layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: var(--space-large);
        text-align: center;
    }

    .action_buttons_cluster {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .primary_showcase {
        padding: var(--space-xxl) 0;
    }

    .methodology_presentation,
    .solutions_showcase,
    .testimonials_area,
    .consultation_invitation,
    .contact_area {
        padding: var(--space-xxl) 0;
    }

    .dominant_heading {
        font-size: var(--text-scale-6);
    }

    .action_buttons_cluster {
        flex-direction: column;
        align-items: center;
    }

    .primary_call_button,
    .secondary_info_button {
        width: 100%;
        text-align: center;
    }

    .features_grid_layout,
    .testimonials_grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Specific Styles */

/* Philosophy Hero Area */
.philosophy_hero_area {
    background: linear-gradient(142deg, var(--lavender-mist) 0%, var(--sky-whisper) 100%);
    padding: var(--space-massive) 0 var(--space-xxl);
    margin-top: 72px;
}

.philosophy_hero_arrangement {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-xxl);
    align-items: center;
}

.philosophy_content_zone {
    padding-right: var(--space-large);
}

.philosophy_dominant_title {
    font-size: clamp(var(--text-scale-6), 4.5vw, var(--text-scale-7));
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
    line-height: 1.12;
}

.philosophy_introduction_text {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.69;
}

.philosophy_stats_cluster {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat_element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat_number {
    font-size: var(--text-scale-6);
    font-weight: 700;
    color: var(--ocean-depth);
    font-family: 'Playfair Display', serif;
}

.stat_description {
    font-size: var(--text-scale-1);
    color: var(--charcoal-shadow);
    margin-top: var(--space-tiny);
}

.philosophy_visual_zone img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.29s var(--ease-gentle);
}

.philosophy_visual_zone:hover img {
    transform: scale(1.02);
}

/* Expert Showcase Area */
.expert_showcase_area {
    padding: var(--space-massive) 0;
    background: white;
}

.expert_introduction_block {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.expert_section_heading {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.expert_section_overview {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    line-height: 1.73;
}

.expertise_showcase_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.expertise_card {
    background: var(--pearl-essence);
    border: 2px solid var(--silver-thread);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.28s var(--ease-gentle);
}

.expertise_card:hover {
    border-color: var(--violet-dream);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.15);
}

.expertise_visual_container {
    height: 220px;
    overflow: hidden;
}

.expertise_visual_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s var(--ease-gentle);
}

.expertise_card:hover .expertise_visual_container img {
    transform: scale(1.06);
}

.expertise_content_wrapper {
    padding: var(--space-xl);
}

.expertise_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-medium);
}

.expertise_description {
    color: var(--charcoal-shadow);
    line-height: 1.67;
    margin-bottom: var(--space-large);
}

.expertise_features_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.expertise_feature {
    position: relative;
    padding-left: var(--space-large);
    color: var(--charcoal-shadow);
    font-size: var(--text-scale-1);
}

.expertise_feature::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--violet-dream);
    font-weight: 700;
}

/* Methods Explanation Area */
.methods_explanation_area {
    padding: var(--space-massive) 0;
    background: var(--mint-breath);
}

.methods_layout_arrangement {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xxl);
    align-items: center;
}

.methods_visual_section img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.methods_primary_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.methods_introduction_paragraph {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.71;
}

.methods_pillars_container {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.pillar_component {
    display: flex;
    align-items: flex-start;
    gap: var(--space-large);
    padding: var(--space-large);
    background: white;
    border-radius: 14px;
    border-left: 4px solid var(--forest-embrace);
    transition: all 0.26s var(--ease-gentle);
}

.pillar_component:hover {
    transform: translateX(7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pillar_icon_placeholder {
    background: var(--forest-embrace);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.pillar_number {
    font-size: var(--text-scale-3);
}

.pillar_heading {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.pillar_explanation {
    color: var(--charcoal-shadow);
    margin: 0;
    line-height: 1.65;
}

/* Success Stories Area */
.success_stories_area {
    padding: var(--space-massive) 0;
    background: white;
}

.success_stories_heading {
    text-align: center;
    color: var(--midnight-navy);
    margin-bottom: var(--space-xxl);
}

.success_cases_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.success_case_card {
    background: var(--pearl-essence);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 2px solid var(--silver-thread);
    transition: all 0.27s var(--ease-gentle);
}

.success_case_card:hover {
    border-color: var(--emerald-success);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 201, 151, 0.15);
}

.case_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-medium);
    flex-wrap: wrap;
    gap: var(--space-small);
}

.case_company_name {
    color: var(--midnight-navy);
    font-size: var(--text-scale-4);
    margin: 0;
}

.case_industry_tag {
    background: var(--emerald-success);
    color: white;
    padding: var(--space-tiny) var(--space-small);
    border-radius: 8px;
    font-size: var(--text-scale-1);
    font-weight: 600;
}

.case_challenge {
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-medium);
    font-style: italic;
    line-height: 1.64;
}

.case_solution {
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-large);
    line-height: 1.67;
}

.case_results {
    display: flex;
    gap: var(--space-medium);
    flex-wrap: wrap;
}

.result_metric {
    background: var(--mint-breath);
    color: var(--forest-embrace);
    padding: var(--space-tiny) var(--space-small);
    border-radius: 8px;
    font-size: var(--text-scale-1);
    font-weight: 600;
}

/* Journey Timeline Area */
.journey_timeline_area {
    padding: var(--space-massive) 0;
    background: var(--sky-whisper);
}

.timeline_main_heading {
    text-align: center;
    color: var(--midnight-navy);
    margin-bottom: var(--space-xxl);
}

.timeline_container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline_container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ocean-depth);
    transform: translateX(-50%);
}

.timeline_item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xxl);
    position: relative;
}

.timeline_item:nth-child(odd) {
    flex-direction: row;
}

.timeline_item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline_marker {
    background: var(--ocean-depth);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-scale-3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline_year {
    font-family: 'Playfair Display', serif;
}

.timeline_content_block {
    background: white;
    padding: var(--space-large);
    border-radius: 14px;
    border: 2px solid var(--silver-thread);
    max-width: 300px;
    margin: 0 var(--space-large);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.timeline_milestone_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.timeline_description {
    color: var(--charcoal-shadow);
    margin: 0;
    line-height: 1.66;
}

/* Thank You Page Specific Styles */

/* Gratitude Hero Area */
.gratitude_hero_area {
    background: linear-gradient(135deg, var(--mint-breath) 0%, var(--sky-whisper) 100%);
    padding: var(--space-massive) 0;
    margin-top: 72px;
}

.gratitude_content_wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-xxl);
    align-items: center;
}

.gratitude_visual_element img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gratitude_main_heading {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
    font-size: clamp(var(--text-scale-6), 4vw, var(--text-scale-7));
}

.gratitude_primary_message {
    font-size: var(--text-scale-3);
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-xl);
    line-height: 1.68;
}

.next_steps_container {
    margin-bottom: var(--space-xl);
}

.next_steps_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
    font-size: var(--text-scale-5);
}

.steps_timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.step_item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-large);
    padding: var(--space-large);
    background: white;
    border-radius: 14px;
    border-left: 4px solid var(--emerald-success);
    transition: all 0.25s var(--ease-gentle);
}

.step_item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step_icon_wrapper {
    background: var(--emerald-success);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step_heading {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.step_description {
    color: var(--charcoal-shadow);
    margin: 0;
    line-height: 1.65;
}

.additional_resources_section {
    margin-bottom: var(--space-xl);
}

.resources_heading {
    color: var(--midnight-navy);
    margin-bottom: var(--space-large);
}

.resources_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-large);
}

.resource_card {
    background: white;
    padding: var(--space-large);
    border-radius: 12px;
    border: 2px solid var(--silver-thread);
    transition: all 0.24s var(--ease-gentle);
}

.resource_card:hover {
    border-color: var(--ocean-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource_title {
    color: var(--midnight-navy);
    margin-bottom: var(--space-small);
}

.resource_description {
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-medium);
}

.resource_link {
    color: var(--ocean-depth);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.19s var(--ease-gentle);
}

.resource_link:hover {
    color: var(--midnight-navy);
}

.resource_tip {
    color: var(--forest-embrace);
    font-size: var(--text-scale-1);
    font-style: italic;
}

.emergency_contact_info {
    text-align: center;
    padding: var(--space-large);
    background: var(--coral-glow);
    border-radius: 12px;
    border: 2px solid var(--sunset-flame);
}

.emergency_text {
    color: var(--charcoal-shadow);
    margin-bottom: var(--space-small);
}

.emergency_phone {
    color: var(--sunset-flame);
    text-decoration: none;
    font-size: var(--text-scale-4);
    font-weight: 700;
    transition: color 0.19s var(--ease-gentle);
}

.emergency_phone:hover {
    color: var(--midnight-navy);
}

/* Value Proposition Area */
.value_proposition_area {
    padding: var(--space-massive) 0;
    background: white;
}

.value_section_heading {
    text-align: center;
    color: var(--midnight-navy);
    margin-bottom: var(--space-xxl);
}

.value_points_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.value_point {
    text-align: center;
    padding: var(--space-xl);
    background: var(--pearl-essence);
    border-radius: 16px;
    border: 2px solid var(--silver-thread);
    transition: all 0.26s var(--ease-gentle);
}

.value_point:hover {
    border-color: var(--violet-dream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.15);
}

.value_metric_display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-medium);
}

.value_number {
    font-size: var(--text-scale-7);
    font-weight: 700;
    color: var(--violet-dream);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.value_label {
    font-size: var(--text-scale-2);
    color: var(--midnight-navy);
    font-weight: 600;
    margin-top: var(--space-small);
}

.value_explanation {
    color: var(--charcoal-shadow);
    margin: 0;
    line-height: 1.66;
}

/* Responsive adjustments for new sections */
@media screen and (max-width: 890px) {
    .philosophy_hero_arrangement,
    .gratitude_content_wrapper,
    .methods_layout_arrangement {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .philosophy_stats_cluster {
        justify-content: center;
    }

    .expertise_showcase_grid,
    .success_cases_grid {
        grid-template-columns: 1fr;
    }

    .timeline_container::before {
        left: 40px;
    }

    .timeline_item {
        flex-direction: row !important;
        padding-left: 100px;
    }

    .timeline_marker {
        position: absolute;
        left: 0;
    }

    .timeline_content_block {
        margin: 0;
        max-width: none;
    }
}

@media screen and (max-width: 640px) {
    .philosophy_stats_cluster {
        flex-direction: column;
        align-items: center;
        gap: var(--space-large);
    }

    .stat_element {
        width: 100%;
    }

    .expertise_showcase_grid {
        grid-template-columns: 1fr;
    }

    .methods_pillars_container {
        gap: var(--space-medium);
    }

    .pillar_component {
        flex-direction: column;
        text-align: center;
        gap: var(--space-medium);
    }

    .case_header {
        flex-direction: column;
        text-align: center;
    }

    .case_results {
        justify-content: center;
    }

    .value_points_grid {
        grid-template-columns: 1fr;
    }

    .resources_grid {
        grid-template-columns: 1fr;
    }
}