/*
Theme Name: Terra Business
Theme URI: https://www.terraworld.biz/
Author: Terra Business
Author URI: https://www.terraworld.biz/
Description: Custom lightweight WordPress theme for Terra Business.
Version: 1.0.0
Text Domain: terra-business
*/

/* ==========================================================
   TERRA BUSINESS — TYPOGRAPHY
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

/* ==========================================================
   GLOBAL TYPOGRAPHY
========================================================== */

:root {
    --terra-font-heading: "Poppins", sans-serif;
    --terra-font-body: "Inter", sans-serif;
}

/* =========================
   BASE
========================= */

* {
    box-sizing: border-box;
}

html,
body {
    font-family: var(--terra-font-body);
}

html {
    scroll-behavior: smooth;
    font-weight: 400;
    color: #586477;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #172033;
}

img {
    max-width: 100%;
    height: auto;
}


/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--terra-font-heading);
    color: #102f5c;
}


/* LINKS / BUTTONS / NAVIGATION */

button,
input,
select,
textarea {
    font-family: var(--terra-font-body);
}

.terra-navigation,
.terra-button,
.terra-header-quote,
.terra-language,
.terra-about-cta {
    font-family: var(--terra-font-heading);
}


/* =========================
   CONTAINER
========================= */

.terra-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* ==========================================================
   TERRA BUSINESS
   CONSOLIDATED HEADER CSS

   Includes:
   1. Topbar
   2. Main header
   3. Floating Terra logo
   4. Navigation
   5. Contact CTA
   6. Mobile menu
   7. Hero overlap
========================================================== */


/* ==========================================================
   01. GLOBAL HEADER VARIABLES
========================================================== */

:root {

    /* Terra brand colours */
    --terra-blue: #06335d;
    --terra-blue-dark: #042a4f;
    --terra-blue-deep: #032441;

    --terra-orange: #ff7900;
    --terra-orange-hover: #e96e00;

    --terra-white: #ffffff;

    /* Header dimensions */
    --terra-topbar-height: 36px;
    --terra-header-height: 92px;

    /* Logo */
    --terra-header-logo-width: 285px;
}


/* ==========================================================
   02. SHARED CONTAINER
========================================================== */

.terra-container {
    width: min(1180px, calc(100% - 80px));

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   03. TOPBAR
========================================================== */

.terra-topbar {
    position: relative;

    z-index: 1200;

    width: 100%;
    height: var(--terra-topbar-height);

    background: var(--terra-blue-dark);

    color: #ffffff;
}


/* Topbar inner container */

.terra-topbar-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    height: 100%;

    gap: 30px;
}


/* ==========================================================
   04. TOPBAR LEFT
========================================================== */

.terra-topbar-left {
    display: flex;

    align-items: center;

    gap: 24px;
}


/* Individual information item */

.terra-topbar-item {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.88);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}


/* Topbar icons */

.terra-topbar-item i {
    color: var(--terra-orange);

    font-size: 11px;
}


/* Links */

.terra-topbar-item a {
    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;

    transition: color 0.25s ease;
}


.terra-topbar-item a:hover {
    color: var(--terra-orange);
}


/* ==========================================================
   05. TOPBAR RIGHT
========================================================== */

.terra-topbar-right {
    display: flex;

    align-items: center;

    gap: 17px;
}


/* ==========================================================
   06. TOPBAR SOCIAL ICONS
========================================================== */

.terra-topbar-socials {
    display: flex;

    align-items: center;

    gap: 12px;
}


.terra-topbar-social {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.90);

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.terra-topbar-social:hover {
    color: var(--terra-orange);

    transform: translateY(-1px);
}


/* ==========================================================
   07. TOPBAR LANGUAGE
========================================================== */

.terra-language {
    position: relative;

    display: flex;

    align-items: center;

    gap: 6px;

    padding-left: 15px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.25);

    color: #ffffff;

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 11px;
}


.terra-language i {
    color: var(--terra-orange);
}


.terra-language a {
    color: #ffffff;

    text-decoration: none;
}


.terra-language a:hover {
    color: var(--terra-orange);
}


/* ==========================================================
   08. MAIN HEADER
========================================================== */

.terra-header {
    position: relative;

    z-index: 1100;

    width: 100%;
    height: var(--terra-header-height);

    background: #ffffff;

    border-bottom:
        1px solid
        rgba(4, 47, 86, 0.08);

    /*
     * CRITICAL:
     * The logo slogan must be allowed
     * to extend outside the header.
     */
    overflow: visible;
}


/* ==========================================================
   09. HEADER INNER
========================================================== */

.terra-header-inner {
    position: relative;

    display: flex;

    align-items: center;

    height: var(--terra-header-height);

    overflow: visible;
}


/* ==========================================================
   10. LOGO BRAND AREA
========================================================== */

.terra-header-brand {
    position: relative;

    z-index: 1150;

    flex:
        0
        0
        var(--terra-header-logo-width);

    height: 100%;

    overflow: visible;
}


/* ==========================================================
   11. FLOATING LOGO
========================================================== */

.terra-header-logo {
    position: absolute;

    /*
     * Fine adjustment:
     * Controls how much of the logo drops
     * into the hero.
     */
    top: 5px;
    left: 0;

    display: block;

    width: var(--terra-header-logo-width);

    text-decoration: none;

    overflow: visible;
}


/* Actual image */

.terra-header-logo-image {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: contain;

    /*
     * Keeps the whole image including
     * "Making things possible".
     */
    overflow: visible;
}


/* ==========================================================
   12. NAVIGATION
========================================================== */

.terra-main-nav {
    display: flex;

    align-items: center;

    margin-left: auto;

    height: 100%;
}


/* Navigation list */

.terra-nav-list {
    display: flex;

    align-items: center;

    gap: 23px;

    height: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}


.terra-nav-list > li {
    position: relative;

    display: flex;

    align-items: center;

    height: 100%;

    margin: 0;
    padding: 0;
}


/* Navigation links */

.terra-nav-list > li > a {
    position: relative;

    display: flex;

    align-items: center;

    height: 100%;

    padding: 0;

    color: var(--terra-blue);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 12.5px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.terra-nav-list > li > a:hover {
    color: var(--terra-orange);
}


/* ==========================================================
   13. NAVIGATION HOVER LINE
========================================================== */

.terra-nav-list > li > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--terra-orange);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.terra-nav-list > li > a:hover::after {
    width: 100%;
}


/* WordPress current page */

.terra-nav-list .current-menu-item > a,
.terra-nav-list .current_page_item > a {
    color: var(--terra-orange);
}


.terra-nav-list .current-menu-item > a::after,
.terra-nav-list .current_page_item > a::after {
    width: 100%;
}


/* ==========================================================
   14. HEADER ACTIONS
========================================================== */

.terra-header-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-left: 26px;
}


/* ==========================================================
   15. CONTACT BUTTON
========================================================== */

.terra-header-contact {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 19px;

    color: #ffffff;

    background: var(--terra-orange);

    border:
        1px solid
        var(--terra-orange);

    border-radius: 5px;

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 11.5px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.terra-header-contact:hover {
    color: #ffffff;

    background: var(--terra-orange-hover);

    border-color: var(--terra-orange-hover);

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px
        rgba(255, 121, 0, 0.20);
}


/* ==========================================================
   16. MOBILE MENU BUTTON
========================================================== */

.terra-menu-toggle {
    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;

    border: 0;

    cursor: pointer;
}


.terra-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 3px 0;

    background: var(--terra-blue);

    border-radius: 10px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* ==========================================================
   17. HERO RELATIONSHIP
========================================================== */

/*
 * Applies to homepage and About hero.
 * Add other Terra hero classes here later.
 */

.terra-hero,
.terra-about-hero {
    position: relative;

    z-index: 1;
}


/*
 * The header must stay above the hero because
 * the white slogan is part of the logo image
 * and physically extends over the hero.
 */

.terra-header {
    z-index: 1100;
}


.terra-header-brand,
.terra-header-logo {
    z-index: 1150;
}


/* ==========================================================
   18. IMPORTANT — HERO OVERLAP SPACE
========================================================== */

/*
 * Because the slogan extends into the hero,
 * leave a little room at the upper-left of
 * hero content.

 * This prevents the slogan from colliding
 * with the hero heading.
 */

.terra-hero .terra-container,
.terra-about-hero .terra-container {
    position: relative;
}


/* ==========================================================
   19. ACCESSIBILITY
========================================================== */

.terra-header a:focus-visible,
.terra-topbar a:focus-visible,
.terra-menu-toggle:focus-visible {
    outline:
        2px solid
        var(--terra-orange);

    outline-offset: 4px;
}


/* ==========================================================
   20. MEDIUM DESKTOP
   Reduce logo/navigation before tablet breakpoint
========================================================== */

@media (max-width: 1180px) {

    :root {
        --terra-header-logo-width: 245px;
    }


    .terra-nav-list {
        gap: 17px;
    }


    .terra-nav-list > li > a {
        font-size: 11.5px;
    }


    .terra-header-actions {
        margin-left: 18px;
    }


    .terra-header-contact {
        padding: 0 15px;

        font-size: 11px;
    }

}


/* ==========================================================
   21. TABLET / MOBILE NAVIGATION
========================================================== */

@media (max-width: 980px) {

    :root {
        --terra-header-height: 82px;
        --terra-header-logo-width: 235px;
    }


    /* -----------------------------------------
       Topbar
    ----------------------------------------- */

    .terra-topbar-left {
        gap: 15px;
    }


    .terra-topbar-item {
        font-size: 10.5px;
    }


    /*
     * Hide less-important location information
     * if you apply this class to it.
     */

    .terra-topbar-location {
        display: none;
    }


    /* -----------------------------------------
       Mobile menu trigger
    ----------------------------------------- */

    .terra-menu-toggle {
        display: flex;
    }


    /* -----------------------------------------
       Navigation dropdown
    ----------------------------------------- */

    .terra-main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        height: auto;

        margin-left: 0;

        background: #ffffff;

        box-shadow:
            0 14px 30px
            rgba(2, 32, 59, 0.12);
    }


    /*
     * JS can add .is-open
     */

    .terra-main-nav.is-open {
        display: block;
    }


    .terra-nav-list {
        display: block;

        width: min(100% - 40px, 900px);
        height: auto;

        margin: 0 auto;

        padding: 15px 0 20px;
    }


    .terra-nav-list > li {
        display: block;

        height: auto;

        border-bottom:
            1px solid
            rgba(6, 51, 93, 0.08);
    }


    .terra-nav-list > li:last-child {
        border-bottom: 0;
    }


    .terra-nav-list > li > a {
        display: block;

        height: auto;

        padding: 13px 3px;

        font-size: 13px;
    }


    .terra-nav-list > li > a::after {
        display: none;
    }


    /* Contact button remains */

    .terra-header-actions {
        margin-left: auto;
    }

}


/* ==========================================================
   22. MOBILE
========================================================== */

@media (max-width: 700px) {

    :root {
        --terra-topbar-height: 34px;
        --terra-header-height: 76px;
        --terra-header-logo-width: 205px;
    }


    .terra-container {
        width: calc(100% - 40px);
    }


    /* -----------------------------------------
       Topbar
    ----------------------------------------- */

    .terra-topbar-inner {
        gap: 10px;
    }


    /*
     * Keep phone/email compact.
     */

    .terra-topbar-left {
        gap: 12px;
    }


    .terra-topbar-item {
        font-size: 10px;
    }


    /*
     * Hide email on narrower screens if
     * .terra-topbar-email is applied.
     */

    .terra-topbar-email {
        display: none;
    }


    .terra-topbar-socials {
        display: none;
    }


    .terra-language {
        padding-left: 10px;

        font-size: 10px;
    }


    /* -----------------------------------------
       Logo
    ----------------------------------------- */

    .terra-header-logo {
        top: 6px;
    }


    /*
     * Hide desktop CTA to leave enough
     * room for logo and hamburger.
     */

    .terra-header-contact {
        display: none;
    }


    .terra-header-actions {
        margin-left: auto;
    }

}


/* ==========================================================
   23. SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    :root {
        --terra-header-logo-width: 180px;
    }


    .terra-container {
        width: calc(100% - 30px);
    }


    /*
     * On very narrow devices we keep only
     * one useful topbar contact item.
     */

    .terra-topbar-email,
    .terra-topbar-location {
        display: none;
    }


    .terra-topbar-item {
        font-size: 9.5px;
    }


    .terra-language {
        font-size: 9.5px;
    }


    .terra-menu-toggle {
        width: 38px;
        height: 38px;
    }


    .terra-menu-toggle span {
        width: 22px;
    }

}


/* ==========================================================
   24. VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    :root {
        --terra-header-logo-width: 165px;
    }


    .terra-language span {
        display: none;
    }

}


/* ==========================================================
   25. REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .terra-nav-list > li > a,
    .terra-nav-list > li > a::after,
    .terra-header-contact,
    .terra-topbar-item a,
    .terra-topbar-social,
    .terra-menu-toggle span {
        transition: none;
    }

}









/* ==========================================================
   TERRA BUSINESS
   HERO SECTION
========================================================== */


.terra-hero {

    position: relative;

    min-height: 650px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background-image:
        url("assets/images/terra-hero.jpg");

    background-size: cover;

    /*
     * Keeps the vehicles/machinery more visible
     * toward the right side.
     */
    background-position: center right;

    background-repeat: no-repeat;

    color: #ffffff;
    
    
    z-index: 1;
}



/* ==========================================================
   HERO DARK GRADIENT
========================================================== */


.terra-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    /*
     * Strong navy on the left for text readability,
     * progressively revealing the image toward the right.
     */

    background:
        linear-gradient(
            90deg,

            rgba(6, 25, 48, 0.97) 0%,

            rgba(6, 25, 48, 0.91) 25%,

            rgba(6, 25, 48, 0.72) 48%,

            rgba(6, 25, 48, 0.32) 70%,

            rgba(6, 25, 48, 0.08) 100%
        );

}



/* ==========================================================
   MAIN HERO CONTENT
========================================================== */


.terra-hero-main {

    position: relative;

    z-index: 2;

    flex: 1;

    display: flex;
    align-items: center;

    padding-top: 75px;
    padding-bottom: 80px;

}


.terra-hero-copy {

    width: 100%;

    max-width: 700px;

}



/* ==========================================================
   EYEBROW
========================================================== */


.terra-hero-eyebrow {
    font-family: var(--terra-font-heading);

    font-weight: 700;

    letter-spacing: 1.6px;

    margin: 0 0 17px;

    color: #f47b20;

    font-size: 14px;

    line-height: 1.4;

    text-transform: uppercase;

}



/* ==========================================================
   HERO HEADING
========================================================== */


.terra-hero h1 {
    font-family: var(--terra-font-heading);

    font-weight: 800;

    letter-spacing: -1.8px;

    line-height: 1.05;

    max-width: 700px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        22px,
        4.6vw,
        38px
    );
}



/* ==========================================================
   DESCRIPTION
========================================================== */


.terra-hero-description {
    font-family: var(--terra-font-body);

    font-weight: 400;

    line-height: 1.65;

    max-width: 620px;

    margin:

        24px
        0
        0;

    color:

        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 17px;
}



/* ==========================================================
   HERO BUTTONS
========================================================== */


.terra-hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;

}


.terra-button {

    min-height: 50px;

    padding:

        0
        24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 3px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:

        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;

}



/* Primary */

.terra-button-primary {

    background: #f47b20;

    color: #ffffff;

    border:

        1px
        solid
        #f47b20;

}


.terra-button-primary:hover {

    background: #dc6813;

    border-color: #dc6813;

    transform:
        translateY(-1px);

}



/* Secondary */

.terra-button-secondary {

    background:

        rgba(
            10,
            30,
            55,
            0.30
        );

    color: #ffffff;

    border:

        1px
        solid
        rgba(
            255,
            255,
            255,
            0.70
        );

}


.terra-button-secondary:hover {

    background: #ffffff;

    color: #13294b;

    border-color: #ffffff;

}



/* ==========================================================
   HERO BENEFITS — TRANSPARENT
========================================================== */

.terra-hero-benefits {
    position: relative;
    z-index: 2;

    width: 100%;

    /* Fully transparent */
    background: transparent;

    /* Subtle divider above benefits */
    border-top: 0px solid rgba(255, 255, 255, 0.18);
}


.terra-benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 50px;

    padding-top: 25px;

    padding-bottom: 25px;

}



/* Individual benefit */

.terra-benefit {

    display: flex;

    align-items: center;

    gap: 16px;

}



/* Icon */

.terra-benefit-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4b521;

    border: 2px solid rgba(244, 181, 33, 0.85);
    border-radius: 50%;
}

.terra-benefit-icon svg {
    width: 24px;
    height: 24px;
}



/* Benefit text */

.terra-benefit-content h3 {

    margin:

        0
        0
        3px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

}


.terra-benefit-content p {

    margin: 0;

    color:

        rgba(
            255,
            255,
            255,
            0.70
        );

    font-size: 12px;

    line-height: 1.4;

}



/* ==========================================================
   TABLET
========================================================== */


@media (max-width: 900px) {

    .terra-hero {

        min-height: 620px;

        background-position:
            65% center;

    }


    .terra-hero-overlay {

        background:

            linear-gradient(

                90deg,

                rgba(6,25,48,0.96)
                0%,

                rgba(6,25,48,0.88)
                48%,

                rgba(6,25,48,0.50)
                100%

            );

    }


    .terra-hero-main {

        padding-top: 65px;

        padding-bottom: 65px;

    }


    .terra-benefits-grid {

        gap: 25px;

    }

}



/* ==========================================================
   MOBILE
========================================================== */


@media (max-width: 700px) {

    .terra-hero {

        min-height: auto;

        background-position:
            68% center;

    }


    .terra-hero-overlay {

        background:

            rgba(
                6,
                25,
                48,
                0.82
            );

    }


    .terra-hero-main {

        min-height: 540px;

        padding-top: 70px;

        padding-bottom: 70px;

    }


    .terra-hero h1 {

        font-size:
            clamp(
                36px,
                10vw,
                50px
            );

        letter-spacing: -1px;

    }


    /*
     * Don't force desktop line breaks
     * onto a narrow phone screen.
     */

    .terra-hero h1 br {

        display: none;

    }


    .terra-hero-description {

        font-size: 16px;

    }


    .terra-benefits-grid {

        grid-template-columns: 1fr;

        gap: 22px;

        padding-top: 25px;

        padding-bottom: 25px;

    }

}



/* ==========================================================
   SMALL MOBILE
========================================================== */


@media (max-width: 480px) {

    .terra-hero-main {

        min-height: 510px;

        padding-top: 55px;

        padding-bottom: 55px;

    }


    .terra-hero-actions {

        flex-direction: column;

        align-items: stretch;

        max-width: 320px;

    }


    .terra-button {

        width: 100%;

    }

}










/* ==========================================================
   STAGE 2B — PRODUCT CATEGORY STRIP
   Terra Business
========================================================== */

.terra-category-strip {
    padding: 22px 0 28px;
    background: #ffffff;
}


/* ==========================================================
   GRID
========================================================== */

.terra-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}


/* ==========================================================
   CATEGORY CARD
========================================================== */

.terra-category-card {
    min-width: 0;
    min-height: 145px;

    padding: 19px 10px 17px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-decoration: none;

    background: #f8f9fb;

    border: 1px solid #f0f2f5;
    border-radius: 2px;

    box-shadow:
        0 5px 18px rgba(19, 41, 75, 0.025);

    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}


/* ==========================================================
   CATEGORY ICONS
========================================================== */

.terra-category-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12366b;

    font-size: 40px;
    line-height: 1;
}

.terra-category-icon i {
    display: block;
}

.terra-category-card:hover .terra-category-icon {
    color: #12366b;
    transform: translateY(-2px);
}

.terra-icon-hole {
    fill: #f8f9fb;
}
}

.terra-category-card:hover .terra-icon-hole {
    fill: #ffffff;
}


/*
 * Used to create transparent holes/windows
 * inside the solid SVG pictograms.
 */
.terra-category-icon .terra-icon-cutout {
    fill: #f8f9fb;
}


/* ==========================================================
   CATEGORY TITLE
========================================================== */

.terra-category-card h3 {
    font-family: var(--terra-font-heading);

    font-weight: 700;

    letter-spacing: -0.2px;
    
    margin: 0;

    color: #102c56;

    font-size: 13px;
    
    line-height: 1.3;

    white-space: normal;
}


/* ==========================================================
   CATEGORY DESCRIPTION
========================================================== */

.terra-category-card p {
    margin: 7px 0 0;

    color: #6d7480;

    font-size: 10px;
    line-height: 1.4;

    font-weight: 400;
}


/* ==========================================================
   HOVER
========================================================== */

.terra-category-card:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: rgba(244, 123, 32, 0.30);

    box-shadow:
        0 12px 28px rgba(19, 41, 75, 0.09);
}

.terra-category-card:hover .terra-category-icon {
    color: #0c2d5b;
}

.terra-category-card:hover .terra-icon-cutout {
    fill: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .terra-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-category-strip {
        padding: 18px 0 24px;
    }

    .terra-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .terra-category-card {
        min-height: 140px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .terra-category-grid {
        grid-template-columns: 1fr;
    }

}









/* ==========================================================
   STAGE 2C — ABOUT TERRA BUSINESS
========================================================== */

.terra-about-showcase {
    padding: 25px 0;
    background: #ffffff;
}


/* ==========================================================
   MAIN TWO-COLUMN LAYOUT
========================================================== */

.terra-about-showcase-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 70px;

    align-items: center;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.terra-about-showcase-content {
    max-width: 560px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.terra-about-eyebrow {
    margin: 0 0 10px;

    color: #f4b521;

    font-family: var(--terra-font-heading);

    font-size: 14px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* ==========================================================
   HEADING
========================================================== */

.terra-about-showcase-content h2 {
    margin: 0;

    max-width: 620px;

    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: clamp(14px, 3.4vw, 28px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.4px;
}


/* ==========================================================
   BODY COPY
========================================================== */

.terra-about-copy {
    margin: 22px 0 0;

    max-width: 540px;

    color: #586477;

    font-family: var(--terra-font-body);

    font-size: 16px;

    line-height: 1.7;

    font-weight: 400;
}


/* ==========================================================
   CTA BUTTON
========================================================== */

.terra-about-cta {
    margin-top: 30px;

    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #f4b521;

    color: #102f5c;

    text-decoration: none;

    border-radius: 3px;

    font-family: var(--terra-font-heading);

    font-size: 14px;

    font-weight: 600;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        gap 0.2s ease;
}

.terra-about-cta:hover {
    background: #e2a913;

    transform: translateY(-2px);

    gap: 16px;
}


/* ==========================================================
   RIGHT IMAGE COLLAGE WRAPPER
========================================================== */

.terra-about-collage {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* ==========================================================
   COLLAGE — TOP ROW
========================================================== */

.terra-about-collage-top {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(0, 1fr);

    gap: 10px;

    height: 190px;
}


/* ==========================================================
   COLLAGE — BOTTOM ROW
========================================================== */

.terra-about-collage-bottom {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 10px;

    height: 190px;
}


/* ==========================================================
   GENERAL IMAGE BLOCK
========================================================== */

.terra-about-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #edf1f5;

    border-radius: 3px;
}


/* ==========================================================
   IMAGE SETTINGS
========================================================== */

.terra-about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}

.terra-about-image:hover img {
    transform: scale(1.035);
}


/* ==========================================================
   VEHICLES IMAGE
========================================================== */

.terra-about-vehicles img {
    object-position: center center;
}


/* ==========================================================
   MACHINERY IMAGE
========================================================== */

.terra-about-machinery img {
    object-position: center center;
}


/* ==========================================================
   TRUCK IMAGE
========================================================== */

.terra-about-truck img {
    object-position: center center;
}


/* ==========================================================
   STAT CARD
========================================================== */

.terra-about-stat-card {
    width: 100%;
    height: 100%;

    padding: 18px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #174c88 0%,
            #103765 55%,
            #0b2b55 100%
        );

    color: #ffffff;

    border-radius: 3px;

    box-shadow:
        0 8px 22px rgba(15, 49, 92, 0.13);
}


/* ==========================================================
   STAT ICON
========================================================== */

.terra-about-stat-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    border: 2px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    font-size: 18px;
}


/* ==========================================================
   STAT NUMBER
========================================================== */

.terra-about-stat-number {
    margin: 0;

    color: #ffffff;

    font-family: var(--terra-font-heading);

    font-size: 28px;

    line-height: 1;

    font-weight: 700;
}


/* ==========================================================
   STAT TEXT
========================================================== */

.terra-about-stat-text {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.86);

    font-family: var(--terra-font-body);

    font-size: 12px;

    line-height: 1.45;

    font-weight: 400;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .terra-about-showcase-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .terra-about-showcase-content {
        max-width: 680px;
    }

    .terra-about-collage-top,
    .terra-about-collage-bottom {
        height: 220px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-about-showcase {
        padding: 65px 0;
    }

    .terra-about-showcase-content h2 br {
        display: none;
    }

    .terra-about-collage-top {
        grid-template-columns: 1fr;

        height: auto;
    }

    .terra-about-vehicles {
        height: 210px;
    }

    .terra-about-stat-card {
        min-height: 155px;
    }

    .terra-about-collage-bottom {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        height: 180px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .terra-about-showcase {
        padding: 55px 0;
    }

    .terra-about-collage {
        gap: 8px;
    }

    .terra-about-collage-top {
        gap: 8px;
    }

    .terra-about-collage-bottom {
        grid-template-columns: 1fr;

        height: auto;

        gap: 8px;
    }

    .terra-about-vehicles {
        height: 190px;
    }

    .terra-about-stat-card {
        min-height: 150px;
    }

    .terra-about-machinery,
    .terra-about-truck {
        height: 190px;
    }

}








/* ==========================================================
   STAGE 2D — FEATURED INVENTORY / LATEST ARRIVALS
========================================================== */

.terra-inventory-section {
    padding: 78px 0 86px;

    background: #f4f7fb;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.terra-inventory-header {
    margin-bottom: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.terra-inventory-eyebrow {
    margin: 0 0 6px;

    color: #f4b521;

    font-family: var(--terra-font-heading);

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* ==========================================================
   SECTION TITLE
========================================================== */

.terra-inventory-heading h2 {
    margin: 0;

    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: clamp(24px, 3.5vw, 40px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.4px;
}


/* ==========================================================
   VIEW ALL LINK
========================================================== */

.terra-inventory-view-all {
    margin-bottom: 4px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #102f5c;

    text-decoration: none;

    font-family: var(--terra-font-heading);

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.terra-inventory-view-all:hover {
    color: #f47b20;

    gap: 12px;
}


/* ==========================================================
   INVENTORY GRID
========================================================== */

.terra-inventory-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* ==========================================================
   INVENTORY CARD
========================================================== */

.terra-inventory-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 3px;

    box-shadow:
        0 8px 20px rgba(19, 41, 75, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.terra-inventory-card:hover {
    transform: translateY(-4px);

    border-color: #dfe5ec;

    box-shadow:
        0 14px 30px rgba(19, 41, 75, 0.09);
}


/* ==========================================================
   IMAGE AREA
========================================================== */

.terra-inventory-image {
    position: relative;

    height: 172px;

    display: block;

    overflow: hidden;

    background: #e9edf2;
}


/* ==========================================================
   CARD IMAGE
========================================================== */

.terra-inventory-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.terra-inventory-card:hover .terra-inventory-image img {
    transform: scale(1.035);
}


/* ==========================================================
   CARD CONTENT
========================================================== */

.terra-inventory-content {
    padding: 15px 15px 14px;
}


/* ==========================================================
   INVENTORY TITLE
========================================================== */

.terra-inventory-content h3 {
    margin: 0;

    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: 14px;

    line-height: 1.35;

    font-weight: 700;
}

.terra-inventory-content h3 a {
    color: inherit;

    text-decoration: none;
}

.terra-inventory-content h3 a:hover {
    color: #f47b20;
}


/* ==========================================================
   SPECS
========================================================== */

.terra-inventory-specs {
    margin: 7px 0 0;

    color: #727d8c;

    font-family: var(--terra-font-body);

    font-size: 11px;

    line-height: 1.5;
}

.terra-inventory-specs span {
    margin: 0 3px;

    color: #a6adb8;
}


/* ==========================================================
   CARD FOOTER
========================================================== */

.terra-inventory-footer {
    margin-top: 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


/* ==========================================================
   PRICE
========================================================== */

.terra-inventory-price {
    color: #12366b;

    font-family: var(--terra-font-heading);

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================================
   ROUND ARROW BUTTON
========================================================== */

.terra-inventory-arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #12366b;

    background: #ffffff;

    border: 1.5px solid #9daabd;

    border-radius: 50%;

    text-decoration: none;

    font-size: 15px;
    line-height: 1;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.terra-inventory-arrow:hover {
    color: #ffffff;

    background: #12366b;

    border-color: #12366b;

    transform: translateX(2px);
}

.terra-inventory-empty {
    padding: 40px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e8edf3;
}

.terra-inventory-empty p {
    margin: 0;

    color: #6f7886;

    font-family: var(--terra-font-body);
}

/* ==========================================================
   LARGE TABLET
========================================================== */

@media (max-width: 1100px) {

    .terra-inventory-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .terra-inventory-image {
        height: 220px;
    }

}


/* ==========================================================
   TABLET / SMALL SCREEN
========================================================== */

@media (max-width: 760px) {

    .terra-inventory-section {
        padding: 65px 0 70px;
    }

    .terra-inventory-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 24px;
    }

    .terra-inventory-view-all {
        margin-bottom: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .terra-inventory-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .terra-inventory-image {
        height: 230px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .terra-inventory-section {
        padding: 55px 0 60px;
    }

    .terra-inventory-image {
        height: 205px;
    }

    .terra-inventory-content {
        padding: 14px;
    }

}











/* ==========================================================
   STAGE 2E — HOW IT WORKS / IMPORT PROCESS
========================================================== */

.terra-process-section {
    position: relative;
    padding: 70px 0 72px;
    overflow: hidden;

    background-color: #082744;

    background-image:
        linear-gradient(
            rgba(8, 37, 68, 0.68),
            rgba(8, 37, 68, 0.68)
        ),
        url("assets/images/world-map-dark.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.terra-process-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


/* ==========================================================
   LEFT HEADING AREA
========================================================== */

.terra-process-heading {
    max-width: 650px;
}

.terra-process-eyebrow {
    margin: 0 0 8px;

    color: #f4c338;

    font-family: var(--terra-font-heading);

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.terra-process-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--terra-font-heading);

    font-size: clamp(20px, 4vw, 35px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.2px;
}


/* ==========================================================
   RIGHT INTRO TEXT
========================================================== */

.terra-process-intro {
    max-width: 470px;

    margin: 0 0 7px;

    color: rgba(255, 255, 255, 0.82);

    font-family: var(--terra-font-body);

    font-size: 15px;
    line-height: 1.6;

    text-align: right;
}


/* ==========================================================
   PROCESS GRID
========================================================== */

.terra-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 34px;
}


/* ==========================================================
   STEP
========================================================== */

.terra-process-step {
    min-width: 0;
}


/* ==========================================================
   NUMBER + CONNECTOR LINE
========================================================== */

.terra-process-top {
    display: flex;

    align-items: center;

    margin-bottom: 17px;
}

.terra-process-number {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4c338;

    color: #12366b;

    border: 2px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 3px rgba(244, 195, 56, 0.12);

    font-family: var(--terra-font-heading);

    font-size: 22px;

    font-weight: 700;

    line-height: 1;
}


/* ==========================================================
   CONNECTING LINE
========================================================== */

.terra-process-line {
    flex: 1;

    height: 1px;

    margin-left: 16px;

    border-top:
        2px dotted
        rgba(255, 255, 255, 0.28);
}


/* ==========================================================
   STEP TITLE
========================================================== */

.terra-process-step h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: var(--terra-font-heading);

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}


/* ==========================================================
   STEP DESCRIPTION
========================================================== */

.terra-process-step p {
    margin: 0;

    max-width: 245px;

    color: rgba(255, 255, 255, 0.74);

    font-family: var(--terra-font-body);

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .terra-process-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 34px;
    }

    .terra-process-intro {
        max-width: 620px;

        text-align: left;
    }

    .terra-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 34px 28px;
    }

    .terra-process-step:nth-child(2)
    .terra-process-line {
        display: none;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .terra-process-section {
        padding: 58px 0 60px;

        background-position: center;
    }

    .terra-process-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .terra-process-top {
        margin-bottom: 12px;
    }

    .terra-process-line {
        display: none;
    }

    .terra-process-step {
        position: relative;

        padding-left: 0;
    }

    .terra-process-step p {
        max-width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .terra-process-section {
        padding: 52px 0 55px;
    }

    .terra-process-number {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        font-size: 20px;
    }

    .terra-process-step h3 {
        font-size: 16px;
    }

    .terra-process-step p {
        font-size: 13px;
    }

}








/* ==========================================================
   STAGE 2F — TESTIMONIALS
========================================================== */

.terra-testimonials-section {
    padding: 78px 0 86px;
    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.terra-testimonials-header {
    margin-bottom: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.terra-testimonials-eyebrow {
    margin: 0 0 7px;

    color: #f4b521;

    font-family: var(--terra-font-heading);

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.terra-testimonials-heading h2 {
    margin: 0;

    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: clamp(20px, 3.5vw, 35px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.4px;
}


/* ==========================================================
   CONTROLS
========================================================== */

.terra-testimonials-controls {
    display: flex;
    align-items: center;

    gap: 10px;
}

.terra-testimonial-control {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #ffffff;

    color: #12366b;

    border: 1.5px solid #aeb9c7;

    border-radius: 50%;

    font-family: var(--terra-font-heading);

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.terra-testimonial-control:hover {
    background: #12366b;
    color: #ffffff;

    border-color: #12366b;

    transform: translateY(-1px);
}

.terra-testimonial-control:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}


/* ==========================================================
   SLIDER VIEWPORT
========================================================== */

.terra-testimonials-track {
    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -ms-overflow-style: none;
}

.terra-testimonials-track::-webkit-scrollbar {
    display: none;
}


/* ==========================================================
   TESTIMONIAL CARD
========================================================== */

.terra-testimonial-card {
    flex:
        0
        0
        calc(
            (100% - 20px) / 2
        );

    min-width: 0;

    min-height: 176px;

    padding: 24px 26px;

    display: grid;

    grid-template-columns:
        92px
        minmax(0, 1fr);

    gap: 22px;

    align-items: start;

    background: #f7f9fc;

    border: 1px solid #edf0f4;

    border-radius: 4px;

    scroll-snap-align: start;

    box-sizing: border-box;
}


/* ==========================================================
   CLIENT PHOTO
========================================================== */

.terra-testimonial-photo {
    width: 82px;
    height: 82px;

    overflow: hidden;

    border-radius: 50%;

    background: #e7ebf0;
}

.terra-testimonial-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.terra-testimonial-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dfe5ec;

    color: #12366b;

    font-size: 28px;
}


/* ==========================================================
   TESTIMONIAL TEXT
========================================================== */

.terra-testimonial-content {
    min-width: 0;
}

.terra-testimonial-quote {
    margin-bottom: 10px;
}

.terra-testimonial-quote p {
    margin: 0;

    color: #4f5b6d;

    font-family: var(--terra-font-body);

    font-size: 15px;
    line-height: 1.55;
}


/* ==========================================================
   CLIENT DETAILS
========================================================== */

.terra-testimonial-client {
    display: flex;
    flex-direction: column;

    gap: 1px;
}

.terra-testimonial-client strong {
    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: 14px;
    line-height: 1.3;

    font-weight: 700;
}

.terra-testimonial-client span {
    color: #687386;

    font-family: var(--terra-font-body);

    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   STAR RATING
========================================================== */

.terra-testimonial-stars {
    margin-top: 6px;

    display: flex;

    gap: 2px;

    font-size: 17px;
    line-height: 1;
}

.terra-testimonial-stars span {
    color: #d8dde5;
}

.terra-testimonial-stars span.is-active {
    color: #f4b521;
}


/* ==========================================================
   EMPTY STATE
========================================================== */

.terra-testimonials-empty {
    padding: 36px;

    text-align: center;

    background: #f7f9fc;

    border: 1px solid #edf0f4;
}

.terra-testimonials-empty p {
    margin: 0;

    color: #6d7786;

    font-family: var(--terra-font-body);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .terra-testimonial-card {
        grid-template-columns:
            78px
            minmax(0, 1fr);

        gap: 18px;

        padding: 22px;
    }

    .terra-testimonial-photo {
        width: 72px;
        height: 72px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-testimonials-section {
        padding: 64px 0 70px;
    }

    .terra-testimonials-header {
        align-items: flex-start;
    }

    .terra-testimonial-card {
        flex-basis: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .terra-testimonials-header {
        flex-direction: column;

        gap: 18px;
    }

    .terra-testimonial-card {
        grid-template-columns: 1fr;

        gap: 16px;

        min-height: auto;

        padding: 20px;
    }

    .terra-testimonial-photo {
        width: 70px;
        height: 70px;
    }

    .terra-testimonial-quote p {
        font-size: 14px;
    }

}









/* ==========================================================
   STAGE 2G — TRUSTED GLOBAL BRANDS / PARTNERS
========================================================== */

.terra-partners-section {
    padding: 25px 0 64px;
    background: #ffffff;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.terra-partners-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 24px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.terra-partners-eyebrow {
    margin: 0 0 6px;

    color: #f4b521;

    font-family: var(--terra-font-heading);

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* ==========================================================
   SECTION TITLE
========================================================== */

.terra-partners-heading h2 {
    margin: 0;

    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: clamp(20px, 3vw, 35px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;
}


/* ==========================================================
   VIEW ALL LINK
========================================================== */

.terra-partners-view-all {
    margin-bottom: 4px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #102f5c;

    text-decoration: none;

    font-family: var(--terra-font-heading);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.terra-partners-view-all:hover {
    color: #f47b20;
    gap: 12px;
}


/* ==========================================================
   PARTNERS GRID
========================================================== */

.terra-partners-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 34px;

    align-items: center;
}


/* ==========================================================
   PARTNER ITEM
========================================================== */

.terra-partner-item {
    min-width: 0;

    min-height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* ==========================================================
   PARTNER LINKS
========================================================== */

.terra-partner-item a {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;
}


/* ==========================================================
   PARTNER LOGOS
========================================================== */

.terra-partner-item img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 48px;

    object-fit: contain;

    filter: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* ==========================================================
   HOVER
========================================================== */

.terra-partner-item:hover img {
    transform: translateY(-2px) scale(1.03);
    opacity: 0.92;
}


/* ==========================================================
   FALLBACK PARTNER NAME
========================================================== */

.terra-partner-name {
    color: #102f5c;

    font-family: var(--terra-font-heading);

    font-size: 16px;

    font-weight: 700;
}


/* ==========================================================
   EMPTY STATE
========================================================== */

.terra-partners-empty {
    padding: 32px;

    text-align: center;

    background: #f7f9fc;

    border: 1px solid #edf0f4;
}

.terra-partners-empty p {
    margin: 0;

    color: #687386;

    font-family: var(--terra-font-body);

    font-size: 14px;
}


/* ==========================================================
   LARGE TABLET
========================================================== */

@media (max-width: 1100px) {

    .terra-partners-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 28px 36px;
    }

    .terra-partner-item {
        min-height: 68px;
    }

}


/* ==========================================================
   TABLET / MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-partners-section {
        padding: 52px 0 56px;
    }

    .terra-partners-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        margin-bottom: 22px;
    }

    .terra-partners-view-all {
        margin-bottom: 0;
    }

    .terra-partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 26px 24px;
    }

    .terra-partner-item img {
        max-height: 44px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .terra-partners-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .terra-partner-item {
        min-height: 60px;
    }

    .terra-partner-item img {
        max-height: 42px;
    }

}









/* ==========================================================
   FOOTER CTA + MAIN FOOTER
========================================================== */


/* ==========================================================
   FOOTER CTA SECTION
========================================================== */

.terra-footer-cta {
    position: relative;

    padding: 34px 0;

    background:
        linear-gradient(
            rgba(11, 38, 69, 0.28),
            rgba(11, 38, 69, 0.28)
        ),
        url("assets/images/footer-cta-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================================================
   CTA BOX
========================================================== */

.terra-footer-cta-box {
    max-width: 640px;

    margin: 0 auto;

    padding: 20px 28px 22px;

    text-align: center;

    background:
        rgba(10, 37, 69, 0.90);

    border-radius: 6px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);
}


/* ==========================================================
   CTA TITLE
========================================================== */

.terra-footer-cta-box h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--terra-font-heading);

    font-size: clamp(8px, 2.6vw, 16px);

    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================================
   CTA TEXT
========================================================== */

.terra-footer-cta-box p {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--terra-font-body);

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   CTA BUTTON
========================================================== */

.terra-footer-cta-button {
    margin-top: 14px;

    min-height: 44px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #f4c338;

    color: #102f5c;

    text-decoration: none;

    border-radius: 3px;

    font-family: var(--terra-font-heading);

    font-size: 13px;

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        gap 0.2s ease,
        transform 0.2s ease;
}

.terra-footer-cta-button:hover {
    background: #e3b326;

    gap: 13px;

    transform: translateY(-1px);
}


/* ==========================================================
   TERRA BUSINESS — MAIN FOOTER
   Vehicle / logistics background version
========================================================== */

.terra-footer {
    position: relative;

    width: 100%;

    padding: 50px 0 0;

    color: #ffffff;

    /* Image supplied by footer.php */
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* ==========================================================
   DARK NAVY IMAGE OVERLAY
========================================================== */

.terra-footer-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    /*
     * Slightly stronger than Stage 3A.7 because
     * footer text is smaller and requires more contrast.
     */

    background:
        linear-gradient(
            90deg,
            rgba(3, 37, 69, 0.96) 0%,
            rgba(4, 43, 79, 0.93) 48%,
            rgba(4, 47, 84, 0.91) 100%
        );
}


/* Keeps all footer content above overlay */

.terra-footer-inner {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   OPTIONAL SUBTLE DARK BOTTOM GRADIENT
========================================================== */

.terra-footer::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 110px;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 27, 52, 0),
            rgba(2, 27, 52, 0.50)
        );
}


/* ==========================================================
   MAIN GRID
========================================================== */

.terra-footer-main {
    display: grid;

    grid-template-columns:
        1.45fr
        0.78fr
        1.08fr
        1.15fr;

    gap: 55px;

    align-items: start;

    padding-bottom: 38px;
}


/* ==========================================================
   BRAND
========================================================== */

.terra-footer-brand {
    min-width: 0;
}


.terra-footer-logo {
    display: inline-block;

    width: 100%;
    max-width: 205px;

    margin-bottom: 17px;

    text-decoration: none;
}


.terra-footer-logo img {
    display: block;

    width: 100%;
    max-width: 205px;

    height: auto;

    object-fit: contain;
}


.terra-footer-description {
    max-width: 300px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.90);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 12.5px;
    font-weight: 400;

    line-height: 1.65;
}


/* ==========================================================
   SOCIAL ICONS
========================================================== */

.terra-footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 8px;
}


.terra-social-link {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    color: #ffffff;

    background: rgba(2, 33, 61, 0.32);

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    text-decoration: none;

    backdrop-filter: blur(2px);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.terra-social-link i {
    font-size: 15px;
    line-height: 1;
}


.terra-social-link:hover {
    color: #ffffff;

    background: #ff7900;

    border-color: #ff7900;

    transform: translateY(-2px);
}


/* ==========================================================
   COLUMN HEADINGS
========================================================== */

.terra-footer-column {
    min-width: 0;
}


.terra-footer-column h3 {
    margin: 0 0 16px;

    color: #ffffff;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.3;
}


/* ==========================================================
   FOOTER LINKS
========================================================== */

.terra-footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}


.terra-footer-links li {
    margin: 0 0 0;
    padding: 0;
}


.terra-footer-links li:last-child {
    margin-bottom: 0;
}


.terra-footer-links a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.87);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.terra-footer-links a:hover {
    color: #ff7900;

    transform: translateX(3px);
}


/* ==========================================================
   CONTACT
========================================================== */

.terra-footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 5px;
}


.terra-footer-contact-item:last-child {
    margin-bottom: 0;
}


/* Orange icon */

.terra-footer-contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;

    flex: 0 0 20px;

    padding-top: 7px;

    color: #ff7900;

    font-size: 15px;
}


.terra-footer-contact-icon i {
    line-height: 1;
}


/* Contact information */

.terra-footer-contact-item span,
.terra-footer-contact-item a {
    color: rgba(255, 255, 255, 0.90);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.55;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color 0.25s ease;
}


.terra-footer-contact-item a:hover {
    color: #ff7900;
}


/* ==========================================================
   BOTTOM BAR
========================================================== */

.terra-footer-bottom {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-height: 58px;

    padding: 16px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.32);
}


/* Copyright */

.terra-footer-copyright p {
    margin: 0;

    color: rgba(255, 255, 255, 0.80);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 11px;

    line-height: 1.5;
}


/* ==========================================================
   LEGAL LINKS
========================================================== */

.terra-footer-legal {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    white-space: nowrap;
}


.terra-footer-legal a {
    color: rgba(255, 255, 255, 0.80);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.terra-footer-legal a:hover {
    color: #ff7900;
}


.terra-footer-divider {
    color: rgba(255, 255, 255, 0.45);
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

.terra-footer a:focus-visible {
    outline: 2px solid #ff7900;
    outline-offset: 4px;

    border-radius: 3px;
}


/* ==========================================================
   LARGE DESKTOP
========================================================== */

@media (min-width: 1200px) {

    .terra-footer {
        padding-top: 52px;

        background-position: center 55%;
    }


    .terra-footer-main {
        grid-template-columns:
            1.50fr
            0.75fr
            1.05fr
            1.15fr;

        gap: 60px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .terra-footer {
        padding-top: 45px;

        background-position: 58% center;
    }


    .terra-footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            42px
            55px;

        padding-bottom: 35px;
    }


    /*
     * Stronger overlay as columns start
     * crossing different parts of image.
     */

    .terra-footer-overlay {
        background:
            rgba(3, 40, 74, 0.94);
    }


    .terra-footer-description {
        max-width: 330px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-footer {
        padding-top: 42px;

        background-position: 62% center;
    }


    .terra-footer-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 39, 72, 0.96),
                rgba(3, 34, 64, 0.97)
            );
    }


    .terra-footer-main {
        grid-template-columns: 1fr;

        gap: 34px;

        padding-bottom: 32px;
    }


    /* Logo */

    .terra-footer-logo,
    .terra-footer-logo img {
        max-width: 190px;
    }


    .terra-footer-description {
        max-width: 340px;

        font-size: 12.5px;
    }


    /* Links */

    .terra-footer-links li {
        margin-bottom: 8px;
    }


    .terra-footer-links a {
        font-size: 12.5px;
    }


    /* Contact */

    .terra-footer-contact-item span,
    .terra-footer-contact-item a {
        font-size: 12.5px;
    }


    /* Bottom */

    .terra-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        min-height: 0;

        padding:
            18px
            0
            22px;
    }


    .terra-footer-legal {
        justify-content: flex-start;

        flex-wrap: wrap;

        white-space: normal;

        gap: 7px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .terra-footer {
        padding-top: 38px;

        background-position: 65% center;
    }


    .terra-footer-main {
        gap: 30px;
    }


    .terra-footer-logo,
    .terra-footer-logo img {
        max-width: 175px;
    }


    .terra-footer-description {
        font-size: 12px;
    }


    .terra-social-link {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }


    .terra-footer-column h3 {
        font-size: 13.5px;
    }


    .terra-footer-links a,
    .terra-footer-contact-item span,
    .terra-footer-contact-item a {
        font-size: 12px;
    }


    .terra-footer-copyright p,
    .terra-footer-legal a {
        font-size: 10.5px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .terra-social-link,
    .terra-footer-links a,
    .terra-footer-contact-item a {
        transition: none;
    }


    .terra-social-link:hover,
    .terra-footer-links a:hover {
        transform: none;
    }

}












/* ==========================================================
   STAGE 3A.2
   À PROPOS — HERO
========================================================== */

.terra-about-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    background-image: url("assets/images/about/about-hero.jpg");
    background-size: cover;

    /*
     * Slightly favour the right side because
     * vehicles / ship should remain visible there.
     */
    background-position: center right;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* ==========================================================
   DARK NAVY OVERLAY

   Strong on left for text readability,
   lighter toward the vehicles on right.
========================================================== */

.terra-about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 31, 59, 0.97) 0%,
            rgba(5, 42, 77, 0.92) 30%,
            rgba(5, 42, 77, 0.67) 57%,
            rgba(5, 42, 77, 0.20) 100%
        );

    z-index: 1;
}


/* ==========================================================
   INNER CONTAINER
========================================================== */

.terra-about-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    
}


/* ==========================================================
   CONTENT
========================================================== */

.terra-about-hero-content {
    width: 100%;
    max-width: 620px;

    padding-top: 55px;
    padding-bottom: 55px;
    
    padding-left: 55px;

    color: #ffffff;
}


/* ==========================================================
   BREADCRUMB
========================================================== */

.terra-about-breadcrumb {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    font-family: var(
        --terra-font-body,
        "Inter",
        Arial,
        sans-serif
    );

    font-size: 13px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.78);
}


.terra-about-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);

    text-decoration: none;

    transition: color 0.2s ease;
}


.terra-about-breadcrumb a:hover {
    color: #ff7a00;
}


.terra-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.48);
}


/* ==========================================================
   MAIN TITLE
========================================================== */

.terra-about-hero h1 {
    margin: 0;

    max-width: 570px;

    color: #ffffff;

    font-family: var(
        --terra-font-heading,
        "Poppins",
        Arial,
        sans-serif
    );

    font-size: clamp(44px, 4.3vw, 68px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.terra-about-hero h1 span {
    display: block;
}


/* ==========================================================
   HERO INTRODUCTION
========================================================== */

.terra-about-hero-lead {
    max-width: 560px;

    margin:
        24px
        0
        0;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(
        --terra-font-body,
        "Inter",
        Arial,
        sans-serif
    );

    font-size: 17px;

    font-weight: 400;

    line-height: 1.65;
}


/* ==========================================================
   ORANGE ACCENT LINE
========================================================== */

.terra-about-hero-line {
    display: block;

    width: 52px;
    height: 4px;

    margin-top: 25px;

    background: #ff7900;

    border-radius: 10px;
}


/* ==========================================================
   BOTTOM STATEMENT
========================================================== */

.terra-about-hero-note {
    margin:
        23px
        0
        0;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(
        --terra-font-body,
        "Inter",
        Arial,
        sans-serif
    );

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .terra-about-hero {
        min-height: 460px;

        background-position: 62% center;
    }


    .terra-about-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(4, 31, 59, 0.97) 0%,
                rgba(5, 42, 77, 0.90) 47%,
                rgba(5, 42, 77, 0.40) 100%
            );
    }


    .terra-about-hero-content {
        max-width: 570px;

        padding-top: 50px;
        padding-bottom: 50px;
    }


    .terra-about-hero h1 {
        font-size: clamp(42px, 6vw, 58px);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-about-hero {
        min-height: 450px;

        /*
         * Keeps the important vehicle/ship area
         * visible without sacrificing text.
         */
        background-position: 65% center;
    }


    .terra-about-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(4, 31, 59, 0.96) 0%,
                rgba(4, 31, 59, 0.91) 65%,
                rgba(4, 31, 59, 0.72) 100%
            );
    }


    .terra-about-hero-content {
        max-width: 100%;

        padding-top: 45px;
        padding-bottom: 45px;
    }


    .terra-about-breadcrumb {
        margin-bottom: 20px;

        font-size: 12px;
    }


    .terra-about-hero h1 {
        max-width: 440px;

        font-size: clamp(37px, 11vw, 48px);

        line-height: 1.08;

        letter-spacing: -1px;
    }


    .terra-about-hero-lead {
        max-width: 430px;

        margin-top: 19px;

        font-size: 15px;

        line-height: 1.55;
    }


    .terra-about-hero-line {
        width: 45px;

        height: 3px;

        margin-top: 21px;
    }


    .terra-about-hero-note {
        margin-top: 19px;

        font-size: 13px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .terra-about-hero {
        min-height: 420px;
    }


    .terra-about-hero h1 {
        font-size: 36px;
    }


    .terra-about-hero-lead {
        font-size: 14px;
    }

}







/* ==========================================================
   STAGE 3A.3
   QUI SOMMES-NOUS
========================================================== */

.terra-about-intro {
    position: relative;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* ==========================================================
   TWO-COLUMN LAYOUT
========================================================== */

.terra-about-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 75px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.terra-about-intro-content {
    max-width: 560px;
}


/* ==========================================================
   SECTION EYEBROW
========================================================== */

.terra-section-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #ff7900;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 13px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* Orange line before section title */

.terra-eyebrow-line {
    display: block;

    width: 26px;
    height: 3px;

    flex: 0 0 26px;

    background: #ff7900;

    border-radius: 10px;
}


/* ==========================================================
   HEADING
========================================================== */

.terra-about-intro-content h2 {
    margin:
        0
        0
        26px;

    color: #062b52;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: clamp(
        20px,
        3.2vw,
        30px
    );

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.2px;
}


/* Force second part onto another line */

.terra-about-intro-content h2 span {
    display: block;
}


/* ==========================================================
   PARAGRAPHS
========================================================== */

.terra-about-intro-content p {
    margin:
        0
        0
        18px;

    color: #526273;

    font-family:
        var(
            --terra-font-body,
            "Inter",
            Arial,
            sans-serif
        );

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;
}


.terra-about-intro-content p strong {
    color: #153a61;

    font-weight: 700;
}


/* ==========================================================
   CTA BUTTON
========================================================== */

.terra-about-intro-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    margin-top: 10px;

    padding:
        0
        24px;

    background: #ff7900;

    color: #ffffff;

    border:
        2px solid
        #ff7900;

    border-radius: 5px;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 13px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.terra-about-intro-btn span {
    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


/* Button hover */

.terra-about-intro-btn:hover {
    background: #e96e00;

    border-color: #e96e00;

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 22px
        rgba(255, 121, 0, 0.22);
}


.terra-about-intro-btn:hover span {
    transform:
        translateX(4px);
}


/* ==========================================================
   RIGHT IMAGE
========================================================== */

.terra-about-intro-visual {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 8px;

    background: #eef3f7;

    box-shadow:
        0 15px 40px
        rgba(4, 31, 59, 0.10);
}


/* Keep a consistent image ratio */

.terra-about-intro-visual {
    aspect-ratio: 1.35 / 1;
}


.terra-about-intro-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


/* Very subtle image interaction */

.terra-about-intro-visual:hover img {
    transform:
        scale(1.025);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .terra-about-intro {
        padding:
            75px
            0;
    }


    .terra-about-intro-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 45px;
    }


    .terra-about-intro-content h2 {
        font-size:
            clamp(
                34px,
                4vw,
                44px
            );
    }


    .terra-about-intro-content p {
        font-size: 14px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 760px) {

    .terra-about-intro {
        padding:
            60px
            0;
    }


    .terra-about-intro-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .terra-about-intro-content {
        max-width: 100%;
    }


    .terra-section-eyebrow {
        font-size: 11px;

        letter-spacing: 1px;
    }


    .terra-eyebrow-line {
        width: 22px;

        flex-basis: 22px;
    }


    .terra-about-intro-content h2 {
        margin-bottom: 20px;

        font-size:
            clamp(
                31px,
                9vw,
                39px
            );

        line-height: 1.14;
    }


    .terra-about-intro-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .terra-about-intro-btn {
        min-height: 48px;

        padding:
            0
            20px;

        font-size: 12px;
    }


    .terra-about-intro-visual {
        aspect-ratio: 1.25 / 1;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .terra-about-intro {
        padding:
            50px
            0;
    }


    .terra-about-intro-grid {
        gap: 30px;
    }


    .terra-about-intro-content h2 {
        font-size: 30px;
    }


    .terra-about-intro-btn {
        width: 100%;
    }

}









/* ==========================================================
   STAGE 3A.4
   MISSION / VISION / VALUES
========================================================== */

.terra-purpose {
    position: relative;
    padding: 50px 0 70px;

    background:
        linear-gradient(
            135deg,
            #031d38 0%,
            #052b52 52%,
            #073762 100%
        );

    overflow: hidden;
}


/* Very subtle background decoration */

.terra-purpose::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -250px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;

    pointer-events: none;
}


.terra-purpose::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -90px;
    top: -170px;

    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.terra-purpose-heading {
    position: relative;
    z-index: 2;

    max-width: 680px;

    margin-bottom: 48px;
}


.terra-section-eyebrow--light {
    color: #ff7900;
}


.terra-purpose-heading h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: clamp(20px, 3.5vw, 30px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.2px;
}


.terra-purpose-heading h2 span {
    display: block;
}


.terra-purpose-heading > p {
    max-width: 640px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 15px;

    line-height: 1.75;
}


/* ==========================================================
   THREE-CARD GRID
========================================================== */

.terra-purpose-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* ==========================================================
   INDIVIDUAL CARD
========================================================== */

.terra-purpose-card {
    position: relative;

    min-height: 220px;

    padding: 35px 32px 034px;

    background: rgba(255,255,255,.065);

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 7px;

    overflow: hidden;

    transition:
        transform .3s ease,
        background-color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* Orange top accent */

.terra-purpose-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #ff7900;

    transition: width .35s ease;
}


.terra-purpose-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.09);

    border-color: rgba(255,121,0,.35);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.16);
}


.terra-purpose-card:hover::before {
    width: 100%;
}


/* ==========================================================
   LARGE BACKGROUND NUMBER
========================================================== */

.terra-purpose-number {
    position: absolute;

    top: 17px;
    right: 24px;

    color: rgba(255,255,255,.055);

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: 72px;

    font-weight: 700;

    line-height: 1;

    pointer-events: none;
}


/* ==========================================================
   ICON
========================================================== */

.terra-purpose-icon {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    color: #ff7900;

    background: rgba(255,121,0,.10);

    border: 1px solid rgba(255,121,0,.22);

    border-radius: 50%;
}


.terra-purpose-icon svg {
    width: 29px;
    height: 29px;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.terra-purpose-card h3 {
    position: relative;

    margin: 0 0 14px;

    color: #ffffff;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.3;
}


/* ==========================================================
   CARD TEXT
========================================================== */

.terra-purpose-card p {
    position: relative;

    margin: 0;

    color: rgba(255,255,255,.70);

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .terra-purpose {
        padding: 75px 0 85px;
    }


    .terra-purpose-grid {
        gap: 18px;
    }


    .terra-purpose-card {
        min-height: 315px;

        padding:
            30px
            25px;
    }


    .terra-purpose-number {
        font-size: 60px;
    }

}


/* ==========================================================
   MOBILE / SMALL TABLET
========================================================== */

@media (max-width: 760px) {

    .terra-purpose {
        padding: 60px 0;
    }


    .terra-purpose-heading {
        margin-bottom: 35px;
    }


    .terra-purpose-heading h2 {
        font-size:
            clamp(31px, 9vw, 40px);
    }


    .terra-purpose-heading > p {
        font-size: 14px;

        line-height: 1.7;
    }


    .terra-purpose-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .terra-purpose-card {
        min-height: auto;

        padding:
            28px
            25px
            30px;
    }


    .terra-purpose-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 20px;
    }


    .terra-purpose-icon svg {
        width: 26px;
        height: 26px;
    }


    .terra-purpose-number {
        top: 18px;
        right: 20px;

        font-size: 56px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .terra-purpose {
        padding:
            50px
            0;
    }


    .terra-purpose-heading h2 {
        font-size: 30px;
    }


    .terra-purpose-card h3 {
        font-size: 19px;
    }

}









/* ==========================================================
   TERRA BUSINESS — NOS VALEURS
   Stage 3A — About Page
========================================================== */

.terra-values {
    position: relative;
    width: 100%;

    padding: 65px 0 72px;

    background: #fbfcfd;

    overflow: hidden;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.terra-values-header {
    margin-bottom: 28px;
}


/* Small orange section label */

.terra-values-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 9px;

    color: #ff7900;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* Orange line */

.terra-values-line {
    display: block;

    width: 26px;
    height: 3px;

    flex: 0 0 26px;

    background: #ff7900;

    border-radius: 5px;
}


/* ==========================================================
   MAIN HEADING
========================================================== */

.terra-values-header h2 {
    margin: 0;

    color: #062b52;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: clamp(20px, 3vw, 32px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;
}


/* ==========================================================
   VALUES GRID
========================================================== */

.terra-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* ==========================================================
   VALUE CARD
========================================================== */

.terra-value-card {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    min-width: 0;
    min-height: 168px;

    padding: 25px 20px 22px;

    background: #ffffff;

    border: 1px solid #edf1f4;

    border-radius: 8px;

    text-align: center;

    box-shadow:
        0 8px 22px
        rgba(5, 43, 82, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.terra-value-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 121, 0, 0.22);

    box-shadow:
        0 14px 32px
        rgba(5, 43, 82, 0.11);
}


/* Small orange top accent */

.terra-value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 3px;

    background: #ff7900;

    border-radius:
        0
        0
        4px
        4px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.terra-value-card:hover::before {
    width: 52px;
}


/* ==========================================================
   ICON
========================================================== */

.terra-value-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 39px;

    margin-bottom: 7px;

    color: #ff7900;

    font-size: 34px;

    line-height: 1;
}


.terra-value-icon i {
    display: block;

    line-height: 1;
}


/* Individual optical adjustments */

.terra-value-card:nth-child(1)
.terra-value-icon {
    font-size: 33px;
}


.terra-value-card:nth-child(2)
.terra-value-icon {
    font-size: 34px;
}


.terra-value-card:nth-child(3)
.terra-value-icon {
    font-size: 34px;
}


.terra-value-card:nth-child(4)
.terra-value-icon {
    font-size: 33px;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.terra-value-card h3 {
    margin:
        3px
        0
        7px;

    color: #062b52;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 17px;

    font-weight: 600;

    line-height: 1.3;
}


/* ==========================================================
   CARD DESCRIPTION
========================================================== */

.terra-value-card p {
    margin: 0;

    color: #526b84;

    font-family:
        var(
            --terra-font-body,
            "Inter",
            Arial,
            sans-serif
        );

    font-size: 12.5px;

    font-weight: 400;

    line-height: 1.55;
}


/* ==========================================================
   TABLET
   Four columns → Two columns
========================================================== */

@media (max-width: 950px) {

    .terra-values {
        padding:
            60px
            0
            65px;
    }


    .terra-values-header {
        margin-bottom: 25px;
    }


    .terra-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .terra-value-card {
        min-height: 170px;

        padding:
            25px
            20px;
    }

}


/* ==========================================================
   MOBILE
   Two columns → One column
========================================================== */

@media (max-width: 600px) {

    .terra-values {
        padding:
            50px
            0
            55px;
    }


    .terra-values-header {
        margin-bottom: 23px;
    }


    .terra-values-eyebrow {
        font-size: 11px;

        letter-spacing: 0.7px;
    }


    .terra-values-line {
        width: 22px;

        flex-basis: 22px;
    }


    .terra-values-header h2 {
        font-size:
            clamp(
                28px,
                8vw,
                34px
            );

        line-height: 1.2;
    }


    .terra-values-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .terra-value-card {
        min-height: auto;

        padding:
            25px
            20px
            24px;
    }


    .terra-value-icon {
        min-height: 36px;

        margin-bottom: 6px;

        font-size: 31px;
    }


    .terra-value-card h3 {
        font-size: 16px;
    }


    .terra-value-card p {
        font-size: 12.5px;

        line-height: 1.55;
    }


    /*
     * Ignore desktop manual line breaks so text
     * can wrap naturally on narrow screens.
     */

    .terra-value-card p br {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 400px) {

    .terra-values {
        padding:
            45px
            0
            50px;
    }


    .terra-values-header h2 {
        font-size: 27px;
    }

}










/* ==========================================================
   STAGE 3A.5 — TERRA BUSINESS STATISTICS
========================================================== */

.terra-stats {
    position: relative;
    width: 100%;
    padding: 32px 0;

    background:
        linear-gradient(
            90deg,
            #f8fbfd 0%,
            #eef5f9 50%,
            #f8fbfd 100%
        );

    overflow: hidden;
}


/* ==========================================================
   GRID
========================================================== */

.terra-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: stretch;

    width: 100%;
}


/* ==========================================================
   INDIVIDUAL STAT
========================================================== */

.terra-stat-item {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    min-width: 0;

    padding: 4px 28px 2px;

    text-align: center;
}


/* ==========================================================
   VERTICAL SEPARATORS

   Don't add a line after the final item.
========================================================== */

.terra-stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 2px;
    right: 0;

    width: 1px;
    height: calc(100% - 4px);

    background: #d5e1e9;
}


/* ==========================================================
   ICON
========================================================== */

.terra-stat-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-bottom: 4px;

    color: #062f5b;

    font-size: 37px;

    line-height: 1;
}


.terra-stat-icon i {
    display: block;

    line-height: 1;
}


/* Slight individual correction for visual balance */

.terra-stat-item:nth-child(1) .terra-stat-icon {
    font-size: 36px;
}


.terra-stat-item:nth-child(2) .terra-stat-icon {
    font-size: 38px;
}


.terra-stat-item:nth-child(3) .terra-stat-icon {
    font-size: 37px;
}


.terra-stat-item:nth-child(4) .terra-stat-icon {
    font-size: 37px;
}


/* ==========================================================
   NUMBER
========================================================== */

.terra-stat-number {
    display: flex;

    align-items: baseline;
    justify-content: center;

    margin: 3px 0 4px;

    color: #062f5b;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: clamp(34px, 3vw, 43px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -1.4px;

    font-variant-numeric: tabular-nums;
}


/* Keep + close to number */

.terra-stat-plus {
    display: inline-block;

    margin-left: 1px;

    font-size: 0.78em;

    font-weight: 700;
}


/* ==========================================================
   MAIN LABEL
========================================================== */

.terra-stat-item h3 {
    margin: 5px 0 1px;

    color: #092f59;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 15px;

    font-weight: 600;

    line-height: 1.35;
}


/* ==========================================================
   SECONDARY LABEL
========================================================== */

.terra-stat-item p {
    margin: 0;

    color: #617285;

    font-family:
        var(
            --terra-font-body,
            "Inter",
            Arial,
            sans-serif
        );

    font-size: 12.5px;

    font-weight: 400;

    line-height: 1.45;
}


/* ==========================================================
   TABLET — 2 × 2
========================================================== */

@media (max-width: 900px) {

    .terra-stats {
        padding: 35px 0;
    }


    .terra-stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 0;
    }


    .terra-stat-item {
        padding: 30px 20px;
    }


    /*
     * Remove original separators first.
     */

    .terra-stat-item:not(:last-child)::after {
        display: none;
    }


    /*
     * Vertical separator between columns.
     */

    .terra-stat-item:nth-child(odd)::after {
        content: "";

        display: block;

        position: absolute;

        top: 22px;
        right: 0;

        width: 1px;
        height: calc(100% - 44px);

        background: #d5e1e9;
    }


    /*
     * Horizontal divider between rows.
     */

    .terra-stat-item:nth-child(-n+2)::before {
        content: "";

        position: absolute;

        bottom: 0;

        width: calc(100% - 40px);
        height: 1px;

        background: #d5e1e9;
    }

}


/* ==========================================================
   MOBILE — SINGLE COLUMN
========================================================== */

@media (max-width: 560px) {

    .terra-stats {
        padding: 20px 0;
    }


    .terra-stats-grid {
        grid-template-columns: 1fr;
    }


    .terra-stat-item {
        padding: 28px 15px;
    }


    /*
     * Remove tablet vertical lines.
     */

    .terra-stat-item:nth-child(odd)::after {
        display: none;
    }


    /*
     * Remove tablet row separators.
     */

    .terra-stat-item:nth-child(-n+2)::before {
        display: none;
    }


    /*
     * Horizontal separator after each item
     * except the last.
     */

    .terra-stat-item:not(:last-child)::before {
        content: "";

        display: block;

        position: absolute;

        bottom: 0;
        left: 15%;

        width: 70%;
        height: 1px;

        background: #d5e1e9;
    }


    .terra-stat-icon {
        min-height: 38px;

        font-size: 34px;
    }


    .terra-stat-number {
        font-size: 38px;
    }


    .terra-stat-item h3 {
        font-size: 15px;
    }


    .terra-stat-item p {
        font-size: 12.5px;
    }

}








/* ==========================================================
   TERRA BUSINESS — STAGE 3A.5
   POURQUOI CHOISIR TERRA BUSINESS ?
========================================================== */

.terra-choose {
    position: relative;
    width: 100%;
    padding: 65px 0 75px;
    background: #ffffff;
    overflow: hidden;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.terra-choose-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 22px;
}


/* Orange eyebrow */

.terra-choose-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 9px;

    color: #ff7900;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* Orange horizontal line */

.terra-choose-line {
    display: block;
    width: 27px;
    height: 3px;
    flex: 0 0 27px;

    background: #ff7900;
    border-radius: 10px;
}


/* Main heading */

.terra-choose-heading h2 {
    max-width: 900px;

    margin-bottom: -70px;

    color: #062b52;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -1px;
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.terra-choose-layout {
    position: relative;

    display: grid;
    grid-template-columns: 41% 59%;

    width: 100%;
    min-height: 400px;

    align-items: stretch;
}


/* ==========================================================
   LEFT — BENEFITS
========================================================== */

.terra-choose-benefits {
    position: relative;
    z-index: 4;
    
    margin-top: 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 24px;

    padding:
        7px
        25px
        7px
        12px;

    background: #ffffff;
}


/* ==========================================================
   INDIVIDUAL BENEFIT
========================================================== */

.terra-choose-item {
    display: flex;
    align-items: center;

    gap: 18px;

    min-width: 0;
}


/* ==========================================================
   CIRCULAR ICON
========================================================== */

.terra-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    color: #ffffff;

    background: #062f5b;

    border-radius: 50%;

    font-size: 25px;

    box-shadow:
        0 5px 14px
        rgba(6, 47, 91, 0.12);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.terra-choose-icon i {
    display: block;
    line-height: 1;
}


/* Hover */

.terra-choose-item:hover .terra-choose-icon {
    background: #ff7900;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(255, 121, 0, 0.20);
}


/* ==========================================================
   BENEFIT TEXT
========================================================== */

.terra-choose-item-content {
    min-width: 0;
}


.terra-choose-item-content h3 {
    margin: 0 0 3px;

    color: #062b52;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}


.terra-choose-item-content p {
    margin: 0;

    color: #526b84;

    font-family:
        var(--terra-font-body, "Inter", Arial, sans-serif);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================
   RIGHT — IMAGE AREA
========================================================== */

.terra-choose-visual {
    position: relative;

    min-width: 0;
    min-height: 400px;

    overflow: hidden;

    background: #062f5b;
}


/* Image */

.terra-choose-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
     * Keeps handshake slightly right of centre.
     * Adjust between 55% and 70% depending on image.
     */
    object-position: 70% center;
}


/* ==========================================================
   DARK IMAGE OVERLAY
========================================================== */

.terra-choose-image-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    /*
     * The upper image remains clear while the lower
     * area becomes Terra navy for quote readability.
     */

    background:
        linear-gradient(
            to bottom,
            rgba(4, 35, 67, 0.02) 0%,
            rgba(4, 35, 67, 0.08) 36%,
            rgba(4, 35, 67, 0.46) 70%,
            rgba(4, 35, 67, 0.82) 100%
        );
}


/* ==========================================================
   WHITE FADE BETWEEN TEXT AND IMAGE
========================================================== */

.terra-choose-visual::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    z-index: 2;

    width: 25%;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0.98) 12%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(255, 255, 255, 0.48) 55%,
            rgba(255, 255, 255, 0.12) 82%,
            rgba(255, 255, 255, 0) 100%
        );
}


/* ==========================================================
   QUOTE
========================================================== */

.terra-choose-quote {
    position: absolute;

    z-index: 3;

    left: 25%;
    bottom: 48px;

    max-width: 320px;

    color: #ffffff;
}


/* Large orange quotation mark */

.terra-choose-quote-mark {
    display: block;

    height: 38px;

    margin-bottom: 4px;

    color: #ff7900;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 70px;
    font-weight: 700;
    line-height: 0.85;
}


/* Quote text */

.terra-choose-quote blockquote {
    margin: 0;

    color: #ffffff;

    font-family:
        var(--terra-font-heading, "Poppins", Arial, sans-serif);

    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 600;
    line-height: 1.18;

    letter-spacing: -0.5px;
}


/* Orange line below quote */

.terra-choose-quote-line {
    display: block;

    width: 48px;
    height: 3px;

    margin-top: 20px;

    background: #ff7900;

    border-radius: 5px;
}


/* ==========================================================
   DESKTOP — SLIGHTLY WIDER SCREENS
========================================================== */

@media (min-width: 1200px) {

    .terra-choose-layout {
        grid-template-columns: 40% 60%;
        min-height: 405px;
    }


    .terra-choose-benefits {
        gap: 25px;
    }


    .terra-choose-visual {
        min-height: 405px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

    .terra-choose {
        padding:
            60px
            0
            65px;
    }


    .terra-choose-heading {
        margin-bottom: 25px;
    }


    .terra-choose-layout {
        grid-template-columns:
            44%
            56%;

        min-height: 390px;
    }


    .terra-choose-benefits {
        gap: 20px;

        padding:
            5px
            20px
            5px
            5px;
    }


    .terra-choose-icon {
        width: 56px;
        height: 56px;

        flex-basis: 56px;

        font-size: 21px;
    }


    .terra-choose-item {
        gap: 14px;
    }


    .terra-choose-item-content h3 {
        font-size: 14px;
    }


    .terra-choose-item-content p {
        font-size: 12px;
    }


    .terra-choose-visual {
        min-height: 390px;
    }


    .terra-choose-visual::before {
        width: 22%;
    }


    .terra-choose-quote {
        left: 22%;
        bottom: 40px;

        max-width: 270px;
    }


    .terra-choose-quote blockquote {
        font-size: 24px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .terra-choose {
        padding:
            50px
            0
            55px;
    }


    .terra-choose-heading {
        margin-bottom: 30px;
    }


    .terra-choose-eyebrow {
        font-size: 10.5px;

        gap: 8px;
    }


    .terra-choose-line {
        width: 22px;
        height: 2px;

        flex-basis: 22px;
    }


    .terra-choose-heading h2 {
        font-size:
            clamp(
                28px,
                8vw,
                35px
            );

        line-height: 1.18;
    }


    /* Stack content and image */

    .terra-choose-layout {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }


    /* Benefits */

    .terra-choose-benefits {
        width: 100%;

        gap: 20px;

        padding:
            0
            0
            32px;

        background: #ffffff;
    }


    .terra-choose-item {
        gap: 15px;
    }


    .terra-choose-icon {
        width: 55px;
        height: 55px;

        flex-basis: 55px;

        font-size: 21px;
    }


    .terra-choose-item-content h3 {
        font-size: 15px;

        margin-bottom: 3px;
    }


    .terra-choose-item-content p {
        font-size: 12.5px;
    }


    /* Image */

    .terra-choose-visual {
        width: 100%;
        min-height: 370px;

        border-radius: 5px;

        overflow: hidden;
    }


    .terra-choose-image {
        object-position: 60% center;
    }


    /*
     * Desktop left-to-right white fade is
     * unnecessary after stacking.
     */

    .terra-choose-visual::before {
        display: none;
    }


    /* Stronger bottom overlay on mobile */

    .terra-choose-image-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(4, 35, 67, 0.02) 0%,
                rgba(4, 35, 67, 0.10) 38%,
                rgba(4, 35, 67, 0.60) 72%,
                rgba(4, 35, 67, 0.90) 100%
            );
    }


    .terra-choose-quote {
        left: 25px;
        right: 25px;
        bottom: 28px;

        max-width: 300px;
    }


    .terra-choose-quote-mark {
        height: 31px;

        font-size: 60px;
    }


    .terra-choose-quote blockquote {
        font-size: 24px;
    }


    .terra-choose-quote-line {
        width: 43px;

        margin-top: 15px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .terra-choose {
        padding:
            45px
            0
            50px;
    }


    .terra-choose-heading h2 {
        font-size: 28px;
    }


    .terra-choose-benefits {
        gap: 18px;
    }


    .terra-choose-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 19px;
    }


    .terra-choose-item {
        gap: 13px;
    }


    .terra-choose-item-content h3 {
        font-size: 14px;
    }


    .terra-choose-item-content p {
        font-size: 12px;
    }


    .terra-choose-visual {
        min-height: 330px;
    }


    .terra-choose-quote {
        left: 21px;
        right: 21px;
        bottom: 24px;
    }


    .terra-choose-quote blockquote {
        font-size: 22px;
    }

}








/* ==========================================================
   TERRA BUSINESS — STAGE 3A.6
   UNE PRÉSENCE INTERNATIONALE
========================================================== */

.terra-global {
    position: relative;
    width: 100%;

    padding: 62px 0 65px;

    background: #f8fbfd;

    overflow: hidden;
}


/* ==========================================================
   MAIN TWO-COLUMN LAYOUT
========================================================== */

.terra-global-layout {
    position: relative;

    display: grid;
    grid-template-columns: 45% 55%;

    align-items: center;

    width: 100%;
    min-height: 300px;
}


/* ==========================================================
   LEFT — CONTENT
========================================================== */

.terra-global-content {
    position: relative;
    z-index: 2;

    max-width: 590px;

    padding-right: 45px;
}


/* ==========================================================
   ORANGE EYEBROW
========================================================== */

.terra-global-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    color: #ff7900;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* Orange line */

.terra-global-line {
    display: block;

    width: 27px;
    height: 3px;

    flex: 0 0 27px;

    background: #ff7900;

    border-radius: 10px;
}


/* ==========================================================
   HEADING
========================================================== */

.terra-global-content h2 {
    max-width: 570px;

    margin:
        0
        0
        18px;

    color: #062b52;

    font-family:
        var(
            --terra-font-heading,
            "Poppins",
            Arial,
            sans-serif
        );

    font-size:
        clamp(
            20px,
            3vw,
            32px
        );

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.terra-global-description {
    max-width: 560px;

    margin: 0;

    color: #415e79;

    font-family:
        var(
            --terra-font-body,
            "Inter",
            Arial,
            sans-serif
        );

    font-size: 14px;

    font-weight: 400;

    line-height: 1.65;
}


/* ==========================================================
   RIGHT — WORLD MAP
========================================================== */

.terra-global-map {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-width: 0;

    padding-left: 15px;
}


/* ==========================================================
   WORLD MAP IMAGE
========================================================== */

.terra-global-map-image {
    display: block;

    width: 100%;
    max-width: 680px;

    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* ==========================================================
   OPTIONAL SOFT FADE
   Helps map blend naturally into section background
========================================================== */

.terra-global-map::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    z-index: 1;

    width: 13%;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            #f8fbfd 0%,
            rgba(248, 251, 253, 0.80) 30%,
            rgba(248, 251, 253, 0) 100%
        );
}


.terra-global-map-image {
    position: relative;
    z-index: 0;
}


/* ==========================================================
   LARGE DESKTOP
========================================================== */

@media (min-width: 1200px) {

    .terra-global {
        padding:
            60px
            0
            65px;
    }


    .terra-global-layout {
        grid-template-columns:
            44%
            56%;

        min-height: 300px;
    }


    .terra-global-content {
        padding-right: 40px;
    }


    .terra-global-map-image {
        max-width: 720px;
    }

}


/* ==========================================================
   VERY LARGE SCREENS
========================================================== */

@media (min-width: 1500px) {

    .terra-global-map-image {
        max-width: 760px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .terra-global {
        padding:
            55px
            0
            60px;
    }


    .terra-global-layout {
        grid-template-columns:
            43%
            57%;

        min-height: 270px;
    }


    .terra-global-content {
        padding-right: 25px;
    }


    .terra-global-content h2 {
        font-size:
            clamp(
                29px,
                4vw,
                36px
            );
    }


    .terra-global-description {
        font-size: 13px;

        line-height: 1.65;
    }


    .terra-global-map {
        padding-left: 5px;
    }


    .terra-global-map-image {
        max-width: 590px;
    }

}


/* ==========================================================
   MOBILE / SMALL TABLET
   Stack text above map
========================================================== */

@media (max-width: 760px) {

    .terra-global {
        padding:
            50px
            0
            48px;
    }


    .terra-global-layout {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        min-height: 0;
    }


    /* -------------------------------
       CONTENT
    -------------------------------- */

    .terra-global-content {
        width: 100%;

        max-width: none;

        padding-right: 0;

        margin-bottom: 30px;
    }


    .terra-global-eyebrow {
        margin-bottom: 10px;

        font-size: 10.5px;

        gap: 8px;
    }


    .terra-global-line {
        width: 22px;
        height: 2px;

        flex-basis: 22px;
    }


    .terra-global-content h2 {
        max-width: 100%;

        margin-bottom: 15px;

        font-size:
            clamp(
                28px,
                8vw,
                35px
            );

        line-height: 1.18;
    }


    .terra-global-description {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.65;
    }


    /* -------------------------------
       MAP
    -------------------------------- */

    .terra-global-map {
        width: 100%;

        padding-left: 0;

        justify-content: center;
    }


    .terra-global-map-image {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }


    /*
     * Remove horizontal fade when map
     * is underneath text.
     */

    .terra-global-map::before {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .terra-global {
        padding:
            45px
            0
            42px;
    }


    .terra-global-content {
        margin-bottom: 25px;
    }


    .terra-global-content h2 {
        font-size: 28px;

        letter-spacing: -0.5px;
    }


    .terra-global-description {
        font-size: 12.5px;

        line-height: 1.65;
    }


    /*
     * Slightly enlarge map relative to viewport
     * because map labels are small.
     */

    .terra-global-map {
        width: calc(100% + 20px);

        margin-left: -10px;
    }


    .terra-global-map-image {
        width: 100%;
    }

}


/* ==========================================================
   EXTRA SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .terra-global-content h2 {
        font-size: 26px;
    }


    .terra-global-description {
        font-size: 12px;
    }

}

/* ==========================================================
   HEADER RIGHT-SIDE ACTIONS
   Language selector ABOVE quote button
   ========================================================== */

.tb-header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    gap: 5px;

    flex-shrink: 0;
}


/* ==========================================================
   LANGUAGE SELECTOR
   ========================================================== */

.tb-language-switcher {
    position: relative;
    display: block;
    width: 100%;
}


/* Current language */

.tb-language-current {
    width: 100%;
    height: 27px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 6px;

    padding: 0 10px !important;

    box-sizing: border-box;

    background: #ffffff !important;

    border: 1px solid #dfe5eb !important;
    border-radius: 5px !important;

    color: #062f5b !important;

    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
    text-decoration: none !important;
}


/* ==========================================================
   FLAGS
   ========================================================== */

.tb-flag {
    display: inline-block !important;

    width: 18px !important;
    height: 12px !important;
    min-width: 18px;

    border-radius: 1px;

    overflow: hidden;
}


/* French flag */

.tb-flag-fr {
    background: linear-gradient(
        to right,
        #002395 0%,
        #002395 33.33%,
        #ffffff 33.33%,
        #ffffff 66.66%,
        #ed2939 66.66%,
        #ed2939 100%
    ) !important;
}


/* English / UK flag */

.tb-flag-en {
    background:
        linear-gradient(
            135deg,
            transparent 40%,
            #ffffff 40%,
            #ffffff 46%,
            #c8102e 46%,
            #c8102e 54%,
            #ffffff 54%,
            #ffffff 60%,
            transparent 60%
        ),
        linear-gradient(
            45deg,
            transparent 40%,
            #ffffff 40%,
            #ffffff 46%,
            #c8102e 46%,
            #c8102e 54%,
            #ffffff 54%,
            #ffffff 60%,
            transparent 60%
        ),
        #012169 !important;
}


/* Professional language dropdown chevron */

.tb-lang-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 13px;
    height: 13px;

    margin-left: 2px;

    color: #062f5b;

    transition: transform 0.25s ease;
}

.tb-lang-chevron svg {
    display: block;

    width: 100%;
    height: 100%;
}


/* Rotate arrow when language selector is hovered */

.tb-language-switcher:hover .tb-lang-chevron {
    transform: rotate(180deg);
}


/* ==========================================================
   LANGUAGE DROPDOWN
   ========================================================== */

.tb-language-menu {
    position: absolute;

    top: calc(100% + 4px);
    right: 0;

    width: 150px;

    padding: 6px;

    background: #ffffff;

    border: 1px solid #e6e9ed;
    border-radius: 6px;

    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.14);

    opacity: 0;
    visibility: hidden;

    transform: translateY(5px);

    transition: 0.2s ease;

    z-index: 99999;
}


.tb-language-switcher:hover .tb-language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.tb-language-option {
    display: flex !important;
    align-items: center !important;

    gap: 8px;

    padding: 8px 9px !important;

    color: #062f5b !important;

    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    border-radius: 4px;
}


.tb-language-option:hover {
    background: #f4f7fa !important;
}


/* ==========================================================
   DEMANDER UN DEVIS BUTTON
   ========================================================== */

html body .tb-header-actions a.tb-devis-button {

    width: 100% !important;
    height: 38px !important;

    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    padding: 0 17px !important;
    margin: 0 !important;

    background: #ff6b00 !important;

    color: #ffffff !important;

    border: 2px solid #ff6b00 !important;
    border-radius: 6px !important;

    font-family: inherit !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    white-space: nowrap !important;

    transition: all 0.25s ease !important;
}


html body .tb-header-actions a.tb-devis-button:hover {

    background: #062f5b !important;

    border-color: #062f5b !important;

    color: #ffffff !important;
}


/* Remove navigation underline */

html body .tb-header-actions a.tb-devis-button::before,
html body .tb-header-actions a.tb-devis-button::after {
    display: none !important;
    content: none !important;
}


.tb-devis-arrow {
    font-size: 15px;
    line-height: 1;
}