﻿/* ==========================================
   About Us Page
   Main Color: #309a63
========================================== */

#about {
    margin: 0;
    padding: 0;
    color: #596760;
}

#about * {
    box-sizing: border-box;
}

#about img {
    display: block;
    max-width: 100%;
}

#about a {
    text-decoration: none;
}


/* ==========================================
   Common
========================================== */

.about-section {
    position: relative;
    padding: 90px 0;
}

.about-section-heading {
    margin-bottom: 40px;
}

.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #309a63;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.about-section-label i {
    font-size: 16px;
}

.about-section-heading h2 {
    max-width: 720px;
    margin: 15px 0 0;
    color: #17251e;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-section-heading > p {
    max-width: 740px;
    margin: 19px 0 0;
    color: #647169;
    font-size: 16px;
    line-height: 1.9;
}

.about-heading-center {
    max-width: 850px;
    margin-right: auto;
    margin-bottom: 52px;
    margin-left: auto;
    text-align: center;
}

.about-heading-center h2,
.about-heading-center > p {
    margin-right: auto;
    margin-left: auto;
}


/* ==========================================
   Buttons
========================================== */

.about-btn {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 25px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn-primary {
    color: #ffffff;
    background-color: #309a63;
    box-shadow: 0 12px 30px rgba(48, 154, 99, 0.3);
}

.about-btn-primary:hover {
    color: #ffffff;
    background-color: #267e50;
    box-shadow: 0 16px 34px rgba(48, 154, 99, 0.38);
}

.about-btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.07);
}

.about-btn-outline:hover {
    color: #267e50;
    border-color: #ffffff;
    background-color: #ffffff;
}

.about-btn-white {
    color: #267e50;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-btn-white:hover {
    color: #1d6841;
    background-color: #f5fffa;
}


/* ==========================================
   About Hero
========================================== */

.about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    overflow: hidden;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(10, 39, 25, 0.95) 0%,
            rgba(15, 62, 39, 0.88) 48%,
            rgba(20, 83, 50, 0.38) 100%
        ),
        url("../images/about/about-banner.jpg") center center / cover no-repeat;
}

.about-hero::before {
    position: absolute;
    top: -200px;
    right: -130px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.about-hero::after {
    position: absolute;
    right: 120px;
    bottom: -310px;
    width: 650px;
    height: 650px;
    border: 100px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.about-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(48, 154, 99, 0.16),
            transparent 45%
        );
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 870px;
    padding: 50px 0;
}

.about-breadcrumb {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 22px;
}

.about-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
    color: #ffffff;
}

.about-breadcrumb > i {
    color: rgba(255, 255, 255, 0.4);
}

.about-hero-label {
    display: inline-flex;
    margin-bottom: 21px;
    padding: 8px 15px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(177, 239, 203, 0.32);
    border-radius: 50px;
    color: #d5f8e4;
    background-color: rgba(48, 154, 99, 0.24);
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 840px;
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -1.7px;
}

.about-hero-content > p {
    max-width: 750px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.85;
}

.about-hero-actions {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-features {
    display: grid;
    max-width: 1030px;
    margin-top: 58px;
    padding-top: 29px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-hero-feature {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 14px;
}

.about-hero-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #c9f5dc;
    background-color: rgba(255, 255, 255, 0.09);
    font-size: 19px;
}

.about-hero-feature-text {
    min-width: 0;
}

.about-hero-feature-text strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 23px;
}

.about-hero-feature-text span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 21px;
}


/* ==========================================
   Company Profile
========================================== */

.about-profile {
    overflow: hidden;
}

.about-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 75px;
}

.about-profile-media {
    position: relative;
    min-width: 0;
    padding: 0 28px 32px 0;
}

.about-profile-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(37, 90, 62, 0.15);
}

.about-profile-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-profile-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(15, 57, 36, 0.18)
        );
    content: "";
    pointer-events: none;
}

.about-profile-media::before {
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 78%;
    height: 82%;
    border: 2px solid rgba(48, 154, 99, 0.22);
    border-radius: 22px;
    content: "";
}

.about-profile-card {
    position: absolute;
    z-index: 4;
    right: -10px;
    bottom: 66px;
    display: flex;
    min-width: 290px;
    padding: 20px 22px;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(25, 75, 48, 0.17);
}

.about-profile-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background-color: #309a63;
    font-size: 21px;
}

.about-profile-card strong {
    display: block;
    color: #17251e;
    font-size: 16px;
    line-height: 23px;
}

.about-profile-card span {
    display: block;
    margin-top: 3px;
    color: #728077;
    font-size: 13px;
    line-height: 20px;
}

.about-profile-decoration {
    position: absolute;
    z-index: 3;
    top: 38px;
    left: -24px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 7px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #ffffff;
    background-color: #309a63;
    box-shadow: 0 15px 35px rgba(48, 154, 99, 0.28);
    font-size: 25px;
}

.about-profile-content {
    min-width: 0;
}

.about-profile-content .about-section-heading {
    margin-bottom: 26px;
}

.about-profile-lead {
    margin: 0 0 17px;
    color: #35443c;
    font-size: 18px;
    line-height: 1.85;
}

.about-profile-lead strong {
    color: #309a63;
}

.about-profile-content > p:not(.about-profile-lead) {
    margin: 0 0 17px;
    color: #647169;
    font-size: 16px;
    line-height: 1.9;
}

.about-profile-list {
    display: grid;
    margin-top: 27px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 22px;
}

.about-profile-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #35443c;
    font-size: 14px;
    line-height: 23px;
}

.about-profile-list-item i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #309a63;
    font-size: 17px;
}

.about-mission-box {
    display: flex;
    margin-top: 31px;
    padding: 23px 25px;
    align-items: flex-start;
    gap: 17px;
    border-left: 4px solid #309a63;
    border-radius: 0 12px 12px 0;
    background-color: #ffffff;
    box-shadow: 0 12px 34px rgba(37, 90, 62, 0.09);
}

.about-mission-icon {
    width: 42px;
    height: 42px;
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #309a63;
    background-color: rgba(48, 154, 99, 0.1);
    font-size: 17px;
}

.about-mission-content strong {
    display: block;
    margin-bottom: 6px;
    color: #17251e;
    font-size: 16px;
    line-height: 24px;
}

.about-mission-content p {
    margin: 0;
    color: #647169;
    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================
   Core Services
========================================== */

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-service-card {
    position: relative;
    overflow: hidden;
    padding: 31px 27px 29px;
    border: 1px solid rgba(48, 154, 99, 0.12);
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 12px 36px rgba(37, 90, 62, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #309a63;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.about-service-card:hover {
    border-color: rgba(48, 154, 99, 0.3);
    box-shadow: 0 20px 48px rgba(37, 90, 62, 0.13);
    transform: translateY(-7px);
}

.about-service-card:hover::before {
    transform: scaleX(1);
}

.about-service-top {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.about-service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #309a63;
    background-color: rgba(48, 154, 99, 0.1);
    font-size: 23px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    color: #ffffff;
    background-color: #309a63;
    transform: rotateY(180deg);
}

.about-service-number {
    color: rgba(48, 154, 99, 0.18);
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.about-service-card h3 {
    margin: 0 0 14px;
    color: #17251e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.about-service-card > p {
    min-height: 96px;
    margin: 0;
    color: #647169;
    font-size: 14px;
    line-height: 1.75;
}

.about-service-card ul {
    margin: 23px 0 0;
    padding: 21px 0 0;
    border-top: 1px solid #e5eee9;
    list-style: none;
}

.about-service-card li {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    gap: 9px;
    color: #4e5d55;
    font-size: 13px;
    line-height: 21px;
}

.about-service-card li:last-child {
    margin-bottom: 0;
}

.about-service-card li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: #309a63;
    font-size: 11px;
}


/* ==========================================
   Inventory Value
========================================== */

.about-value-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 72px;
}

.about-value-content {
    min-width: 0;
}

.about-value-content .about-section-heading {
    margin-bottom: 25px;
}

.about-value-description {
    margin: 0;
    color: #647169;
    font-size: 16px;
    line-height: 1.9;
}

.about-value-list {
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.about-value-item {
    display: flex;
    min-width: 0;
    padding: 21px;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(48, 154, 99, 0.12);
    border-radius: 13px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 90, 62, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-value-item:hover {
    border-color: rgba(48, 154, 99, 0.28);
    box-shadow: 0 16px 36px rgba(37, 90, 62, 0.11);
    transform: translateY(-4px);
}

.about-value-icon {
    width: 43px;
    height: 43px;
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #309a63;
    background-color: rgba(48, 154, 99, 0.1);
    font-size: 17px;
}

.about-value-text {
    min-width: 0;
}

.about-value-text h3 {
    margin: 0 0 7px;
    color: #17251e;
    font-size: 16px;
    line-height: 23px;
    font-weight: 700;
}

.about-value-text p {
    margin: 0;
    color: #6c7971;
    font-size: 13px;
    line-height: 1.7;
}

.about-value-media {
    position: relative;
    min-width: 0;
    padding: 0 0 34px 28px;
}

.about-value-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(37, 90, 62, 0.15);
}

.about-value-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.about-value-media::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 74%;
    border: 2px solid rgba(48, 154, 99, 0.22);
    border-radius: 22px;
    content: "";
}

.about-value-card {
    position: absolute;
    right: -12px;
    bottom: 68px;
    display: flex;
    max-width: 310px;
    padding: 20px 21px;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(25, 75, 48, 0.17);
}

.about-value-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #ffffff;
    background-color: #309a63;
    font-size: 21px;
}

.about-value-card p {
    margin: 0;
    color: #35443c;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}


/* ==========================================
   Customers
========================================== */

.about-customers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-customer-card {
    position: relative;
    overflow: hidden;
    min-height: 252px;
    padding: 30px 27px;
    border: 1px solid rgba(48, 154, 99, 0.12);
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 12px 36px rgba(37, 90, 62, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-customer-card::after {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 115px;
    height: 115px;
    border: 20px solid rgba(48, 154, 99, 0.045);
    border-radius: 50%;
    content: "";
}

.about-customer-card:hover {
    border-color: rgba(48, 154, 99, 0.3);
    box-shadow: 0 20px 48px rgba(37, 90, 62, 0.13);
    transform: translateY(-6px);
}

.about-customer-icon {
    width: 56px;
    height: 56px;
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #309a63;
    background-color: rgba(48, 154, 99, 0.1);
    font-size: 22px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.about-customer-card:hover .about-customer-icon {
    color: #ffffff;
    background-color: #309a63;
}

.about-customer-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #17251e;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.about-customer-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #647169;
    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================
   Process
========================================== */

.about-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-process-grid::before {
    position: absolute;
    z-index: 0;
    top: 56px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    border-top: 1px dashed rgba(48, 154, 99, 0.36);
    content: "";
}

.about-process-item {
    position: relative;
    z-index: 1;
    min-height: 280px;
    padding: 28px 25px;
    border: 1px solid rgba(48, 154, 99, 0.12);
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 12px 36px rgba(37, 90, 62, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-process-item:hover {
    border-color: rgba(48, 154, 99, 0.3);
    box-shadow: 0 20px 48px rgba(37, 90, 62, 0.13);
    transform: translateY(-6px);
}

.about-process-head {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.about-process-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: #309a63;
    box-shadow: 0 10px 26px rgba(48, 154, 99, 0.28);
    font-size: 21px;
}

.about-process-head > span {
    color: rgba(48, 154, 99, 0.2);
    font-size: 37px;
    line-height: 1;
    font-weight: 700;
}

.about-process-item h3 {
    margin: 0 0 13px;
    color: #17251e;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.about-process-item p {
    margin: 0;
    color: #647169;
    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================
   Advantages
========================================== */

.about-advantages-box {
    position: relative;
    overflow: hidden;
    display: grid;
    padding: 64px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 65px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #1e7047 0%,
            #309a63 58%,
            #36a86d 100%
        );
    box-shadow: 0 25px 60px rgba(30, 112, 71, 0.22);
}

.about-advantages-box::before {
    position: absolute;
    top: -230px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 90px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.about-advantages-box::after {
    position: absolute;
    left: 38%;
    bottom: -300px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.about-advantages-intro,
.about-advantages-grid {
    position: relative;
    z-index: 2;
}

.about-section-label-light {
    color: #c9f5dc;
}

.about-advantages-intro h2 {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 41px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.about-advantages-intro > p {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.85;
}

.about-advantages-intro .about-btn {
    margin-top: 29px;
}

.about-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-advantage-item {
    display: flex;
    min-height: 165px;
    padding: 24px;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.09);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.about-advantage-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.about-advantage-icon {
    width: 44px;
    height: 44px;
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #267e50;
    background-color: #ffffff;
    font-size: 17px;
}

.about-advantage-content {
    min-width: 0;
}

.about-advantage-content h3 {
    margin: 1px 0 8px;
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
}

.about-advantage-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================
   CTA
========================================== */

.about-cta {
    position: relative;
    padding: 0 0 90px;
}

.about-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    padding: 45px 50px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #237e4f 0%,
            #309a63 100%
        );
    box-shadow: 0 22px 55px rgba(35, 126, 79, 0.2);
}

.about-cta-box::before {
    position: absolute;
    top: -120px;
    right: 120px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.about-cta-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 29px;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.about-cta-content > span {
    display: block;
    margin-bottom: 6px;
    color: #ccf3dc;
    font-size: 13px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.about-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.35;
    font-weight: 700;
}

.about-cta-content p {
    max-width: 700px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.75;
}

.about-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.about-cta-link:hover {
    color: #ffffff;
}


/* ==========================================
   Responsive - 1200px
========================================== */

@media screen and (max-width: 1200px) {

    .about-hero h1 {
        font-size: 52px;
    }

    .about-profile-grid,
    .about-value-grid {
        gap: 50px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-service-card > p {
        min-height: auto;
    }

    .about-advantages-box {
        padding: 52px 45px;
        gap: 45px;
    }

    .about-advantages-intro h2 {
        font-size: 36px;
    }

}


/* ==========================================
   Responsive - 992px
========================================== */

@media screen and (max-width: 992px) {

    .about-section {
        padding: 75px 0;
    }

    .about-section-heading h2 {
        font-size: 36px;
    }

    .about-hero {
        min-height: 640px;
    }

    .about-hero-content {
        padding: 95px 0 70px;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .about-hero-features {
        gap: 18px;
    }

    .about-profile-grid,
    .about-value-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 52px;
    }

    .about-profile-media,
    .about-value-media {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-profile-image img {
        height: auto;
        aspect-ratio: 760 / 580;
    }

    .about-value-image img {
        height: auto;
        aspect-ratio: 760 / 620;
    }

    .about-customers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-process-grid::before {
        display: none;
    }

    .about-process-item {
        min-height: 250px;
    }

    .about-advantages-box {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-advantages-intro {
        max-width: 720px;
    }

    .about-cta-box {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .about-cta-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 102px;
    }

}


/* ==========================================
   Responsive - 768px
========================================== */

@media screen and (max-width: 768px) {

    .about-section {
        padding: 58px 0;
    }

    .about-section-heading {
        margin-bottom: 32px;
    }

    .about-section-heading h2 {
        margin-top: 12px;
        font-size: 30px;
        line-height: 1.3;
        letter-spacing: -0.4px;
    }

    .about-section-heading > p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-heading-center {
        margin-bottom: 38px;
    }

    .about-section-label {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .about-hero {
        min-height: auto;
        background-position: 62% center;
    }

    .about-hero::before,
    .about-hero::after {
        display: none;
    }

    .about-hero-content {
        padding: 80px 0 52px;
    }

    .about-breadcrumb {
        margin-bottom: 29px;
    }

    .about-hero-label {
        margin-bottom: 16px;
    }

    .about-hero h1 {
        font-size: 36px;
        line-height: 1.22;
        letter-spacing: -0.6px;
    }

    .about-hero-content > p {
        margin-top: 19px;
        font-size: 16px;
        line-height: 1.75;
    }

    .about-hero-actions {
        margin-top: 27px;
    }

    .about-hero-features {
        margin-top: 40px;
        padding-top: 24px;
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .about-hero-feature {
        align-items: center;
    }

    .about-profile-grid,
    .about-value-grid {
        gap: 42px;
    }

    .about-profile-media {
        padding: 0 18px 28px 0;
    }

    .about-profile-decoration {
        top: 24px;
        left: -8px;
        width: 56px;
        height: 56px;
        border-width: 5px;
        font-size: 20px;
    }

    .about-profile-card {
        right: 0;
        bottom: 44px;
        min-width: 250px;
        padding: 16px 17px;
    }

    .about-profile-card-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 18px;
    }

    .about-profile-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-mission-box {
        padding: 20px;
    }

    .about-services-grid,
    .about-customers-grid,
    .about-process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-customer-card,
    .about-process-item {
        min-height: auto;
    }

    .about-value-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-value-media {
        padding: 0 0 28px 18px;
    }

    .about-value-card {
        right: 0;
        bottom: 48px;
    }

    .about-advantages-box {
        padding: 38px 26px;
        gap: 34px;
        border-radius: 18px;
    }

    .about-advantages-intro h2 {
        font-size: 30px;
    }

    .about-advantages-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-advantage-item {
        min-height: auto;
    }

    .about-cta {
        padding-bottom: 60px;
    }

    .about-cta-box {
        padding: 34px 26px;
        grid-template-columns: minmax(0, 1fr);
        gap: 21px;
        border-radius: 17px;
    }

    .about-cta-icon {
        width: 61px;
        height: 61px;
        font-size: 24px;
    }

    .about-cta-content h2 {
        font-size: 25px;
    }

    .about-cta-actions {
        grid-column: auto;
        padding-left: 0;
    }

}


/* ==========================================
   Responsive - 480px
========================================== */

@media screen and (max-width: 480px) {

    .about-section {
        padding: 48px 0;
    }

    .about-section-heading h2 {
        font-size: 27px;
    }

    .about-hero {
        background-position: 68% center;
    }

    .about-hero-content {
        padding: 70px 0 45px;
    }

    .about-breadcrumb {
        margin-bottom: 24px;
        font-size: 13px;
    }

    .about-hero h1 {
        font-size: 31px;
    }

    .about-hero-content > p {
        font-size: 15px;
    }

    .about-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .about-hero-actions .about-btn {
        width: 100%;
    }

    .about-profile-media {
        padding: 0;
    }

    .about-profile-media::before {
        display: none;
    }

    .about-profile-image {
        border-radius: 16px;
    }

    .about-profile-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 24px);
        min-width: 0;
        margin: -28px auto 0;
    }

    .about-profile-decoration {
        top: 17px;
        left: 12px;
    }

    .about-profile-lead {
        font-size: 16px;
    }

    .about-mission-box {
        flex-direction: column;
    }

    .about-service-card,
    .about-customer-card,
    .about-process-item {
        padding: 25px 21px;
    }

    .about-value-media {
        padding: 0;
    }

    .about-value-media::before {
        display: none;
    }

    .about-value-image {
        border-radius: 16px;
    }

    .about-value-card {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        width: calc(100% - 24px);
        margin: -28px auto 0;
    }

    .about-advantages-box {
        padding: 31px 21px;
    }

    .about-advantages-intro h2 {
        font-size: 27px;
    }

    .about-advantage-item {
        padding: 20px;
    }

    .about-cta-box {
        padding: 29px 21px;
    }

    .about-cta-content h2 {
        font-size: 23px;
    }

    .about-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-actions .about-btn {
        width: 100%;
    }

    .about-cta-link {
        justify-content: center;
    }

}