:root {
    --primary: #0d8a52;
    --primary-dark: #0a6f42;
    --text: #1f2a37;
    --muted: #667085;
    --bg: #f5f6f8;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --radius: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter";
    color: var(--text);
    background: #fff;
}

.container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 64px 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    height: 42px;
    width: auto;
}

/*.lang-switch {
    display: flex;
    gap: 8px;
    font-size: 13px;
}

    .lang-switch .active {
        font-weight: 700;
    }*/

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.20) 38%, rgba(0,0,0,.48) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff;
}

.hero-content {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 3;
    padding-bottom: 50px;
}

.hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 510;
    max-width: 1200px;
}

.hero p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255,255,255,.92);
    max-width: 1020px;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

    .hero-dots span {
        width: 12px;
        height: 6px;
        border-radius: 2px;
        background: rgba(255,255,255,.4);
        cursor: pointer;
        transition: background .3s ease;
    }

        .hero-dots span.active {
            background: #fff;
            width: 26px;
            height: 6px;
        }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
    border: 1px solid transparent;
}

.btn-outline {
    border-color: #d1d5db;
    color: #111827;
    background: #fff;
}

    .btn-outline:hover {
        color: black;
        border-color: rgba(0,0,0,.08);
        background: #F5F6F8;
    }

.btn-solid {
    background: var(--primary);
    color: #fff;
}

    .btn-solid:hover {
        background: var(--primary-dark);
    }

/* Purpose */
.purpose {
    background: var(--bg);
}

    .purpose h2 {
        font-size: 30px;
        line-height: 1.2;
        margin: 0 0 16px;
        max-width: 1200px;
    }

    .purpose p {
        max-width: 1200px;
        color: var(--muted);
        line-height: 1.35;
        margin: 0 0 24px;
        font-size: 13px;
    }

/* Split section */
.split-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.split-content h2 {
    font-size: 42px;
    margin: 0 0 16px;
}

.split-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 460px;
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Section heads */
.section-head {
    margin-bottom: 28px;
}

    .section-head h2 {
        margin: 0 0 10px;
        font-size: 40px;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
    }

    .section-head.two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .section-head.center {
        text-align: center;
    }

.inline-head,
.latest-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

/* Insights */
.insights {
    background: var(--bg);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.insight-card {
    position: relative;
    min-height: 340px;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.insight-card-hover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.insight-card:hover .insight-card-hover {
    opacity: 1;
}

.insight-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,59,31,.10) 0%, rgba(7,59,31,.75) 100%);
}

.insight-card .content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    z-index: 1;
    transition: transform 0.35s ease;
}

    .insight-card .content.is-lifted {
        transform: translateY(-10px);
    }

.insight-card h3 {
    margin: 0 0 6px;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
}

.insight-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Services value */
.slider-nav {
    display: flex;
    gap: 10px;
}

    .slider-nav button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid #d1d5db;
        background: #fff;
        cursor: pointer;
    }

.services-value {
    padding-bottom: 16px;
}

/* Commitment Slider */
.commitment-slider {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

    .commitment-slider.is-dragging {
        cursor: grabbing;
    }

.commitment-track {
    position: absolute;
    inset: 0;
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease;
}

.commitment-slide {
    flex: 0 0 20%;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    min-height: 440px;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,40,25,.10) 0%, rgba(9,123,71,.75) 100%);
}

.commitment-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.commitment-mark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-10%, -50%);
    font-size: 600px;
    line-height: 0;
    font-weight: 800;
    color: rgba(255,255,255,.12);
    pointer-events: none;
}

.commitment-slider h2 {
    margin: 150px 100px 0 500px;
    text-align: right;
    font-size: 74px;
    line-height: 1;
    font-weight: 800;
}

.commitment-slider p {
    margin: 0 100px 0 500px;
    text-align: right;
    font-size: 28px;
    font-weight: 600;
}

.commitment-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

    .commitment-dots span {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,.45);
        cursor: pointer;
        transition: background .3s;
    }

        .commitment-dots span.active {
            background: #fff;
        }

/* What we do */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.service-card {
    min-height: 180px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 18px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow);
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.10) 10%, rgba(0,0,0,.55) 100%);
    }

    .service-card span {
        position: relative;
        z-index: 1;
    }

    .service-card .material-icons {
        transition: transform 0.3s ease;
    }

    .service-card:hover .material-icons {
        transform: translateX(5px);
    }

/* Latest updates */
.see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1.5px solid var(--primary);
    border-radius: 999px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

    .see-all .material-icons {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .see-all:hover {
        background: var(--primary);
        color: #fff;
    }

    .see-all:hover .material-icons {
        transform: translateX(4px);
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 26px;
}

a.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

    a.news-card img {
        transition: transform 0.35s ease;
    }

    a.news-card:hover img {
        transform: scale(1.2);
    }

.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .news-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.news-body {
    padding: 18px;
}

    .news-body h3 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.45;
    }

.news-date {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}

.news-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

/* CTA */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-card {
    position: relative;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: var(--shadow);
    opacity: 0;
}

    .cta-card.is-visible {
        animation: ctaFadeUp 0.6s ease both;
    }

    .cta-card:nth-child(2).is-visible {
        animation-delay: 0.15s;
    }

.cta-bg,
.cta-bg-hover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cta-bg-hover {
    opacity: 0;
}

.cta-card:hover .cta-bg {
    transform: scale(1.07);
}

.cta-card:hover .cta-bg-hover {
    opacity: 1;
    transform: scale(1.07);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease;
}

.cta-card:hover .cta-overlay {
    opacity: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 24px;
    width: 100%;
}

    .cta-content h3 {
        margin: 0 0 8px;
        font-size: 34px;
        line-height: 1.1;
    }

    .cta-content span {
        font-size: 14px;
        font-weight: 600;
    }

.cta-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .cta-learn-more .material-icons {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .cta-card:hover .cta-learn-more .material-icons {
        transform: translateX(5px);
    }

.copyright {
    margin-top: 24px !important;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1200px) {
    .insight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-head.two-col,
    .split-grid,
    .footer-grid,
    .cta-grid,
    .news-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inline-head,
    .latest-head {
        flex-direction: column;
        align-items: start;
    }

    .commitment-slider h2 {
        font-size: 54px;
        margin: 60px 40px 0 40px;
        text-align: left;
    }

    .commitment-slider p {
        font-size: 22px;
        margin: 10px 40px 0;
        text-align: left;
    }

    .commitment-mark {
        font-size: 220px;
    }

    .split-content {
        padding: 36px 24px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .commitment-slider h2 {
        font-size: 42px;
        margin: 40px 24px 0;
    }

    .commitment-slider p {
        font-size: 18px;
        margin: 8px 24px 0;
    }

    .commitment-mark {
        font-size: 160px;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .cta-content h3 {
        font-size: 28px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.35;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    .hero-content {
        bottom: 12px;
        padding-bottom: 20px;
    }

    .hero-slide-content {
        bottom: 72px;
    }

    .purpose h2,
    .split-content h2,
    .section-head h2 {
        font-size: 22px;
    }

    .split-content {
        padding: 28px 16px;
    }

    .split-content p {
        max-width: 100%;
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        min-height: 220px;
    }

    .insight-card h3 {
        font-size: 38px;
    }

    .commitment-slider,
    .commitment-slide {
        min-height: 280px;
    }

    .commitment-slider h2 {
        margin: 20px 16px 0;
        font-size: 30px;
        text-align: left;
    }

    .commitment-slider p {
        margin: 8px 16px 0;
        font-size: 15px;
        text-align: left;
    }

    .commitment-mark {
        font-size: 100px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        font-size: 18px;
        min-height: 150px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card img {
        height: 180px;
    }

    .section-head.two-col {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
        justify-content: center;
    }
}
