﻿/* =========================================================
   About Us Page
   Primary Color: #f7b901
   Secondary Color: #0e5aa4
========================================================= */

#about,
#about * {
    box-sizing: border-box;
}


/* =========================================================
   Hero
========================================================= */

.about-hero {
    position: relative;
    width: 100%;
    padding: 76px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(247, 185, 1, 0.14), transparent 25%),
        radial-gradient(circle at 10% 82%, rgba(14, 90, 164, 0.10), transparent 27%),
        linear-gradient(135deg, #f4f8fc 0%, #ffffff 52%, #fffaf0 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(14, 90, 164, 0.10);
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: -140px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(247, 185, 1, 0.18);
    border-radius: 50%;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 490px;
    align-items: center;
    gap: 80px;
}

.about-hero-content {
    max-width: 760px;
}

.about-hero-label {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 19px;
    padding: 5px 15px;
    border: 1px solid rgba(247, 185, 1, 0.42);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.92);
    color: #0e5aa4;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.about-hero-content h1 {
    margin: 0;
    color: #10213a;
    font-size: 54px;
    line-height: 1.18;
    font-weight: 900;
}

.about-hero-content p {
    max-width: 700px;
    margin: 22px 0 0;
    color: #52677f;
    font-size: 17px;
    line-height: 1.85;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.about-hero-primary,
.about-hero-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-hero-primary {
    border: 1px solid #0e5aa4;
    background: #0e5aa4;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(14, 90, 164, 0.22);
}

.about-hero-primary:hover {
    border-color: #f7b901;
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(247, 185, 1, 0.25);
    transform: translateY(-2px);
}

.about-hero-secondary {
    border: 1px solid #cddbea;
    background: #ffffff;
    color: #0e5aa4;
}

.about-hero-secondary:hover {
    border-color: #0e5aa4;
    background: #eef6fd;
    color: #0e5aa4;
    transform: translateY(-2px);
}

/* =========================================================
   Hero Visual
========================================================= */

.about-hero-visual {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-hero-visual-main {
    position: relative;
    width: 100%;
    min-height: 300px;
    grid-column: 1 / -1;
    padding: 46px 34px 36px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 65px rgba(14, 90, 164, 0.16);
}

.about-hero-visual-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        #f7b901 0%,
        #f7b901 30%,
        #0e5aa4 100%
    );
}

.about-hero-visual-main::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -95px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(14, 90, 164, 0.05);
    pointer-events: none;
}

.about-hero-icon {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 22px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 16px 34px rgba(14, 90, 164, 0.23);
}

.about-hero-visual-main > strong {
    position: relative;
    z-index: 2;
    display: block;
    color: #14243b;
    font-size: 25px;
    line-height: 1.42;
    font-weight: 850;
}

.about-hero-visual-main > p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 14px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.about-hero-floating {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    width: 100%;
    min-width: 0;
    padding: 16px 12px;
    border: 1px solid #dce7f3;
    border-radius: 15px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 12px 28px rgba(14, 90, 164, 0.10);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-hero-floating:hover {
    border-color: rgba(247, 185, 1, 0.70);
    box-shadow: 0 16px 34px rgba(14, 90, 164, 0.16);
    transform: translateY(-3px);
}

.about-hero-floating strong {
    display: block;
    overflow: hidden;
    color: #0e5aa4;
    font-size: 24px;
    line-height: 31px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-hero-floating span {
    display: block;
    margin-top: 4px;
    color: #74859a;
    font-size: 11px;
    line-height: 18px;
}

.about-hero-floating-one,
.about-hero-floating-two,
.about-hero-floating-three {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
}

/* =========================================================
   Common Section Heading
========================================================= */

.about-section-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.about-section-heading > span,
.about-section-label {
    display: block;
    margin-bottom: 8px;
    color: #0e5aa4;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.about-section-heading h2 {
    margin: 0;
    color: #14243b;
    font-size: 37px;
    line-height: 1.38;
    font-weight: 850;
}

.about-section-heading p {
    margin: 16px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   Company Overview
========================================================= */

.about-overview {
    width: 100%;
    padding: 86px 0;
    background: #ffffff;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 74px;
}

.about-overview-left h2 {
    max-width: 720px;
    margin: 0;
    color: #14243b;
    font-size: 38px;
    line-height: 1.42;
    font-weight: 850;
}

.about-overview-left > p {
    margin: 18px 0 0;
    color: #5f6f84;
    font-size: 15px;
    line-height: 1.9;
}

.about-overview-signature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 27px;
    padding: 18px 20px;
    border: 1px solid rgba(247, 185, 1, 0.35);
    border-radius: 14px;
    background: #fffaf0;
}

.about-overview-signature > i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #0e5aa4;
    font-size: 24px;
}

.about-overview-signature strong {
    display: block;
    color: #14243b;
    font-size: 15px;
    line-height: 24px;
    font-weight: 750;
}

.about-overview-signature span {
    display: block;
    margin-top: 3px;
    color: #74859a;
    font-size: 13px;
    line-height: 21px;
}

.about-overview-right {
    min-width: 0;
}

.about-overview-card-main {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 22px;
    background:
        linear-gradient(145deg, #f3f8fd 0%, #ffffff 65%, #fffaf0 100%);
    box-shadow: 0 20px 48px rgba(14, 90, 164, 0.10);
}

.about-overview-card-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #0e5aa4 0%,
        #0e5aa4 70%,
        #f7b901 100%
    );
}

.about-overview-card-main > span {
    display: block;
    margin-bottom: 8px;
    color: #0e5aa4;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.about-overview-card-main h3 {
    margin: 0;
    color: #14243b;
    font-size: 25px;
    line-height: 1.45;
    font-weight: 800;
}

.about-overview-card-main > p {
    margin: 13px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.about-overview-card-main ul {
    margin: 22px 0 0;
    padding: 0;
}

.about-overview-card-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #44566c;
    font-size: 14px;
    line-height: 23px;
}

.about-overview-card-main ul li:last-child {
    margin-bottom: 0;
}

.about-overview-card-main ul li i {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 10px;
}

.about-overview-small-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.about-overview-small-card {
    padding: 20px;
    border: 1px solid #dce7f3;
    border-radius: 16px;
    background: #ffffff;
}

.about-overview-small-card i {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 11px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 16px;
}

.about-overview-small-card strong {
    display: block;
    color: #14243b;
    font-size: 15px;
    line-height: 23px;
    font-weight: 750;
}

.about-overview-small-card span {
    display: block;
    margin-top: 5px;
    color: #74859a;
    font-size: 12px;
    line-height: 20px;
}


/* =========================================================
   Statistics
========================================================= */

.about-statistics {
    width: 100%;
    padding: 0 0 82px;
    background: #ffffff;
}

.about-statistics-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 20px;
    background: #0e5aa4;
    box-shadow: 0 20px 46px rgba(14, 90, 164, 0.20);
}

.about-statistics-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.about-statistics-item:last-child {
    border-right: none;
}

.about-statistics-item > i {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.13);
    color: #f7b901;
    font-size: 21px;
}

.about-statistics-item strong {
    display: block;
    color: #ffffff;
    font-size: 26px;
    line-height: 33px;
    font-weight: 900;
}

.about-statistics-item span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 20px;
}


/* =========================================================
   Products
========================================================= */

.about-products {
    width: 100%;
    padding: 83px 0 90px;
    background: #f5f8fc;
}

.about-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 19px;
}

.about-product-card {
    position: relative;
    min-width: 0;
    min-height: 330px;
    padding: 28px 24px 25px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(14, 90, 164, 0.07);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-product-card:hover {
    border-color: #f7b901;
    box-shadow: 0 18px 40px rgba(14, 90, 164, 0.14);
    transform: translateY(-5px);
}

.about-product-card > span {
    position: absolute;
    top: 23px;
    right: 22px;
    color: rgba(14, 90, 164, 0.10);
    font-size: 42px;
    line-height: 48px;
    font-weight: 900;
}

.about-product-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 12px 25px rgba(14, 90, 164, 0.19);
}

.about-product-card h3 {
    margin: 0;
    color: #14243b;
    font-size: 19px;
    line-height: 28px;
    font-weight: 800;
}

.about-product-card p {
    min-height: 94px;
    margin: 12px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.8;
}

.about-product-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: #0e5aa4;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
}

.about-product-card > a:hover {
    color: #f7b901;
}


/* =========================================================
   Capabilities
========================================================= */

.about-capabilities {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    align-items: center;
    gap: 75px;
}

.about-capabilities-content h2 {
    max-width: 720px;
    margin: 0;
    color: #14243b;
    font-size: 38px;
    line-height: 1.42;
    font-weight: 850;
}

.about-capabilities-content > p {
    margin: 18px 0 0;
    color: #5f6f84;
    font-size: 15px;
    line-height: 1.9;
}

.about-capabilities-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 29px;
}

.about-capabilities-points > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid #dce7f3;
    border-radius: 14px;
    background: #f8fafc;
}

.about-capabilities-points > div > i {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 15px;
}

.about-capabilities-points section {
    min-width: 0;
}

.about-capabilities-points strong {
    display: block;
    color: #14243b;
    font-size: 14px;
    line-height: 22px;
    font-weight: 750;
}

.about-capabilities-points span {
    display: block;
    margin-top: 4px;
    color: #74859a;
    font-size: 12px;
    line-height: 19px;
}

.about-capabilities-panel {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border-radius: 24px;
    background: #0e5aa4;
    box-shadow: 0 24px 58px rgba(14, 90, 164, 0.23);
}

.about-capabilities-panel::before {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -115px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-capabilities-panel-head {
    position: relative;
    z-index: 2;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-capabilities-panel-head > span {
    display: block;
    color: #f7b901;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.about-capabilities-panel-head > strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.42;
    font-weight: 850;
}

.about-capabilities-panel-head > p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.75;
}

.about-capabilities-process {
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

.about-capabilities-step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.about-capabilities-step:last-child {
    margin-bottom: 0;
}

.about-capabilities-step em {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: #f7b901;
    font-size: 13px;
    line-height: 42px;
    font-weight: 800;
    font-style: normal;
}

.about-capabilities-step strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 750;
}

.about-capabilities-step span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 19px;
}


/* =========================================================
   Services
========================================================= */

.about-services {
    width: 100%;
    padding: 85px 0 92px;
    background: #f5f8fc;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-service-card {
    position: relative;
    min-width: 0;
    padding: 31px 28px 29px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 13px 34px rgba(14, 90, 164, 0.07);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-service-card:hover {
    border-color: #f7b901;
    box-shadow: 0 20px 44px rgba(14, 90, 164, 0.14);
    transform: translateY(-5px);
}

.about-service-number {
    position: absolute;
    top: 20px;
    right: 21px;
    color: rgba(14, 90, 164, 0.10);
    font-size: 44px;
    line-height: 50px;
    font-weight: 900;
}

.about-service-icon {
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 17px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 24px;
}

.about-service-card h3 {
    margin: 0;
    color: #14243b;
    font-size: 21px;
    line-height: 30px;
    font-weight: 800;
}

.about-service-card > p {
    min-height: 77px;
    margin: 12px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.8;
}

.about-service-card ul {
    margin: 21px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e3eaf2;
}

.about-service-card ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 17px;
    color: #52677f;
    font-size: 13px;
    line-height: 21px;
}

.about-service-card ul li:last-child {
    margin-bottom: 0;
}

.about-service-card ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f7b901;
}


/* =========================================================
   Advantages
========================================================= */

.about-advantages {
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.about-advantages-inner {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    align-items: start;
    gap: 70px;
}

.about-advantages-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #0e5aa4;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.about-advantages-heading h2 {
    margin: 0;
    color: #14243b;
    font-size: 35px;
    line-height: 1.42;
    font-weight: 850;
}

.about-advantages-heading p {
    margin: 16px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.about-advantages-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-advantage-item {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 21px;
    border: 1px solid #dce7f3;
    border-radius: 15px;
    background: #f9fbfd;
}

.about-advantage-item > i {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0e5aa4;
    color: #ffffff;
    font-size: 17px;
}

.about-advantage-item strong {
    display: block;
    color: #14243b;
    font-size: 15px;
    line-height: 23px;
    font-weight: 750;
}

.about-advantage-item span {
    display: block;
    margin-top: 4px;
    color: #74859a;
    font-size: 12px;
    line-height: 20px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    width: 100%;
    padding: 0 0 84px;
    background: #ffffff;
}

.about-cta-inner {
    position: relative;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 47px 52px;
    overflow: hidden;
    border-radius: 24px;
    background: #0e5aa4;
    box-shadow: 0 24px 60px rgba(14, 90, 164, 0.24);
}

.about-cta-inner::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -80px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-cta-inner::after {
    content: "";
    position: absolute;
    right: 220px;
    bottom: -240px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.about-cta-content > span {
    display: block;
    margin-bottom: 7px;
    color: #f7b901;
    font-size: 11px;
    line-height: 19px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.about-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.4;
    font-weight: 850;
}

.about-cta-content p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.about-cta-actions {
    position: relative;
    z-index: 2;
    width: 235px;
    flex: 0 0 235px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.about-cta-primary,
.about-cta-secondary {
    width: 100%;
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 27px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-cta-primary {
    border: 1px solid #f7b901;
    background: #f7b901;
    color: #ffffff;
    box-shadow: 0 13px 27px rgba(0, 0, 0, 0.14);
}

.about-cta-primary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #0e5aa4;
    transform: translateY(-2px);
}

.about-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.about-cta-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   Mobile Layout
========================================================= */

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 0 58px;
    }

    .about-hero-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .about-hero-label {
        min-height: 29px;
        margin-bottom: 14px;
        padding: 4px 11px;
        font-size: 10px;
        line-height: 19px;
        letter-spacing: 0.8px;
    }

    .about-hero-content h1 {
        font-size: 38px;
        line-height: 1.25;
    }

    .about-hero-content p {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .about-hero-primary,
    .about-hero-secondary {
        width: 100%;
        min-height: 48px;
        padding: 10px 17px;
        font-size: 14px;
    }

    .about-hero-primary:hover,
    .about-hero-secondary:hover {
        transform: none;
    }

    .about-hero-visual {
        min-height: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
    }

    .about-hero-visual-main {
        width: 100%;
        min-height: 0;
        padding: 34px 22px 28px;
        border-radius: 20px;
    }

    .about-hero-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        border-radius: 18px;
        font-size: 28px;
    }

    .about-hero-visual-main > strong {
        font-size: 21px;
        line-height: 1.42;
    }

    .about-hero-visual-main > p {
        font-size: 13px;
        line-height: 1.75;
    }

    .about-hero-floating {
        min-width: 0;
        padding: 13px 6px;
        border-radius: 12px;
    }

    .about-hero-floating:hover {
        transform: none;
    }

    .about-hero-floating strong {
        font-size: 18px;
        line-height: 25px;
    }

    .about-hero-floating span {
        font-size: 10px;
        line-height: 16px;
    }

    .about-overview,
    .about-products,
    .about-capabilities,
    .about-services,
    .about-advantages {
        padding: 58px 0;
    }

    .about-overview-grid,
    .about-capabilities-grid,
    .about-advantages-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .about-overview-left h2,
    .about-capabilities-content h2 {
        font-size: 28px;
        line-height: 1.45;
    }

    .about-overview-left > p,
    .about-capabilities-content > p {
        font-size: 14px;
        line-height: 1.85;
    }

    .about-overview-card-main {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .about-overview-card-main h3 {
        font-size: 21px;
    }

    .about-overview-small-grid {
        grid-template-columns: 1fr;
    }

    .about-statistics {
        padding-bottom: 58px;
    }

    .about-statistics-inner {
        width: 94%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 17px;
    }

    .about-statistics-item {
        display: block;
        padding: 22px 17px;
        border-right: 1px solid rgba(255, 255, 255, 0.17);
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
        text-align: center;
    }

    .about-statistics-item:nth-child(2n) {
        border-right: none;
    }

    .about-statistics-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about-statistics-item > i {
        margin: 0 auto 11px;
    }

    .about-statistics-item strong {
        font-size: 22px;
    }

    .about-section-heading {
        width: 94%;
        margin-bottom: 29px;
    }

    .about-section-heading h2 {
        font-size: 28px;
        line-height: 1.45;
    }

    .about-section-heading p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .about-products-grid,
    .about-services-grid {
        width: 94%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-product-card {
        min-height: 0;
        padding: 25px 20px;
    }

    .about-product-card:hover,
    .about-service-card:hover {
        transform: none;
    }

    .about-product-card p,
    .about-service-card > p {
        min-height: 0;
    }

    .about-capabilities-points {
        grid-template-columns: 1fr;
    }

    .about-capabilities-panel {
        padding: 27px 21px;
        border-radius: 19px;
    }

    .about-capabilities-panel-head > strong {
        font-size: 22px;
    }

    .about-service-card {
        padding: 26px 21px;
        border-radius: 16px;
    }

    .about-advantages-heading h2 {
        font-size: 28px;
    }

    .about-advantages-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .about-advantage-item {
        padding: 17px;
    }

    .about-cta {
        padding-bottom: 58px;
    }

    .about-cta-inner {
        width: 94%;
        min-height: 0;
        display: block;
        padding: 37px 21px 25px;
        border-radius: 19px;
    }

    .about-cta-content h2 {
        font-size: 27px;
        line-height: 1.45;
    }

    .about-cta-actions {
        width: 100%;
        margin-top: 25px;
    }

    .about-cta-primary,
    .about-cta-secondary {
        min-height: 48px;
    }

    .about-cta-primary:hover,
    .about-cta-secondary:hover {
        transform: none;
    }
}