/**
 * Handasa Homepage v3 — ultra-minimal, typography-first
 * Scoped to .home-v2 — does not affect other pages.
 */

.home-v2 {
    --hv2-navy: #001E35;
    --hv2-cyan: #1CA1D6;
    --hv2-white: #FFFFFF;
    --hv2-gray: #E6EEF5;
    --hv2-gray-light: #F2F7FB;
    --hv2-surface-muted: #D8E4EE;
    --hv2-tint-cyan: #E8F4FA;
    --hv2-text: #001E35;
    --hv2-text-light: rgba(0, 30, 53, 0.55);
    --hv2-text-body: rgba(0, 30, 53, 0.72);
    --hv2-border: rgba(0, 30, 53, 0.10);
    --hv2-border-strong: rgba(0, 30, 53, 0.16);
    --hv2-radius-sm: 8px;
    --hv2-radius-md: 12px;
    --hv2-radius-lg: 16px;
    --hv2-radius-pill: 999px;
    --hv2-shadow-sm: 0 4px 16px rgba(0, 30, 53, 0.06);
    --hv2-shadow-md: 0 8px 32px rgba(0, 30, 53, 0.08);
    --hv2-shadow-lg: 0 16px 48px rgba(0, 30, 53, 0.10);
    --hv2-section: 96px;
    --hv2-section-sm: 64px;
    color: var(--hv2-text);
    -webkit-font-smoothing: antialiased;
}

/* ── Shared typography ─────────────────────────────────── */

.home-v2 h1,
.home-v2 h2,
.home-v2 h3 {
    letter-spacing: -0.02em;
}

.home-v2 .title h2 span {
    display: block;
    font-weight: 400;
    color: var(--hv2-text-light);
    font-size: 0.55em;
    letter-spacing: 0;
    margin-top: 8px;
}

/* Accent line under section headings */
.home-v2 .featuredProjects .title h2::before,
.home-v2 .featuredFirms .title h2::before,
.home-v2 .servicesHome .box .title h2::before {
    background: linear-gradient(90deg, transparent, var(--hv2-cyan) 50%, transparent);
    border-radius: 2px;
    content: "";
    display: block;
    height: 3px;
    margin: 0 auto 20px;
    width: 48px;
}

/* ── Hero ──────────────────────────────────────────────── */

.home-v2 .heroHome {
    min-height: auto;
    padding: 120px 0 96px;
    background:
        radial-gradient(ellipse 90% 70% at 50% -15%, rgba(28, 161, 214, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, var(--hv2-tint-cyan) 0%, var(--hv2-gray-light) 52%, var(--hv2-white) 100%);
    color: var(--hv2-text);
    overflow: visible;
    text-align: center;
}

.home-v2 .heroHome .bg,
.home-v2 .heroHome .bg2,
.home-v2 .heroHome .bg3 {
    display: none !important;
}

.home-v2 .heroHome .hero-inner {
    float: none;
}

.home-v2 .heroHome .title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.home-v2 .heroHome .title h1 {
    color: var(--hv2-text);
    font-size: clamp(34px, 5.5vw, 66px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    max-width: 900px;
}

.home-v2 .heroHome .title p {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 300;
    color: var(--hv2-text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-v2 .heroHome .title p strong {
    font-weight: 400;
}

.home-v2 .heroHome .searchBar {
    max-width: 640px;
    margin: 0 auto;
}

.home-v2 .heroHome .searchBar > p {
    color: var(--hv2-text-light);
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 400;
}

.home-v2 .heroHome .searchBar form {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hv2-border);
    border-radius: var(--hv2-radius-lg);
    box-shadow: var(--hv2-shadow-md);
    padding: 20px;
}

.home-v2 .heroHome .searchBar form .col {
    margin-bottom: 8px;
}

.home-v2 .heroHome .searchBar form .colWrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.home-v2 .heroHome .searchBar form .colWrap .col {
    flex: 1 1 0;
    min-width: 120px;
    margin-bottom: 0;
}

.home-v2 .heroHome .searchBar form .colWrap .col:last-child {
    flex: 0 0 auto;
    min-width: 48px;
}

.home-v2 .heroHome .searchBar form .input {
    background: var(--hv2-gray-light);
    color: var(--hv2-text);
    border: 1px solid transparent;
    border-radius: var(--hv2-radius-sm);
    padding: 14px 16px;
    font-weight: 400;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .heroHome .searchBar form .input::placeholder {
    color: var(--hv2-text-light);
    opacity: 1;
}

.home-v2 .heroHome .searchBar form .input:focus {
    outline: none;
    background: var(--hv2-white);
    border-color: var(--hv2-cyan);
    box-shadow: 0 0 0 3px rgba(28, 161, 214, 0.15);
}

.home-v2 .heroHome .searchBar form .bootstrap-select > .dropdown-toggle {
    background: var(--hv2-gray-light) !important;
    color: var(--hv2-text) !important;
    border: 1px solid transparent !important;
    border-radius: var(--hv2-radius-sm) !important;
    padding: 14px 16px !important;
    font-weight: 400 !important;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.home-v2 .heroHome .searchBar form .bootstrap-select > .dropdown-toggle:focus,
.home-v2 .heroHome .searchBar form .bootstrap-select.open > .dropdown-toggle {
    background: var(--hv2-white) !important;
    border-color: var(--hv2-cyan) !important;
    box-shadow: 0 0 0 3px rgba(28, 161, 214, 0.15) !important;
}

.home-v2 .heroHome .searchBar form .bootstrap-select > .dropdown-toggle .filter-option {
    color: var(--hv2-text-body) !important;
}

.home-v2 .heroHome .searchBar form .btnSubmit {
    background: var(--hv2-cyan);
    border: none;
    border-radius: var(--hv2-radius-sm);
    padding: 14px 18px;
    width: 48px;
    height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(28, 161, 214, 0.35);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .heroHome .searchBar form .btnSubmit:hover {
    background: var(--hv2-cyan);
    box-shadow: 0 6px 20px rgba(28, 161, 214, 0.45);
    color: var(--hv2-white);
    opacity: 1;
    transform: translateY(-1px);
}

/* Feature pills */
.home-v2 .heroHome .ourFeatures {
    margin-top: 48px;
    padding-top: 0;
    border-top: none;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}

.home-v2 .heroHome .ourFeatures::after {
    display: none;
}

.home-v2 .heroHome .ourFeatures > div {
    flex: 0 1 auto;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--hv2-border);
    border-radius: var(--hv2-radius-pill);
    padding: 10px 22px;
    opacity: 1;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .heroHome .ourFeatures > div:not(:last-child)::after {
    display: none;
}

.home-v2 .heroHome .ourFeatures > div::before {
    display: none;
}

.home-v2 .heroHome .ourFeatures > div.active {
    background: var(--hv2-white);
    border-color: rgba(28, 161, 214, 0.35);
    box-shadow: 0 4px 16px rgba(28, 161, 214, 0.14);
}

.home-v2 .heroHome .ourFeatures > div.active p {
    color: var(--hv2-cyan);
    font-weight: 500;
}

.home-v2 .heroHome .ourFeatures > div:first-child {
    padding-left: 22px;
}

html[lang="en"] .home-v2 .heroHome .ourFeatures > div:first-child {
    padding-right: 22px;
    padding-left: 22px;
}

.home-v2 .heroHome .ourFeatures > div p {
    margin: 0;
    color: var(--hv2-text-light);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 767px) {
    .home-v2 .heroHome {
        padding: 104px 0 64px;
    }

    .home-v2 .heroHome .searchBar form {
        padding: 16px;
    }

    .home-v2 .heroHome .searchBar form .colWrap {
        flex-direction: column;
    }

    .home-v2 .heroHome .searchBar form .colWrap .col:last-child {
        width: 100%;
    }

    .home-v2 .heroHome .searchBar form .btnSubmit {
        width: 100%;
    }

    .home-v2 .heroHome .ourFeatures > div {
        width: auto;
        padding: 10px 18px;
    }

    .home-v2 .heroHome .ourFeatures > div:first-child {
        padding-left: 18px;
    }

    .home-v2 .servicesHome .box .item {
        padding: 24px 20px;
    }
}

/* ── Featured Projects / Stats ─────────────────────────── */

.home-v2 .featuredProjects {
    background: var(--hv2-white);
    box-shadow: inset 0 1px 0 var(--hv2-border);
    color: var(--hv2-text);
    padding: var(--hv2-section) 0;
}

.home-v2 .featuredProjects .title {
    text-align: center;
    margin-bottom: 64px;
}

.home-v2 .featuredProjects .title p {
    color: var(--hv2-cyan);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.home-v2 .featuredProjects .title h2 {
    color: var(--hv2-text);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
}

.home-v2 .featuredProjects .title h2 span {
    color: var(--hv2-text-light);
    font-weight: 300;
}

.home-v2 .featuredProjects .imagesWrap {
    position: relative;
    min-height: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.home-v2 .featuredProjects .imagesWrap .item,
.home-v2 .featuredProjects .imagesWrap .box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* Stats cards */
.home-v2 .featuredProjects .imagesWrap .box {
    width: auto !important;
    height: auto !important;
    background: var(--hv2-gray-light);
    border: 1px solid var(--hv2-border);
    border-radius: var(--hv2-radius-lg);
    padding: 28px 48px;
    text-align: center;
    box-shadow: var(--hv2-shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v2 .featuredProjects .imagesWrap .box:hover {
    box-shadow: var(--hv2-shadow-md);
    transform: translateY(-2px);
}

.home-v2 .featuredProjects .imagesWrap .box-1 {
    border-left: none;
    padding-left: 48px;
}

.home-v2 .featuredProjects .imagesWrap .box-2 {
    border-left: none;
}

.home-v2 .featuredProjects .imagesWrap .box .number h2,
.home-v2 .featuredProjects .imagesWrap .box .number h2 span {
    color: var(--hv2-text);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300;
    margin: 0 0 8px;
    line-height: 1;
}

.home-v2 .featuredProjects .imagesWrap .box .name p {
    color: var(--hv2-text-light);
    font-weight: 400;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.02em;
}

/* Stats row wrapper via flex on siblings */
.home-v2 .featuredProjects .imagesWrap::before {
    content: '';
    display: none;
}

.home-v2 .featuredProjects .imagesWrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    justify-items: center;
}

.home-v2 .featuredProjects .imagesWrap .box-1,
.home-v2 .featuredProjects .imagesWrap .box-2 {
    grid-row: 1;
    grid-column: auto;
}

.home-v2 .featuredProjects .imagesWrap .box-1 {
    grid-column: 1;
    justify-self: end;
}

.home-v2 .featuredProjects .imagesWrap .box-2 {
    grid-column: 2;
    justify-self: start;
}

.home-v2 .featuredProjects .imagesWrap .item {
    grid-row: 2;
    border-radius: var(--hv2-radius-md);
    overflow: hidden;
    width: 100% !important;
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: var(--hv2-shadow-sm);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-v2 .featuredProjects .imagesWrap .item:hover {
    box-shadow: var(--hv2-shadow-lg);
    transform: translateY(-4px) scale(1.02);
}

@media (min-width: 768px) {
    .home-v2 .featuredProjects .imagesWrap {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .home-v2 .featuredProjects .imagesWrap .item {
        max-width: none;
    }

    .home-v2 .featuredProjects .imagesWrap .item-1 { grid-column: 1; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-2 { grid-column: 2; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-3 { grid-column: 1; grid-row: 3; }
    .home-v2 .featuredProjects .imagesWrap .item-4 { grid-column: 2; grid-row: 3; }
    .home-v2 .featuredProjects .imagesWrap .item-5 { grid-column: 1 / 3; grid-row: 4; max-width: 400px; justify-self: center; }
    .home-v2 .featuredProjects .imagesWrap .item-6,
    .home-v2 .featuredProjects .imagesWrap .item-7,
    .home-v2 .featuredProjects .imagesWrap .item-8,
    .home-v2 .featuredProjects .imagesWrap .item-9 {
        display: none;
    }
}

@media (min-width: 992px) {
    .home-v2 .featuredProjects .imagesWrap {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 24px;
    }

    .home-v2 .featuredProjects .imagesWrap .box-1,
    .home-v2 .featuredProjects .imagesWrap .box-2 {
        grid-row: 1;
    }

    .home-v2 .featuredProjects .imagesWrap .box-1 {
        grid-column: 2;
    }

    .home-v2 .featuredProjects .imagesWrap .box-2 {
        grid-column: 3;
    }

    .home-v2 .featuredProjects .imagesWrap .item-1 { grid-column: 1; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-2 { grid-column: 2; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-3 { grid-column: 3; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-4 { grid-column: 4; grid-row: 2; }
    .home-v2 .featuredProjects .imagesWrap .item-5 { grid-column: 2 / 4; grid-row: 3; max-width: 480px; }
    .home-v2 .featuredProjects .imagesWrap .item-6,
    .home-v2 .featuredProjects .imagesWrap .item-7,
    .home-v2 .featuredProjects .imagesWrap .item-8,
    .home-v2 .featuredProjects .imagesWrap .item-9 {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-v2 .featuredProjects .imagesWrap .box-1,
    .home-v2 .featuredProjects .imagesWrap .box-2 {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        padding: 24px 32px;
        border: 1px solid var(--hv2-border);
        width: 100%;
        max-width: 280px;
    }

    .home-v2 .featuredProjects .imagesWrap .box-2 {
        border-top: none;
        padding-top: 24px;
    }
}

/* ── How It Works ────────────────────────────────────── */

.home-v2 .howItWorks {
    --hiw-bg: #405373;
    --hiw-gold: #E0AC56;
    --hiw-text: #FFFFFF;
    --hiw-text-muted: rgba(255, 255, 255, 0.72);
    --hiw-text-body: rgba(255, 255, 255, 0.88);
    --hiw-border: rgba(255, 255, 255, 0.16);
    --hiw-border-strong: rgba(255, 255, 255, 0.28);
    background: var(--hiw-bg);
    color: var(--hiw-text);
    padding: var(--hv2-section) 0;
    position: relative;
    z-index: 1;
}

.home-v2 .howItWorks::after {
    display: none;
}

.home-v2 .howItWorks-header {
    background: transparent;
    left: auto;
    margin: 0 auto 64px;
    max-width: 720px;
    padding: 0;
    position: static;
    text-align: center;
    top: auto;
    width: auto;
    z-index: auto;
}

.home-v2 .howItWorks-label {
    background: rgba(224, 172, 86, 0.18);
    border: 1px solid rgba(224, 172, 86, 0.45);
    border-radius: var(--hv2-radius-pill);
    color: var(--hiw-gold);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    padding: 6px 16px;
    text-transform: uppercase;
}

.home-v2 .howItWorks .title {
    margin-bottom: 0;
    text-align: center;
}

.home-v2 .howItWorks .title h2::before {
    background: linear-gradient(90deg, transparent, var(--hiw-gold) 50%, transparent);
    border-radius: 2px;
    content: "";
    display: block;
    height: 3px;
    margin: 0 auto 20px;
    width: 48px;
}

.home-v2 .howItWorks .title h2 {
    color: var(--hiw-text);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.home-v2 .howItWorks .title h2 span {
    color: var(--hiw-text-muted);
    font-weight: 400;
    font-size: 0.55em;
}

/* Horizontal timeline */

.home-v2 .howItWorks-timelineWrap {
    margin-bottom: 48px;
    padding: 0 8px;
}

.home-v2 .stepsTimeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.home-v2 .stepsTimeline::before {
    background: linear-gradient(90deg, transparent, var(--hiw-gold) 20%, var(--hiw-gold) 80%, transparent);
    content: "";
    height: 2px;
    inset-block-start: 20px;
    inset-inline: 12.5%;
    opacity: 0.5;
    position: absolute;
    z-index: 0;
}

.home-v2 .stepsTimeline-item {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    gap: 16px;
    padding: 0 8px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.home-v2 .stepsTimeline-marker {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--hiw-border-strong);
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    width: 40px;
}

.home-v2 .stepsTimeline-num {
    color: var(--hiw-text-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.25s ease;
}

.home-v2 .stepsTimeline-label {
    color: var(--hiw-text-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    max-width: 148px;
    transition: color 0.25s ease;
}

.home-v2 .stepsTimeline-item:hover .stepsTimeline-marker {
    border-color: var(--hiw-gold);
    transform: scale(1.05);
}

.home-v2 .stepsTimeline-item:hover .stepsTimeline-label {
    color: var(--hiw-text);
}

.home-v2 .stepsTimeline-item.active .stepsTimeline-marker {
    background: var(--hiw-gold);
    border-color: var(--hiw-gold);
    box-shadow: 0 4px 16px rgba(224, 172, 86, 0.35);
}

.home-v2 .stepsTimeline-item.active .stepsTimeline-num {
    color: var(--hiw-text);
}

.home-v2 .stepsTimeline-item.active .stepsTimeline-label {
    color: var(--hiw-text);
    font-weight: 500;
}

/* Content panel */

.home-v2 .howItWorks-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--hiw-border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
    max-width: 800px;
    overflow: hidden;
    padding: 48px;
}

.home-v2 .howItWorks-navTabs {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.home-v2 .howItWorks-content .content {
    text-align: center;
}

.home-v2 .howItWorks-content .tab-pane.active .content {
    animation: hiwContentIn 0.35s ease;
}

@keyframes hiwContentIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-v2 .howItWorks-content .content .tabIcon {
    display: block;
    filter: brightness(0) invert(1);
    margin: 0 auto 24px;
    max-width: 48px;
    opacity: 0.85;
}

.home-v2 .howItWorks-content .content p {
    color: var(--hiw-text-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 560px;
}

.home-v2 .howItWorks-cta {
    border-top: 1px solid var(--hiw-border);
    margin-top: 40px;
    padding-top: 32px;
    text-align: center;
}

.home-v2 .howItWorks .btnLight {
    background: var(--hiw-gold);
    border: none;
    border-radius: var(--hv2-radius-sm);
    box-shadow: 0 4px 14px rgba(224, 172, 86, 0.35);
    color: var(--hiw-text);
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-v2 .howItWorks .btnLight:hover,
.home-v2 .howItWorks .btnLight:focus {
    background: #d9a04e;
    box-shadow: 0 6px 20px rgba(224, 172, 86, 0.45);
    color: var(--hiw-text);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .home-v2 .howItWorks-header {
        margin-bottom: 48px;
    }

    .home-v2 .howItWorks-timelineWrap {
        margin-bottom: 40px;
    }

    .home-v2 .stepsTimeline {
        gap: 24px 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .home-v2 .stepsTimeline::before {
        display: none;
    }

    .home-v2 .howItWorks-panel {
        padding: 40px 32px;
    }
}

@media (max-width: 767px) {
    .home-v2 .howItWorks {
        padding: var(--hv2-section-sm) 0;
    }

    .home-v2 .howItWorks-header {
        margin-bottom: 40px;
    }

    .home-v2 .howItWorks-timelineWrap {
        margin-bottom: 32px;
        padding: 0;
    }

    .home-v2 .stepsTimeline {
        gap: 0;
        grid-template-columns: 1fr;
        padding-inline-start: 8px;
    }

    .home-v2 .stepsTimeline::before {
        display: block;
        height: auto;
        inset-block: 20px 20px;
        inset-inline: auto auto;
        inset-inline-start: 27px;
        width: 2px;
    }

    .home-v2 .stepsTimeline-item {
        align-items: flex-start;
        flex-direction: row;
        gap: 16px;
        padding: 16px 0;
        text-align: start;
    }

    .home-v2 .stepsTimeline-marker {
        flex-shrink: 0;
    }

    .home-v2 .stepsTimeline-label {
        max-width: none;
        padding-top: 10px;
    }

    .home-v2 .howItWorks-panel {
        border-radius: 12px;
        padding: 32px 24px;
    }

    .home-v2 .howItWorks-content .content p {
        font-size: 16px;
    }

    .home-v2 .howItWorks-cta {
        margin-top: 32px;
        padding-top: 24px;
    }
}

/* ── Featured Firms ──────────────────────────────────── */

.home-v2 .featuredFirms {
    background:
        linear-gradient(180deg, var(--hv2-white) 0%, var(--hv2-gray-light) 100%);
    padding: var(--hv2-section) 0;
}

.home-v2 .featuredFirms::before {
    display: none;
}

.home-v2 .featuredFirms .title h2 {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--hv2-text);
    text-align: center;
    padding: 0;
    margin: 0 0 56px;
    width: auto;
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.home-v2 .featuredFirms .title h2 span {
    color: var(--hv2-text-light);
    font-weight: 300;
}

.home-v2 .featuredFirms .firmsWrap {
    padding-top: 0;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item {
    background: var(--hv2-white);
    border: 1px solid var(--hv2-border-strong);
    border-radius: var(--hv2-radius-md);
    box-shadow: var(--hv2-shadow-sm);
    padding: 24px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item:hover {
    border-color: rgba(28, 161, 214, 0.35);
    background: var(--hv2-tint-cyan);
    box-shadow: var(--hv2-shadow-md);
    transform: translateY(-3px);
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .firmInfo table tr td:first-child p {
    color: var(--hv2-text-light);
    font-weight: 400;
    font-size: 13px;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .firmInfo table tr td:last-child p {
    color: var(--hv2-text);
    font-weight: 400;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .sp {
    background-color: var(--hv2-border);
    opacity: 1;
    margin: 16px 0;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .rate p strong {
    color: var(--hv2-text-light);
    opacity: 1;
    font-weight: 400;
    font-size: 13px;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .rate .rateWrap span {
    color: var(--hv2-cyan);
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .navi .btnIconBlue {
    background: transparent;
    border: 1px solid var(--hv2-border-strong);
    color: var(--hv2-text);
    border-radius: 8px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.home-v2 .featuredFirms .firmsWrap .owl-carousel .item .navi .btnIconBlue:hover {
    border-color: var(--hv2-cyan);
    color: var(--hv2-cyan);
    background: transparent;
}

/* Carousel chrome — minimal */
.home-v2 .featuredFirms .owl-nav button {
    border: 1px solid var(--hv2-border-strong);
    color: var(--hv2-text);
    border-radius: 8px;
    background: transparent;
    width: 40px;
    height: 40px;
    transition: border-color 0.2s ease;
}

.home-v2 .featuredFirms .owl-nav button:hover {
    background: transparent;
    border-color: var(--hv2-text);
    color: var(--hv2-text);
}

.home-v2 .featuredFirms .totalNumbers,
.home-v2 .featuredFirms .currentNumber {
    color: var(--hv2-text-light);
    font-weight: 300;
    font-size: 14px;
}

.home-v2 .featuredFirms .totalNumbers {
    color: var(--hv2-text);
}

.home-v2 .featuredFirms .owl-dots .owl-dot {
    background-color: var(--hv2-border-strong);
    height: 2px;
}

.home-v2 .featuredFirms .owl-dots .owl-dot.active {
    background-color: var(--hv2-cyan);
}

/* ── Services ────────────────────────────────────────── */

.home-v2 .servicesHome {
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(28, 161, 214, 0.10) 0%, transparent 52%),
        linear-gradient(180deg, var(--hv2-surface-muted) 0%, var(--hv2-gray) 48%, var(--hv2-tint-cyan) 100%);
    padding: var(--hv2-section) 0;
}

.home-v2 .servicesHome::before,
.home-v2 .servicesHome::after {
    display: none;
}

.home-v2 .servicesHome .bottomBackground {
    display: none;
}

.home-v2 .servicesHome .box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: var(--hv2-text);
}

.home-v2 .servicesHome .box .title {
    margin-bottom: 56px;
    text-align: center;
}

.home-v2 .servicesHome .box .title h2 {
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.15;
    color: var(--hv2-text);
    text-align: center;
}

.home-v2 .servicesHome .box .title h2 span {
    color: var(--hv2-text-light);
    font-weight: 300;
}

.home-v2 .servicesHome .box .item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--hv2-border);
    border-radius: var(--hv2-radius-lg);
    box-shadow: var(--hv2-shadow-sm);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.home-v2 .servicesHome .box .item:hover {
    border-color: rgba(28, 161, 214, 0.25);
    box-shadow: var(--hv2-shadow-md);
    transform: translateY(-2px);
}

.home-v2 .servicesHome .box .item:last-child {
    margin-bottom: 0;
    padding-bottom: 32px;
}

.home-v2 .servicesHome .box .item:first-of-type {
    padding-top: 0;
}

.home-v2 .servicesHome .box .item .top {
    gap: 16px;
    margin-bottom: 16px;
}

.home-v2 .servicesHome .box .item .top .icon {
    align-items: center;
    background: var(--hv2-tint-cyan);
    border-radius: var(--hv2-radius-sm);
    display: flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.home-v2 .servicesHome .box .item .top .icon img {
    width: 28px;
    opacity: 1;
}

.home-v2 .servicesHome .box .item .top .sp {
    display: none;
}

.home-v2 .servicesHome .box .item .top .navi a {
    background: rgba(28, 161, 214, 0.08);
    border: 1px solid rgba(28, 161, 214, 0.2);
    border-radius: var(--hv2-radius-pill);
    color: var(--hv2-cyan);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    gap: 4px;
    padding: 8px 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-v2 .servicesHome .box .item .top .navi a:hover {
    background: rgba(28, 161, 214, 0.15);
    border-color: rgba(28, 161, 214, 0.35);
    color: var(--hv2-cyan);
    opacity: 1;
}

.home-v2 .servicesHome .box .item .bottom {
    gap: 24px;
}

.home-v2 .servicesHome .box .item .bottom .name h3 {
    font-weight: 500;
    font-size: 20px;
    color: var(--hv2-text);
    margin: 0 0 8px;
}

.home-v2 .servicesHome .box .item .bottom .content p {
    color: var(--hv2-text-body);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
}

.home-v2 .servicesHome .box .item .bottom .points {
    font-weight: 400;
    min-width: auto;
}

.home-v2 .servicesHome .box .item .bottom .points p {
    color: var(--hv2-text-light);
    font-size: 14px;
    margin-bottom: 4px;
}

.home-v2 .servicesHome .box .item .bottom .points span {
    color: var(--hv2-cyan);
    font-weight: 500;
}

@media (max-width: 767px) {
    .home-v2 .servicesHome .box .item .bottom {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ── Latest News (hidden — re-enable by removing display:none) ── */

.home-v2 .latestNews {
    display: none !important;
    background: var(--hv2-white);
    color: var(--hv2-text);
    padding: var(--hv2-section) 0;
    min-height: auto;
}

.home-v2 .latestNews .bg,
.home-v2 .latestNews .shadow {
    display: none !important;
}

.home-v2 .latestNews .title {
    text-align: center;
    margin-bottom: 56px;
}

.home-v2 .latestNews .title h2 {
    color: var(--hv2-text);
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 700;
    line-height: 1.15;
}

.home-v2 .latestNews .title h2 span {
    color: var(--hv2-text-light);
    font-weight: 300;
}

.home-v2 .latestNews .navTabs li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--hv2-border);
}

.home-v2 .latestNews .navTabs li a {
    color: var(--hv2-text);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0 20px 16px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s ease;
}

html[lang="en"] .home-v2 .latestNews .navTabs li a {
    padding: 20px 16px 20px 0;
    border-left: none;
    border-right: 2px solid transparent;
}

.home-v2 .latestNews .navTabs li a:hover {
    background: transparent;
    border-color: transparent;
    border-left-color: var(--hv2-border-strong);
}

html[lang="en"] .home-v2 .latestNews .navTabs li a:hover {
    border-left-color: transparent;
    border-right-color: var(--hv2-border-strong);
}

.home-v2 .latestNews .navTabs li.active a {
    background: transparent;
    border-color: transparent;
    border-left-color: var(--hv2-cyan);
}

html[lang="en"] .home-v2 .latestNews .navTabs li.active a {
    border-left-color: transparent;
    border-right-color: var(--hv2-cyan);
}

.home-v2 .latestNews .navTabs li a .date {
    color: var(--hv2-text-light);
    opacity: 1;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.home-v2 .latestNews .navTabs li a .name {
    font-size: 15px;
    font-weight: 400;
    color: var(--hv2-text);
    line-height: 1.4;
}

.home-v2 .latestNews .navTabs li.active a .name {
    font-weight: 500;
}

.home-v2 .latestNews .tab-content .tab-pane .date {
    color: var(--hv2-text-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.home-v2 .latestNews .tab-content .tab-pane .name {
    color: var(--hv2-text);
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 24px;
}

.home-v2 .latestNews .tab-content .tab-pane .content {
    color: var(--hv2-text-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
}

.home-v2 .latestNews .tab-content .tab-pane .navi {
    margin-top: 32px;
}

.home-v2 .latestNews .btnLight {
    background: var(--hv2-cyan);
    color: var(--hv2-white);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.home-v2 .latestNews .btnLight:hover {
    background: var(--hv2-cyan);
    opacity: 0.88;
    color: var(--hv2-white);
}

/* ── Section rhythm & mobile ───────────────────────────── */

@media (max-width: 767px) {
    .home-v2 .featuredProjects,
    .home-v2 .howItWorks,
    .home-v2 .featuredFirms,
    .home-v2 .servicesHome,
    .home-v2 .latestNews {
        padding: var(--hv2-section-sm) 0;
    }

    .home-v2 .latestNews .navTabs {
        margin-bottom: 32px;
    }

    .home-v2 .latestNews .navTabs li a {
        padding: 16px 0 16px 12px;
    }

    html[lang="en"] .home-v2 .latestNews .navTabs li a {
        padding: 16px 12px 16px 0;
    }
}

/* ── Header & footer — homepage chrome ─────────────────── */
/*
 * Scoped via .pageWarp:is(:has(.home-v2), :has(.about-us-page)) so other pages
 * keep the global header/footer from style.min.css.
 */

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) {
    --hv2-chrome-border: rgba(0, 30, 53, 0.08);
    --hv2-header-navy: #405373;
    --hv2-header-cyan: #1CA1D6;
}

/* Header — solid navy bar (default + scrolled) */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header {
    background-color: var(--hv2-header-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header.scroll {
    background-color: rgba(64, 83, 115, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .site-header__logo {
    max-width: 120px;
}

/* Nav — open layout with pill hovers */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul {
    border: none;
    border-radius: 0;
    gap: 6px;
    overflow: visible;
    background: transparent;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 9px 18px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li:nth-child(2) a {
    border: none;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a .ico {
    filter: invert(1) contrast(10);
    opacity: 0.9;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a.on,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li.active a {
    background-color: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li.active a.on {
    background-color: #FFFFFF;
    color: var(--hv2-header-navy);
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a.on .ico,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li.active a .ico {
    filter: contrast(1) invert(0);
    opacity: 1;
}

/* Login / profile — cyan outline pill */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .login.btnBig,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .profileMenu.btnBig {
    background-color: transparent;
    border: 1.5px solid var(--hv2-header-cyan);
    color: var(--hv2-header-cyan);
    border-radius: 999px;
    padding: 8px 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .login.btnBig:hover,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .login.btnBig:focus,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .profileMenu.btnBig:hover,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .profileMenu.btnBig:focus {
    background-color: var(--hv2-header-cyan);
    color: #FFFFFF;
    border-color: var(--hv2-header-cyan);
}

/* Language — minimal chip */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .lang:hover,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .lang:focus {
    border-color: var(--hv2-header-cyan);
    color: var(--hv2-header-cyan);
    background-color: rgba(28, 161, 214, 0.1);
}

/* Hamburger — clean lines, touch target */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a {
    padding: 10px;
    margin: -10px;
    min-width: 44px;
    min-height: 44px;
    -webkit-justify-content: center;
    justify-content: center;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a span,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a span:nth-child(2)::before,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a span:nth-child(2)::after {
    background-color: #FFFFFF;
    height: 2px;
    width: 22px;
    border-radius: 1px;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a .sp1,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a .sp2,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a .sp3 {
    width: 22px;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .menuBtn a:hover span {
    width: 22px;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .extendedMenu a {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .extendedMenu a:hover {
    color: var(--hv2-header-cyan);
}

@media (max-width: 767px) {
    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul {
        gap: 2px;
    }

    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a {
        padding: 6px 8px;
        font-size: 11px;
    }

    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .login.btnBig,
    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .leftNav .profileMenu.btnBig {
        padding: 6px 14px;
        font-size: 12px;
    }

    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .site-header__logo {
        max-width: 90px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pageWarp:is(:has(.home-v2), :has(.about-us-page)) header.site-header .midMenu ul li a {
        padding: 7px 12px;
        font-size: 13px;
    }
}

/* Sidebar — match home-v2 brand tokens */
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .menuContent.site-sidebar {
    background: linear-gradient(180deg, var(--hv2-header-navy) 0%, #344760 100%);
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .site-sidebar__links li.active a {
    background-color: rgba(28, 161, 214, 0.15);
    color: var(--hv2-header-cyan);
    font-weight: 500;
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .site-sidebar__close:hover,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .site-sidebar__close:focus {
    border-color: var(--hv2-header-cyan);
}

.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .site-sidebar__social-links a:hover,
.pageWarp:is(:has(.home-v2), :has(.about-us-page)) .site-sidebar__social-links a:focus {
    border-color: var(--hv2-header-cyan);
    color: var(--hv2-header-cyan);
}

/* Footer uses global footer.site-footer styles from style.css */

/* ── About Us page ─────────────────────────────────────── */

.about-us-page {
    --au-navy: #001E35;
    --au-cyan: #1CA1D6;
    --au-white: #FFFFFF;
    --au-gray: #F8FAFC;
    --au-text: #001E35;
    --au-text-light: rgba(0, 30, 53, 0.55);
    --au-text-body: rgba(0, 30, 53, 0.72);
    --au-border: rgba(0, 30, 53, 0.08);
    --au-section: 80px;
    --au-section-sm: 56px;
    color: var(--au-text);
    -webkit-font-smoothing: antialiased;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3 {
    letter-spacing: -0.02em;
}

/* Hero */
.about-us-page .about-hero {
    padding: 112px 0 64px;
    background: var(--au-gray);
    text-align: center;
}

.about-us-page .about-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about-us-page .about-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--au-cyan);
    margin: 0;
}

.about-us-page .about-hero__eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}

.about-us-page .about-hero__tagline {
    font-size: 15px;
    font-weight: 400;
    color: var(--au-text-light);
    margin: 0;
    line-height: 1.5;
}

.about-us-page .about-hero__tagline--alt {
    font-size: 14px;
    color: var(--au-text-body);
}

.about-us-page .about-hero__title {
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--au-text);
    margin: 8px 0 0;
    max-width: 720px;
}

/* Intro */
.about-us-page .about-intro {
    padding: var(--au-section) 0;
    background: var(--au-white);
}

.about-us-page .about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.about-us-page .about-intro__media {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--au-border);
}

.about-us-page .about-intro__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-us-page .about-intro__body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--au-text-body);
    margin: 0;
}

/* Mission */
.about-us-page .about-mission {
    padding: var(--au-section-sm) 0 var(--au-section);
    background: var(--au-gray);
}

.about-us-page .about-mission__card {
    background: var(--au-white);
    border: 1px solid var(--au-border);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
}

.about-us-page .about-section__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--au-cyan);
    margin-bottom: 12px;
}

.about-us-page .about-section__title {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--au-text);
    margin: 0 0 20px;
}

.about-us-page .about-section__body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--au-text-body);
    margin: 0;
}

/* Vision */
.about-us-page .about-vision {
    position: relative;
    padding: var(--au-section) 0;
    overflow: hidden;
    text-align: center;
}

.about-us-page .about-vision__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-us-page .about-vision__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 30, 53, 0.88) 0%,
        rgba(0, 30, 53, 0.92) 100%
    );
    z-index: 1;
}

.about-us-page .about-vision .container {
    position: relative;
    z-index: 2;
}

.about-us-page .about-vision__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-us-page .about-vision__title {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 600;
    line-height: 1.45;
    color: var(--au-white);
    margin: 0;
    max-width: 680px;
}

/* Values */
.about-us-page .about-values {
    padding: var(--au-section) 0;
    background: var(--au-white);
}

.about-us-page .about-values__header {
    text-align: center;
    margin-bottom: 48px;
}

.about-us-page .about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.about-us-page .about-values__card {
    background: var(--au-gray);
    border: 1px solid var(--au-border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-us-page .about-values__card:hover {
    border-color: rgba(28, 161, 214, 0.35);
    box-shadow: 0 8px 24px rgba(0, 30, 53, 0.06);
}

.about-us-page .about-values__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-page .about-values__icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.about-us-page .about-values__card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--au-text);
    margin: 0 0 10px;
}

.about-us-page .about-values__card-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--au-text-body);
    margin: 0;
}

/* RTL */
html[lang="ar"] .about-us-page .about-intro__grid {
    direction: rtl;
}

html[lang="en"] .about-us-page .about-intro__grid {
    direction: ltr;
}

/* Mobile */
@media (max-width: 991px) {
    .about-us-page .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-us-page .about-hero {
        padding: 96px 0 48px;
    }

    .about-us-page .about-intro,
    .about-us-page .about-mission,
    .about-us-page .about-vision,
    .about-us-page .about-values {
        padding: var(--au-section-sm) 0;
    }

    .about-us-page .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-us-page .about-mission__card {
        padding: 28px 24px;
    }

    .about-us-page .about-values__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-us-page .about-values__header {
        margin-bottom: 32px;
    }

    .about-us-page .about-intro__body p,
    .about-us-page .about-section__body p {
        font-size: 15px;
    }
}

.featuredProjects, .servicesHome{display: none;}