@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --ocean-depth: #073b4c;
    --mist-light: #e6ebee;
    --shadow-deep: #052633;
    --emerald-glow: #4db371;
    --emerald-soft: #a8e6c1;
    --amber-warm: #f39c12;
    --amber-gentle: #fdeaa7;
    --coral-bright: #e74c3c;
    --coral-whisper: #fadbd8;
    --slate-medium: #7f8c8d;
    --slate-pale: #ecf0f1;
    --info-tone: #3498db;
    --warning-alert: #e67e22;
    --success-confirm: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--shadow-deep);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--shadow-deep);
}

.primary_navigation {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 21px rgba(7, 59, 76, 0.08);
    border-bottom: 1px solid var(--mist-light);
}

.navigation_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 21px;
}

.navbar_structure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand_identity img {
    height: 42px;
    width: auto;
    transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand_identity:hover img {
    transform: scale(1.05);
}

.nav_toggle_input {
    display: none;
}

.nav_toggle_controller {
    display: none;
    cursor: pointer;
    padding: 13px;
    z-index: 2;
}

.hamburger_element {
    width: 28px;
    height: 3px;
    background: var(--shadow-deep);
    position: relative;
    transition: all 0.31s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 9999px;
}

.hamburger_element:before,
.hamburger_element:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--shadow-deep);
    transition: all 0.31s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 9999px;
}

.hamburger_element:before {
    top: -9px;
}

.hamburger_element:after {
    top: 9px;
}

.navigation_panel {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigation_list {
    display: flex;
    gap: 34px;
    list-style: none;
}

.navigation_item {
    list-style: none;
}

.navigation_link {
    color: var(--shadow-deep);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 21px;
    transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.navigation_link:hover {
    color: var(--ocean-depth);
    background: var(--mist-light);
    transform: translateY(-2px);
}

.hero_presentation_area {
    padding: 147px 21px 89px;
    background: linear-gradient(135deg, var(--mist-light) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero_content_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero_text_section {
    max-width: 580px;
}

.hero_primary_title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 34px;
    color: var(--shadow-deep);
}

.hero_description_text {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 42px;
    color: var(--slate-medium);
}

.hero_action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_action_button {
    background: var(--ocean-depth);
    color: #ffffff;
    padding: 17px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 34px rgba(7, 59, 76, 0.25);
    border: 2px solid var(--ocean-depth);
}

.primary_action_button:hover {
    background: transparent;
    color: var(--ocean-depth);
    transform: translateY(-3px);
    box-shadow: 0 13px 42px rgba(7, 59, 76, 0.35);
}

.secondary_action_button {
    background: transparent;
    color: var(--ocean-depth);
    padding: 17px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--ocean-depth);
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.secondary_action_button:hover {
    background: var(--ocean-depth);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero_visual_section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_demo_image {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 34px;
    box-shadow: 0 21px 89px rgba(7, 59, 76, 0.15);
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero_demo_image:hover {
    transform: scale(1.02) translateY(-8px);
}

.company_overview_segment {
    padding: 123px 21px;
    background: #ffffff;
}

.overview_content_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.overview_header_section {
    max-width: 680px;
    margin: 0 auto 89px;
}

.section_label {
    display: inline-block;
    background: var(--emerald-soft);
    color: var(--emerald-glow);
    padding: 8px 21px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 21px;
}

.section_main_heading {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--shadow-deep);
}

.section_description_paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-medium);
}

.statistics_display_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 42px;
    margin-top: 55px;
}

.stat_item_card {
    background: #ffffff;
    padding: 42px 28px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--mist-light);
}

.stat_item_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 89px rgba(7, 59, 76, 0.15);
}

.stat_number {
    font-size: 52px;
    font-weight: 800;
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.stat_label {
    font-size: 16px;
    color: var(--slate-medium);
    font-weight: 500;
}

.services_showcase_area {
    padding: 123px 21px;
    background: var(--mist-light);
}

.services_content_container {
    max-width: 1340px;
    margin: 0 auto;
}

.services_header_block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 89px;
}

.services_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 21px;
    color: var(--shadow-deep);
}

.services_subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-medium);
}

.services_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.service_card_item {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(7, 59, 76, 0.05);
}

.service_card_item:hover {
    transform: translateY(-13px);
    box-shadow: 0 28px 89px rgba(7, 59, 76, 0.18);
}

.service_visual_element {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service_visual_element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service_card_item:hover .service_visual_element img {
    transform: scale(1.08);
}

.service_content_area {
    padding: 34px 28px;
}

.service_card_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--shadow-deep);
}

.service_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 21px;
}

.service_price_label {
    display: inline-block;
    background: var(--emerald-glow);
    color: #ffffff;
    padding: 8px 17px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
}

.advantages_presentation_zone {
    padding: 123px 21px;
    background: #ffffff;
}

.advantages_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.advantages_main_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.advantages_grid_structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 42px;
}

.advantage_element {
    padding: 42px 28px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 8px 34px rgba(7, 59, 76, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--mist-light);
}

.advantage_element:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.12);
}

.advantage_heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--ocean-depth);
}

.advantage_text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.tools_interactive_section {
    padding: 123px 21px;
    background: var(--mist-light);
}

.tools_content_area {
    max-width: 1340px;
    margin: 0 auto;
}

.tools_section_title {
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.calculators_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 42px;
}

.calculator_panel, .newsletter_signup_panel {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 28px;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    border: 1px solid rgba(7, 59, 76, 0.05);
}

.calculator_title, .signup_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--shadow-deep);
}

.calculator_description, .signup_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 28px;
}

.calc_input_group {
    margin-bottom: 21px;
}

.calc_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--shadow-deep);
    font-size: 14px;
}

.calc_input {
    width: 100%;
    padding: 15px 21px;
    border: 2px solid var(--mist-light);
    border-radius: 21px;
    font-size: 16px;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #ffffff;
    color: var(--shadow-deep);
}

.calc_input:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(7, 59, 76, 0.1);
}

.calc_button {
    background: var(--ocean-depth);
    color: #ffffff;
    padding: 15px 34px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.calc_button:hover {
    background: var(--shadow-deep);
    transform: translateY(-2px);
}

.calc_result {
    margin-top: 21px;
    padding: 21px;
    background: var(--emerald-soft);
    border-radius: 17px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--emerald-glow);
}

.newsletter_form {
    display: flex;
    gap: 13px;
    margin-bottom: 17px;
}

.newsletter_input {
    flex: 1;
    padding: 15px 21px;
    border: 2px solid var(--mist-light);
    border-radius: 21px;
    font-size: 16px;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter_input:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(7, 59, 76, 0.1);
}

.newsletter_button {
    background: var(--emerald-glow);
    color: #ffffff;
    padding: 15px 28px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.newsletter_button:hover {
    background: var(--success-confirm);
    transform: translateY(-2px);
}

.newsletter_note {
    font-size: 14px;
    color: var(--slate-medium);
    text-align: center;
}

.pricing_plans_area {
    padding: 123px 21px;
    background: #ffffff;
}

.pricing_container {
    max-width: 1340px;
    margin: 0 auto;
}

.pricing_title {
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.pricing_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.pricing_card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 28px;
    border: 2px solid var(--mist-light);
    text-align: center;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.pricing_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.15);
}

.featured_plan {
    border-color: var(--ocean-depth);
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.12);
    transform: scale(1.05);
}

.featured_plan:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan_name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 21px;
    color: var(--shadow-deep);
}

.plan_price {
    margin-bottom: 34px;
}

.price_amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--ocean-depth);
}

.price_period {
    font-size: 16px;
    color: var(--slate-medium);
    font-weight: 500;
}

.plan_features {
    list-style: none;
    margin-bottom: 34px;
}

.feature_item {
    padding: 13px 0;
    border-bottom: 1px solid var(--mist-light);
    color: var(--shadow-deep);
    font-size: 15px;
    position: relative;
    padding-left: 28px;
}

.feature_item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-glow);
    font-weight: 700;
}

.feature_unavailable {
    padding: 13px 0;
    border-bottom: 1px solid var(--mist-light);
    color: var(--slate-medium);
    font-size: 15px;
    text-decoration: line-through;
    position: relative;
    padding-left: 28px;
}

.feature_unavailable:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--coral-bright);
    font-weight: 700;
}

.plan_button {
    display: inline-block;
    padding: 17px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    text-align: center;
}

.primary_plan_btn {
    background: var(--ocean-depth);
    color: #ffffff;
    border: 2px solid var(--ocean-depth);
}

.primary_plan_btn:hover {
    background: transparent;
    color: var(--ocean-depth);
    transform: translateY(-2px);
}

.secondary_plan_btn {
    background: transparent;
    color: var(--ocean-depth);
    border: 2px solid var(--ocean-depth);
}

.secondary_plan_btn:hover {
    background: var(--ocean-depth);
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonials_showcase {
    padding: 123px 21px;
    background: var(--mist-light);
}

.testimonials_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.testimonials_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.testimonials_carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 42px;
}

.testimonial_item {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 28px;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(7, 59, 76, 0.05);
}

.testimonial_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.15);
}

.testimonial_quote {
    margin-bottom: 28px;
}

.testimonial_quote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--shadow-deep);
    font-family: 'Georgia', serif;
}

.testimonial_author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.author_image {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mist-light);
}

.author_name {
    font-size: 18px;
    font-weight: 700;
    color: var(--shadow-deep);
    margin-bottom: 4px;
}

.author_title {
    font-size: 14px;
    color: var(--slate-medium);
}

.contact_information_area {
    padding: 123px 21px;
    background: #ffffff;
}

.contact_content_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: start;
}

.contact_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 42px;
    color: var(--shadow-deep);
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact_item {
    background: var(--mist-light);
    padding: 28px;
    border-radius: 21px;
}

.contact_label {
    font-size: 16px;
    font-weight: 700;
    color: var(--ocean-depth);
    margin-bottom: 8px;
}

.contact_value {
    font-size: 16px;
    line-height: 1.6;
    color: var(--shadow-deep);
}

.form_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--shadow-deep);
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form_group {
    display: flex;
    flex-direction: column;
}

.form_input, .form_textarea {
    padding: 17px 21px;
    border: 2px solid var(--mist-light);
    border-radius: 17px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #ffffff;
    color: var(--shadow-deep);
}

.form_input:focus, .form_textarea:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(7, 59, 76, 0.1);
}

.form_textarea {
    resize: vertical;
    min-height: 140px;
}

.form_submit_button {
    background: var(--ocean-depth);
    color: #ffffff;
    padding: 17px 34px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form_submit_button:hover {
    background: var(--shadow-deep);
    transform: translateY(-2px);
}

.site_footer {
    background: var(--shadow-deep);
    padding: 89px 21px 21px;
    color: #ffffff;
}

.footer_content_area {
    max-width: 1340px;
    margin: 0 auto;
}

.footer_main_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 42px;
    margin-bottom: 55px;
}

.footer_brand_info {
    max-width: 320px;
}

.footer_logo {
    height: 42px;
    width: auto;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.footer_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--mist-light);
}

.footer_nav_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 21px;
    color: #ffffff;
}

.footer_nav_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer_nav_link {
    color: var(--mist-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer_nav_link:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer_contact_text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mist-light);
    margin-bottom: 13px;
}

.footer_bottom_section {
    border-top: 1px solid rgba(230, 235, 238, 0.2);
    padding-top: 34px;
}

.footer_disclaimer {
    margin-bottom: 21px;
}

.disclaimer_text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mist-light);
    background: rgba(7, 59, 76, 0.3);
    padding: 21px;
    border-radius: 17px;
    border-left: 4px solid var(--amber-warm);
}

.footer_copyright {
    text-align: center;
}

.copyright_text {
    font-size: 14px;
    color: var(--mist-light);
}

@media screen and (max-width: 640px) {
    .nav_toggle_controller {
        display: block;
    }

    .navigation_panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: all 0.31s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .navigation_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .navigation_item {
        width: 100%;
        text-align: center;
    }

    .navigation_link {
        display: inline-block;
        padding: 17px 34px;
        font-size: 18px;
        color: var(--shadow-deep);
        width: 100%;
    }

    .nav_toggle_input:checked ~ .navigation_panel {
        left: 0;
    }

    .nav_toggle_input:checked ~ .nav_toggle_controller .hamburger_element {
        background: transparent;
    }

    .nav_toggle_input:checked ~ .nav_toggle_controller .hamburger_element:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav_toggle_input:checked ~ .nav_toggle_controller .hamburger_element:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero_content_wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .hero_primary_title {
        font-size: 36px;
    }

    .section_main_heading, .services_title, .advantages_main_title, .tools_section_title, .pricing_title, .testimonials_title {
        font-size: 32px;
    }

    .contact_content_wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .newsletter_form {
        flex-direction: column;
    }

    .calculators_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 641px) and (max-width: 890px) {
    .hero_primary_title {
        font-size: 42px;
    }

    .section_main_heading, .services_title, .advantages_main_title, .tools_section_title, .pricing_title, .testimonials_title {
        font-size: 38px;
    }

    .navigation_panel {
        display: flex;
        align-items: center;
        gap: 21px;
    }

    .navigation_list {
        display: flex;
        gap: 21px;
    }
}

@media screen and (min-width: 891px) and (max-width: 1280px) {
    .hero_primary_title {
        font-size: 48px;
    }

    .section_main_heading, .services_title, .advantages_main_title, .tools_section_title, .pricing_title, .testimonials_title {
        font-size: 42px;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1600px) {
    .hero_primary_title {
        font-size: 58px;
    }

    .navigation_container {
        max-width: 1480px;
    }

    .hero_content_wrapper, .overview_content_wrapper, .services_content_container,
    .advantages_wrapper, .tools_content_area, .pricing_container, .testimonials_wrapper,
    .contact_content_wrapper, .footer_content_area {
        max-width: 1480px;
    }
}

@media screen and (min-width: 1601px) {
    .hero_primary_title {
        font-size: 62px;
    }

    .navigation_container {
        max-width: 1680px;
    }

    .hero_content_wrapper, .overview_content_wrapper, .services_content_container,
    .advantages_wrapper, .tools_content_area, .pricing_container, .testimonials_wrapper,
    .contact_content_wrapper, .footer_content_area {
        max-width: 1680px;
    }
}

.cookie_banner_overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--shadow-deep) 0%, var(--ocean-depth) 100%);
    backdrop-filter: blur(21px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -13px 55px rgba(7, 59, 76, 0.25);
    animation: cookieSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie_banner_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 21px;
}

.cookie_content_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    gap: 34px;
}

.cookie_text_section {
    flex: 1;
}

.cookie_title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cookie_description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mist-light);
    margin-bottom: 0;
    max-width: 680px;
}

.cookie_actions_section {
    display: flex;
    align-items: center;
    gap: 17px;
    flex-shrink: 0;
}

.cookie_info_link {
    color: var(--mist-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 17px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.cookie_info_link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.cookie_accept_button {
    background: linear-gradient(135deg, var(--emerald-glow) 0%, var(--success-confirm) 100%);
    color: #ffffff;
    border: none;
    padding: 13px 28px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(77, 179, 113, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cookie_accept_button: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;
}

.cookie_accept_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 42px rgba(77, 179, 113, 0.4);
    background: linear-gradient(135deg, var(--success-confirm) 0%, var(--emerald-glow) 100%);
}

.cookie_accept_button:hover:before {
    left: 100%;
}

.cookie_accept_button:active {
    transform: translateY(-1px);
}

@media screen and (max-width: 640px) {
    .cookie_content_area {
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
        padding: 21px 0;
    }

    .cookie_actions_section {
        width: 100%;
        justify-content: space-between;
    }

    .cookie_accept_button {
        flex: 1;
        padding: 15px 21px;
    }

    .cookie_description {
        font-size: 14px;
    }
}

@media screen and (min-width: 641px) and (max-width: 890px) {
    .cookie_content_area {
        gap: 28px;
    }

    .cookie_description {
        max-width: 500px;
    }
}

.about_hero_section {
    padding: 147px 21px 89px;
    background: linear-gradient(135deg, var(--mist-light) 0%, #ffffff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about_hero_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about_hero_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 21px;
    color: var(--shadow-deep);
}

.about_hero_subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.about_hero_image {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 34px;
    box-shadow: 0 21px 89px rgba(7, 59, 76, 0.15);
}

.company_history_section {
    padding: 123px 21px;
    background: #ffffff;
}

.history_content_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.history_label {
    display: inline-block;
    background: var(--amber-gentle);
    color: var(--amber-warm);
    padding: 8px 21px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 21px;
}

.history_heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 42px;
    color: var(--shadow-deep);
}

.timeline_item {
    display: flex;
    gap: 28px;
    margin-bottom: 42px;
    align-items: flex-start;
}

.timeline_year {
    background: var(--ocean-depth);
    color: #ffffff;
    padding: 13px 21px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.timeline_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--shadow-deep);
}

.timeline_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.history_image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.12);
}

.mission_values_section {
    padding: 123px 21px;
    background: var(--mist-light);
}

.mission_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.mission_main_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.mission_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.mission_card, .values_card, .vision_card {
    background: #ffffff;
    padding: 42px 28px;
    border-radius: 28px;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    border: 1px solid rgba(7, 59, 76, 0.05);
}

.mission_card:hover, .values_card:hover, .vision_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.15);
}

.mission_card_title, .values_card_title, .vision_card_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--ocean-depth);
}

.mission_card_text, .vision_card_text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.values_list {
    list-style: none;
    padding: 0;
}

.value_item {
    padding: 8px 0;
    color: var(--slate-medium);
    font-size: 16px;
    position: relative;
    padding-left: 28px;
}

.value_item:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--emerald-glow);
    font-weight: 700;
}

.team_showcase_section {
    padding: 123px 21px;
    background: #ffffff;
}

.team_content_area {
    max-width: 1340px;
    margin: 0 auto;
}

.team_section_title {
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 89px;
    color: var(--shadow-deep);
}

.team_members_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.team_member_card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border: 1px solid rgba(7, 59, 76, 0.05);
}

.team_member_card:hover {
    transform: translateY(-13px);
    box-shadow: 0 28px 89px rgba(7, 59, 76, 0.18);
}

.member_image_container {
    height: 280px;
    overflow: hidden;
}

.member_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team_member_card:hover .member_image {
    transform: scale(1.08);
}

.member_info {
    padding: 34px 28px;
}

.member_name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--shadow-deep);
}

.member_position {
    display: inline-block;
    background: var(--emerald-soft);
    color: var(--emerald-glow);
    padding: 4px 13px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 17px;
}

.member_description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.thankyou_main_section {
    padding: 147px 21px 89px;
    background: linear-gradient(135deg, var(--mist-light) 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou_content_wrapper {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.success_icon_container {
    margin-bottom: 34px;
}

.success_checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, var(--emerald-glow) 0%, var(--success-confirm) 100%);
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 13px 55px rgba(77, 179, 113, 0.3);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou_primary_title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 21px;
    color: var(--shadow-deep);
}

.thankyou_description {
    font-size: 19px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 68px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.next_steps_section {
    margin-bottom: 89px;
}

.next_steps_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 55px;
    color: var(--shadow-deep);
}

.steps_timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
    max-width: 1000px;
    margin: 0 auto;
}

.step_item {
    display: flex;
    gap: 21px;
    align-items: flex-start;
    text-align: left;
}

.step_number {
    width: 55px;
    height: 55px;
    background: var(--ocean-depth);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--shadow-deep);
}

.step_description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-medium);
}

.thankyou_actions_area {
    margin-bottom: 68px;
}

.actions_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 42px;
    color: var(--shadow-deep);
}

.action_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.action_card {
    background: #ffffff;
    padding: 28px;
    border-radius: 21px;
    box-shadow: 0 8px 34px rgba(7, 59, 76, 0.08);
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    border: 1px solid var(--mist-light);
}

.action_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 55px rgba(7, 59, 76, 0.15);
}

.action_card_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--shadow-deep);
}

.action_card_description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 17px;
}

.action_card_button {
    background: var(--ocean-depth);
    color: #ffffff;
    padding: 10px 21px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.action_card_button:hover {
    background: var(--shadow-deep);
    transform: translateY(-2px);
}

.contact_reminder_section {
    max-width: 520px;
    margin: 0 auto;
}

.reminder_card {
    background: var(--mist-light);
    padding: 34px 28px;
    border-radius: 21px;
    text-align: left;
}

.reminder_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--shadow-deep);
}

.reminder_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-medium);
    margin-bottom: 21px;
}

.reminder_contact_item {
    font-size: 15px;
    line-height: 1.6;
    color: var(--shadow-deep);
    margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
    .about_hero_wrapper, .history_content_wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .about_hero_title {
        font-size: 36px;
    }

    .timeline_item {
        flex-direction: column;
        gap: 17px;
        text-align: center;
    }

    .thankyou_primary_title {
        font-size: 36px;
    }

    .steps_timeline {
        grid-template-columns: 1fr;
    }

    .step_item {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}

/* Achievements Section */
.achievements_section {
    padding: 123px 21px;
    background: linear-gradient(135deg, var(--mist-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.achievements_section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(7, 59, 76, 0.03) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.achievements_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.achievements_title {
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 89px;
    color: var(--shadow-deep);
    position: relative;
}

.achievements_title:after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-glow) 0%, var(--amber-warm) 100%);
    border-radius: 9999px;
}

.achievements_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 68px;
    align-items: start;
}

.achievement_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.stat_achievement_card {
    background: #ffffff;
    padding: 42px 28px;
    border-radius: 34px;
    text-align: center;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    transition: all 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat_achievement_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-glow) 0%, var(--ocean-depth) 50%, var(--amber-warm) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat_achievement_card:hover {
    transform: translateY(-13px) scale(1.02);
    box-shadow: 0 28px 89px rgba(7, 59, 76, 0.18);
    border-color: var(--mist-light);
}

.stat_achievement_card:hover:before {
    transform: scaleX(1);
}

.achievement_number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ocean-depth);
    margin-bottom: 13px;
    line-height: 1;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--emerald-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement_label {
    font-size: 16px;
    color: var(--slate-medium);
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.awards_partnerships {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 28px;
    box-shadow: 0 13px 55px rgba(7, 59, 76, 0.08);
    border: 1px solid rgba(7, 59, 76, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.awards_partnerships:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.15);
}

.awards_heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--shadow-deep);
    position: relative;
    padding-bottom: 13px;
}

.awards_heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--emerald-glow);
    border-radius: 9999px;
}

.awards_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.award_item {
    padding: 17px 0;
    color: var(--slate-medium);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 34px;
    border-bottom: 1px solid var(--mist-light);
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award_item:last-child {
    border-bottom: none;
}

.award_item:before {
    content: '🏆';
    position: absolute;
    left: 0;
    top: 17px;
    font-size: 16px;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award_item:hover {
    color: var(--shadow-deep);
    padding-left: 42px;
}

.award_item:hover:before {
    transform: scale(1.2);
}

/* Technology & Methodology Section */
.technology_methodology_section {
    padding: 123px 21px;
    background: #ffffff;
    position: relative;
}

.tech_content_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.tech_section_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 55px;
    color: var(--shadow-deep);
    position: relative;
}

.tech_section_title:before {
    content: '';
    position: absolute;
    top: -21px;
    left: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--info-tone) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: techPulse 3s infinite;
}

@keyframes techPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.tech_features_grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.tech_feature_item {
    background: var(--mist-light);
    padding: 34px 28px;
    border-radius: 28px;
    transition: all 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech_feature_item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(7, 59, 76, 0.05), transparent);
    transition: left 0.6s ease;
}

.tech_feature_item:hover {
    background: #ffffff;
    border-color: var(--ocean-depth);
    transform: translateX(13px);
    box-shadow: 0 21px 68px rgba(7, 59, 76, 0.12);
}

.tech_feature_item:hover:before {
    left: 100%;
}

.tech_feature_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--ocean-depth);
    display: flex;
    align-items: center;
    gap: 13px;
}

.tech_feature_title:before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald-glow);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 13px var(--emerald-glow);
}

.tech_feature_description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-medium);
    margin-bottom: 0;
}

.tech_visual_area {
    position: relative;
}

.tech_image {
    width: 100%;
    height: auto;
    border-radius: 34px;
    box-shadow: 0 21px 89px rgba(7, 59, 76, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech_visual_area:hover .tech_image {
    transform: scale(1.02) rotate(1deg);
}

.tech_visual_area:after {
    content: '';
    position: absolute;
    top: -21px;
    right: -21px;
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, var(--amber-warm) 0%, var(--coral-bright) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-21px) rotate(180deg); }
}

/* Social Responsibility Section */
.social_responsibility_section {
    padding: 123px 21px;
    background: linear-gradient(135deg, var(--emerald-soft) 0%, var(--mist-light) 100%);
    position: relative;
}

.social_responsibility_section:before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 120%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(77, 179, 113, 0.08) 0%, transparent 60%);
    transform: rotate(8deg);
    pointer-events: none;
}

.social_wrapper {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social_title {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 89px;
    color: var(--shadow-deep);
    position: relative;
}

.social_title:before {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 34px;
    animation: socialBounce 2s infinite;
}

@keyframes socialBounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.social_initiatives_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.initiative_card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 34px;
    box-shadow: 0 13px 55px rgba(77, 179, 113, 0.12);
    transition: all 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.initiative_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--emerald-glow) 0%, var(--success-confirm) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.initiative_card:nth-child(1) {
    animation-delay: 0.1s;
}

.initiative_card:nth-child(2) {
    animation-delay: 0.2s;
}

.initiative_card:nth-child(3) {
    animation-delay: 0.3s;
}

.initiative_card:hover {
    transform: translateY(-13px) scale(1.02);
    box-shadow: 0 28px 89px rgba(77, 179, 113, 0.25);
    border-color: var(--emerald-glow);
}

.initiative_card:hover:before {
    transform: scaleX(1);
}

.initiative_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 21px;
    color: var(--shadow-deep);
    position: relative;
    padding-left: 28px;
}

.initiative_title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: var(--emerald-glow);
    border-radius: 50%;
    box-shadow: 0 0 21px rgba(77, 179, 113, 0.5);
}

.initiative_description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-medium);
    margin-bottom: 0;
    position: relative;
}

/* Responsive Design */
@media screen and (max-width: 640px) {
    .achievements_grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .achievement_stats {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .tech_content_wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .achievements_title, .tech_section_title, .social_title {
        font-size: 32px;
    }

    .achievement_number {
        font-size: 36px;
    }

    .social_initiatives_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media screen and (min-width: 641px) and (max-width: 890px) {
    .achievements_grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .achievement_stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .tech_content_wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .achievements_title, .tech_section_title, .social_title {
        font-size: 38px;
    }
}

@media screen and (min-width: 891px) and (max-width: 1280px) {
    .achievements_title, .tech_section_title, .social_title {
        font-size: 42px;
    }

    .tech_content_wrapper {
        gap: 55px;
    }

    .achievements_grid {
        gap: 55px;
    }
}