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

:root {
    --primary-ocean: #06d6a0;
    --primary-light-shade: #e6faf5;
    --primary-deep-accent: #048a65;
    --forest-breeze: #2c6e49;
    --sunset-glow: #f59e0b;
    --neutral-divider: #e5e7eb;
    --neutral-background: #f9fafb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --glass-backdrop: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.67;
    color: var(--text-primary);
    background-color: #ffffff;
}

.workspace_container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 21px;
}

.content_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.content_half {
    width: 100%;
    padding: 0 13px;
}

@media (min-width: 890px) {
    .content_half {
        width: 50%;
    }
}

.main_navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-backdrop);
    backdrop-filter: blur(8px);
    z-index: 999;
    padding: 13px 0;
    border-bottom: 1px solid var(--neutral-divider);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand_identity img {
    height: 47px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--glass-backdrop);
        backdrop-filter: blur(13px);
        transition: all 0.3s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .nav_element {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav_connection {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav_wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .nav_wrapper {
        display: flex;
        align-items: center;
        gap: 34px;
    }

    .nav_element {
        list-style: none;
    }

    .nav_connection {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav_connection:hover {
        color: var(--primary-ocean);
    }
}

.hero_workspace {
    margin-top: 89px;
}

.primary_hero {
    height: 100vh;
    min-height: 640px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero_background_1 {
    background-image: linear-gradient(rgba(4, 138, 101, 0.7), rgba(6, 214, 160, 0.5)), url('../visualization/tech_professional_emotional_intelligence_1.webp');
}

.hero_layout {
    width: 100%;
}

.hero_content_area {
    width: 100%;
}

.hero_messaging h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.21;
    margin-bottom: 21px;
    color: #ffffff;
    letter-spacing: 1.3px;
}

.hero_messaging h1 span {
    color: var(--sunset-glow);
    font-weight: 800;
}

@media (max-width: 890px) {
    .hero_messaging h1 {
        font-size: 2.3rem;
        line-height: 1.34;
    }
}

.hero_messaging p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.91);
    margin-bottom: 34px;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 890px) {
    .hero_messaging p {
        font-size: 1.1rem;
    }
}

.hero_action_zone {
    margin-top: 47px;
}

.primary_action_btn {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    color: #ffffff;
    padding: 19px 42px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 34px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 21px rgba(6, 214, 160, 0.3);
}

.primary_action_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(6, 214, 160, 0.4);
    background: linear-gradient(135deg, var(--forest-breeze) 0%, var(--primary-ocean) 100%);
}

.large_btn {
    padding: 23px 55px;
    font-size: 1.2rem;
}

.section_spacing {
    padding: 89px 0;
}

@media (max-width: 890px) {
    .section_spacing {
        padding: 55px 0;
    }
}

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

.align-items-center {
    align-items: center;
}

.section_header_area {
    width: 100%;
}

.title_block h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
    line-height: 1.3;
}

.title_block p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.spacing_bottom_large {
    margin-bottom: 89px;
}

@media (max-width: 890px) {
    .title_block h2 {
        font-size: 2.1rem;
    }
    
    .spacing_bottom_large {
        margin-bottom: 55px;
    }
}

.assessment_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

@media (min-width: 890px) {
    .assessment_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.assessment_card {
    background: var(--glass-backdrop);
    backdrop-filter: blur(13px);
    border-radius: 21px;
    padding: 34px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
}

.assessment_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.card_visual {
    margin-bottom: 21px;
    overflow: hidden;
    border-radius: 13px;
}

.adaptive_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    transition: transform 0.4s ease;
}

.assessment_card:hover .adaptive_image {
    transform: scale(1.05);
}

.assessment_card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 13px;
}

.assessment_card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 21px;
}

.progress_indicator {
    margin-top: 21px;
}

.progress_indicator p {
    margin-bottom: 8px;
    font-weight: 500;
}

.progress_indicator span {
    color: var(--primary-ocean);
    font-weight: 600;
}

.skill_progress {
    height: 13px;
    background-color: var(--neutral-background);
    border-radius: 8px;
    overflow: hidden;
}

.progress_fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    border-radius: 8px;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: width 0.8s ease-in-out;
}

.text_content_area h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
    line-height: 1.3;
}

.emphasis_text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 21px;
}

.text_content_area p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 21px;
    font-size: 1.1rem;
}

.feature_listing {
    list-style: none;
    padding: 0;
    margin: 34px 0;
}

.feature_listing li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 13px;
    position: relative;
    padding-left: 34px;
}

.feature_listing li::before {
    content: '✓';
    color: var(--primary-ocean);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    background: var(--primary-light-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.secondary_btn_style {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-ocean);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.secondary_btn_style:hover {
    color: var(--primary-ocean);
    transform: translateY(-2px);
}

.visual_content_area {
    text-align: center;
}

@media (max-width: 890px) {
    .text_content_area {
        margin-bottom: 34px;
    }
    
    .text_content_area h2 {
        font-size: 1.9rem;
    }
}

.stats_container {
    display: flex;
    gap: 34px;
    margin: 34px 0;
}

.stat_element {
    text-align: center;
}

.stat_element h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-ocean);
    margin-bottom: 8px;
    line-height: 1;
}

.stat_element p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 640px) {
    .stats_container {
        flex-direction: column;
        gap: 21px;
    }
}

.leadership_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

@media (min-width: 890px) {
    .leadership_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.leadership_stage {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(230, 250, 245, 0.7));
    backdrop-filter: blur(8px);
    border-radius: 21px;
    padding: 34px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(6, 214, 160, 0.2);
}

.leadership_stage:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 21px 55px rgba(6, 214, 160, 0.15);
    border-color: var(--primary-ocean);
}

.stage_visual {
    margin-bottom: 21px;
    overflow: hidden;
    border-radius: 13px;
}

.leadership_stage h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 13px;
}

.leadership_stage p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta_upgrade_section {
    background: linear-gradient(135deg, var(--primary-deep-accent) 0%, var(--primary-ocean) 100%);
    color: white;
}

.cta_content_area {
    width: 100%;
}

.cta_messaging h2 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 21px;
    color: white;
}

.cta_messaging p {
    font-size: 1.3rem;
    margin-bottom: 34px;
    opacity: 0.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 890px) {
    .cta_messaging h2 {
        font-size: 2.1rem;
    }
    
    .cta_messaging p {
        font-size: 1.1rem;
    }
}

.cta_action_zone {
    margin-top: 47px;
}

.main_footer {
    background-color: var(--text-primary);
    color: white;
    padding: 89px 0 34px 0;
}

.footer_content_row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 55px;
}

@media (min-width: 890px) {
    .footer_content_row {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer_brand_title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-ocean);
    margin-bottom: 21px;
}

.footer_brand_area p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer_links_area h3,
.footer_contact_area h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 21px;
    color: white;
}

.footer_navigation {
    list-style: none;
}

.footer_navigation li {
    margin-bottom: 13px;
}

.footer_navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer_navigation a:hover {
    color: var(--primary-ocean);
}

.contact_details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 1rem;
}

.footer_bottom_row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 34px;
}

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

.contact_workspace {
    background: linear-gradient(135deg, var(--primary-light-shade) 0%, var(--neutral-background) 100%);
}

.contact_info_area h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
}

.contact_info_area > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.contact_detail_card {
    background: var(--glass-backdrop);
    backdrop-filter: blur(8px);
    border-radius: 13px;
    padding: 21px;
    margin-bottom: 21px;
    border: 1px solid rgba(6, 214, 160, 0.2);
    transition: all 0.3s ease;
}

.contact_detail_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(6, 214, 160, 0.15);
}

.contact_detail_card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-ocean);
    margin-bottom: 8px;
}

.contact_detail_card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.contact_benefits {
    margin-top: 34px;
}

.contact_benefits h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 17px;
}

.benefit_listing {
    list-style: none;
    padding: 0;
}

.benefit_listing li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 13px;
    position: relative;
    padding-left: 34px;
}

.benefit_listing li::before {
    content: '✓';
    color: var(--primary-ocean);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    background: var(--primary-light-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact_form_container {
    background: var(--glass-backdrop);
    backdrop-filter: blur(13px);
    border-radius: 21px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.08);
}

@media (max-width: 890px) {
    .contact_form_container {
        padding: 34px 21px;
        margin-top: 34px;
    }
}

.form_group_wrapper {
    margin-bottom: 34px;
}

.input_field_container,
.textarea_field_container {
    position: relative;
}

.form_input_field,
.form_textarea_field {
    width: 100%;
    padding: 21px 0 8px 0;
    border: none;
    border-bottom: 2px solid var(--neutral-divider);
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
}

.form_input_field:focus,
.form_textarea_field:focus {
    border-bottom-color: var(--primary-ocean);
}

.form_input_field:focus + .floating_label,
.form_input_field:valid + .floating_label,
.form_textarea_field:focus + .floating_label,
.form_textarea_field:valid + .floating_label {
    transform: translateY(-21px) scale(0.85);
    color: var(--primary-ocean);
}

.floating_label {
    position: absolute;
    left: 0;
    top: 21px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left top;
}

.input_underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form_input_field:focus ~ .input_underline,
.form_textarea_field:focus ~ .input_underline {
    width: 100%;
}

.form_textarea_field {
    resize: vertical;
    min-height: 89px;
    padding-top: 21px;
}

.form_submit_zone {
    text-align: center;
    margin-top: 42px;
}

.contact_submit_btn {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-ocean);
    color: var(--primary-ocean);
    padding: 17px 42px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 34px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
}

.contact_submit_btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(6, 214, 160, 0.3);
}

.btn_text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn_background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.contact_submit_btn:hover .btn_background {
    left: 0;
}

.thankyou_main_area {
    margin-top: 89px;
    min-height: calc(100vh - 89px);
}

.thankyou_hero_section {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--primary-light-shade) 0%, var(--neutral-background) 50%, var(--primary-light-shade) 100%);
}

.thankyou_content_area {
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}

.success_animation_container {
    margin-bottom: 42px;
}

.success_checkmark {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: inline-block;
    stroke-width: 3;
    stroke: var(--primary-ocean);
    stroke-miterlimit: 10;
    margin: 21px auto;
    box-shadow: inset 0px 0px 0px var(--primary-ocean);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    background: var(--primary-light-shade);
    border: 3px solid var(--primary-ocean);
}

.success_checkmark .check_icon {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.check_icon .icon_stem {
    position: absolute;
    width: 5px;
    height: 13px;
    background-color: var(--primary-ocean);
    left: 13px;
    top: 8px;
    transform: rotate(45deg);
    border-radius: 2px;
    animation: check-stem 0.3s ease-in-out 0.7s forwards;
    transform-origin: bottom;
    opacity: 0;
}

.check_icon .icon_kick {
    position: absolute;
    width: 3px;
    height: 8px;
    background-color: var(--primary-ocean);
    left: 8px;
    top: 13px;
    transform: rotate(-45deg);
    border-radius: 2px;
    animation: check-kick 0.3s ease-in-out 0.5s forwards;
    transform-origin: bottom;
    opacity: 0;
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 34px var(--primary-light-shade);
    }
}

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

@keyframes check-stem {
    0% {
        opacity: 0;
        transform: scaleY(0) rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: scaleY(1) rotate(45deg);
    }
}

@keyframes check-kick {
    0% {
        opacity: 0;
        transform: scaleY(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scaleY(1) rotate(-45deg);
    }
}

.thankyou_messaging h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
    line-height: 1.2;
}

.lead_message {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 55px;
    font-weight: 400;
}

.confirmation_details {
    margin: 89px 0;
}

.confirmation_details h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 42px;
}

.next_steps_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
}

@media (min-width: 890px) {
    .next_steps_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step_card {
    background: var(--glass-backdrop);
    backdrop-filter: blur(13px);
    border-radius: 21px;
    padding: 34px;
    text-align: center;
    border: 1px solid rgba(6, 214, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.step_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(6, 214, 160, 0.15);
    border-color: var(--primary-ocean);
}

.step_number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 21px auto;
}

.step_card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 13px;
}

.step_card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.additional_resources {
    margin: 89px 0;
}

.additional_resources h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
}

.additional_resources > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 42px;
}

.resource_benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 34px;
}

@media (min-width: 890px) {
    .resource_benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit_item {
    background: rgba(6, 214, 160, 0.05);
    border-radius: 13px;
    padding: 21px;
    text-align: center;
    border: 1px solid rgba(6, 214, 160, 0.1);
    transition: all 0.3s ease;
}

.benefit_item:hover {
    background: rgba(6, 214, 160, 0.1);
    transform: translateY(-3px);
}

.benefit_item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-ocean);
    margin-bottom: 8px;
}

.benefit_item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.return_navigation {
    margin-top: 55px;
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary_return_btn {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    color: white;
    padding: 17px 34px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 34px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 21px rgba(6, 214, 160, 0.3);
}

.primary_return_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(6, 214, 160, 0.4);
    background: linear-gradient(135deg, var(--forest-breeze) 0%, var(--primary-ocean) 100%);
}

.secondary_contact_btn {
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
    padding: 15px 34px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 34px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: transparent;
}

.secondary_contact_btn:hover {
    border-color: var(--primary-ocean);
    color: var(--primary-ocean);
    transform: translateY(-2px);
}

@media (max-width: 890px) {
    .thankyou_messaging h1 {
        font-size: 2.3rem;
    }
    
    .lead_message {
        font-size: 1.2rem;
    }
    
    .confirmation_details h2 {
        font-size: 1.9rem;
    }
    
    .additional_resources h2 {
        font-size: 1.8rem;
    }
    
    .return_navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .primary_return_btn,
    .secondary_contact_btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .thankyou_hero_section {
        padding: 55px 0;
    }
    
    .thankyou_messaging h1 {
        font-size: 1.9rem;
    }
    
    .confirmation_details h2 {
        font-size: 1.6rem;
    }
    
    .step_card {
        padding: 21px;
    }
    
    .step_number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

.about_hero_workspace {
    margin-top: 89px;
}

.about_primary_hero {
    height: 75vh;
    min-height: 540px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    position: relative;
}

.about_hero_background {
    background-image: linear-gradient(rgba(4, 138, 101, 0.8), rgba(6, 214, 160, 0.6)), url('../visualization/software_engineer_communication_skills_4.webp');
}

.about_hero_messaging h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 21px;
    color: #ffffff;
    letter-spacing: 1.2px;
}

.about_hero_messaging h1 span {
    color: var(--sunset-glow);
    font-weight: 800;
}

@media (max-width: 890px) {
    .about_hero_messaging h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
}

.about_hero_messaging p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 34px;
    font-weight: 400;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.about_hero_action_zone {
    margin-top: 42px;
}

.founder_story_content h3 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 17px;
    line-height: 1.3;
}

.founder_timeline {
    margin-top: 42px;
}

.timeline_point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
    position: relative;
}

.timeline_point:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 34px;
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, var(--primary-ocean) 0%, var(--primary-light-shade) 100%);
}

.timeline_marker {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    border-radius: 50%;
    margin-right: 21px;
    flex-shrink: 0;
    position: relative;
    margin-top: 3px;
}

.timeline_point h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-ocean);
    margin-bottom: 8px;
}

.timeline_point p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.research_findings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 21px;
    margin: 34px 0;
}

@media (min-width: 640px) {
    .research_findings {
        grid-template-columns: repeat(3, 1fr);
    }
}

.finding_stat {
    text-align: center;
    padding: 21px;
    background: var(--primary-light-shade);
    border-radius: 13px;
    border: 1px solid rgba(6, 214, 160, 0.2);
    transition: all 0.3s ease;
}

.finding_stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 21px rgba(6, 214, 160, 0.15);
}

.finding_stat h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-ocean);
    margin-bottom: 8px;
    line-height: 1;
}

.finding_stat p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.vision_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
}

@media (min-width: 890px) {
    .vision_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vision_card {
    background: var(--glass-backdrop);
    backdrop-filter: blur(8px);
    border-radius: 21px;
    padding: 42px;
    border: 1px solid rgba(6, 214, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(6, 214, 160, 0.15);
    border-color: var(--primary-ocean);
}

.vision_visual {
    margin-bottom: 21px;
    overflow: hidden;
    border-radius: 13px;
}

.vision_card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 17px;
}

.vision_card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 21px;
    font-size: 1.05rem;
}

.mission_points,
.future_points {
    list-style: none;
    padding: 0;
}

.mission_points li,
.future_points li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 13px;
    position: relative;
    padding-left: 34px;
}

.mission_points li::before,
.future_points li::before {
    content: '▸';
    color: var(--primary-ocean);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

.methodology_steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

@media (min-width: 890px) {
    .methodology_steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.method_step {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 21px;
    padding: 34px;
    text-align: center;
    border: 1px solid rgba(6, 214, 160, 0.1);
    transition: all 0.4s ease;
}

.method_step:hover {
    background: var(--glass-backdrop);
    transform: translateY(-5px);
    border-color: var(--primary-ocean);
}

.step_icon_container {
    margin-bottom: 21px;
}

.step_circle {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--forest-breeze) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 21px rgba(6, 214, 160, 0.3);
}

.step_number {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.method_step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 13px;
}

.method_step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.values_list {
    margin-top: 34px;
}

.value_item {
    margin-bottom: 34px;
    padding: 21px;
    background: rgba(6, 214, 160, 0.03);
    border-radius: 13px;
    border-left: 4px solid var(--primary-ocean);
    transition: all 0.3s ease;
}

.value_item:hover {
    background: rgba(6, 214, 160, 0.08);
    transform: translateX(8px);
}

.value_item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-ocean);
    margin-bottom: 8px;
}

.value_item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.cta_about_section {
    background: linear-gradient(135deg, var(--primary-deep-accent) 0%, var(--primary-ocean) 100%);
    color: white;
}

.cta_about_messaging h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 21px;
    color: white;
}

.cta_about_messaging p {
    font-size: 1.2rem;
    margin-bottom: 42px;
    opacity: 0.9;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta_about_action_zone {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 42px;
}

.secondary_action_btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 17px 34px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 34px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
}

.secondary_action_btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 890px) {
    .about_primary_hero {
        height: 60vh;
        min-height: 480px;
    }
    
    .founder_story_content h3 {
        font-size: 1.8rem;
    }
    
    .vision_card {
        padding: 34px 21px;
    }
    
    .method_step {
        padding: 21px;
    }
    
    .step_circle {
        width: 55px;
        height: 55px;
    }
    
    .step_number {
        font-size: 1.5rem;
    }
    
    .cta_about_messaging h2 {
        font-size: 2.1rem;
    }
    
    .cta_about_action_zone {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary_action_btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .about_hero_messaging h1 {
        font-size: 1.8rem;
    }
    
    .about_hero_messaging p {
        font-size: 1.1rem;
    }
    
    .founder_story_content h3 {
        font-size: 1.6rem;
    }
    
    .finding_stat h3 {
        font-size: 2.2rem;
    }
    
    .vision_card h3 {
        font-size: 1.5rem;
    }
    
    .cta_about_messaging h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .workspace_container {
        padding: 0 13px;
    }
    
    .hero_messaging h1 {
        font-size: 1.9rem;
    }
    
    .title_block h2 {
        font-size: 1.7rem;
    }
    
    .text_content_area h2 {
        font-size: 1.6rem;
    }
    
    .cta_messaging h2 {
        font-size: 1.8rem;
    }
    
    .contact_info_area h3 {
        font-size: 1.6rem;
    }
    
    .contact_form_container {
        padding: 21px;
    }
    
    .contact_submit_btn {
        padding: 15px 34px;
        font-size: 1rem;
    }
}