    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --ink: #0d1117;
        --paper: #f0f5fe;
        --cream: #fffefe;
        --accent: #6b7280;
        --accent-dark: #0d2d6b;
        --steel: #1a4fa0;
        --steel-light: #2563c8;
        --muted: #6b7280;
        --border: #e0d9cc;
    }

    html {
        scroll-behavior: smooth;
    }

    .hero {
        min-height: 50vh;
        background: var(--steel);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(8, 33, 61, 0.212), rgba(26, 79, 160, 0.336)),
            url(/assete/images/page-banner/about-us.webp);
        background-size: cover;
        background-position: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 60px 80px 80px;
        position: relative;
        z-index: 1;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 28px;
    }

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        height: 100%;
    }

    .hero h1 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        line-height: 1.05;
        color: #fff;
        margin-bottom: 28px;
    }

    .hero h1 em {
        font-style: normal;
        color: #1a4fa0;
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.65);
        max-width: 480px;
        margin-bottom: 48px;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
    }

    .stat-num {
        font-family: 'Syne', sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgb(255, 255, 255);
    }

    .hero-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .hero-visual {
        width: 360px;
        height: 360px;
        position: relative;
    }

    .ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(200, 137, 58, 0.25);
        animation: spin linear infinite;
    }

    .ring-1 {
        inset: 0;
        animation-duration: 25s;
    }

    .ring-2 {
        inset: 30px;
        border-color: rgba(200, 137, 58, 0.15);
        animation-duration: 18s;
        animation-direction: reverse;
    }

    .ring-3 {
        inset: 70px;
        border-color: rgba(255, 255, 255, 0.08);
        animation-duration: 12s;
    }

    .ring-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }


    .hero-center-logo-2 {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .logo-mark-2 {
        font-family: 'Syne', sans-serif;
        font-size: 52px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
    }

    .logo-sub-2 {
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
    }



    /* ── SECTION BASE ── */
    section {
        padding: 100px 80px;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
    }

    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 20px;
    }

    .section-tag::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--accent);
    }

    .section-heading {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        line-height: 1.1;
        color: var(--ink);
        margin-bottom: 20px;
    }

    .section-heading span {
        color: var(--accent);
    }

    .section-body {
        font-size: 17px;
        line-height: 1.8;
        color: var(--muted);
        max-width: 640px;
    }

    /* ── IDENTITY ── */
    #identity {
        background: var(--cream);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .identity-cards {
        display: grid;
        gap: 20px;
    }

    .id-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .id-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--accent);
        transform: scaleY(0);
        transition: transform 0.3s;
        transform-origin: bottom;
    }

    .id-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .id-card:hover::before {
        transform: scaleY(1);
    }

    .id-card-icon {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .id-card h3 {
        font-family: 'Syne', sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--steel);
    }

    .id-card p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--muted);
    }

    /* ── VISION MISSION STRIP ── */
    .vm-strip {
        background: var(--steel);
        padding: 80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .vm-panel {
        padding: 60px;
        background: var(--steel-light);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
    }

    .vm-panel:first-child {
        background: var(--steel);
    }

    .vm-panel::after {
        content: attr(data-label);
        position: absolute;
        bottom: -20px;
        right: -10px;
        font-family: 'Syne', sans-serif;
        font-size: 120px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.075);
        line-height: 1;
        pointer-events: none;
    }

    .vm-panel:hover {
        background: rgba(200, 137, 58, 0.15);
    }

    .vm-label {
        font-size: 11px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .vm-panel h3 {
        font-family: 'Syne', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
    }

    .vm-panel p {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
    }

    /* ── PILLARS ── */
    #pillars {
        /* background: var(--paper); */
        text-align: center;
    }

    .pillars-intro {
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .pillars-intro .section-body {
        margin: 0 auto;
    }

    .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 60px;
    }

    .pillar {
        background: #fff;
        border-radius: 20px;
        padding: 48px 36px;
        text-align: left;
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .pillar:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .pillar:hover .pillar-num,
    .pillar:hover h3,
    .pillar:hover p {
        color: #ffffff;
    }

    .pillar-num {
        font-family: 'Syne', sans-serif;
        font-size: 64px;
        font-weight: 900;
        color: rgba(58, 108, 200, 0.12);
        position: absolute;
        top: 16px;
        right: 24px;
        line-height: 1;
    }

    .pillar-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .pillar h3 {
        font-family: 'Syne', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--steel);
        margin-bottom: 12px;
    }

    .pillar p {
        font-size: 15px;
        line-height: 1.75;
        color: var(--muted);
    }

    /* ── LEADERSHIP ── */
    #leadership {
        background: var(--cream);
    }

    .leadership-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: end;
        margin-bottom: 60px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2-column base */
        gap: 24px;
    }

    /* First card full width */
    .team-grid .team-card:first-child {
        grid-column: 1 / -1;
        /* spans full row */
    }

    .team-card {
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--border);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .team-avatar {
        height: 180px;
        background: linear-gradient(135deg, var(--steel) 0%, var(--steel-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', sans-serif;
        font-size: 52px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
    }

    .team-avatar::after {
        content: attr(data-initials);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        color: rgb(255, 255, 255);
    }

    .team-body {
        padding: 28px;
    }

    .team-name {
        font-family: 'Syne', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--steel);
        margin-bottom: 4px;
    }

    .team-role {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
    }

    .team-bio {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
    }

    /* ── CLIENTS ── */
    #clients {
        /* background: var(--paper); */
        overflow: hidden;
    }

    .clients-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 60px;
    }

    .testimonial-slider {
        position: relative;
        height: 100%;
    }

    .testimonial-card {
        background: var(--steel);
        border-radius: 24px;
        padding: 48px;
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .testimonial-card.active {
        opacity: 1;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 32px;
        font-family: 'Syne', sans-serif;
        font-size: 160px;
        color: var(--accent);
        opacity: 0.2;
        line-height: 1;
    }

    .testimonial-text {
        font-family: 'Syne', sans-serif;
        font-size: 20px;
        font-style: italic;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
        position: relative;
        z-index: 1;
        margin-bottom: 28px;
    }

    .testimonial-attr {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #ffffffb9;
    }

    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .sector-chip {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px 16px;
        text-align: center;
        transition: all 0.3s;
        cursor: default;
    }

    .sector-chip:hover {
        background: var(--steel);
        border-color: var(--steel);
    }

    .sector-chip:hover .sector-name {
        color: #fff;
    }

    .sector-chip:hover .sector-emoji {
        filter: none;
    }

    .sector-emoji {
        font-size: 28px;
        margin-bottom: 8px;
        display: block;
    }

    .sector-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--steel);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: color 0.3s;
    }

    /* ── COMPLIANCE ── */
    #compliance {
        background: var(--cream);
    }

    .compliance-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 60px;
    }

    .compliance-card {
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        background: #fff;
        transition: all 0.3s;
    }

    .compliance-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(200, 137, 58, 0.12);
    }

    .compliance-icon {
        font-size: 36px;
        margin-bottom: 16px;
        display: block;
    }

    .compliance-card h4 {
        font-family: 'Syne', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--steel);
        margin-bottom: 8px;
    }

    .compliance-card p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--muted);
    }

    /* ── CTA ── */
    .cta-strip {
        background: linear-gradient(135deg, var(--accent-dark), var(--accent));
        padding: 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg,
                transparent,
                transparent 30px,
                rgba(255, 255, 255, 0.04) 30px,
                rgba(255, 255, 255, 0.04) 31px);
    }

    .cta-strip h2 {
        font-family: 'Syne', sans-serif;
        font-size: 44px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 16px;
        position: relative;
    }

    .cta-strip p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 36px;
        position: relative;
    }

    .btn-white {
        display: inline-block;
        background: #fff;
        color: var(--accent-dark);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 16px 40px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s;
        position: relative;
    }

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    /* ── DIVIDER ── */
    .divider {
        height: 1px;
        background: var(--border);
        margin: 0 80px;
    }

    /* ── SCROLL ANIMATION ── */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .about-us-model {
        height: 350px;
        border-radius: 14px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
        section {
            padding: 80px 40px;
        }

        .hero {
            grid-template-columns: 1fr;
        }

        .hero-right {
            display: none;
        }

        #identity,
        .leadership-header,
        .clients-header,
        .vm-strip {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .team-grid,
        .pillars-grid,
        .sectors-grid,
        .compliance-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-left {
            padding: 120px 40px 80px;
        }

        .divider {
            margin: 0 40px;
        }

        .vm-strip {
            padding: 40px;
        }

        .vm-panel {
            padding: 40px;
        }

        .cta-strip {
            padding: 60px 40px;
        }
    }

    @media (max-width: 640px) {

        section {
            padding: 60px 20px;
        }

        .team-grid,
        .pillars-grid,
        .sectors-grid,
        .compliance-grid {
            grid-template-columns: 1fr;
        }

        .hero-stats {
            flex-wrap: wrap;
            gap: 24px;
        }

        .hero-left {
            padding: 100px 24px 60px;
        }

        .divider {
            margin: 0 20px;
        }

        .vm-strip {
            padding: 20px;
            gap: 20px;
        }

        .vm-panel {
            padding: 28px;
        }

        .cta-strip {
            padding: 40px 20px;
        }

        .cta-strip h2 {
            font-size: 30px;
        }

        .about-us-model {
            height: 250px;
            border-radius: 14px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }

        .team-grid {
            grid-template-columns: 1fr;
        }

        .team-grid .team-card:first-child {
            grid-column: auto;
        }
    }