/* =========================================================
   HERO
========================================================= */
.about-hero {
    position: relative;
    overflow: hidden;
    background: left/cover no-repeat url(../images/inner-header.jpg), #e2edf3;
    padding: 90px 0;
}
.about-hero h1 {
    max-width: 760px;
    color: var(--navy);
    font-size: clamp(50px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 20px 0;
    font-weight: 600;
}
.about-hero h1 em {
    color: var(--blue);
    font-style: normal;
}
.hero-description {
    max-width: 680px;
    font-size: 18px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.about{background: left/cover no-repeat url(../images/inner-header.jpg), #e2edf3;}
.services{background: left/cover no-repeat url(../images/services.jpg), #e2edf3;}
.contact{background: left/cover no-repeat url(../images/contact-us.jpg), #e2edf3;}

/* =========================================================
   HERO VISUAL
========================================================= */
.about-hero-visual {
    position: relative;
    width: min(100%, 470px);
    aspect-ratio: 1;
    margin: auto;
}
.visual-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(19, 138, 104, .25);
}
.ring-one {
    width: 90%;
    height: 90%;
}
.ring-two {
    width: 70%;
    height: 70%;
    border-style: solid;
    opacity: .6;
}
.ring-three {
    width: 50%;
    height: 50%;
    border-color: rgba(19, 138, 104, .12);
}
.visual-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 165px;
    height: 165px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    box-shadow:
        0 25px 70px rgba(7, 27, 42, .22);
}
.visual-center i {
    font-size: 42px;
    margin-bottom: 7px;
}
.visual-center span {
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 800;
}
.visual-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #d9ebe4;
    border-radius: 13px;
    box-shadow:
        0 15px 40px rgba(11, 36, 53, .10);
    font-size: 12px;
    font-weight: 700;
}
.visual-node i {
    color: var(--blue);
}
.node-law {
    top: 8%;
    left: 2%;
}
.node-policy {
    top: 8%;
    right: 2%;
}
.node-finance {
    bottom: 8%;
    left: 3%;
}
.node-governance {
    bottom: 8%;
    right: 2%;
}

/* =========================================================
   INTRODUCTION
========================================================= */
.introduction {
    background: #fff;
}
.introduction h2 span,
.philosophy h2 span {
    color: var(--blue);
}
.large-text {
    font-size: 19px;
    color: #000000;
    font-weight: 600;
}

/* =========================================================
   VISION
========================================================= */
.vision-section {
    padding: 0 0 110px;
    background: #fff;
}
.vision-card {
    height: 100%;
    padding: 50px;
    background: var(--mint);
    border-radius: 18px;
    border: 1px solid var(--border);
}
.mission-card {
    background: var(--navy);
}
.mission-card h2 {
    color: #fff;
}
.mission-card p {
    color: #b7cbd1;
}
.card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 14px;
    background: #fff;
    color: var(--blue);
    font-size: 22px;
}

/* =========================================================
   PHILOSOPHY
========================================================= */
.philosophy {
    background: var(--mint);
}
.philosophy-box {
    display: flex;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid var(--border);
}
.philosophy-number {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.philosophy-box h3 {
    margin: 0 0 7px;
    font-size: 20px;
    color: var(--navy);
}
.philosophy-box p {
    margin: 0;
    font-size: 13px;
}

/* =========================================================
   FOUNDATION
========================================================= */
.foundation-section {
    background: var(--mint);
}
.section-heading {
    max-width: 800px;
}
.foundation-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: .25s ease;
}
.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 45px rgba(11, 36, 53, .08);
}
.foundation-card>i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 20px;
}
.foundation-card h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px;
}
.foundation-card p {
    font-size: 13px;
    margin: 0;
}

/* =========================================================
   NETWORK
========================================================= */
.network-section {
    padding: 110px 0;
    background: var(--navy);
    color: #fff;
}
.network-section h2 {
    color: #fff;
}
.network-section p {
    color: #b6c8cf;
}
.network-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 1px solid rgba(255, 255, 255, .15);
}
.network-grid div {
    min-height: 145px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.network-grid i {
    color: #61cba8;
    font-size: 22px;
}
.network-grid span {
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   CTA
========================================================= */
.about-cta {
    padding: 100px 0;
}
.cta-inner {
    padding: 60px;
    border-radius: 22px;
    background: center / cover no-repeat url(../images/membership-bg.jpg);
    color: #fff;
}
.cta-inner h2 {
    color: #fff;
}
.cta-inner p {
    max-width: 700px;
    color: #bdd0d5;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .about-hero {
        padding: 70px 0;
    }
    .about-hero-visual {
        margin-top: 60px;
    }
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .section-space {
        padding: 75px 0;
    }
    .about-hero h1 {
        font-size: 45px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .about-hero-visual {
        margin-top: 40px;
    }
    .visual-center {
        width: 135px;
        height: 135px;
    }
    .visual-node {
        padding: 9px 11px;
        font-size: 10px;
    }
    .vision-card {
        padding: 32px;
    }
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .network-grid div {
        min-height: 115px;
        padding: 18px;
    }
    .cta-inner {
        padding: 35px 25px;
    }
    .footer-bottom {
        flex-direction: column;
    }
}