/* Variables de color personalizadas */
:root {
    --crimson-flame: #e63946;
    --soft-blush: #fdeaeb;
    --deep-ember: #c8252f;
    --ocean-current: #457b9d;
    --twilight-mist: #f1faee;
    --charcoal-depth: #264653;
    --golden-harvest: #f4a261;
    --sunset-glow: #e76f51;
    --forest-canopy: #2a9d8f;
    --morning-sky: #e9c46a;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--charcoal-depth);
    background-color: var(--twilight-mist);
    overflow-x: hidden;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: var(--deep-ember);
    margin-bottom: 21px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    margin-bottom: 17px;
    color: var(--charcoal-depth);
    font-size: 1.1rem;
}

/* Contenedores */
.container_fluid {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Navegación */
.navigation_wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--soft-blush);
    padding: 8px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    position: relative;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--deep-ember);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--deep-ember);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--charcoal-depth);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 13px 0;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--crimson-flame);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--crimson-flame);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navegación móvil */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--twilight-mist);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 17px 21px;
        font-size: 1.3rem;
        color: var(--charcoal-depth);
    }

    .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;
    }
}

/* Hero Section */
.hero_showcase_area {
    padding: 144px 0 89px;
    background: linear-gradient(135deg, var(--twilight-mist) 0%, var(--soft-blush) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.hero_text_container {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_primary_title {
    font-size: 3.8rem;
    margin-bottom: 34px;
    background: linear-gradient(135deg, var(--crimson-flame), var(--deep-ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_description_text {
    font-size: 1.3rem;
    margin-bottom: 34px;
    color: var(--charcoal-depth);
    opacity: 0.89;
}

.hero_action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_action_btn,
.secondary_action_btn {
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 55px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-block;
}

.primary_action_btn {
    background: var(--crimson-flame);
    color: white;
    border-color: var(--crimson-flame);
}

.primary_action_btn:hover {
    background: var(--deep-ember);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(230, 57, 70, 0.3);
}

.secondary_action_btn {
    background: transparent;
    color: var(--charcoal-depth);
    border-color: var(--charcoal-depth);
}

.secondary_action_btn:hover {
    background: var(--charcoal-depth);
    color: white;
    transform: translateY(-2px);
}

.hero_visual_element {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_featured_image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_featured_image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Servicios */
.services_showcase_area {
    padding: 144px 0;
    background: white;
}

.section_header_block {
    text-align: center;
    margin-bottom: 89px;
}

.section_main_title {
    font-size: 2.8rem;
    margin-bottom: 21px;
}

.section_intro_text {
    font-size: 1.2rem;
    color: var(--charcoal-depth);
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

.services_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 44px;
}

.service_feature_card {
    background: white;
    border-radius: 21px;
    padding: 34px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--soft-blush);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service_feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service_feature_card:hover::before {
    left: 100%;
}

.service_feature_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
    border-color: var(--crimson-flame);
}

.service_visual_wrapper {
    margin-bottom: 21px;
    overflow: hidden;
    border-radius: 13px;
}

.service_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service_feature_card:hover .service_image {
    transform: scale(1.08);
}

.service_card_title {
    font-size: 1.5rem;
    margin-bottom: 17px;
    color: var(--deep-ember);
}

.service_description {
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.6;
}

/* CTA Section */
.cta_engagement_area {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--crimson-flame), var(--deep-ember));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta_engagement_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="white" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.cta_content_wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta_primary_heading {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: white;
}

.cta_supporting_text {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta_primary_button {
    padding: 21px 44px;
    background: white;
    color: var(--crimson-flame);
    text-decoration: none;
    border-radius: 55px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.2);
}

.cta_primary_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.3);
    background: var(--twilight-mist);
}

/* Proceso */
.process_methodology_area {
    padding: 144px 0;
    background: var(--soft-blush);
}

.process_steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 55px;
}

.process_step_item {
    text-align: center;
    position: relative;
    padding: 34px;
    background: white;
    border-radius: 21px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process_step_item:hover {
    transform: translateY(-5px);
}

.step_number_indicator {
    width: 89px;
    height: 89px;
    background: var(--crimson-flame);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 21px;
    position: relative;
    overflow: hidden;
}

.step_number_indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.process_step_item:hover .step_number_indicator::before {
    left: 100%;
}

.step_title {
    font-size: 1.4rem;
    margin-bottom: 17px;
    color: var(--deep-ember);
}

.step_description {
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.6;
}

/* Contacto */
.contact_form_area {
    padding: 144px 0;
    background: var(--twilight-mist);
}

.contact_layout_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 89px;
    align-items: start;
}

.contact_section_title {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-ember);
}

.contact_intro_text {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--charcoal-depth);
    opacity: 0.85;
}

.contact_details_list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact_detail_item {
    padding: 17px;
    background: white;
    border-radius: 13px;
    border-left: 5px solid var(--crimson-flame);
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.contact_detail_item strong {
    display: block;
    color: var(--deep-ember);
    margin-bottom: 5px;
}

.contact_submission_form {
    background: white;
    padding: 44px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--soft-blush);
}

.form_field_group {
    margin-bottom: 27px;
}

.field_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal-depth);
}

.form_input_field,
.form_select_field,
.form_textarea_field {
    width: 100%;
    padding: 17px;
    border: 2px solid var(--soft-blush);
    border-radius: 13px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form_input_field:focus,
.form_select_field:focus,
.form_textarea_field:focus {
    outline: none;
    border-color: var(--crimson-flame);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    transform: scale(1.02);
}

.form_textarea_field {
    resize: vertical;
    min-height: 120px;
}

.form_submit_button {
    width: 100%;
    padding: 21px;
    background: var(--crimson-flame);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form_submit_button:hover {
    background: var(--deep-ember);
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(230, 57, 70, 0.3);
}

/* Footer */
.footer_main_area {
    background: var(--charcoal-depth);
    color: white;
    padding: 89px 0 34px;
}

.footer_content_layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 55px;
    margin-bottom: 55px;
}

.footer_logo_image {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 21px;
}

.footer_brand_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer_section_heading {
    font-size: 1.3rem;
    margin-bottom: 21px;
    color: white;
}

.footer_nav_links,
.footer_legal_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer_link:hover {
    color: var(--crimson-flame);
}

.footer_contact_info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer_bottom_bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 34px;
    text-align: center;
}

.footer_copyright_text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-55px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(55px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    from {
        transform: translateX(-100px);
    }
    to {
        transform: translateX(calc(100vw + 100px));
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .container_fluid {
        max-width: 1200px;
        padding: 0 27px;
    }

    .hero_primary_title {
        font-size: 3.2rem;
    }
}

@media (max-width: 890px) {
    .hero_content_layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero_primary_title {
        font-size: 2.8rem;
    }

    .cta_content_wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .contact_layout_wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer_content_layout {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .process_steps_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    .container_fluid {
        padding: 0 21px;
    }

    .hero_showcase_area {
        padding: 120px 0 55px;
    }

    .hero_primary_title {
        font-size: 2.2rem;
    }

    .hero_action_buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary_action_btn,
    .secondary_action_btn {
        text-align: center;
    }

    .services_grid_layout {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .service_feature_card {
        padding: 21px;
    }

    .contact_submission_form {
        padding: 27px;
    }

    .section_main_title {
        font-size: 2.2rem;
    }

    .services_showcase_area,
    .process_methodology_area,
    .contact_form_area {
        padding: 89px 0;
    }

    .cta_engagement_area {
        padding: 55px 0;
    }
}

/* Imperfecciones humanas sutiles */
.navbar {
    padding: 13px 0; /* Inconsistencia sutil */
}

.hero_showcase_area {
    padding: 144px 0 89px; /* Valores no estándar */
}

.service_feature_card {
    border: 3px solid var(--soft-blush); /* Grosor inusual */
}

/* Comentarios de desarrollador cansado */
/* TODO: optimizar este margin más tarde */
.footer_content_layout {
    margin-bottom: 55px;
}

/* Spacing personalizado no estándar */
.section_header_block {
    margin-bottom: 89px; /* No es múltiplo de 8 */
}

.form_field_group {
    margin-bottom: 27px; /* Valor peculiar */
}

.cta_text_block p {
    color: #fff;
}

/* === ABOUT PAGE STYLES === */

/* About Hero Section */
.about_hero_area {
    padding: 164px 0 89px;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--twilight-mist) 100%);
    text-align: center;
}

.about_hero_content {
    max-width: 890px;
    margin: 0 auto;
}

.about_main_title {
    font-size: 3.2rem;
    margin-bottom: 27px;
    background: linear-gradient(135deg, var(--crimson-flame), var(--deep-ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about_hero_description {
    font-size: 1.3rem;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.7;
}

/* Company Story Section */
.company_story_area {
    padding: 144px 0;
    background: white;
}

.story_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 89px;
    align-items: center;
}

.story_section_title {
    font-size: 2.5rem;
    margin-bottom: 34px;
    color: var(--deep-ember);
}

.story_paragraph {
    margin-bottom: 21px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal-depth);
}

.story_featured_image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 17px 44px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story_featured_image:hover {
    transform: scale(1.03);
}

/* Company Values Section */
.company_values_area {
    padding: 144px 0;
    background: var(--soft-blush);
}

.values_header {
    text-align: center;
    margin-bottom: 89px;
}

.values_main_title {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--deep-ember);
}

.values_intro_text {
    font-size: 1.2rem;
    color: var(--charcoal-depth);
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

.values_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.value_item_card {
    background: white;
    padding: 34px;
    border-radius: 21px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--twilight-mist);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value_item_card:hover {
    transform: translateY(-8px);
    border-color: var(--crimson-flame);
    box-shadow: 0 17px 44px rgba(0, 0, 0, 0.15);
}

.value_card_title {
    font-size: 1.5rem;
    margin-bottom: 17px;
    color: var(--deep-ember);
}

.value_description {
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.6;
}

/* Methodology Section */
.methodology_showcase_area {
    padding: 144px 0;
    background: white;
}

.methodology_content_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 89px;
    align-items: center;
}

.methodology_image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 17px 44px rgba(0, 0, 0, 0.12);
}

.methodology_section_title {
    font-size: 2.5rem;
    margin-bottom: 27px;
    color: var(--deep-ember);
}

.methodology_description {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.7;
}

.methodology_features_list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.feature_item {
    padding: 21px;
    background: var(--soft-blush);
    border-radius: 13px;
    border-left: 5px solid var(--crimson-flame);
}

.feature_title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--deep-ember);
}

.feature_text {
    color: var(--charcoal-depth);
    opacity: 0.85;
    margin-bottom: 0;
}

/* International Experience Section */
.international_experience_area {
    padding: 144px 0;
    background: linear-gradient(135deg, var(--crimson-flame), var(--deep-ember));
    color: white;
    text-align: center;
}

.experience_header {
    margin-bottom: 89px;
}

.experience_main_title {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: white;
}

.experience_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

.experience_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 55px;
}

.stat_item {
    text-align: center;
}

.stat_number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 13px;
    font-family: 'Helvetica Neue', sans-serif;
}

.stat_label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Specialization Sectors */
.specialization_sectors_area {
    padding: 144px 0;
    background: var(--twilight-mist);
}

.sectors_header {
    text-align: center;
    margin-bottom: 89px;
}

.sectors_main_title {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--deep-ember);
}

.sectors_intro_text {
    font-size: 1.2rem;
    color: var(--charcoal-depth);
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

.sectors_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 55px;
}

.sector_card {
    background: white;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector_card:hover {
    transform: translateY(-8px);
}

.sector_image_wrapper {
    overflow: hidden;
}

.sector_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector_card:hover .sector_image {
    transform: scale(1.08);
}

.sector_title {
    font-size: 1.5rem;
    margin: 27px 34px 17px;
    color: var(--deep-ember);
}

.sector_description {
    margin: 0 34px 34px;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.6;
}

/* === THANK YOU PAGE STYLES === */

/* Thank You Hero Section */
.thankyou_hero_area {
    padding: 164px 0 89px;
    background: linear-gradient(135deg, var(--twilight-mist) 0%, var(--soft-blush) 100%);
}

.thankyou_content_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 89px;
    align-items: center;
}

.thankyou_hero_image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.thankyou_main_title {
    font-size: 3.2rem;
    margin-bottom: 27px;
    background: linear-gradient(135deg, var(--crimson-flame), var(--deep-ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankyou_main_description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.7;
}

.thankyou_next_steps {
    background: white;
    padding: 27px;
    border-radius: 17px;
    border-left: 5px solid var(--crimson-flame);
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
}

.next_steps_title {
    font-size: 1.4rem;
    margin-bottom: 17px;
    color: var(--deep-ember);
}

.steps_list {
    list-style: none;
    padding: 0;
}

.step_item {
    padding: 8px 0;
    position: relative;
    padding-left: 27px;
    color: var(--charcoal-depth);
    opacity: 0.85;
}

.step_item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--crimson-flame);
    font-weight: 700;
}

/* Meanwhile Content Section */
.meanwhile_content_area {
    padding: 144px 0;
    background: white;
}

.meanwhile_header {
    text-align: center;
    margin-bottom: 89px;
}

.meanwhile_title {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--deep-ember);
}

.meanwhile_subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-depth);
    opacity: 0.8;
}

.meanwhile_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 44px;
}

.meanwhile_card {
    background: white;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--soft-blush);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.meanwhile_card:hover {
    transform: translateY(-8px);
    border-color: var(--crimson-flame);
    box-shadow: 0 17px 44px rgba(0, 0, 0, 0.15);
}

.card_visual_wrapper {
    overflow: hidden;
}

.meanwhile_card_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.meanwhile_card:hover .meanwhile_card_image {
    transform: scale(1.08);
}

.card_title {
    font-size: 1.4rem;
    margin: 27px 27px 17px;
    color: var(--deep-ember);
}

.card_description {
    margin: 0 27px 21px;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.6;
}

.card_action_link {
    display: inline-block;
    margin: 0 27px 27px;
    padding: 13px 27px;
    background: var(--crimson-flame);
    color: white;
    text-decoration: none;
    border-radius: 27px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card_action_link:hover {
    background: var(--deep-ember);
    transform: translateY(-2px);
}

/* Confirmation Details Section */
.confirmation_details_area {
    padding: 144px 0;
    background: var(--soft-blush);
}

.confirmation_info_wrapper {
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}

.confirmation_title {
    font-size: 2.5rem;
    margin-bottom: 34px;
    color: var(--deep-ember);
}

.confirmation_message {
    background: white;
    padding: 44px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.confirmation_text {
    font-size: 1.1rem;
    margin-bottom: 44px;
    color: var(--charcoal-depth);
    opacity: 0.85;
    line-height: 1.7;
}

.response_timeline {
    display: flex;
    justify-content: space-between;
    gap: 34px;
}

.timeline_item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline_marker {
    width: 21px;
    height: 21px;
    background: var(--crimson-flame);
    border-radius: 50%;
    margin: 0 auto 17px;
    position: relative;
}

.timeline_marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 89px;
    height: 2px;
    background: var(--crimson-flame);
    opacity: 0.3;
}

.timeline_item:last-child .timeline_marker::after {
    display: none;
}

.timeline_title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--deep-ember);
}

.timeline_description {
    color: var(--charcoal-depth);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Responsive Design for About and Thank You Pages */
@media (max-width: 890px) {
    .story_content_layout,
    .methodology_content_wrapper,
    .thankyou_content_wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about_main_title,
    .thankyou_main_title {
        font-size: 2.8rem;
    }

    .response_timeline {
        flex-direction: column;
        gap: 27px;
    }

    .timeline_marker::after {
        display: none;
    }

    .experience_stats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }

    .sectors_grid_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    .about_main_title,
    .thankyou_main_title {
        font-size: 2.2rem;
    }

    .about_hero_area,
    .thankyou_hero_area {
        padding: 120px 0 55px;
    }

    .company_story_area,
    .company_values_area,
    .methodology_showcase_area,
    .international_experience_area,
    .specialization_sectors_area,
    .meanwhile_content_area,
    .confirmation_details_area {
        padding: 89px 0;
    }

    .confirmation_message {
        padding: 27px;
    }

    .experience_stats_grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .stat_number {
        font-size: 2.8rem;
    }

    .values_grid_layout,
    .meanwhile_cards_grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .value_item_card {
        padding: 27px;
    }
}

.sectors_intro_text {
    color: #fff;
}