/* =========================================================
   ARPIVA TECHNOLOGIES
   LOGISTICS INDUSTRY PAGE
   PREMIUM VERSION
========================================================= */

.arpiva-logistics-page {
    --lg-navy: #06183f;
    --lg-deep: #03112d;
    --lg-blue: #1976e5;
    --lg-blue-light: #69b0ff;
    --lg-cyan: #19bfe8;
    --lg-orange: #ff9f1c;
    --lg-white: #ffffff;
    --lg-text: #12213f;
    --lg-muted: #64748b;
    --lg-light: #f5f8fc;
    --lg-border: #e3ebf5;

    width: 100%;
    overflow: hidden;
    font-family: inherit;
}

.arpiva-logistics-page *,
.arpiva-logistics-page *::before,
.arpiva-logistics-page *::after {
    box-sizing: border-box;
}

.arpiva-logistics-page img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   CONTAINER
========================================================= */

.arpiva-logistics-page .container {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
   logistics-hero.png = BACKGROUND ONLY
========================================================= */

.logistics-hero {
    position: relative;

    min-height: 620px;
    height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;

    background-color: var(--lg-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 17, 45, 0.98) 0%,
            rgba(3, 18, 48, 0.94) 30%,
            rgba(4, 24, 58, 0.78) 55%,
            rgba(4, 24, 58, 0.20) 100%
        ),
        url("../images/logistics-hero.png");

    background-repeat: no-repeat;

    background-size:
        cover,
        cover;

    background-position:
        center,
        center center;
}


/* Hero image remains background only */
.logistics-hero > img {
    display: none !important;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.logistics-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(25, 118, 229, 0.20),
            transparent 35%
        );
}


/* =========================================================
   HERO GLOW
========================================================= */

.logistics-glow {
    position: absolute;

    z-index: 1;

    pointer-events: none;

    border-radius: 50%;

    filter: blur(50px);
}

.logistics-glow-one {
    width: 300px;
    height: 300px;

    right: 8%;
    top: 20%;

    background: rgba(25, 118, 229, 0.10);
}

.logistics-glow-two {
    width: 250px;
    height: 180px;

    left: 10%;
    bottom: -80px;

    background: rgba(25, 191, 232, 0.08);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.logistics-hero .container {
    position: relative;
    z-index: 5;
}

.logistics-hero-content {
    width: min(650px, 58%);

    padding-top: 5px;

    animation: logisticsFadeUp .8s ease both;
}

@keyframes logisticsFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   EYEBROW
========================================================= */

.logistics-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 7px 14px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;

    background: rgba(255,255,255,.055);

    color: #d9e6f7;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    backdrop-filter: blur(8px);
}

.logistics-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #42dc86;

    box-shadow:
        0 0 0 4px rgba(66,220,134,.10),
        0 0 15px rgba(66,220,134,.40);

    animation: logisticsPulse 2s ease-in-out infinite;
}

@keyframes logisticsPulse {
    0%, 100% {
        transform: scale(.9);
        opacity: .7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


/* =========================================================
   KICKER
========================================================= */

.logistics-kicker {
    display: block;

    margin-top: 19px;
    margin-bottom: 10px;

    color: var(--lg-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
========================================================= */

.logistics-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5.2vw, 67px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}

.logistics-hero h1 span {
    display: block;

    margin-top: 6px;

    color: var(--lg-blue-light);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.logistics-hero-content > p {
    max-width: 630px;

    margin: 21px 0 0;

    color: #c3d2e7;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.logistics-hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.logistics-primary-button,
.logistics-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 49px;

    padding: 0 22px;

    border-radius: 9px;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 700;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease,
        border-color .28s ease;
}

.logistics-primary-button {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #ffab27,
            #ff8500
        );

    box-shadow:
        0 13px 30px rgba(255,133,0,.22);
}

.logistics-primary-button:hover {
    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,133,0,.32);
}

.logistics-secondary-button {
    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,.23);

    background: rgba(255,255,255,.055);

    backdrop-filter: blur(8px);
}

.logistics-secondary-button:hover {
    color: #ffffff !important;

    transform: translateY(-3px);

    border-color: rgba(255,255,255,.42);

    background: rgba(255,255,255,.10);
}

.logistics-primary-button span,
.logistics-secondary-button span {
    font-size: 16px;

    transition: transform .25s ease;
}

.logistics-primary-button:hover span,
.logistics-secondary-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TRUST LINE
========================================================= */

.logistics-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 17px;
}

.logistics-hero-trust span {
    position: relative;

    padding-left: 11px;

    color: #9db2cf;

    font-size: 8px;
    font-weight: 600;
}

.logistics-hero-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--lg-orange);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.logistics-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 6;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.logistics-scroll-indicator i {
    display: block;

    width: 1px;
    height: 25px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.65),
            transparent
        );

    animation: logisticsScroll 1.8s ease-in-out infinite;
}

@keyframes logisticsScroll {
    0%, 100% {
        opacity: .35;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.logistics-intro,
.logistics-solutions,
.logistics-operations,
.logistics-automation {
    padding: 100px 0;

    background: #ffffff;
}

.logistics-challenges,
.logistics-why {
    padding: 100px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}

.logistics-experience,
.logistics-intelligence,
.logistics-security {
    padding: 100px 0;

    background: var(--lg-light);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.logistics-section-heading {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.logistics-section-heading.light {
    color: #ffffff;
}

.logistics-section-badge {
    display: block;

    margin-bottom: 13px;

    color: var(--lg-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.6px;

    text-transform: uppercase;
}

.logistics-section-heading h2 {
    margin: 0;

    color: var(--lg-navy);

    font-size: clamp(32px, 4vw, 49px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.logistics-section-heading.light h2 {
    color: #ffffff;
}

.logistics-section-heading h2 span {
    display: block;

    color: var(--lg-blue);
}

.logistics-section-heading p {
    max-width: 720px;

    margin: 18px auto 0;

    color: var(--lg-muted);

    font-size: 13px;

    line-height: 1.8;
}

.logistics-section-heading.light p {
    color: #aebfd8;
}


/* =========================================================
   INTRO
========================================================= */

.logistics-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: center;
}

.logistics-intro-content {
    max-width: 570px;
}

.logistics-small-label {
    display: block;

    margin-bottom: 13px;

    color: var(--lg-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.logistics-intro-content h3 {
    margin: 0 0 17px;

    color: var(--lg-navy);

    font-size: clamp(29px, 3.5vw, 43px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.logistics-intro-content h3 strong {
    display: block;

    color: var(--lg-blue);
}

.logistics-intro-content > p {
    margin: 0;

    color: var(--lg-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   INTRO POINTS
========================================================= */

.logistics-intro-points {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 11px;

    margin-top: 27px;
}

.logistics-intro-points > div {
    padding: 17px;

    border: 1px solid var(--lg-border);

    border-radius: 12px;

    background: #fbfcfe;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.logistics-intro-points > div:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 32px rgba(6,24,63,.08);
}

.logistics-intro-points span {
    display: block;

    margin-bottom: 9px;

    color: var(--lg-blue);

    font-size: 9px;
    font-weight: 800;
}

.logistics-intro-points strong {
    display: block;

    color: var(--lg-navy);

    font-size: 11px;
}

.logistics-intro-points p {
    margin: 6px 0 0;

    color: var(--lg-muted);

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.logistics-intro-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}

.logistics-network {
    position: relative;

    width: 400px;
    height: 400px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.logistics-network-ring {
    position: absolute;

    border: 1px dashed rgba(25,118,229,.18);

    border-radius: 50%;
}

.ring-one {
    width: 390px;
    height: 390px;

    animation: logisticsRotate 24s linear infinite;
}

.ring-two {
    width: 290px;
    height: 290px;

    border-color: rgba(25,191,232,.18);

    animation: logisticsRotate 18s linear infinite reverse;
}

.ring-three {
    width: 190px;
    height: 190px;

    border-color: rgba(25,118,229,.20);

    animation: logisticsRotate 13s linear infinite;
}

@keyframes logisticsRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.logistics-network-core {
    position: relative;
    z-index: 4;

    width: 140px;
    height: 140px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #1976e5,
            #06183f
        );

    box-shadow:
        0 20px 55px rgba(25,118,229,.25);
}

.logistics-network-core span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.logistics-network-core strong {
    margin-top: 4px;

    font-size: 18px;
}

.logistics-network-core small {
    margin-top: 6px;

    color: #a9c5e6;

    font-size: 6px;

    letter-spacing: 1.2px;
}

.logistics-network-node {
    position: absolute;
    z-index: 5;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dbe7f5;

    border-radius: 50%;

    color: var(--lg-navy);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(6,24,63,.11);

    font-size: 8px;
    font-weight: 800;
}

.node-one {
    top: 10px;
    left: 55px;
}

.node-two {
    top: 10px;
    right: 55px;
}

.node-three {
    right: 0;
    bottom: 52px;
}

.node-four {
    left: 0;
    bottom: 52px;
}


/* =========================================================
   CHALLENGES
========================================================= */

.logistics-challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.logistics-challenge-card {
    position: relative;

    min-height: 250px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 16px;

    background: rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.logistics-challenge-card:hover {
    transform: translateY(-7px);

    background: rgba(255,255,255,.075);

    border-color: rgba(103,173,255,.30);
}

.logistics-challenge-card > span {
    display: none;
}

.logistics-challenge-card > div {
    color: rgba(255,255,255,.25);

    font-size: 10px;
    font-weight: 800;
}

.logistics-challenge-card h3 {
    margin: 32px 0 12px;

    color: #ffffff;

    font-size: 17px;
}

.logistics-challenge-card p {
    margin: 0;

    color: #9db1cf;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.logistics-solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.logistics-solution-card {
    min-height: 235px;

    padding: 24px;

    border: 1px solid var(--lg-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.logistics-solution-card:hover {
    transform: translateY(-7px);

    border-color: rgba(25,118,229,.24);

    box-shadow:
        0 18px 40px rgba(6,24,63,.08);
}

.logistics-solution-card > span {
    color: #a5b5c9;

    font-size: 9px;
    font-weight: 800;
}

.logistics-solution-card i {
    display: block;

    margin-top: 23px;

    color: var(--lg-blue);

    font-size: 9px;
    font-weight: 800;

    font-style: normal;

    letter-spacing: 1.5px;
}

.logistics-solution-card h3 {
    margin: 9px 0 10px;

    color: var(--lg-navy);

    font-size: 16px;
}

.logistics-solution-card p {
    margin: 0;

    color: var(--lg-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   OPERATIONS
========================================================= */

.logistics-operations-grid {
    display: grid;

    grid-template-columns:
        1.08fr
        .92fr;

    gap: 70px;

    align-items: center;
}

.logistics-operations-image {
    overflow: hidden;

    border-radius: 19px;

    background: var(--lg-navy);

    box-shadow:
        0 25px 60px rgba(6,24,63,.13);
}

.logistics-operations-image img {
    width: 100%;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.logistics-operations-image:hover img {
    transform: scale(1.025);
}

.logistics-operations-content h2 {
    margin: 0 0 17px;

    color: var(--lg-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.logistics-operations-content h2 span {
    display: block;

    color: var(--lg-blue);
}

.logistics-operations-content > p {
    margin: 0;

    color: var(--lg-muted);

    font-size: 13px;

    line-height: 1.8;
}

.logistics-operations-list {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 0 20px;

    margin-top: 23px;
}

.logistics-operations-list > div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid var(--lg-border);
}

.logistics-operations-list span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    color: #ffffff;

    background: var(--lg-blue);

    font-size: 9px;
}

.logistics-operations-list strong {
    color: var(--lg-navy);

    font-size: 10px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.logistics-experience-grid {
    display: grid;

    grid-template-columns:
        1fr
        .75fr;

    gap: 70px;

    align-items: center;
}

.logistics-experience-content {
    max-width: 650px;
}

.logistics-experience-content h2,
.logistics-intelligence-content h2 {
    margin: 0 0 17px;

    color: var(--lg-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.logistics-experience-content h2 span,
.logistics-intelligence-content h2 span {
    display: block;

    color: var(--lg-blue);
}

.logistics-experience-content > p,
.logistics-intelligence-content > p {
    margin: 0 0 13px;

    color: var(--lg-muted);

    font-size: 13px;

    line-height: 1.8;
}

.logistics-experience-points {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;

    margin-top: 25px;
}

.logistics-experience-points > div {
    padding: 16px;

    border: 1px solid var(--lg-border);

    border-radius: 12px;

    background: #ffffff;
}

.logistics-experience-points strong {
    display: block;

    color: var(--lg-navy);

    font-size: 11px;
}

.logistics-experience-points span {
    display: block;

    margin-top: 6px;

    color: var(--lg-muted);

    font-size: 9px;

    line-height: 1.5;
}

.logistics-experience-card {
    min-height: 360px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    border-radius: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0b3c86,
            #03122f
        );

    box-shadow:
        0 25px 55px rgba(6,24,63,.16);

    overflow: hidden;
}

.logistics-experience-card > span {
    color: var(--lg-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.logistics-experience-card > strong {
    margin-top: 22px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1.02;

    letter-spacing: -2px;
}

.logistics-experience-card small {
    max-width: 260px;

    margin-top: 25px;

    color: #a9c0dc;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.logistics-intelligence-grid {
    display: grid;

    grid-template-columns:
        .92fr
        1.08fr;

    gap: 70px;

    align-items: center;
}

.logistics-intelligence-content {
    max-width: 570px;
}

.logistics-intelligence-image {
    overflow: hidden;

    border-radius: 19px;

    background: var(--lg-navy);

    box-shadow:
        0 25px 60px rgba(6,24,63,.13);
}

.logistics-intelligence-image img {
    width: 100%;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.logistics-intelligence-image:hover img {
    transform: scale(1.025);
}

.logistics-intelligence-points {
    margin-top: 24px;
}

.logistics-intelligence-points > div {
    padding: 13px 0;

    border-bottom: 1px solid var(--lg-border);
}

.logistics-intelligence-points strong {
    display: block;

    color: var(--lg-navy);

    font-size: 11px;
}

.logistics-intelligence-points span {
    display: block;

    margin-top: 4px;

    color: var(--lg-muted);

    font-size: 9px;
}


/* =========================================================
   AUTOMATION
========================================================= */

.logistics-automation-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.logistics-automation-card {
    min-height: 220px;

    padding: 25px;

    border: 1px solid var(--lg-border);

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.logistics-automation-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(6,24,63,.08);
}

.logistics-automation-card > span {
    color: var(--lg-orange);

    font-size: 9px;
    font-weight: 800;
}

.logistics-automation-card h3 {
    margin: 24px 0 10px;

    color: var(--lg-navy);

    font-size: 16px;
}

.logistics-automation-card p {
    margin: 0;

    color: var(--lg-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   SECURITY
========================================================= */

.logistics-security-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.logistics-security-grid h2 {
    margin: 0 0 17px;

    color: var(--lg-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.logistics-security-grid h2 span {
    display: block;

    color: var(--lg-blue);
}

.logistics-security-grid > div:first-child p {
    max-width: 570px;

    margin: 0;

    color: var(--lg-muted);

    font-size: 13px;

    line-height: 1.8;
}

.logistics-security-points {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.logistics-security-points > div {
    padding: 20px;

    border: 1px solid var(--lg-border);

    border-radius: 13px;

    background: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.logistics-security-points > div:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(6,24,63,.07);
}

.logistics-security-points span {
    display: block;

    margin-bottom: 18px;

    color: var(--lg-blue);

    font-size: 9px;
    font-weight: 800;
}

.logistics-security-points strong {
    color: var(--lg-navy);

    font-size: 10px;
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.logistics-why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.logistics-why-card {
    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background: rgba(255,255,255,.045);

    transition:
        transform .3s ease,
        background .3s ease;
}

.logistics-why-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.075);
}

.logistics-why-card > span {
    color: var(--lg-orange);

    font-size: 9px;
    font-weight: 800;
}

.logistics-why-card h3 {
    margin: 22px 0 10px;

    color: #ffffff;

    font-size: 17px;
}

.logistics-why-card p {
    margin: 0;

    color: #9db1cf;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.logistics-final-cta {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #03112d,
            #06183f
        );
}

.logistics-final-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 600px;
    height: 600px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25,118,229,.20),
            transparent 68%
        );

    pointer-events: none;
}

.logistics-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;
}

.logistics-final-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 4.5vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.logistics-final-content h2 span {
    display: block;

    color: var(--lg-blue-light);
}

.logistics-final-content p {
    max-width: 650px;

    margin: 18px auto 28px;

    color: #a9bdd8;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .logistics-hero-content {
        width: 62%;
    }

    .logistics-challenge-grid,
    .logistics-solutions-grid,
    .logistics-automation-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-logistics-page .container {
        width: 92%;
    }

    .logistics-hero {
        min-height: 700px;
        height: 700px;

        align-items: flex-start;

        padding-top: 55px;

        background-position:
            center,
            64% center;
    }

    .logistics-hero-content {
        width: 100%;
    }

    .logistics-hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .logistics-hero-content > p {
        font-size: 12px;
    }

    .logistics-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .logistics-primary-button,
    .logistics-secondary-button {
        width: 100%;
    }

    .logistics-scroll-indicator {
        display: none;
    }

    .logistics-intro,
    .logistics-challenges,
    .logistics-solutions,
    .logistics-operations,
    .logistics-experience,
    .logistics-intelligence,
    .logistics-automation,
    .logistics-security,
    .logistics-why {
        padding: 75px 0;
    }

    .logistics-intro-grid,
    .logistics-operations-grid,
    .logistics-experience-grid,
    .logistics-intelligence-grid,
    .logistics-security-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .logistics-intro-points,
    .logistics-experience-points,
    .logistics-operations-list,
    .logistics-security-points {
        grid-template-columns: 1fr;
    }

    .logistics-challenge-grid,
    .logistics-solutions-grid,
    .logistics-automation-grid,
    .logistics-why-grid {
        grid-template-columns: 1fr;
    }

    .logistics-network {
        width: 320px;
        height: 320px;
    }

    .ring-one {
        width: 310px;
        height: 310px;
    }

    .ring-two {
        width: 230px;
        height: 230px;
    }

    .ring-three {
        width: 155px;
        height: 155px;
    }

    .logistics-network-core {
        width: 115px;
        height: 115px;
    }

    .node-one {
        left: 15px;
    }

    .node-two {
        right: 15px;
    }

    .node-three {
        right: -5px;
    }

    .node-four {
        left: -5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .logistics-hero-content,
    .logistics-eyebrow::before,
    .logistics-scroll-indicator i,
    .logistics-network-ring {
        animation: none !important;
    }

}