/* =========================================================
   SMARTCLASS GROUP ABOUT PAGE
   File: assets/css/about.css
========================================================= */

.about-page {
    overflow-x: hidden;
    color: #243b55;
}

.about-page .about-section {
    position: relative;
    padding: 95px 0;
}

.about-page .about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #087dc2;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.about-page .about-label::before {
    width: 27px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, #0876c1, #1bc1dc);
    border-radius: 10px;
}

.about-page .about-label-light {
    color: #79e3f6;
}

.about-page h2 {
    margin: 0;
    color: #102846;
    font-size: clamp(31px, 4vw, 47px);
    font-weight: 850;
    line-height: 1.17;
    letter-spacing: -1.2px;
}

.about-page .about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 13px 24px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    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-page .about-button:hover {
    transform: translateY(-2px);
}

.about-page .about-button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #07519f, #0b91cc);
    box-shadow: 0 12px 26px rgba(8, 80, 153, 0.23);
}

.about-page .about-button-primary:hover {
    box-shadow: 0 17px 32px rgba(8, 80, 153, 0.31);
}

.about-page .about-button-outline {
    color: #0a579d;
    background: #ffffff;
    border-color: #b9cfdf;
}

.about-page .about-button-outline:hover {
    color: #ffffff;
    background: #0a579d;
    border-color: #0a579d;
}

.about-page .about-button-light {
    color: #084b8d;
    background: #ffffff;
    box-shadow: 0 12px 27px rgba(0, 0, 0, 0.14);
}

.about-page .about-button-light:hover {
    background: #eafaff;
}

.about-page .about-button-transparent {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.7);
}

.about-page .about-button-transparent:hover {
    color: #07477f;
    background: #ffffff;
}

.about-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.about-section-heading .about-label {
    justify-content: center;
}

.about-section-heading p {
    margin: 17px auto 0;
    color: #697c90;
    font-size: 15px;
    line-height: 1.8;
}

.about-section-action {
    margin-top: 42px;
    text-align: center;
}


/* =========================================================
   PAGE BANNER
========================================================= */

.about-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
    color: #ffffff;
    background: #071d3a;
}

.about-banner-background {
    position: absolute;
    inset: 0;
}

.about-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 48, 0.96) 0%,
            rgba(5, 39, 79, 0.82) 48%,
            rgba(6, 40, 77, 0.38) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 21, 47, 0.35),
            transparent
        );
}

.about-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 55px;
    padding-bottom: 55px;
}

.about-banner-content > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: #76e4f7;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-banner-content > span::before {
    width: 28px;
    height: 3px;
    content: "";
    background: #37d5ef;
    border-radius: 10px;
}

.about-banner h1 {
    max-width: 750px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.about-banner-content > p {
    max-width: 640px;
    margin: 18px 0 0;
    color: #d2e2ef;
    font-size: 16px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    color: #91bad2;
    font-size: 11px;
    font-weight: 650;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb a:hover {
    color: #58dcf3;
}


/* =========================================================
   COMPANY INTRODUCTION
========================================================= */

.company-introduction {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(22, 183, 216, 0.07),
            transparent 25%
        ),
        #ffffff;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 80px;
}

.company-visual {
    position: relative;
    min-height: 590px;
    padding: 0 75px 70px 0;
}

.company-primary-image {
    position: relative;
    height: 535px;
    overflow: hidden;
    background: #dfe9f2;
    border-radius: 23px 5px 23px 5px;
    box-shadow: 0 24px 55px rgba(8, 47, 92, 0.17);
}

.company-primary-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        0deg,
        rgba(5, 38, 76, 0.22),
        transparent 55%
    );
}

.company-primary-image img,
.company-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.company-visual:hover .company-primary-image img {
    transform: scale(1.035);
}

.company-secondary-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 245px;
    height: 210px;
    overflow: hidden;
    background: #dfe9f2;
    border: 8px solid #ffffff;
    border-radius: 6px 18px 6px 18px;
    box-shadow: 0 18px 40px rgba(7, 43, 84, 0.18);
}

.company-highlight {
    position: absolute;
    bottom: 32px;
    left: -25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 165px;
    min-height: 115px;
    padding: 21px;
    color: #ffffff;
    background: linear-gradient(135deg, #074e98, #0e9ccc);
    border: 6px solid #ffffff;
    border-radius: 15px 4px 15px 4px;
    box-shadow: 0 16px 35px rgba(7, 69, 133, 0.24);
}

.company-highlight strong {
    margin-bottom: 7px;
    font-size: 28px;
    line-height: 1;
}

.company-highlight span {
    font-size: 12px;
    line-height: 1.45;
}

.company-content .company-lead {
    color: #3d5872;
    font-size: 17px;
    font-weight: 600;
}

.company-content > p {
    margin: 18px 0 0;
    color: #66798d;
    font-size: 14px;
    line-height: 1.85;
}

.company-feature-list {
    display: grid;
    gap: 17px;
    margin: 30px 0;
}

.company-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.company-feature > span {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    margin-top: 1px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: #0b91c8;
    border-radius: 50%;
    place-items: center;
    box-shadow: 0 7px 15px rgba(11, 145, 200, 0.21);
}

.company-feature strong,
.company-feature small {
    display: block;
}

.company-feature strong {
    margin-bottom: 5px;
    color: #173451;
    font-size: 14px;
}

.company-feature small {
    color: #738598;
    font-size: 12px;
    line-height: 1.55;
}

.company-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   PURPOSE
========================================================= */

.purpose-section {
    background: #f4f8fc;
}

.purpose-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.purpose-heading .about-label {
    justify-content: center;
}

.purpose-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    color: #687b8e;
    font-size: 15px;
    line-height: 1.8;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 25px;
}

.purpose-card {
    position: relative;
    min-height: 330px;
    padding: 34px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe8f1;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(10, 51, 94, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.purpose-card:hover {
    box-shadow: 0 23px 50px rgba(9, 61, 116, 0.13);
    transform: translateY(-7px);
}

.purpose-card-featured {
    color: #ffffff;
    background: linear-gradient(145deg, #073c76, #087fb9);
    border-color: transparent;
}

.purpose-icon {
    display: grid;
    width: 63px;
    height: 63px;
    margin-bottom: 24px;
    color: #087abe;
    font-size: 21px;
    font-weight: 900;
    background: #e8f8fd;
    border-radius: 16px;
    place-items: center;
}

.purpose-card-featured .purpose-icon {
    color: #064176;
    background: #8ce8f7;
}

.purpose-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: rgba(9, 80, 143, 0.09);
    font-size: 49px;
    font-weight: 900;
}

.purpose-card-featured .purpose-number {
    color: rgba(255, 255, 255, 0.1);
}

.purpose-card h3 {
    margin: 0 0 13px;
    color: #15314f;
    font-size: 22px;
}

.purpose-card-featured h3 {
    color: #ffffff;
}

.purpose-card p {
    margin: 0;
    color: #687b8e;
    font-size: 13px;
    line-height: 1.8;
}

.purpose-card-featured p {
    color: #cee2ef;
}


/* =========================================================
   CORE VALUES
========================================================= */

.values-section {
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 0 100%,
            rgba(20, 185, 219, 0.18),
            transparent 30%
        ),
        linear-gradient(125deg, #061b36, #093b6e);
}

.values-section::after {
    position: absolute;
    top: -150px;
    right: -120px;
    width: 410px;
    height: 410px;
    content: "";
    border: 65px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.values-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 75px;
}

.values-introduction {
    position: sticky;
    top: 115px;
}

.values-introduction h2 {
    color: #ffffff;
}

.values-introduction > p {
    margin: 20px 0 29px;
    color: #bacee1;
    font-size: 14px;
    line-height: 1.85;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.value-card {
    position: relative;
    min-height: 210px;
    padding: 27px 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    backdrop-filter: blur(8px);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-5px);
}

.value-number {
    display: block;
    margin-bottom: 24px;
    color: #53d9f1;
    font-size: 12px;
    font-weight: 900;
}

.value-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 18px;
}

.value-card p {
    margin: 0;
    color: #b7ccdf;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FOUNDER AND CEO
========================================================= */

.founder-section {
    background: #ffffff;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 80px;
}

.founder-photo {
    position: relative;
    max-width: 470px;
    padding: 0 25px 35px 0;
}

.founder-photo-frame {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: #e3ebf2;
    border-radius: 23px 5px 23px 5px;
    box-shadow: 0 24px 55px rgba(8, 47, 92, 0.17);
}

.founder-photo-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        0deg,
        rgba(4, 34, 68, 0.3),
        transparent 50%
    );
}

.founder-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    padding: 21px;
    color: #ffffff;
    background: linear-gradient(135deg, #07529e, #0c92c7);
    border: 7px solid #ffffff;
    border-radius: 13px 4px 13px 4px;
    box-shadow: 0 17px 38px rgba(7, 70, 135, 0.23);
}

.founder-name-card strong,
.founder-name-card span {
    display: block;
}

.founder-name-card strong {
    margin-bottom: 6px;
    font-size: 16px;
}

.founder-name-card span {
    color: #ccecf7;
    font-size: 11px;
}

.founder-content blockquote {
    position: relative;
    margin: 28px 0 24px;
    padding: 23px 25px 23px 28px;
    color: #28506f;
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.75;
    background: #eff8fc;
    border-left: 4px solid #0b95c8;
    border-radius: 0 10px 10px 0;
}

.founder-content > p {
    margin: 17px 0 0;
    color: #667a8f;
    font-size: 14px;
    line-height: 1.85;
}

.founder-signature {
    margin-top: 29px;
    padding-top: 22px;
    border-top: 1px solid #dfe8f1;
}

.founder-signature strong,
.founder-signature span {
    display: block;
}

.founder-signature strong {
    margin-bottom: 7px;
    color: #123353;
    font-size: 18px;
}

.founder-signature span {
    color: #73879b;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities-section {
    background: #f5f9fc;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.capability-card {
    min-height: 275px;
    padding: 29px 27px;
    background: #ffffff;
    border: 1px solid #dde7f0;
    border-radius: 14px;
    box-shadow: 0 10px 31px rgba(10, 50, 92, 0.055);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.capability-card:hover {
    border-color: #a8dcea;
    box-shadow: 0 22px 45px rgba(9, 63, 118, 0.12);
    transform: translateY(-6px);
}

.capability-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    color: #087bbd;
    font-size: 11px;
    font-weight: 900;
    background: linear-gradient(145deg, #ebf8fd, #dff2fa);
    border-radius: 15px;
    place-items: center;
}

.capability-card h3 {
    margin: 0 0 11px;
    color: #153150;
    font-size: 19px;
}

.capability-card p {
    margin: 0;
    color: #6c8094;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
    background: #ffffff;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 80px;
}

.approach-content {
    position: sticky;
    top: 115px;
}

.approach-content > p {
    margin: 20px 0 29px;
    color: #687d91;
    font-size: 14px;
    line-height: 1.85;
}

.approach-steps {
    position: relative;
    display: grid;
    gap: 18px;
}

.approach-steps::before {
    position: absolute;
    top: 38px;
    bottom: 38px;
    left: 28px;
    width: 2px;
    content: "";
    background: linear-gradient(
        #0c8bc4,
        #7de1ef
    );
}

.approach-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 24px 25px;
    background: #f7fafc;
    border: 1px solid #e0e8f0;
    border-radius: 13px;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.approach-step:hover {
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(10, 53, 98, 0.1);
    transform: translateX(5px);
}

.approach-step > span {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(145deg, #07529e, #0d9dcc);
    border: 6px solid #e9f5fa;
    border-radius: 50%;
    place-items: center;
}

.approach-step h3 {
    margin: 3px 0 8px;
    color: #163250;
    font-size: 17px;
}

.approach-step p {
    margin: 0;
    color: #6c8093;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-section {
    background: #f5f9fc;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.leadership-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dee8f1;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(10, 49, 90, 0.06);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.leadership-card:hover {
    box-shadow: 0 22px 45px rgba(9, 60, 113, 0.14);
    transform: translateY(-7px);
}

.leadership-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #e3ebf2;
}

.leadership-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        0deg,
        rgba(3, 29, 61, 0.5),
        transparent 48%
    );
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.leadership-card:hover .leadership-photo img {
    transform: scale(1.055);
}

.leadership-social {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 17px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(9px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.leadership-card:hover .leadership-social {
    opacity: 1;
    transform: translateY(0);
}

.leadership-social a {
    display: grid;
    width: 34px;
    height: 34px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    text-decoration: none;
    background: rgba(7, 82, 151, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    place-items: center;
}

.leadership-information {
    padding: 21px 20px 23px;
    text-align: center;
}

.leadership-information h3 {
    margin: 0 0 5px;
    color: #14304e;
    font-size: 17px;
}

.leadership-information > span {
    display: block;
    color: #0782bc;
    font-size: 11px;
    font-weight: 800;
}

.leadership-information small {
    display: block;
    margin-top: 4px;
    color: #8191a0;
    font-size: 9px;
}

.leadership-information p {
    margin: 13px 0 0;
    color: #748698;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   DIFFERENCE
========================================================= */

.difference-section {
    padding-top: 20px !important;
    background: #ffffff;
}

.difference-box {
    position: relative;
    padding: 62px 55px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(57, 215, 241, 0.25),
            transparent 28%
        ),
        linear-gradient(135deg, #073c76, #087caf);
    border-radius: 23px;
    box-shadow: 0 25px 58px rgba(7, 66, 127, 0.22);
}

.difference-box::after {
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    content: "";
    border: 50px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.difference-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 39px;
}

.difference-heading h2 {
    color: #ffffff;
}

.difference-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.difference-item {
    padding: 23px 21px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    backdrop-filter: blur(7px);
}

.difference-item > strong {
    display: block;
    margin-bottom: 23px;
    color: #6ce1f5;
    font-size: 11px;
}

.difference-item h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 16px;
}

.difference-item p {
    margin: 0;
    color: #c6dae9;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   FINAL CALL TO ACTION
========================================================= */

.about-cta {
    padding: 85px 0;
    color: #ffffff;
    background:
        linear-gradient(
            rgba(4, 28, 61, 0.9),
            rgba(5, 46, 88, 0.92)
        ),
        url("../images/backgrounds/about-cta.jpg")
        center / cover no-repeat;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-cta-content {
    max-width: 760px;
}

.about-cta-content > span {
    display: block;
    margin-bottom: 12px;
    color: #75e4f7;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-cta-content h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 45px);
}

.about-cta-content p {
    margin: 16px 0 0;
    color: #c7dbea;
    font-size: 14px;
    line-height: 1.75;
}

.about-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 11px;
    width: 195px;
}

.about-cta-actions .about-button {
    width: 100%;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal-about {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-about.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE: LARGE TABLET
========================================================= */

@media (max-width: 1100px) {
    .company-grid,
    .founder-grid,
    .approach-grid,
    .values-layout {
        gap: 50px;
    }

    .company-visual {
        padding-right: 50px;
    }

    .leadership-grid,
    .difference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */

@media (max-width: 1100px) {
    .about-page .about-section {
        padding: 75px 0;
    }

    .company-grid,
    .founder-grid,
    .approach-grid,
    .values-layout {
        grid-template-columns: 1fr;
    }

    .company-visual {
        max-width: 650px;
    }

    .company-content {
        order: -1;
    }

    .purpose-grid,
    .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-introduction,
    .approach-content {
        position: static;
    }

    .founder-photo {
        max-width: 530px;
        margin: 0 auto;
    }

    .about-cta-inner {
        display: block;
    }

    .about-cta-actions {
        flex-direction: row;
        width: auto;
        margin-top: 30px;
    }

    .about-cta-actions .about-button {
        width: auto;
    }
}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media (max-width: 820px) {
    .about-page .about-section {
        padding: 62px 0;
    }

    .about-page h2 {
        font-size: 31px;
        letter-spacing: -0.7px;
    }

    .about-banner {
        min-height: 350px;
    }

    .about-banner h1 {
        font-size: 42px;
    }

    .about-banner-content > p {
        font-size: 14px;
    }

    .company-visual {
        min-height: 470px;
        padding: 0 25px 50px 0;
    }

    .company-primary-image {
        height: 420px;
    }

    .company-secondary-image {
        width: 180px;
        height: 150px;
        border-width: 6px;
    }

    .company-highlight {
        bottom: 14px;
        left: -7px;
        width: 135px;
        min-height: 95px;
        padding: 16px;
        border-width: 5px;
    }

    .company-highlight strong {
        font-size: 23px;
    }

    .company-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .company-actions .about-button {
        width: 100%;
    }

    .purpose-grid,
    .capabilities-grid,
    .values-grid,
    .leadership-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: 300px;
    }

    .values-layout {
        gap: 45px;
    }

    .founder-photo-frame {
        height: 510px;
    }

    .founder-name-card {
        width: 205px;
    }

    .founder-content blockquote {
        padding: 20px;
        font-size: 16px;
    }

    .approach-steps::before {
        left: 24px;
    }

    .approach-step {
        gap: 15px;
        padding: 20px 17px;
    }

    .approach-step > span {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-width: 5px;
    }

    .leadership-photo {
        height: 400px;
    }

    .difference-section {
        padding-top: 5px !important;
    }

    .difference-box {
        padding: 42px 25px;
        border-radius: 17px;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-cta-actions {
        flex-direction: column;
    }

    .about-cta-actions .about-button {
        width: 100%;
    }
}


/* =========================================================
   RESPONSIVE: SMALL MOBILE
========================================================= */

@media (max-width: 600px) {
    .about-banner h1 {
        font-size: 37px;
    }

    .company-primary-image {
        height: 385px;
    }

    .company-secondary-image {
        width: 155px;
        height: 130px;
    }

    .founder-photo-frame {
        height: 460px;
    }

    .founder-name-card {
        width: 185px;
        padding: 17px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .reveal-about,
    .purpose-card,
    .value-card,
    .capability-card,
    .approach-step,
    .leadership-card {
        transition: none !important;
    }

    .reveal-about {
        opacity: 1;
        transform: none;
    }
}


/* About.js interaction classes */

.purpose-card.is-highlighted {
    box-shadow: 0 25px 55px rgba(8, 71, 135, 0.18);
    transform: translateY(-8px);
}

.purpose-card.is-muted {
    opacity: 0.78;
}

.approach-step.is-active {
    background: #ffffff;
    border-color: #90d5e8;
    box-shadow: 0 16px 38px rgba(10, 53, 98, 0.11);
    transform: translateX(5px);
}

.approach-step.is-active > span {
    background: linear-gradient(145deg, #073d7a, #19b6d7);
    box-shadow: 0 9px 20px rgba(8, 112, 175, 0.24);
}

.purpose-card:focus-visible,
.approach-step:focus-visible {
    outline: 3px solid rgba(17, 169, 207, 0.35);
    outline-offset: 4px;
}