/* =========================================================
   Sajhbati
   Components
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    background: var(--color-bg);
}

.site-header .container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ---------------------------------------------------------
   Logo
--------------------------------------------------------- */

.site-logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    margin-top: 5px;
}

/* ---------------------------------------------------------
   Navigation
--------------------------------------------------------- */

.main-nav {
    display: flex;
    align-items: center;

    gap: 26px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    color: var(--color-text-soft);

    font-size: 14px;
    font-weight: 500;

    padding: 8px 0;

    transition:
        color var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--color-primary);

    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* ---------------------------------------------------------
   Header CTA
--------------------------------------------------------- */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border: 1px solid var(--color-primary);

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 600;

    transition:
        background var(--transition),
        color var(--transition);
}

.header-cta:hover {
    background: var(--color-primary);
    color: #ffffff;
}


/* ---------------------------------------------------------
   Mobile Menu
--------------------------------------------------------- */

.mobile-menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    background: var(--color-text);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    padding: 30px 0 70px;
}


/* ---------------------------------------------------------
   Hero Grid
--------------------------------------------------------- */

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(280px, 1fr);

    gap: 50px;

    align-items: stretch;
}


/* =========================================================
   HERO MAIN — LEFT
========================================================= */

.hero-main {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    background: #d9ded8;
}


/* ---------------------------------------------------------
   Hero Image
--------------------------------------------------------- */

.hero-image {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ---------------------------------------------------------
   Hero Overlay
--------------------------------------------------------- */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(20, 35, 28, 0.02) 15%,
            rgba(20, 35, 28, 0.18) 50%,
            rgba(20, 35, 28, 0.78) 100%
        );
}


/* ---------------------------------------------------------
   Hero Content
--------------------------------------------------------- */

.hero-content {
    position: absolute;

    left: 50px;
    right: 50px;
    bottom: 48px;

    z-index: 3;

    max-width: 650px;
}

.hero-brand {
    display: inline-block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.04em;
}

.hero-content h1 {
    color: #ffffff;

    font-size: clamp(38px, 4vw, 62px);

    font-weight: 600;

    letter-spacing: -0.025em;

    margin-bottom: 18px;
}

.hero-content p {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* ---------------------------------------------------------
   Hero Link
--------------------------------------------------------- */

.hero-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.6);

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    transition:
        gap var(--transition),
        border-color var(--transition);
}

.hero-link:hover {
    gap: 16px;

    border-color: #ffffff;
}


/* =========================================================
   HERO SECTORS — RIGHT
========================================================= */

.hero-sectors {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 20px 0;
}


/* ---------------------------------------------------------
   Sectors Heading
--------------------------------------------------------- */

.hero-sectors-heading {
    padding-bottom: 28px;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.08em;
}

.hero-sectors-heading h2 {
    color: var(--color-text);

    font-size: 30px;

    font-weight: 600;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   Sector Item
--------------------------------------------------------- */

.sector-item {
    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr 20px;

    gap: 16px;

    align-items: start;

    padding: 24px 0;

    border-top: 1px solid var(--color-border);

    transition:
        padding-left var(--transition),
        border-color var(--transition);
}

.sector-item:last-child {
    border-bottom: 1px solid var(--color-border);
}

.sector-item:hover {
    padding-left: 8px;

    border-color: #bdc9c1;
}


/* ---------------------------------------------------------
   Sector Icon
--------------------------------------------------------- */

.sector-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: var(--color-primary);
}

.sector-icon svg {
    width: 25px;
    height: 25px;
}


/* ---------------------------------------------------------
   Sector Content
--------------------------------------------------------- */

.sector-number {
    display: block;

    margin-bottom: 3px;

    color: var(--color-text-muted);

    font-size: 11px;

    letter-spacing: 0.08em;
}

.sector-content h3 {
    margin-bottom: 5px;

    color: var(--color-text);

    font-size: 17px;
}

.sector-content p {
    font-size: 13px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   Sector Arrow
--------------------------------------------------------- */

.sector-arrow {
    align-self: center;

    color: var(--color-primary);

    font-size: 18px;

    transition:
        transform var(--transition);
}

.sector-item:hover .sector-arrow {
    transform: translateX(5px);
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 100px 0;
}


/* ---------------------------------------------------------
   About Content
--------------------------------------------------------- */

.about-content {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


/* ---------------------------------------------------------
   Eyebrow
--------------------------------------------------------- */

.about-content .section-eyebrow {
    margin-bottom: 16px;
}


/* ---------------------------------------------------------
   Heading
--------------------------------------------------------- */

.about-content h2 {
    max-width: 700px;

    margin: 0 auto 28px;

    color: var(--color-text);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.45;

    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   Paragraph
--------------------------------------------------------- */

.about-content p {
    max-width: 760px;

    margin: 0 auto 16px;

    color: var(--color-text-soft);

    font-size: 16px;

    line-height: 1.9;
}


/* ---------------------------------------------------------
   Link
--------------------------------------------------------- */

.about-content .text-link {
    margin-top: 14px;
}

/* =========================================================
   APPROACH SECTION
========================================================= */

.approach-section {
    padding: 100px 0;
}


/* ---------------------------------------------------------
   Section Heading
--------------------------------------------------------- */

.approach-heading {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}

.approach-heading .section-eyebrow {
    margin-bottom: 14px;
}

.approach-heading h2 {
    margin-bottom: 20px;

    color: var(--color-text);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.4;

    letter-spacing: -0.02em;
}

.approach-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--color-text-soft);

    font-size: 16px;

    line-height: 1.9;
}


/* ---------------------------------------------------------
   Approach Steps
--------------------------------------------------------- */

.approach-steps {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}


/* ---------------------------------------------------------
   Approach Item
--------------------------------------------------------- */

.approach-item {
    position: relative;

    min-height: 270px;

    padding: 32px 24px;

    border-right: 1px solid var(--color-border);
}

.approach-item:first-child {
    border-left: 1px solid var(--color-border);
}


/* ---------------------------------------------------------
   Number
--------------------------------------------------------- */

.approach-number {
    display: block;

    margin-bottom: 28px;

    color: var(--color-text-muted);

    font-size: 12px;

    letter-spacing: 0.08em;
}


/* ---------------------------------------------------------
   Icon
--------------------------------------------------------- */

.approach-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    line-height: 42px;
    border-radius: 50%;
    text-align: center;
}
/* ---------------------------------------------------------
   Title
--------------------------------------------------------- */

.approach-item h3 {
    margin-bottom: 10px;

    color: var(--color-text);

    font-size: 17px;
}


/* ---------------------------------------------------------
   Description
--------------------------------------------------------- */

.approach-item p {
    color: var(--color-text-soft);

    font-size: 13px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   Hover
--------------------------------------------------------- */

.approach-item {
    transition:
        background var(--transition);
}

.approach-item:hover {
    background: rgba(49, 92, 72, 0.035);
}


/* ---------------------------------------------------------
   Action
--------------------------------------------------------- */

.approach-action {
    margin-top: 28px;

    text-align: center;
}

/* =========================================================
   STATISTICS SECTION
========================================================= */

.statistics-section {
    padding: 100px 0;
}


/* ---------------------------------------------------------
   Statistics Content
--------------------------------------------------------- */

.statistics-content {
    max-width: 1000px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   Heading
--------------------------------------------------------- */

.statistics-heading {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.statistics-heading .section-eyebrow {
    margin-bottom: 14px;
}

.statistics-heading h2 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.4;

    letter-spacing: -0.02em;
}

.statistics-heading p {
    color: var(--color-text-soft);

    font-size: 15px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   Statistics Grid
--------------------------------------------------------- */

.statistics-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}


/* ---------------------------------------------------------
   Statistic Item
--------------------------------------------------------- */

.stat-item {
    min-height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    text-align: center;

    border-right: 1px solid var(--color-border);
}

.stat-item:first-child {
    border-left: 1px solid var(--color-border);
}


/* ---------------------------------------------------------
   Number
--------------------------------------------------------- */

.stat-number {
    display: block;

    margin-bottom: 6px;

    color: var(--color-primary);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.2;
}


/* ---------------------------------------------------------
   Label
--------------------------------------------------------- */

.stat-label {
    color: var(--color-text-soft);

    font-size: 13px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   Hover
--------------------------------------------------------- */

.stat-item {
    transition:
        background var(--transition);
}

.stat-item:hover {
    background: rgba(49, 92, 72, 0.035);
}


/* ---------------------------------------------------------
   Action
--------------------------------------------------------- */

.statistics-action {
    margin-top: 28px;

    text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 80px 0 0;

    background: var(--color-primary-dark);

    color: #ffffff;
}


/* ---------------------------------------------------------
   Footer Main
--------------------------------------------------------- */

.footer-main {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.2fr;

    gap: 50px;

    padding-bottom: 60px;
}


/* ---------------------------------------------------------
   Footer Brand
--------------------------------------------------------- */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 16px;

    color: #ffffff;

    font-size: 27px;
    font-weight: 600;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;

    line-height: 1.8;
}

.footer-brand .footer-description {
    max-width: 340px;

    margin-top: 12px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 13px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   Footer Columns
--------------------------------------------------------- */

.footer-column h3 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}


/* ---------------------------------------------------------
   Footer Contact
--------------------------------------------------------- */

.footer-contact address {
    display: flex;

    flex-direction: column;

    gap: 9px;

    font-style: normal;
}

.footer-contact address p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
}

.footer-contact address a {
    display: inline-block;
}


/* ---------------------------------------------------------
   Footer Bottom
--------------------------------------------------------- */

.footer-bottom {
    min-height: 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;

    transition:
        color var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}