/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom CSS variables - Ocean theme */
:root {
    --ocean-depth: #7209b7;
    --ocean-surface: #f3e5f9;
    --ocean-abyss: #4c0677;
    --coral-accent: #ff6b6b;
    --coral-light: #ffe0e0;
    --seaweed-green: #51cf66;
    --seaweed-pale: #d3f9d8;
    --pearl-white: #ffffff;
    --shell-gray: #868e96;
    --sand-beige: #f8f9fa;
    --wave-blue: #339af0;
    --wave-light: #d0ebff;
    --sunset-orange: #ff922b;
    --sunset-pale: #ffe8cc;
    --text-primary: #2c2c2c;
    --text-secondary: #6c757d;
    --border-subtle: #dee2e6;
    --shadow-soft: rgba(0, 0, 0, 0.1);
}

/* Typography */
body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--pearl-white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--ocean-abyss);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.3rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.5;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container system */
.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles */
.primary_navigation {
    background-color: var(--pearl-white);
    border-bottom: 2px solid var(--ocean-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* slightly messy spacing - human touch */
    padding: 13px 0;
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand_identity img {
    height: 42px;
    width: auto;
}

.navigation_toggle {
    display: none;
}

.toggle_control {
    display: none;
}

.menu_icon {
    width: 30px;
    height: 3px;
    background: var(--ocean-abyss);
    position: relative;
    transition: all 0.3s ease;
}

.menu_icon:before,
.menu_icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--ocean-abyss);
    transition: all 0.3s ease;
}

.menu_icon:before {
    top: -8px;
}

.menu_icon:after {
    top: 8px;
}

.navigation_container {
    display: flex;
    align-items: center;
}

.navigation_list {
    display: flex;
    list-style: none;
    gap: 34px; /* fibonacci spacing */
}

.nav_element {
    position: relative;
}

.nav_anchor {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav_anchor:hover {
    color: var(--ocean-depth);
}

/* Mobile navigation */
@media screen and (max-width: 890px) {
    .toggle_control {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .navigation_container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .navigation_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav_element {
        width: 100%;
        text-align: center;
    }

    .nav_anchor {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .navigation_toggle:checked ~ .navigation_container {
        left: 0;
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon {
        background: transparent;
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero section */
.hero_discovery_portal {
    background: linear-gradient(135deg, var(--ocean-surface) 0%, var(--wave-light) 100%);
    padding: 87px 0; /* irregular spacing */
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero_text_area {
    padding-right: 21px;
}

.primary_heading {
    font-size: 3.2rem;
    color: var(--ocean-abyss);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero_description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.3rem;
    line-height: 1.7;
}

.action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_button {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 13px 34px;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.primary_button:hover {
    background: var(--ocean-abyss);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(114, 9, 183, 0.3);
}

.secondary_button {
    background: transparent;
    color: var(--ocean-depth);
    padding: 13px 34px;
    border: 2px solid var(--ocean-depth);
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary_button:hover {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    transform: translateY(-1px);
}

.hero_visual_area {
    position: relative;
}

.hero_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 15px 40px var(--shadow-soft);
}

/* Mythological journey section */
.mythological_business_journey {
    padding: 89px 0;
    background: var(--pearl-white);
}

.section_title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--ocean-abyss);
}

.journey_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
    margin-top: 2.5rem;
}

.journey_step {
    text-align: center;
    padding: 34px 21px;
    border: 2px solid var(--ocean-surface);
    border-radius: 13px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--pearl-white);
}

.journey_step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-soft);
    border-color: var(--ocean-depth);
}

.step_visual {
    margin-bottom: 1.5rem;
}

.step_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.step_title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ocean-abyss);
}

.step_description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ancient wisdom section */
.ancient_wisdom_application {
    padding: 76px 0;
    background: var(--ocean-surface);
}

.wisdom_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.wisdom_content {
    padding-right: 21px;
}

.wisdom_intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.wisdom_benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit_item {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--ocean-depth);
    transition: transform 0.3s ease;
}

.benefit_item:hover {
    transform: translateX(5px);
}

.benefit_title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--ocean-abyss);
}

.benefit_text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.wisdom_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

/* Success patterns section */
.archetypal_success_patterns {
    padding: 83px 0;
    background: var(--pearl-white);
}

.patterns_showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 2.5rem;
}

.pattern_card {
    background: var(--wave-light);
    padding: 34px 21px;
    border-radius: 13px;
    text-align: center;
    border: 2px solid var(--wave-blue);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pattern_card:hover {
    transform: scale(1.05);
    background: var(--wave-blue);
    color: var(--pearl-white);
}

.pattern_name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--ocean-abyss);
}

.pattern_card:hover .pattern_name {
    color: var(--pearl-white);
}

.pattern_description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pattern_card:hover .pattern_description {
    color: var(--pearl-white);
}

/* CTA section */
.consultation_cta {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--ocean-abyss) 100%);
    color: var(--pearl-white);
    text-align: center;
}

.cta_content {
    max-width: 800px;
    margin: 0 auto;
}

.cta_heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--pearl-white);
}

.cta_description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--ocean-surface);
    line-height: 1.7;
}

.large_button {
    font-size: 1.1rem;
    padding: 17px 42px;
    background: var(--coral-accent);
    border: none;
}

.large_button:hover {
    background: var(--sunset-orange);
    transform: translateY(-3px);
}

.cta_note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--ocean-surface);
}

/* Contact section */
.contact_consultation {
    padding: 87px 0;
    background: var(--sand-beige);
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.contact_title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--ocean-abyss);
}

.contact_description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail_item {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--seaweed-green);
}

.detail_item strong {
    color: var(--ocean-abyss);
    font-size: 1.1rem;
}

.detail_item p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Form styles */
.consultation_form {
    background: var(--pearl-white);
    padding: 42px 34px;
    border-radius: 13px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 2px solid var(--ocean-surface);
}

.form_group {
    margin-bottom: 1.5rem;
}

.form_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ocean-abyss);
    font-size: 1rem;
}

.form_input,
.form_select,
.form_textarea {
    width: 100%;
    padding: 13px 17px;
    border: 2px solid var(--border-subtle);
    border-radius: 7px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--pearl-white);
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

.form_textarea {
    resize: vertical;
    min-height: 120px;
}

.submit_button {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 15px 40px;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit_button:hover {
    background: var(--ocean-abyss);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 9, 183, 0.3);
}

/* Footer */
.site_footer {
    background: var(--ocean-abyss);
    color: var(--pearl-white);
    padding: 55px 0 21px;
}

.footer_content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 2rem;
}

.footer_logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer_tagline {
    font-size: 0.95rem;
    color: var(--ocean-surface);
    margin-bottom: 0;
}

.footer_heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.footer_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_links a {
    color: var(--ocean-surface);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--pearl-white);
}

.footer_contact p {
    margin-bottom: 0.5rem;
    color: var(--ocean-surface);
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 21px;
    text-align: center;
}

.footer_bottom p {
    margin: 0;
    color: var(--ocean-surface);
    font-size: 0.9rem;
}

/* Responsive design */
@media screen and (max-width: 1600px) {
    .content_wrapper {
        max-width: 1200px;
        padding: 0 30px;
    }
}

@media screen and (max-width: 1280px) {
    .content_wrapper {
        max-width: 1000px;
    }

    .hero_content_grid,
    .wisdom_layout,
    .contact_layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero_text_area,
    .wisdom_content {
        padding-right: 0;
    }

    .footer_content {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media screen and (max-width: 890px) {
    .primary_heading {
        font-size: 2.5rem;
    }

    .section_title {
        font-size: 2rem;
    }

    .cta_heading {
        font-size: 2rem;
    }

    .journey_grid,
    .patterns_showcase {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .hero_discovery_portal {
        padding: 55px 0;
    }

    .mythological_business_journey,
    .ancient_wisdom_application,
    .archetypal_success_patterns,
    .consultation_cta,
    .contact_consultation {
        padding: 55px 0;
    }
}

@media screen and (max-width: 640px) {
    .content_wrapper {
        padding: 0 15px;
    }

    .primary_heading {
        font-size: 2rem;
    }

    .hero_description {
        font-size: 1.1rem;
    }

    .action_buttons {
        flex-direction: column;
        gap: 13px;
    }

    .primary_button,
    .secondary_button {
        text-align: center;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .consultation_form {
        padding: 21px;
    }
}

/* TODO: add more interactive elements later */
/* trying different hover effects */

/* Left over from previous project - clean up later */
/* .old-nav-style { display: none; } */

/* About Page Specific Styles */
.ancient_wisdom_foundation {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-surface) 0%, var(--pearl-white) 100%);
}

.foundation_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.foundation_title {
    font-size: 2.8rem;
    color: var(--ocean-abyss);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.foundation_description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.foundation_principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle_item {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--coral-accent);
    transition: transform 0.3s ease;
}

.principle_item:hover {
    transform: translateX(7px);
}

.principle_title {
    font-size: 1.3rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.8rem;
}

.principle_text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.foundation_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 12px 35px var(--shadow-soft);
}

/* Research Institute Section */
.archetypal_research_institute {
    padding: 83px 0;
    background: var(--pearl-white);
}

.institute_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
    margin-top: 3rem;
}

.research_area {
    background: var(--wave-light);
    padding: 34px 21px;
    border-radius: 13px;
    text-align: center;
    border: 2px solid var(--wave-blue);
    transition: all 0.3s ease;
}

.research_area:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--ocean-depth);
}

.research_visual {
    margin-bottom: 1.5rem;
}

.research_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.research_title {
    font-size: 1.5rem;
    color: var(--ocean-abyss);
    margin-bottom: 1rem;
}

.research_description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Database Section */
.mythological_business_database {
    padding: 76px 0;
    background: var(--sand-beige);
}

.database_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.database_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.database_title {
    font-size: 2.3rem;
    color: var(--ocean-abyss);
    margin-bottom: 1.5rem;
}

.database_intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.database_features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature_point {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--seaweed-green);
}

.feature_title {
    font-size: 1.2rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.5rem;
}

.feature_text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Cultural Wisdom Section */
.cultural_wisdom_integration {
    padding: 87px 0;
    background: var(--ocean-surface);
}

.integration_intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wisdom_traditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
    margin-top: 2.5rem;
}

.tradition_card {
    background: var(--pearl-white);
    padding: 34px 21px;
    border-radius: 13px;
    text-align: center;
    border: 2px solid var(--sunset-orange);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tradition_card:hover {
    transform: scale(1.03);
    background: var(--sunset-orange);
    color: var(--pearl-white);
}

.tradition_name {
    font-size: 1.4rem;
    color: var(--ocean-abyss);
    margin-bottom: 1rem;
}

.tradition_card:hover .tradition_name {
    color: var(--pearl-white);
}

.tradition_description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tradition_card:hover .tradition_description {
    color: var(--pearl-white);
}

/* Certification Academy Section */
.archetypal_certification_academy {
    padding: 79px 0;
    background: var(--pearl-white);
}

.academy_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.academy_title {
    font-size: 2.3rem;
    color: var(--ocean-abyss);
    margin-bottom: 1.5rem;
}

.academy_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.certification_levels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.level_item {
    padding: 21px;
    background: var(--wave-light);
    border-radius: 8px;
    border-left: 4px solid var(--wave-blue);
    transition: transform 0.3s ease;
}

.level_item:hover {
    transform: translateX(5px);
}

.level_title {
    font-size: 1.2rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.5rem;
}

.level_description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.academy_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

/* Global Network Section */
.global_wisdom_network {
    padding: 73px 0;
    background: var(--ocean-depth);
    color: var(--pearl-white);
    text-align: center;
}

.global_wisdom_network .section_title {
    color: var(--pearl-white);
    margin-bottom: 3rem;
}

.network_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 34px;
    margin-bottom: 2.5rem;
}

.stat_item {
    text-align: center;
    padding: 21px;
}

.stat_number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--coral-accent);
    margin-bottom: 0.5rem;
}

.stat_label {
    font-size: 1.1rem;
    color: var(--ocean-surface);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network_description {
    font-size: 1.2rem;
    color: var(--ocean-surface);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Philosophy Section */
.sacred_business_philosophy {
    padding: 81px 0;
    background: var(--sand-beige);
}

.philosophy_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophy_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.philosophy_title {
    font-size: 2.3rem;
    color: var(--ocean-abyss);
    margin-bottom: 1.5rem;
}

.philosophy_intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.philosophy_pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar_item {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--coral-accent);
    transition: transform 0.3s ease;
}

.pillar_item:hover {
    transform: translateX(5px);
}

.pillar_title {
    font-size: 1.2rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.5rem;
}

.pillar_text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Thank You Page Styles */
.thankyou_hero {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--seaweed-pale) 0%, var(--pearl-white) 100%);
    min-height: 640px;
    display: flex;
    align-items: center;
}

.thankyou_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.success_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 15px 40px var(--shadow-soft);
}

.thankyou_title {
    font-size: 2.8rem;
    color: var(--seaweed-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.thankyou_subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.confirmation_details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail_box {
    background: var(--pearl-white);
    padding: 34px 21px;
    border-radius: 13px;
    border: 2px solid var(--seaweed-green);
}

.detail_title {
    font-size: 1.4rem;
    color: var(--ocean-abyss);
    margin-bottom: 1rem;
}

.next_steps {
    list-style: none;
    padding: 0;
}

.next_steps li {
    padding: 8px 0;
    padding-left: 21px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}

.next_steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--seaweed-green);
    font-weight: bold;
}

.contact_reminder {
    background: var(--wave-light);
    padding: 21px;
    border-radius: 8px;
    border-left: 4px solid var(--wave-blue);
}

.reminder_title {
    font-size: 1.2rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.5rem;
}

.reminder_text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact_phone {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact_address {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Additional Resources Section */
.additional_resources {
    padding: 83px 0;
    background: var(--pearl-white);
}

.resources_title {
    font-size: 2.3rem;
    color: var(--ocean-abyss);
    text-align: center;
    margin-bottom: 3rem;
}

.resources_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.resource_card {
    background: var(--pearl-white);
    border-radius: 13px;
    overflow: hidden;
    border: 2px solid var(--ocean-surface);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.resource_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--ocean-depth);
}

.resource_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.resource_content {
    padding: 21px;
}

.resource_title {
    font-size: 1.3rem;
    color: var(--ocean-abyss);
    margin-bottom: 0.8rem;
}

.resource_description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource_link {
    color: var(--ocean-depth);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource_link:hover {
    color: var(--ocean-abyss);
}

/* Responsive Styles for About and Thank You Pages */
@media screen and (max-width: 1280px) {
    .foundation_layout,
    .database_layout,
    .academy_layout,
    .philosophy_layout,
    .thankyou_content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .thankyou_content {
        text-align: center;
    }
}

@media screen and (max-width: 890px) {
    .foundation_title,
    .thankyou_title {
        font-size: 2.3rem;
    }

    .database_title,
    .academy_title,
    .philosophy_title,
    .resources_title {
        font-size: 2rem;
    }

    .thankyou_subtitle {
        font-size: 1.1rem;
    }

    .ancient_wisdom_foundation,
    .archetypal_research_institute,
    .mythological_business_database,
    .cultural_wisdom_integration,
    .archetypal_certification_academy,
    .global_wisdom_network,
    .sacred_business_philosophy,
    .thankyou_hero,
    .additional_resources {
        padding: 55px 0;
    }

    .institute_grid,
    .wisdom_traditions,
    .resources_grid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .network_stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .foundation_title,
    .thankyou_title {
        font-size: 2rem;
    }

    .thankyou_subtitle {
        font-size: 1rem;
    }

    .stat_number {
        font-size: 2.5rem;
    }

    .network_stats {
        grid-template-columns: 1fr;
        gap: 13px;
    }
}

/* старые стили для предыдущих проектов */
/* .legacy-card-style { display: none; } */
/* TODO: добавить больше анимаций позже */