:root {
    --navy: #071522;
    --navy-2: #0d2236;
    --ink: #111827;
    --muted: #667085;
    --orange: #ff6b00;
    --orange-dark: #e65f00;
    --soft: #f7f8fa;
    --line: #e7eaee;
    --radius: 12px;
    --shadow: 0 18px 50px rgba(7, 21, 34, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.container-xxl {
    max-width: 1440px;
}

.topbar {
    background: var(--navy);
}

.topbar a,
.topbar .topbar-lang {
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
}

.topbar a {
    text-decoration: none;
}

.topbar a:hover {
    color: #fff;
}

.lang-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.site-header {
    z-index: 1030;
}

.navbar {
    min-height: 86px;
}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #1c2530;
    padding: 12px 14px !important;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.navbar .nav-link:hover {
    color: var(--orange);
}

.brand-mark {
    text-decoration: none;
    min-width: 205px;
}

.brand-icon {
    position: relative;
    /* width: 34px; */
    height: 45px;
    display: inline-block;
}

.brand-icon>span {
    position: absolute;
    border: 2px solid var(--navy);
    width: 24px;
    height: 30px;
    background: #fff;
}

.brand-icon>span:first-child {
    left: 0;
    top: 0;
}

.brand-icon>span:last-child {
    right: 0;
    bottom: 0;
    border-color: var(--orange);
    background: transparent;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-size: 24px;
    letter-spacing: -.04em;
    color: var(--navy);
}

.brand-text small {
    font-size: 16px;
    letter-spacing: .12em;
    color: #3e4853;
    margin-top: 3px;
}

.brand-light .brand-text strong,
.brand-light .brand-text small {
    color: #fff;
}

.brand-light .brand-icon>span {
    background: var(--navy);
    border-color: #fff;
}

.brand-light .brand-icon>span:last-child {
    border-color: var(--orange);
}

.btn {
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .02em;
    transition: .2s ease;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: #fff;
    border-color: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-outline-orange {
    color: var(--orange);
    border: 1px solid var(--orange);
    background: #fff;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: #fff;
}

.btn-outline-brand {
    background: #fff;
    color: #172033;
    border: 1px solid var(--orange);
    padding: 10px 30px;
}

.btn-outline-brand:hover {
    background: var(--orange);
    color: #fff
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.btn-navy:hover {
    background: #0d2236;
    color: #fff;
}

.mega-menu {
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    border-radius: 0 0 12px 12px;
}

.mega-menu h6 {
    font-weight: 800;
    margin-bottom: 14px;
}

.mega-menu a:not(.btn) {
    display: block;
    text-decoration: none;
    color: #4b5563;
    padding: 5px 0;
    font-size: 14px;
}

.mega-menu a:not(.btn):hover {
    color: var(--orange);
}

.mega-feature {
    background: var(--soft);
    border-radius: 10px;
    padding: 22px;
}

.mega-feature p {
    color: var(--muted);
    font-size: 14px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.simple-dropdown {
    padding: 10px;
    min-width: 250px;
    border-radius: 10px;
}

.simple-dropdown .dropdown-item {
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 14px;
}

.simple-dropdown .dropdown-item:hover {
    background: #fff4eb;
    color: var(--orange);
}

.offcanvas .accordion-button {
    font-weight: 800;
    box-shadow: none;
}

.offcanvas .accordion-button:not(.collapsed) {
    color: var(--orange);
    background: #fff;
}

.offcanvas .accordion-body a,
.mobile-direct {
    display: block;
    color: #374151;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-direct {
    font-weight: 700;
}

.hero-section {
    min-height: 720px;
    color: #fff;
    background: linear-gradient(90deg, rgba(3, 12, 20, .72) 0%, rgba(3, 12, 20, .44) 39%, rgba(3, 12, 20, .08) 72%), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=90') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .15));
}

.min-vh-hero {
    min-height: 84.2vh;
}

.hero-content h1 {
    font-size: clamp(46px, 5.2vw, 60px);
    font-weight: 500;
    line-height: 1.09;
    letter-spacing: -.045em;
}

.hero-content .lead {
    max-width: 660px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
}

.stats-wrap {
    margin-top: -90px;
}

.stats-bar {
    background: rgb(5 17 28 / 24%);
    backdrop-filter: blur(14px);
    border-radius: 10px;
    box-shadow: var(--shadow);
    /*max-width: 1040px; */
    overflow: hidden;
}

.stat-item {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-item i {
    font-size: 40px;
    color: #fff;
}

.stat-item strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.stat-item span {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
}

.section-space {
    padding: 90px 0;
}

.pt-extra {
    padding-top: 140px;
}

.section-heading h2 {
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: clamp(30px, 3vw, 42px);
}

.section-heading p {
    color: var(--muted);
}

.product-card {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover img {
    transform: scale(1.035);
}

.product-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 16, 27, .04) 28%, rgba(4, 16, 27, .96) 100%);
}

.product-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
}

.product-content h3 {
    font-size: 21px;
    font-weight: 800;
    margin-top: 14px;
}

.product-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    min-height: 42px;
}

.product-content span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.solution-box {
    background: linear-gradient(180deg, #fafbfd 0%, #f5f7f9 100%);
    border: 1px solid #edf0f3;
    border-radius: 14px;
}

.solution-box h2,
.feature-panel h2 {
    font-weight: 800;
    letter-spacing: -.035em;
}

.mini-label {
    font-size: 11px;
    font-weight: 800;
    color: #334155;
}

.border-start-xl {
    border-left: 1px solid #dfe3e8;
}

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

.use-option,
.priority-option {
    border: 1px solid #d7dde4;
    background: #fff;
    border-radius: 8px;
    color: #4b5563;
    transition: .2s ease;
}

.use-option {
    min-height: 86px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.use-option i {
    font-size: 24px;
    color: #334155;
}

.use-option:hover,
.use-option.active,
.priority-option:hover,
.priority-option.active {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 6px 18px rgba(255, 107, 0, .08);
}

.use-option.active i {
    color: var(--orange);
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.priority-option {
    min-height: 45px;
    padding: 8px 12px;
    text-align: left;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.priority-option i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommendation-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid transparent;
}

.recommendation-item:hover {
    border-color: #d7dde4;
}

.recommendation-item img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
}

.recommendation-item strong {
    display: block;
    font-size: 13px;
}

.recommendation-item small {
    color: var(--muted);
    font-size: 11px;
}

.recommendation-item i {
    color: var(--navy);
}

.feature-panel {
    background: #fafbfc;
    border: 1px solid #eef1f4;
    border-radius: 14px;
    min-height: 410px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 410px;
}

.export-panel {
    background: linear-gradient(135deg, #fafbfc, #f3f6f8);
}

.export-panel:after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, .10), transparent 66%);
    right: -120px;
    top: -110px;
}

.export-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0;
    font-size: 13px;
    font-weight: 600;
}

.export-list i {
    width: 40px;
    height: 40px;
    border: 1px solid #d7dde4;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.feature-card {
    height: 450px;
    display: grid;
    grid-template-columns: 1.4fr 1.04fr;
    border-radius: 7px;
    overflow: hidden;
    background: #fafbfc;
    border: 1px solid #eef1f4;
}

.feature-image-wrap {
    overflow: hidden
}

.feature-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.feature-copy {
    padding: 19px 14px 16px 15px
}

.feature-copy h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.035em;
}

.feature-copy p {
    margin: 25px 0 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #344254;
}

.export-card {
    grid-template-columns: 1fr 1.18fr;
    position: relative;
    background: #f9fafb;
}

.export-copy {
    padding-right: 0
}

.process-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    margin: 25px 0 25px;
}

.process-flow div {
    text-align: center
}

.process-flow div i {
    display: block;
    font-size: 30px;
    margin-bottom: 5px
}

.process-flow span {
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
}

.process-flow b {
    font-size: 10px;
    color: #768294;
    font-weight: 400
}

.export-map-wrap {
    overflow: hidden;
    position: relative
}

.export-map-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f9fafb 0%, rgba(249, 250, 251, .15) 24%, transparent 44%);
}

.export-map-wrap img {
    width: 128%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: translateX(-3%);
}

.europe-map {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    color: #98a2b3;
    border: 1px solid #dfe3e8;
    background: #fff;
}

.europe-map>i {
    font-size: 145px;
    opacity: .35;
}

.map-title {
    position: absolute;
    top: 20px;
    font-size: 10px;
    letter-spacing: .2em;
    font-weight: 800;
}

.origin-dot {
    position: absolute;
    right: 62px;
    bottom: 60px;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 107, 0, .15);
}

.route {
    position: absolute;
    right: 68px;
    bottom: 66px;
    height: 1px;
    background: rgba(255, 107, 0, .6);
    transform-origin: right center;
}

.route:after {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.route-1 {
    width: 120px;
    transform: rotate(-24deg);
}

.route-2 {
    width: 100px;
    transform: rotate(-8deg);
}

.route-3 {
    width: 130px;
    transform: rotate(10deg);
}

.route-4 {
    width: 90px;
    transform: rotate(28deg);
}

.pro-card {
    border: 1px solid #e5e9ee;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    transition: .2s ease;
}

.pro-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.pro-card>i {
    font-size: 28px;
    color: var(--orange);
}

.pro-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 14px 0 8px;
}

.pro-card p {
    color: var(--muted);
    font-size: 12px;
    min-height: 52px;
}

.pro-card a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.dealer-card {
    background: linear-gradient(140deg, #0b2033, #12314e);
    border-radius: 10px;
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dealer-card:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, .09);
    transform: rotate(30deg);
    right: -70px;
    bottom: -80px;
}

.dealer-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0;
}

.dealer-card p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.footer {
    background: var(--navy);
    color: #fff;
}

.footer h6 {
    font-weight: 800;
    margin-bottom: 16px;
}

.footer a,
.footer span {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    margin: 7px 0;
}

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

.footer-copy {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.8;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.back-to-top:hover {
    background: var(--orange);
}

@media (max-width: 1199.98px) {
    .site-header .navbar {
        min-height: 72px;
    }
    .brand-mark {
        min-width: auto;
    }
    .brand-text strong {
        font-size: 20px;
    }
    .brand-text small {
        font-size: 13px;
    }
    .hero-section {
        min-height: 640px;
    }
    .min-vh-hero {
        min-height: 560px;
    }
    .hero-content h1 {
        max-width: 760px;
    }
    .stats-wrap {
        margin-top: -50px;
    }
    .border-start-xl {
        border-left: 0;
        border-top: 1px solid #dfe3e8;
        padding-top: 22px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        background-position: 62% center;
    }
    .hero-section:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(4, 16, 27, .26);
    }
    .stats-bar {
        max-width: 100%;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .pt-extra {
        padding-top: 100px;
    }
    .feature-img {
        min-height: 300px;
    }
    .export-map-wrap {
        min-height: 300px
    }
    .feature-card {
        height: auto;
        grid-template-columns: 1fr
    }
    .export-card {
        grid-template-columns: 1fr
    }
    .feature-image-wrap {
        min-height: 300px
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 48px 0 44px;
    }
    .faq-heading {
        margin-bottom: 22px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .faq-column {
        gap: 12px;
    }
    .faq-item summary {
        min-height: 58px;
        padding: 15px 48px 15px 16px;
        font-size: 13px;
    }
    .faq-item summary::after {
        right: 14px;
    }
    .faq-answer {
        padding: 0 16px 16px;
    }
    .hero-section {
        min-height: 640px;
    }
    .min-vh-hero {
        min-height: 580px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content .lead {
        font-size: 15px;
    }
    .stats-wrap {
        margin-top: -20px;
        padding-bottom: 20px;
    }
    .stats-bar {
        border-radius: 8px;
    }
    .stat-item {
        min-height: 95px;
        padding: 16px;
        gap: 12px;
    }
    .stat-item i {
        font-size: 28px;
    }
    .stat-item strong {
        font-size: 16px;
    }
    .stat-item span {
        font-size: 11px;
    }
    .section-space {
        padding: 64px 0;
    }
    .pt-extra {
        padding-top: 78px;
    }
    .product-card {
        height: 360px;
    }
    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-flow {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 18px;
    }
}

@media (max-width: 575.98px) {
    .brand-icon {
        width: 28px;
        height: 32px;
    }
    .brand-icon>span {
        width: 20px;
        height: 25px;
    }
    .brand-text strong {
        font-size: 17px;
    }
    .brand-text small {
        font-size: 10px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content .btn {
        width: 100%;
    }
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .stat-item i {
        font-size: 26px;
    }
}


/* =========================================================
   ADDED HOMEPAGE SECTIONS
   ========================================================= */


/* FAQ */

.faq-section {
    padding: 64px 0 58px;
    border-bottom: 1px solid #eef1f4;
}

.faq-heading {
    margin-bottom: 28px;
}

.faq-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 2.7vw, 40px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
}

.faq-column {
    display: grid;
    align-content: start;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e2e7ec;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .025);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(255, 107, 0, .45);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .055);
}

.faq-item summary {
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: center;
    padding: 17px 54px 17px 20px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease, color .2s ease;
}

.faq-item[open] summary::after {
    content: "−";
    color: var(--orange);
}

.faq-answer {
    padding: 0 54px 18px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.project-gallery-wrap {
    position: relative;
    margin-top: 34px;
}

.project-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid #e3e7ec;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .1);
    display: none;
    place-items: center;
}

.gallery-prev {
    left: -18px;
}

.gallery-next {
    right: -18px;
}

.why-section {
    padding-top: 24px;
}

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

.why-card {
    min-height: 128px;
    border: 1px solid #e6eaee;
    border-radius: 10px;
    background: #fff;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    align-items: center;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .025);
}

.why-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #cfd6de;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #8a98aa;
}

.why-icon i {
    font-size: 25px;
}

.why-card h3 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.why-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #697586;
}

.factory-stats-card {
    min-height: 228px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(105deg, #071522 0%, #081827 48%, #0a1e31 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 24% 76%;
    box-shadow: 0 12px 30px rgba(7, 21, 34, .10);
}

.factory-stats-image {
    position: relative;
    overflow: hidden;
    min-height: 228px;
}

.factory-stats-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 21, 34, 0) 58%, #071522 100%);
    pointer-events: none;
}

.factory-stats-image img {
    width: 100%;
    height: 100%;
    min-height: 228px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.factory-stats-copy {
    display: grid;
    grid-template-columns: minmax(235px, .72fr) 1.55fr;
    gap: 28px;
    align-items: center;
    padding: 24px 34px 24px 22px;
    min-width: 0;
}

.factory-stats-intro {
    min-width: 0;
}

.factory-stats-intro h3 {
    margin: 0;
    font-size: clamp(19px, 1.55vw, 24px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
}

.factory-stats-intro p {
    color: rgba(255, 255, 255, .68);
    font-size: 11.5px;
    line-height: 1.55;
    margin: 10px 0 14px;
    max-width: 360px;
}

.factory-stats-intro .btn {
    text-transform: none;
    min-height: 34px;
    padding: 6px 12px;
    font-size: 11px;
    border-color: rgba(255, 255, 255, .55);
}

.factory-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-width: 0;
}

.factory-metrics>div {
    min-height: 82px;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.factory-metrics strong {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.factory-metrics span {
    margin-top: 10px;
    color: rgba(255, 255, 255, .63);
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-all-link {
    text-decoration: none;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.section-all-link:hover {
    color: var(--orange);
}

.project-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 64px) / 5);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.project-card {
    border-radius: 9px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1.7 / 1;
    background: #f3f4f6;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

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

.knowledge-card {
    min-height: 205px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border: 1px solid #e5e9ee;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}

.knowledge-copy {
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.knowledge-copy time {
    color: #98a2b3;
    font-size: 10px;
    margin-bottom: 20px;
}

.knowledge-copy h3 {
    font-size: 14px;
    line-height: 1.48;
    font-weight: 800;
    margin: 0;
}

.knowledge-copy a {
    margin-top: auto;
    text-decoration: none;
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.knowledge-copy a:hover {
    color: var(--orange);
}

.knowledge-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-strip {
    min-height: 170px;
    padding: 28px 34px;
    border-radius: 10px;
    background: linear-gradient(110deg, #081827, #0b2134 72%, #102c45);
    color: #fff;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, .85fr) 220px;
    align-items: center;
    gap: 24px;
    box-shadow: 0 14px 35px rgba(7, 21, 34, .1);
}

.quote-strip-title {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.quote-strip-title h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 800;
}

.quote-strip-title p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .65);
}

.quote-benefit {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
}

.quote-benefit i {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.quote-benefit strong,
.quote-benefit span {
    display: block;
}

.quote-benefit strong {
    font-size: 13px;
}

.quote-benefit span {
    font-size: 11px;
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
}

.quote-strip-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-expanded {
    margin-top: 0 !important;
    background: linear-gradient(110deg, #06131f, #071827);
}

.footer-main-row {
    align-items: start;
}

.footer-logo {
    height: 48px;
}

.footer-expanded .footer-copy {
    max-width: 220px;
    font-size: 11px;
    line-height: 1.7;
}

.footer-expanded h6 {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .03em;
    margin-bottom: 18px;
}

.footer-expanded a,
.footer-expanded span {
    font-size: 11px;
    margin: 8px 0;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-socials a {
    margin: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #fff;
}

.footer-socials a:hover {
    background: var(--orange);
}

.footer-contact-col>a,
.footer-address {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
}

.footer-contact-col i {
    color: #fff;
}

.footer-contact-col span {
    margin: 0;
}

.footer-address {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    margin: 8px 0 15px;
}

.footer-map-btn {
    display: inline-flex !important;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-top: 10px !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom span,
.footer-bottom a {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    margin: 0;
}

.footer-bottom>div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    text-decoration: none;
}

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

@media (min-width: 1200px) {
    .gallery-nav {
        display: grid;
    }
}

@media (max-width: 1399.98px) {
    .factory-stats-card {
        grid-template-columns: 27% 73%;
    }
    .factory-stats-copy {
        grid-template-columns: minmax(215px, .72fr) 1.45fr;
        gap: 20px;
        padding: 22px 26px 22px 18px;
    }
    .factory-metrics>div {
        padding: 0 12px;
    }
    .quote-strip {
        grid-template-columns: 1.1fr repeat(3, .8fr) 180px;
        gap: 16px;
    }
}

@media (max-width: 1199.98px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .factory-stats-card {
        grid-template-columns: 32% 68%;
    }
    .factory-stats-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .factory-metrics {
        margin-top: 0;
    }
    .factory-metrics>div {
        min-height: 62px;
    }
    .factory-metrics strong {
        font-size: 25px;
    }
    .factory-metrics span {
        font-size: 10px;
    }
    .project-gallery {
        grid-auto-columns: calc((100% - 32px) / 3);
    }
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    .quote-strip-title {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 0 0 20px;
    }
    .quote-strip-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .factory-stats-card {
        grid-template-columns: 1fr;
    }
    .factory-stats-image {
        min-height: 240px;
        max-height: 300px;
    }
    .factory-stats-image img {
        min-height: 240px;
    }
    .factory-stats-image::after {
        background: linear-gradient(180deg, transparent 58%, #071522 100%);
    }
    .factory-stats-copy {
        padding: 26px 28px 30px;
    }
    .factory-stats-intro p {
        max-width: 620px;
    }
    .factory-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    .factory-metrics>div {
        min-height: 72px;
    }
    .factory-metrics>div:nth-child(3) {
        border-left: 0;
    }
    .footer-brand-col {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        min-height: auto;
    }
    .factory-stats-copy {
        padding: 24px 20px 26px;
    }
    .factory-metrics strong {
        font-size: 25px;
    }
    .project-gallery {
        grid-auto-columns: 75%;
    }
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    .section-title-row {
        align-items: center;
    }
    .section-title-row p {
        max-width: 230px;
    }
    .quote-strip {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .quote-benefit {
        min-height: 58px;
    }
    .quote-strip-btn {
        grid-column: auto;
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .faq-heading h2,
    .why-heading h2,
    .section-title-row h2 {
        font-size: 27px;
    }
    .factory-metrics {
        grid-template-columns: 1fr 1fr;
    }
    .factory-metrics>div {
        padding: 0 10px;
    }
    .factory-metrics span {
        font-size: 10px;
    }
    .section-all-link {
        font-size: 11px;
    }
    .knowledge-card {
        min-height: 180px;
    }
    .knowledge-copy {
        padding: 15px;
    }
    .footer-bottom>div {
        gap: 12px;
        flex-wrap: wrap;
    }
}
/* =========================================================
   B2B ECOSYSTEM
   ========================================================= */
.b2b-ecosystem-section {
    background: #fff;
}

.b2b-ecosystem-shell {
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    padding: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    box-shadow: 0 18px 55px rgba(7, 21, 34, .045);
}

.b2b-ecosystem-head {
    display: grid;
    grid-template-columns: 1.15fr .9fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 22px;
}

.b2b-ecosystem-title .eyebrow {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
}

.b2b-ecosystem-title h2 {
    margin: 5px 0 8px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 800;
}

.b2b-ecosystem-title p,
.b2b-ecosystem-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.b2b-ecosystem-intro {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.b2b-ecosystem-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
}

.b2b-ecosystem-cta .btn {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 13px 18px;
    white-space: nowrap;
}

.b2b-ecosystem-cta small {
    text-align: center;
    margin-top: 7px;
    color: #8a95a3;
    font-size: 10px;
}

.b2b-promise-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 920px;
    margin: 0 auto 28px;
}

.b2b-promise-row > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.b2b-promise-row > div > i {
    color: var(--orange);
    font-size: 21px;
    margin-top: 1px;
}

.b2b-promise-row span {
    display: flex;
    flex-direction: column;
}

.b2b-promise-row strong {
    color: var(--navy);
    font-size: 13px;
}

.b2b-promise-row small {
    color: #7b8794;
    font-size: 11px;
    margin-top: 2px;
}

.b2b-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.b2b-flow-card {
    position: relative;
    min-width: 0;
    border: 1px solid #e3e8ee;
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.b2b-flow-card:hover {
    transform: translateY(-3px);
    border-color: #d8dee7;
    box-shadow: 0 16px 36px rgba(7, 21, 34, .08);
}

.b2b-step {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 4;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.coming-badge {
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 20px;
    border: 1px solid #ffc79f;
    background: #fff6ef;
    color: var(--orange-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
}

.b2b-visual {
    height: 168px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef1f4;
    margin-bottom: 17px;
    overflow: hidden;
    position: relative;
}

.b2b-card-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}

.b2b-card-title > i {
    color: var(--orange);
    font-size: 19px;
}

.b2b-card-title h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.b2b-flow-card > p {
    margin: 0;
    color: #687587;
    font-size: 12px;
    line-height: 1.65;
}

.b2b-flow-arrow {
    position: absolute;
    right: -23px;
    top: 112px;
    z-index: 8;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 27px;
}

.b2b-flow-card:last-child .b2b-flow-arrow {
    display: none;
}

/* Dashboard mock */
.b2b-dashboard-mock {
    display: grid;
    grid-template-columns: 58px 1fr;
    padding: 34px 14px 14px;
}

.mock-sidebar {
    background: #f0f3f7;
    border-radius: 8px 0 0 8px;
    padding: 13px 9px;
}

.mock-sidebar span {
    display: block;
    height: 7px;
    background: #d7dee7;
    border-radius: 10px;
    margin: 0 0 15px;
}

.mock-sidebar span:first-child { background: #ffb778; }

.mock-content {
    border: 1px solid #e2e7ed;
    border-radius: 0 8px 8px 0;
    padding: 12px;
    background: #fff;
}

.mock-title {
    width: 55%;
    height: 8px;
    border-radius: 10px;
    background: #e9edf2;
    margin-bottom: 12px;
}

.mock-order {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #f0f2f5;
    font-size: 8px;
}

.mock-order b { color: #526071; }
.mock-order em {
    font-style: normal;
    border-radius: 10px;
    padding: 3px 5px;
    font-size: 7px;
}
.mock-order .ok { color: #118541; background: #eaf8ef; }
.mock-order .progress { color: #d96d00; background: #fff4e8; }
.mock-order .ship { color: #1a73b8; background: #ebf6ff; }

/* API mock */
.b2b-api-mock {
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-window {
    position: relative;
    z-index: 2;
    width: 118px;
    height: 84px;
    border: 1px solid #dfe5ec;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 21, 34, .06);
    display: grid;
    place-items: center;
}

.api-window strong {
    font-size: 34px;
    letter-spacing: -.04em;
    color: var(--navy);
}

.api-window i {
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: #eef2f6;
    border: 1px solid #dfe5ec;
}

.api-lines {
    position: absolute;
    width: 54px;
}
.api-lines.left { left: 12px; }
.api-lines.right { right: 12px; }
.api-lines span {
    display: block;
    height: 1px;
    background: #dfe5ec;
    margin: 17px 0;
}
.api-lines span:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border: 1px solid #d9e0e8;
    border-radius: 50%;
    transform: translateY(-2px);
}
.api-lines.right span:after { margin-left: auto; }

/* Shopier mock */
.b2b-shopier-mock {
    display: grid;
    place-items: center;
}

.shop-window {
    width: 160px;
    height: 104px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    padding: 20px 13px 11px;
    position: relative;
    box-shadow: 0 8px 24px rgba(7, 21, 34, .05);
}

.shop-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: #e6e9ee;
    border-radius: 8px 8px 0 0;
}

.shop-window strong {
    color: #7a35d6;
    font-size: 18px;
    letter-spacing: -.03em;
}

.shop-window > i {
    position: absolute;
    right: 15px;
    top: 27px;
    color: #9fa7b4;
}

.shop-product {
    position: absolute;
    left: 14px;
    bottom: 13px;
    width: 36px;
    height: 32px;
    background: linear-gradient(90deg, #e9edf2, #f5f7f9);
    border-radius: 4px;
}
.shop-product:after {
    content: "";
    position: absolute;
    left: 48px;
    top: 5px;
    width: 72px;
    height: 6px;
    border-radius: 8px;
    background: #e7ebf0;
    box-shadow: 0 14px 0 #eceff3;
}

/* Factory mock */
.b2b-factory-mock {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fafcfe, #f5f8fb);
}

.b2b-factory-mock > .bi-buildings {
    font-size: 88px;
    color: #243b4f;
    transform: translateY(6px);
}

.factory-ground {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 22px;
    height: 3px;
    background: #dce2e8;
    border-radius: 5px;
}

.b2b-truck {
    position: absolute;
    left: 35px;
    bottom: 27px;
    color: var(--orange);
    font-size: 30px;
    background: #fff;
    border-radius: 5px;
}

.b2b-feature-strip {
    margin-top: 28px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e3e8ee;
    border-radius: 13px;
    background: #fff;
}

.b2b-feature-strip > div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 4px 22px;
    border-left: 1px solid #e6eaf0;
}

.b2b-feature-strip > div:first-child {
    border-left: 0;
}

.b2b-feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: #fff7f1;
    border: 1px solid #ffe0ca;
}

.b2b-feature-strip > div > span:last-child {
    display: flex;
    flex-direction: column;
}

.b2b-feature-strip strong {
    color: var(--navy);
    font-size: 12px;
}

.b2b-feature-strip small {
    color: #7a8797;
    font-size: 10px;
    margin-top: 2px;
}

@media (max-width: 1199.98px) {
    .b2b-ecosystem-head {
        grid-template-columns: 1.2fr .8fr;
    }
    .b2b-ecosystem-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        min-width: 0;
    }
    .b2b-ecosystem-cta small { text-align: left; margin-top: 0; }
    .b2b-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b-flow-card:nth-child(2) .b2b-flow-arrow { display: none; }
    .b2b-feature-strip { grid-template-columns: 1fr 1fr; }
    .b2b-feature-strip > div:nth-child(3) { border-left: 0; border-top: 1px solid #e6eaf0; padding-top: 14px; margin-top: 10px; }
    .b2b-feature-strip > div:nth-child(4) { border-top: 1px solid #e6eaf0; padding-top: 14px; margin-top: 10px; }
}

@media (max-width: 767.98px) {
    .b2b-ecosystem-shell { padding: 24px 18px; border-radius: 14px; }
    .b2b-ecosystem-head { grid-template-columns: 1fr; gap: 16px; }
    .b2b-ecosystem-intro { border-left: 0; padding-left: 0; }
    .b2b-ecosystem-cta { flex-direction: column; align-items: stretch; }
    .b2b-ecosystem-cta small { text-align: center; }
    .b2b-promise-row { grid-template-columns: 1fr; gap: 13px; margin-bottom: 22px; }
    .b2b-flow-grid { grid-template-columns: 1fr; gap: 15px; }
    .b2b-flow-arrow { display: none; }
    .b2b-feature-strip { grid-template-columns: 1fr; padding: 10px 16px; }
    .b2b-feature-strip > div,
    .b2b-feature-strip > div:nth-child(3),
    .b2b-feature-strip > div:nth-child(4) {
        border-left: 0;
        border-top: 1px solid #e6eaf0;
        padding: 13px 0;
        margin-top: 0;
    }
    .b2b-feature-strip > div:first-child { border-top: 0; }
}
