:root {
    --navy: #082d4b;
    --navy-deep: #03233b;
    --navy-dark: #021b2f;
    --blue: #0e6fe8;
    --orange: #ff5a1f;
    --orange-dark: #e94b12;
    --text: #12314e;
    --muted: #64768a;
    --line: #dce5ec;
    --light: #f5f8fb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(8, 45, 75, .10);
    --radius: 6px;
    --container: 1420px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.45;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 38px 0;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
}

.eyebrow.light {
    color: #fff;
}

.eyebrow.light-orange {
    color: #ff7b49;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h2 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.btn {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 6px 16px rgba(255, 90, 31, .22);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.75);
    background: rgba(4,35,59,.28);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.12);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #edf2f6;
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    width: 58px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    color: var(--navy);
    font-size: 37px;
}

.brand-swoosh {
    position: absolute;
    left: 5px;
    right: 1px;
    bottom: 5px;
    height: 8px;
    border: 4px solid var(--orange);
    border-top: 0;
    border-left-color: transparent;
    border-radius: 0 0 50% 50%;
    transform: rotate(-7deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--navy);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1;
}

.brand-name strong {
    color: var(--orange);
}

.brand-tagline {
    margin-top: 5px;
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.btn) {
    position: relative;
    color: #29465f;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .2s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
}

.nav-quote {
    margin-left: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 28px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 520px;
    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 35, 59, 0.92) 0%,
            rgba(3, 35, 59, 0.72) 38%,
            rgba(3, 35, 59, 0.20) 68%,
            rgba(3, 35, 59, 0.05) 100%
        ),
        url("/assets/images/hero/global-trade-hero.jpg");

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(3,35,59,.45) 100%
        );
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 455px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    gap: 40px;
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: .98;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: var(--orange);
}

.hero-copy p {
    max-width: 650px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.93);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-side-message {
    justify-self: end;
    align-self: start;
    margin-top: 62px;
    max-width: 250px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    color: #0f3452;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 1px 14px rgba(255,255,255,.65);
}

.hero-side-message strong {
    font-weight: 900;
}

.hero-features {
    position: relative;
    z-index: 2;
    min-height: 65px;
    border-top: 1px solid rgba(255,255,255,.15);
    background: rgba(3,35,59,.85);
}

.hero-feature-grid {
    min-height: 65px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-feature {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
}

.hero-feature:first-child {
    border-left: 1px solid rgba(255,255,255,.18);
}

.hero-feature i {
    font-size: 24px;
}

/* CATEGORY CARDS */
.category-strip {
    padding-top: 22px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    background: #fff;
    border: 1px solid #e0e7ed;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-card > img {
    aspect-ratio: 2.35 / 1;
    object-fit: cover;
}

.category-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
}

.category-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #086fe8;
    font-size: 31px;
}

.category-body h3 {
    margin-bottom: 5px;
    font-size: 22px;
}

.category-body p {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.category-body a {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

/* ABOUT */
.about-section {
    background: linear-gradient(90deg, #fff 0%, #f8fbfd 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .8fr;
    align-items: stretch;
    gap: 34px;
}

.about-copy {
    align-self: center;
    padding: 18px 0;
}

.about-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-photo {
    position: relative;
    min-height: 310px;
    overflow: hidden;
}

.about-photo img {
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    top: 34px;
    right: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
    letter-spacing: .07em;
    text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.benefit-item i {
    color: #0d70e8;
    font-size: 32px;
}

.benefit-item h4 {
    margin-bottom: 3px;
    font-size: 15px;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* STATS */
.stats-band {
    background: var(--navy-deep);
    color: #fff;
}

.stats-grid {
    min-height: 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.2fr;
    align-items: center;
}

.stat,
.stat-message {
    min-height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255,255,255,.24);
}

.stat:first-child {
    padding-left: 0;
}

.stat i {
    font-size: 36px;
    color: #9dcff9;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    font-size: 30px;
    line-height: 1;
}

.stat span {
    margin-top: 5px;
    font-size: 13px;
}

.stat-message {
    border-right: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-weight: 800;
    letter-spacing: .06em;
}

.stat-message span {
    width: 42px;
    height: 4px;
    background: var(--orange);
}

/* PRODUCTS */
.section-heading {
    margin-bottom: 18px;
}

.heading-with-link {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.heading-with-link > a {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.product-card {
    min-width: 0;
    border: 1px solid #dfe7ee;
    background: #fff;
    box-shadow: 0 7px 20px rgba(8,45,75,.06);
}

.product-card img {
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.product-card-body {
    padding: 12px 13px 16px;
}

.product-card h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

/* WHY */
.why-section {
    background: linear-gradient(90deg, #fff, #f7fafc);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    min-height: 150px;
    padding: 26px;
    border: 1px solid #e1e8ee;
    background: #fff;
    box-shadow: var(--shadow);
}

.why-card i {
    color: #0d70e8;
    font-size: 36px;
}

.why-card h3 {
    margin: 14px 0 4px;
    font-size: 18px;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* GLOBAL REACH */
.global-reach {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 58% 55%, rgba(25,106,159,.40), transparent 34%),
        var(--navy-deep);
}

.reach-grid {
    min-height: 320px;
    display: grid;
    grid-template-columns: 1fr 1.35fr .65fr;
    align-items: center;
    gap: 30px;
}

.reach-copy h2 {
    color: #fff;
}

.reach-copy p {
    max-width: 500px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.6;
}

.reach-map img {
    max-height: 265px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.10));
}

.reach-regions {
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,.18);
}

.reach-regions h4 {
    font-size: 11px;
    letter-spacing: .06em;
}

.reach-regions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.reach-regions li {
    margin: 7px 0;
    font-size: 12px;
}

.reach-regions li i {
    margin-right: 7px;
}

.region-note {
    margin-top: 22px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
}

.region-note span {
    width: 38px;
    height: 4px;
    margin-bottom: 8px;
    display: block;
    background: var(--orange);
}

/* CTA */
.cta-band {
    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,.97),
            rgba(255,255,255,.62)
        ),
        url("/assets/images/cta/port-cta.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-grid {
    position: relative;
    z-index: 2;
    min-height: 150px;
    display: grid;
    grid-template-columns: 1.1fr .8fr auto;
    align-items: center;
    gap: 40px;
}

.cta-grid h2 {
    margin: 0;
    font-size: 32px;
}

.cta-grid p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

/* FOOTER */
.site-footer {
    color: #fff;
    background: var(--navy-dark);
}

.footer-grid {
    padding: 48px 0 38px;
    display: grid;
    grid-template-columns: 1.45fr .65fr .72fr 1fr .45fr;
    gap: 40px;
}

.brand-footer .brand-name,
.brand-footer .brand-tagline {
    color: #fff;
}

.footer-brand > p {
    max-width: 360px;
    margin: 20px 0;
    color: #c3d0dc;
    font-size: 13px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #fff;
}

.site-footer h4 {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-links,
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 7px 0;
}

.footer-links a {
    color: #c7d5e2;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
}

.contact-list li {
    margin-bottom: 13px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 9px;
    color: #c7d5e2;
    font-size: 12px;
}

.footer-motto {
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,.16);
}

.footer-motto i {
    color: #84a9c7;
    font-size: 54px;
}

.footer-motto p {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: .06em;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #aebfcd;
    font-size: 11px;
}

.footer-bottom-inner > div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .main-nav {
        gap: 17px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reach-grid {
        grid-template-columns: 1fr 1.1fr;
    }

    .reach-regions {
        grid-column: 1 / -1;
        padding: 18px 0 28px;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .reach-regions ul {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 1fr);
    }

    .footer-motto {
        display: none;
    }
}

@media (max-width: 992px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid #dfe7ee;
        border-radius: 7px;
        box-shadow: 0 20px 50px rgba(3,35,59,.18);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.btn) {
        padding: 12px 8px;
    }

    .main-nav > a:not(.btn)::after {
        display: none;
    }

    .nav-quote {
        margin: 10px 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-side-message {
        display: none;
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid,
    .about-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-list {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 0;
    }

    .stat {
        padding: 18px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .stat-message {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 22px;
        border-right: 0;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reach-grid {
        grid-template-columns: 1fr;
        padding: 42px 0;
    }

    .cta-grid {
        padding: 28px 0;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 42px;
        height: 38px;
        font-size: 29px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 6.5px;
    }

    .main-nav {
        top: 68px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: 500px;
        align-items: center;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-feature {
        padding: 12px 10px;
        font-size: 9px;
    }

    .category-grid,
    .about-grid,
    .benefit-list,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        min-height: 290px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-message {
        grid-column: auto;
    }

    .heading-with-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reach-map {
        order: 3;
    }

    .reach-regions {
        grid-column: auto;
    }

    .footer-bottom-inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   GLOBAL POINT TRADE BRANDING ON HERO SHIP
   Slight tilt, moved left, reduced size
========================================================= */

.hero-ship-brand {
    position: absolute;
    z-index: 10;

    /* Move slightly left and keep low on the ship hull */
    right: 24%;
    bottom: 79px;

    color: #ffffff;
    pointer-events: none;

    /* Slight hull-like tilt and reduced overall size */
    transform: rotate(0deg) scale(.84);
    transform-origin: right center;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.68),
        0 4px 12px rgba(0, 0, 0, 0.38);
}

.hero-ship-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Globe mark */
.hero-ship-globe {
    position: relative;

    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ship-globe i {
    color: #ffffff;
    font-size: 46px;
    line-height: 1;
}

/* Orange swoosh beneath globe */
.hero-ship-swoosh {
    position: absolute;

    left: 2px;
    right: 0;
    bottom: 0;

    height: 8px;

    border-bottom: 4px solid var(--orange);
    border-radius: 50%;

    transform: rotate(-7deg);
}

/* Text beside globe */
.hero-ship-brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-ship-name {
    color: #ffffff;

    font-size: 23px;
    font-weight: 900;

    line-height: .96;
    letter-spacing: -0.7px;

    white-space: nowrap;
}

.hero-ship-name span {
    color: var(--orange);
}

.hero-ship-tagline {
    margin-top: 5px;

    color: #ffffff;

    font-size: 7px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: .075em;

    white-space: nowrap;
}


/* =========================================================
   HERO DESKTOP POSITIONING
   Keep the rest of the hero layout unchanged
========================================================= */

@media (min-width: 1101px) {

    .hero-grid {
        min-height: 455px;
        align-items: start;
    }

    .hero-copy {
        padding-top: 52px;
        position: relative;
        left: -8px;
    }

    .hero-side-message {
        align-self: start;
        justify-self: end;

        margin-top: 48px;
        margin-right: 24px;

        padding: 0;
    }
}


/* =========================================================
   NORMAL LAPTOP / SMALL DESKTOP
========================================================= */

@media (min-width: 1101px) and (max-width: 1400px) {

    .hero-copy {
        padding-top: 48px;
        left: 0;
    }

    .hero-side-message {
        margin-top: 45px;
        margin-right: 8px;
    }

    .hero-ship-brand {
        right: 21%;
        bottom: 76px;

        transform: rotate(0deg) scale(.78);
        transform-origin: right center;
    }
}


/* =========================================================
   HIDE HULL BRANDING ON TABLET / MOBILE
========================================================= */

@media (max-width: 1100px) {

    .hero-ship-brand {
        display: none;
    }
}
