﻿:root {
    --pb-red: #E11138;
    --pb-red-hover: #C20E2F;
    --pb-red-soft: #FDE7EC;
    --pb-green: #16B364;
    --pb-green-hover: #0F8F4E;
    --pb-green-soft: #E6F7EE;
    --pb-yellow: #fed900;
    --pb-yellow-soft: #fff7c4;
    --pb-gold: #D6A84F;
    --pb-gold-dark: #8A6424;
    --pb-gold-soft: #FFF7E6;
    --pb-gold-border: #E6C878;
    --pb-blue: #1D4ED8;
    --pb-blue-soft: #EFF6FF;
    --l-bg: #FFFFFF;
    --l-surface: #FAFAFA;
    --l-surface-2: #F5F5F5;
    --l-border: #E5E5E5;
    --l-border-2: #D9D9D9;
    --l-text: #0B0B0B;
    --l-text-2: #5A5A5A;
    --l-text-3: #8A8A8A;
    --d-bg: #0B0B0B;
    --d-surface: #131313;
    --d-surface-2: #1A1A1A;
    --d-border: #232323;
    --d-border-2: #2A2A2A;
    --d-text: #FFFFFF;
    --d-text-2: #A8A8A8;
    --d-text-3: #6B6B6B;
    --font-sans: "Neue Haas Grotesk Display Pro", "Helvetica Neue", "Inter", "Inter Fallback", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 16px;
    --s-4: 24px;
    --s-5: 32px;
    --s-6: 48px;
    --s-7: 64px;
    --s-8: 96px;
    --s-9: 128px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    --d-fast: 160ms;
    --d-base: 220ms;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Inter Fallback";
    src: local("Arial");
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
    size-adjust: 107.40%;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/fonts/inter-latin-var.woff2?v=1") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "JetBrains Mono";
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
    src: url("/fonts/jetbrainsmono-latin-var.woff2?v=1") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--l-bg);
    color: var(--l-text);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mark {
    width: 24px;
    height: 24px;
    background: var(--pb-red);
    border-radius: 4px;
    position: relative;
    flex: 0 0 auto;
}

    .mark::after {
        content: "";
        position: absolute;
        inset: 7px 5px 5px 7px;
        background: #fff;
        border-radius: 1px;
        clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--l-border);
}

.travar-scroll {
    overflow : hidden
}
    
    .site-header .buyer-options,
    .site-header .supplier-options {
        opacity: 0;
        visibility: hidden;
        align-content: center;
        border: 1px solid var(--l-border-2);
        border-radius: var(--r-md);
        padding-block: var(--s-3);
        padding-inline: var(--s-3);
        backdrop-filter: blur(18px);
        margin-top: var(--s-4);
        background: rgba(255, 255, 255, .86);
        display: flex;
        transform: translateY(10px);
        transition: opacity var(--d-fast) var(--ease), transform var(--d-fast) var(--ease);
        flex-direction: column;
        font-size: 14px;
    }
        
        .site-header .buyer-options.show,
        .site-header .supplier-options.show {
            display: flex;
            opacity: 1;
            visibility: visible;
            transform: translateY(-10px); 
            padding-block: var(--s-3);
            gap: var(--s-3);
            padding-inline: var(--s-3);
        }

        .site-header .buyer-options.show {
            transform : translateX(-50px) translateY(-10px)
        }


.buyer-cta-container,
.supplier-cta-container {
    position: relative
}

.buyer-opitions-cta,
.supplier-options-cta {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    color: var(--d-text);
    transition: opacity var(--d-fast) var(--ease), transform var(--d-fast) var(--ease);
    display: flex;
    padding: var(--s-1) var(--s-3);
    flex-direction: column;
    align-content: center;
    text-align: center;
    gap: var(--s-2);
    margin-top: calc(var(--s-3) * 1.25);
    box-sizing: border-box;
    border: 1px solid var(--d-border);
    border-radius: var(--r-md);
}
        .buyer-opitions-cta.show,
        .supplier-options-cta.show {
            display: flex;
            opacity: 1;
            visibility: visible;
            transform: translateY(-10px);
        }

        .buyer-options-cta a,
        .supplier-options-cta a {
            color : inherit;
            text-decoration : none;
            padding: var(--s-2) var(--s-3);
            border-radius: var(--r-sm)
        }

    .buyer-options-cta a:hover,
    .supplier-options-cta a:hover {
        background : var(--d-bg)
    }

.site-header .buyer-options a,
.site-header .supplier-options a {
    color : var(--l-text);
    padding : var(--s-2) var(--s-3);
}


    .site-header .buyer-options a:hover,
    .site-header .supplier-options a:hover {
        color: initial;
        text-decoration: none;
        background: var(--l-surface-2);
        border-radius: var(--r-sm);
    }

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
}

    .brand img {
        display: block;
        width: auto;
        height: 30px;
    }

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--l-text-2);
    font-size: 14px;
    font-weight: 550;
}

.nav-item {
    position: relative;
}

    .nav-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 18px;
        display: block;
    }

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: var(--l-text-2);
    padding: 10px 12px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 650;
}

    .nav-trigger::after {
        content: "";
        width: 7px;
        height: 7px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
    }

    .nav-trigger:hover,
    .nav-item:focus-within .nav-trigger,
    .nav-item.is-active .nav-trigger {
        color: var(--l-text);
        background: var(--l-surface-2);
    }

.mega-menu {
    top: 100%;
    margin-top: var(--s-1);
    left: 0;
    width: min(860px, calc(100vw - 40px));
    padding: var(--s-4);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 80px rgba(11, 11, 11, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--d-fast) var(--ease), transform var(--d-fast) var(--ease);
    z-index: 60;
    position: absolute; 
    max-height: calc(100dvh - 200px); 
    overflow-y: auto;
    overscroll-behavior: contain; 
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-active .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu--tools {
    padding : 0px;
    width : 1120px;
    display : grid;
    grid-template-columns : 3.75fr 7fr;
    left: -18.5vw;
    column-rule : 1px solid var(--l-border);
    font-size : 13px
}

.mega-menu--tools * {
    margin : 0px
}

.mega-menu--tools .mono {
    font-family : var(--font-mono);
    text-transform : uppercase;
    font-size : 11px
}

.mega-menu--tools .tools-column {
    padding : var(--s-4);
    display : flex;
    flex-direction : column;
    gap : var(--s-3);
    height : 100%
}

.mega-menu--tools .tools-column .highlight {
    display : flex;
    gap : var(--s-2);
    align-items : center
}

.mega-menu--tools .tools-column .highlight:before {
    width : 5px;
    height : 5px;
    content : "";
    background : var(--pb-red);
    border-radius : 50%
}

    .mega-menu--tools .tools-grid {
        display : grid;
        grid-template-columns : repeat(2, 1fr);
        height : 100%;
        gap : var(--s-3)
    }

    .mega-menu--tools .tools-grid-card {
        display : flex;
        flex-direction : column;
    }

    .mega-menu--tools .tools-grid-card span {
        font-weight : bold;
        margin-bottom : var(--s-1)
    }

    .mega-menu--tools .tools-grid-card a {
        display : flex;
        flex-direction : row;
        justify-content : space-between;
        border-radius : var(--r-sm);
        margin-left : var(--s-2);
        color : var(--l-text);
        font-weight : 575;
        padding : var(--s-1);
        padding-left : var(--s-2);
        transition : background var(--d-base) var(--ease)
    }

    .mega-menu--tools .tools-grid-card a span {
        display : inline-block;
        color : var(--pb-red);
        font-family : var(--font-sans);
        font-size : 12px;
        opacity : 0;
        margin-inline : var(--s-1);
        transform : translateX(-5px);
        transition : opacity var(--d-base), transform var(--d-base) 
    }

        .mega-menu--tools .tools-grid-card a:hover {
            text-decoration : none;
            background : var(--l-surface-2);
            color : initial;
        }

            .mega-menu--tools .tools-grid-card a:hover span {
                opacity: 1;
                transform: translateX(0px)
            }

    .mega-menu--tools .tools-list {
        display : flex;
        flex-direction : column;
        height : 100%;
        gap : var(--s-2)
    }
    
    .mega-menu--tools .tools-list .tool-card {
        flex : 1;
        display : flex;
        flex-direction : row;
        gap : var(--s-2);
        transition : background var(--d-base) var(--ease);
        padding : var(--s-2);
        border-radius : var(--r-md);
        padding-block : auto
    }

    .mega-menu--tools .tools-list .tool-card:hover {
        background : var(--l-surface-2);
        text-decoration : none;
        color : var(--l-text-2)
    }

    .mega-menu--tools .tools-list .tool-card span {
        display : flex;
        align-items : center;
        justify-items : center;
        width : 22.5px;
        height : 22.5px;
        background : transparent;
        align-self : flex-start
    }

        .mega-menu--tools .tools-list .tool-card span svg {
            fill: none;
            width: 100%;
            height: 100%;
            stroke: var(--pb-red);
            stroke-width: 1.75;
            stroke-linecap : round;
            stroke-linejoin : round
        }

    .mega-menu--tools .tools-list .tool-card div {
        display : flex;
        flex-direction : column;
        flex : 1;
    }

    .mega-menu--tools .tools-list .tool-card div h3 {
        font-size : 14px;
        color : var(--l-text)
    }

.mega-menu--suppliers {
    width: 360px;
}

.mega-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--s-4);
}

.mega-group {
    min-width: 0;
}

    .mega-group strong,
    .mega-title,
    .mega-link strong {
        display: block;
        color: var(--l-text);
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 10px;
        letter-spacing: 0;
        font-weight: 750;
    }

    .mega-group ul,
    .mega-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 7px;
    }

        .mega-group a,
        .mega-list a,
        .mega-all {
            color: var(--l-text-2);
            font-size: 13px;
            line-height: 18px;
        }

            .mega-group a:hover,
            .mega-list a:hover,
            .mega-all:hover {
                text-decoration : none;
                color: var(--pb-red);
            }

.mega-all {
    display: inline-flex;
    margin-top: var(--s-4);
    font-weight: 750;
    color: var(--l-text);
}

.mega-list {
    gap: 4px;
}

    .mega-list a {
        display: block;
        padding: 12px;
        border-radius: var(--r-sm);
        color: var(--l-text);
        font-weight: 650;
    }

        .mega-list a span {
            display: block;
            color: var(--l-text-3);
            font-size: 12px;
            line-height: 16px;
            font-weight: 450;
            margin-top: 4px;
        }

        .mega-list a:hover {
            background: var(--l-surface-2);
        }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--l-border);
    border-radius: var(--r-md);
    background: #fff;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .menu-toggle span {
        width: 18px;
        height: 2px;
        background: var(--l-text);
        position: relative;
        display: block;
    }

        .menu-toggle span::before,
        .menu-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            background: var(--l-text);
        }

        .menu-toggle span::before {
            top: -6px;
        }

        .menu-toggle span::after {
            top: 6px;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    transition: transform var(--d-fast) var(--ease), background var(--d-fast), border-color var(--d-fast), color var(--d-fast);
}

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn--cta {
    background: var(--pb-green);
    color: #fff;
}

    .btn--cta.btn--hg {
        border-bottom: 8px solid var(--pb-green-hover)
    }

    .btn--cta.btn--hg:hover {
        border-bottom: 8px solid color-mix(in srgb, var(--pb-green-hover) 80%, black)
    }

    .btn--cta:hover {
        background: var(--pb-green-hover);
    }

.btn--brand {
    background: var(--pb-red);
    color: #fff;
}

    .btn--brand:hover {
        background: var(--pb-red-hover);
    }

.btn--blog {
    background: var(--d-text);
    color: var(--pb-red);
    border-color: var(--d-text);
}

    .btn--blog:hover {
        background: var(--l-surface-2);
        color : var(--l-text) !important
    }

.btn--job {
    background: transparent;
    border-color: var(--l-border-2);
    color: var(--l-text);
    display:none
}
    .btn--job:hover {
        border-color: var(--l-text);
        background: var(--l-surface-2)
    }

.btn--solid {
    background: var(--l-text);
    color: #fff;
}

.btn--solid-light {
    background : var(--d-text);
    color : #0B0B0B
}

.btn--neutral {
    transition : opacity var(--d-base) var(--ease);
    background: #0f1f3d;
    color: var(--d-text)
}

.btn--neutral.ghost {
    opacity : 0.5;
    pointer-events : none;
    cursor: not-allowed
}

.btn--neutral:hover {
    opacity : 0.9;
    color : var(--d-text)
}

.btn--outline {
    background: transparent;
    border-color: var(--l-border-2);
    color: var(--l-text);
}

    .btn--outline:hover {
        border-color: var(--l-text);
        background: var(--l-surface-2);
    }

.btn--outline-dark {
    background: var(--d-bg);
    color: var(--d-text);
    border-color: var(--d-border);
}

    .btn--outline-dark:hover {
        border-color: var(--d-text-2);
        background: var(--d-surface-2);
        color: var(--d-text);
    }

.btn--outline-dark-soft {
    background: var(--d-surface-2);
    color: var(--d-text);
    border-color: var(--d-border-2)
}

    .btn--outline-dark-soft:hover {
        background: var(--d-surface);
        color: var(--d-text);
        border-color: var(--d-border-2)
    }

.btn--ghost {
    background: transparent;
    color: var(--l-text);
}

    .btn--ghost:hover {
        background: var(--l-surface-2);
    }

.btn--ghost-outline {
    background : transparent;
    color : var(--d-text);
    border-color : var(--d-border-2)
}

    .btn--ghost-outline:hover{
        background : var(--d-surface-2);
        color : var(--d-text)
    }

.btn--lg {
    min-height: 54px;
    padding: 16px 22px;
    font-size: 15px;
}

.btn--hg {
    width: 100%;
    max-width: 100%;
    padding: clamp(16px, 3vw, 30px) clamp(20px, 4vw, 36px);
    font-size: clamp(16px, 5vw, 26px);
    text-transform: uppercase;
    font-weight: 800;
    white-space: normal; 
    overflow-wrap: break-word;
    word-break: break-word;
}

.eyebrow-no-circle,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 var(--s-3);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pb-red);
    font-weight: 500;
}

.eyebrow.background {
    padding-block : var(--s-1);
    padding-inline : var(--s-2);
    border-radius : var(--r-md)
}

.eyebrow.background.red {
    color : var(--pb-red);
    border : 1px solid var(--pb-red);
    background : color-mix(in srgb, var(--pb-red) 10%, transparent)
}

.eyebrow.background.green {
    border : 1px solid var(--pb-green);
    background : color-mix(in srgb, var(--pb-green) 10%, transparent);
    color : var(--pb-green)
}

.eyebrow.background.blue {
    border : 1px solid var(--pb-blue);
    background : color-mix(in srgb, var(--pb-blue) 10%, transparent);
    color : var(--pb-blue)
}

    .eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
    }

    .eyebrow-no-circle::before {
        display: none;
    }

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: var(--s-4);
    max-width: 950px;
}

    h1 em,
    h2 em {
        color: var(--pb-red);
        font-style: normal;
    }

h2 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: var(--s-3);
    max-width: 820px;
}

h3 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: var(--s-2);
}

.lead {
    color: var(--l-text-2);
    font-size: 16px;
    line-height: 24px;
    max-width: 680px;
    margin-bottom: 0;
}

.muted {
    color: var(--l-text-2);
}

.mono {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--l-text-3);
    font-weight: 500;
}

.hero {
    padding: var(--s-8) 0 var(--s-7);
    border-bottom: 1px solid var(--l-border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
    gap: var(--s-7);
    align-items: center;
}

.hero-copy {
    min-height: 415px
}

.hero-copy p {
    font-size: 16px;
    line-height: 24px;
    color: var(--l-text-2);
    max-width: 660px;
    margin-bottom: var(--s-4);
}

body .lead {
    font-weight : 450 !important
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--s-3);
}

    .hero-actions.duo-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom : var(--s-4)
    }

.hero-actions.duo-grid a {
    font-size : 16px;
    padding : var(--s-4) var(--s-5);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: var(--s-3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--l-text-2);
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

    .hero-badge .icon {
        width: 14px;
        height: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--pb-red);
        flex: 0 0 auto;
    }

        .hero-badge .icon svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

    .hero-badge .rating {
        color: var(--pb-red);
        font-family: var(--font-mono);
        font-size: 11px;
        line-height: 14px;
    }

.micro {
    font-size: 13px;
    color: var(--l-text-3);
    line-height: 1.5;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-3);
    margin-top: var(--s-6);
    border-top: 1px solid var(--l-text);
}

.trust-item {
    padding: var(--s-3) var(--s-3) 0 0;
    color: var(--l-text-2);
    font-size: 14px;
    line-height: 1.45;
}

    .trust-item strong {
        display: block;
        color: var(--l-text);
        font-family: var(--font-mono);
        font-size: 11px;
        line-height: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 8px;
    }

.quote-card {
    background: var(--d-bg);
    color: var(--d-text);
    border-radius: var(--r-lg);
    border: 1px solid var(--d-border);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(11, 11, 11, .18);
}

.hero-image {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

    .hero-image img {
        display: block;
        width: 108%;
        height: auto;
        max-width: 620px;
        max-height: 470px;
        object-fit: contain;
        object-position: center right;
    }

.quote-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--d-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

    .quote-head strong {
        font-size: 14px;
        letter-spacing: 0;
    }

    .quote-head span {
        color: var(--d-text-3);
        font-family: var(--font-mono);
        font-size: 11px;
        line-height: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-weight: 500;
    }

.quote-body {
    padding: 20px;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--d-border);
    font-size: 13px;
    color: var(--d-text-2);
}

    .quote-row:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .quote-row strong {
        color: #fff;
        text-align: right;
        font-weight: 650;
    }

.quote-status {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.slot {
    height: 44px;
    border: 1px solid var(--d-border-2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--d-text-3);
    background: var(--d-surface);
}

    .slot.is-filled {
        background: rgba(22, 179, 100, .12);
        color: #5BD693;
        border-color: rgba(22, 179, 100, .32);
    }

section {
    padding: var(--s-8) 0;
    border-bottom: 1px solid var(--l-border);
}

.section-head {
    display: flex;
    flex-direction : column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: var(--s-6);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--l-border);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

    .service-grid + .service-grid {
        margin-top: 1px;
        grid-template-columns: repeat(2, 1fr);
    }

.service-card {
    background: #fff;
    padding: var(--s-4) var(--s-3);
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.service-card-has-image {
    align-items: stretch;
    gap: var(--s-5);
    display: grid;
    grid-template-columns: auto 1fr; 
}

.service-card-has-image div {
    align-self : center;
}

.service-card-has-image img {
    display: block;
    border-radius: var(--r-md);
    max-width : 300px;
    padding : 0px;
    height : 100%;
    margin : 0px;
    object-fit : cover
}

.service-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--l-border);
    background: var(--l-surface-2);
    margin-bottom: var(--s-4);
}

    .service-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-card .code {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    color: var(--l-text-3);
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}

.service-card p {
    color: var(--l-text-2);
    line-height: 24px;
    margin-bottom: var(--s-4);
}

.service-card ul {
    list-style: none;
    margin: 0 0 var(--s-4);
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--l-text-2);
    font-size: 14px;
}

.service-card li {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

    .service-card li::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--pb-red);
        flex: 0 0 auto;
        transform: translateY(-2px);
    }

.card-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--l-text);
}

    .card-link:hover {
        color: var(--pb-red);
    }

.service-note {
    margin-top: var(--s-4);
    padding: var(--s-3) var(--s-4);
    border: 1px solid var(--l-border);
    border-radius: var(--r-md);
    color: var(--l-text-2);
    background: var(--l-surface);
}

    .service-note a {
        color: var(--l-text);
        font-weight: 700;
    }

.logos {
    background: var(--l-surface);
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--l-border);
}

.logo-box {
    min-height: 112px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--l-text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    padding: var(--s-3);
}

    .logo-box img {
        display: block;
        width: auto;
        max-width: 128px;
        max-height: 48px;
        object-fit: contain;
        filter: grayscale(1);
        opacity: .78;
        transition: filter var(--d-fast) var(--ease), opacity var(--d-fast) var(--ease);
    }

    .logo-box:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

.proof-copy {
    margin-top: var(--s-4);
    max-width: 780px;
    color: var(--l-text-2);
    line-height: 1.6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--l-text);
}

.step {
    padding: var(--s-4) var(--s-5) 0 0;
}

    .step + .step {
        padding-left: var(--s-5);
        border-left: 1px solid var(--l-border);
    }

.step-num {
    font-family: var(--font-mono);
    color: var(--l-text-3);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}

.step-media {
    width: 100%;
    height: 220px;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--l-surface-2);
    margin-bottom: var(--s-4);
}

    .step-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.step p {
    color: var(--l-text-2);
    line-height: 1.58;
}

.step small {
    display: block;
    margin-top: var(--s-3);
    color: var(--l-text-3);
    font-size: 13px;
    line-height: 1.5;
}

.cta-band {
    padding: var(--s-7) 0;
    background: var(--d-bg);
    color: var(--d-text);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--s-5);
    align-items: center;
}

    .cta-box h2 {
        color: #fff;
        margin-bottom: var(--s-2);
    }

    .cta-box p {
        color: var(--d-text-2);
        max-width: 680px;
        line-height: 1.6;
        margin-bottom: 0;
    }

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: var(--s-7);
    align-items: start;
}

.faq-flow {
    margin-top: var(--s-5);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--l-surface);
}

    .faq-flow img {
        display: block;
        width: 100%;
        height: auto;
    }

.faq-list {
    border-top: 1px solid var(--l-border);
}

details {
    border-bottom: 1px solid var(--l-border);
    padding: 0;
}

summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-4) 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: "+";
        color: var(--pb-red);
        font-family: var(--font-mono);
        font-weight: 600;
    }

details[open] summary::after {
    content: "-";
}

details p {
    color: var(--l-text-2);
    line-height: 1.6;
    margin: 0;
    padding: 0 48px var(--s-4) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: start;
}

.about-copy p {
    color: var(--l-text-2);
    line-height: 1.68;
    font-size: 17px;
}

.about-copy img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    margin: var(--s-4) 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3);
}

.authority-card {
    border: 1px solid var(--l-border);
    border-radius: var(--r-md);
    padding: var(--s-4);
    background: var(--l-surface);
}

    .authority-card h3 {
        margin-bottom: 6px;
    }

    .authority-card p {
        color: var(--l-text-2);
        line-height: 24px;
        margin-bottom: 0;
    }

.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--l-border);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: var(--s-5);
}

.press-card {
    background: #fff;
    min-height: 130px;
    padding: var(--s-3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}

    .press-card:hover {
        text-decoration : none;
        background: var(--l-text);
        color: #fff;
    }

    .press-card span {
        color: var(--l-text-3);
        font-family: var(--font-mono);
        font-size: 11px;
        line-height: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-weight: 500;
    }

    .press-card strong {
        font-size: 15px;
        letter-spacing: 0;
    }

    .press-card:hover span {
        color: rgba(255, 255, 255, .62);
    }

.supplier {
    background: var(--d-bg);
    color: var(--d-text);
    padding: var(--s-8) 0;
    border-bottom: 0;
}

.supplier-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--s-6);
    align-items: center;
    border: 1px solid var(--d-border);
    border-radius: var(--r-lg);
    background: var(--d-surface);
    padding: var(--s-6);
}

    .supplier-panel h2 {
        color: #fff;
        margin-bottom: var(--s-3);
    }

    .supplier-panel p {
        color: var(--d-text-2);
        line-height: 1.65;
        max-width: 720px;
        margin-bottom: var(--s-3);
    }

.supplier-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.supplier .btn--outline {
    color: #fff;
    border-color: var(--d-border-2);
}

    .supplier .btn--outline:hover {
        background: var(--d-surface-2);
        border-color: var(--d-text-2);
    }

.quote-section {
    background: var(--l-surface);
}

.wizard {
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    min-height: 560px;
}

.wizard-aside {
    background: var(--l-surface-2);
    border-right: 1px solid var(--l-border);
    padding: var(--s-5) var(--s-4);
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
}

.wizard-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
}

.wizard-steps {
    display: grid;
    gap: 6px;
}

.wizard-step {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 8px;
    border-radius: 6px;
    color: var(--l-text-2);
}

    .wizard-step .num {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--l-border-2);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--l-text-3);
    }

    .wizard-step.is-active {
        background: #fff;
        box-shadow: inset 3px 0 0 var(--pb-red);
        color: var(--l-text);
        font-weight: 700;
    }

        .wizard-step.is-active .num {
            border-color: var(--l-text);
            color: var(--l-text);
        }

.wizard-note {
    margin-top: auto;
    border-top: 1px solid var(--l-border);
    padding-top: var(--s-3);
    color: var(--l-text-3);
    line-height: 1.5;
    font-size: 13px;
}

.wizard-main {
    display: flex;
    flex-direction: column;
}

.progress {
    height: 3px;
    background: var(--l-surface-2);
    position: relative;
}

    .progress span {
        display: block;
        height: 100%;
        width: 20%;
        background: var(--pb-red);
        transition: width var(--d-base) var(--ease);
    }

.wizard-content {
    padding: var(--s-6);
    flex: 1;
}

.form-step {
    display: none;
}

    .form-step.is-active {
        display: block;
    }

    .form-step h2 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: var(--s-2);
    }

    .form-step p {
        color: var(--l-text-2);
        line-height: 1.6;
        max-width: 640px;
        margin-bottom: var(--s-5);
    }

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
    max-width: 740px;
}

.option {
    border: 1px solid var(--l-border-2);
    border-radius: var(--r-md);
    padding: var(--s-3) var(--s-4);
    background: #fff;
    text-align: left;
    min-height: 92px;
    transition: border-color var(--d-fast), box-shadow var(--d-fast), background var(--d-fast);
}

    .option:hover,
    .option.is-selected {
        border-color: var(--l-text);
        background: var(--l-surface);
        box-shadow: inset 0 0 0 1px var(--l-text);
    }

    .option small {
        display: block;
        font-family: var(--font-mono);
        color: var(--l-text-3);
        line-height: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .option strong {
        display: block;
        font-size: 16px;
        letter-spacing: 0;
        margin-bottom: 4px;
    }

    .option span {
        color: var(--l-text-2);
        font-size: 13px;
        line-height: 1.45;
    }

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
    max-width: 760px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        font-family: var(--font-mono);
        font-size: 11px;
        line-height: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--l-text-2);
        font-weight: 500;
    }

.input {
    width: 100%;
    appearance: none;
    border: 1px solid var(--l-border-2);
    border-radius: var(--r-md);
    padding: 14px 16px;
    background: #fff;
    color: var(--l-text);
    font-size: 15px;
    font-weight: 500;
    transition: border-color var(--d-fast), box-shadow var(--d-fast);
}

textarea.input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.input:focus {
    outline: none;
    border-color: var(--l-text);
    box-shadow: 0 0 0 3px rgba(11, 11, 11, .08);
}

.input::placeholder {
    color: var(--l-text-3);
}

.wizard-foot {
    border-top: 1px solid var(--l-border);
    padding: var(--s-3) var(--s-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-3);
}

.footer {
    background: var(--d-bg);
    color: var(--d-text);
    padding: var(--s-7) 0 var(--s-5);
    border-top: 1px solid var(--d-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: var(--s-5);
    margin-bottom: var(--s-6);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: var(--s-3);
}

    .footer-brand img {
        display: block;
        width: auto;
        height: 34px;
    }

.footer p {
    color: var(--d-text-2);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 0;
}

.footer h3 {
    color: #fff;
    margin-bottom: var(--s-3);
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--d-text-2);
    font-size: 14px;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--d-border);
    padding-top: var(--s-4);
    display: flex;
    justify-content: space-between;
    gap: var(--s-4);
    color: var(--d-text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 1080px) {

    .nav {
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-panel {
        display: none;
        flex-basis: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: var(--s-3);
        padding: var(--s-3) 0 var(--s-2);
    }

    .site-header.is-menu-open .nav-panel {
        display: flex;
    }

    .nav-menu {
        display: grid;
        gap: 8px;
    }

    .nav-item {
        width : 100%;
        flex: 0 0 auto;
        border: 1px solid var(--l-border);
        border-radius: var(--r-md);
        background: #fff;
        overflow: hidden;
    }

    .site-header .buyer-options,
    .site-header .supplier-options {
        width: 100%;
        text-align: center
    }

    .site-header .buyer-options.show {
        transform : translateY(-15px)
    }

    .nav-trigger {
        width: 100%;
        justify-content: space-between;
        min-height: 52px;
        padding: 14px 16px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        border: 0;
        border-top: 1px solid var(--l-border);
        border-radius: 0;
        box-shadow: none;
        padding: var(--s-3);
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .nav-item.is-active .mega-menu {
        display: block;
    }

    .mega-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-menu--tools,
    .mega-menu--suppliers {
        width: 100%;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .wizard,
    .supplier-panel,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 380px;
        justify-content: center;
    }

    .service-grid,
    .service-grid + .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-aside {
        border-right: 0;
        border-bottom: 1px solid var(--l-border);
    }
}

@media (max-width: 720px) {

    .hero-actions.duo-grid {
        grid-template-columns : repeat(1,1fr);
        gap:var(--s-3);
    }

    .service-card-has-image {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-items: start;
        gap: var(--s-4);
    }

        .service-card-has-image img {
            width: 100%;
            max-width: 100%;
            height: 200px;
            object-fit: cover;
            object-position: center top;
        }

        .service-card-has-image div {
            align-self: start;
        }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav {
        min-height: auto;
    }

    .mega-services {
        grid-template-columns: 1fr;
    }

    .nav-actions {
        grid-template-columns: 1fr;
    }

        .nav-actions .btn {
            width: 100%;
        }

    .hero,
    section {
        padding: var(--s-6) 0;
    }

    h1 {
        font-size: 56px;
        line-height: 56px;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .hero-grid {
        gap: var(--s-5);
    }

    .hero-image {
        min-height: 260px;
    }

        .hero-image img {
            max-width: 100%;
        }

    .hero-copy {
        min-height : 680px
    }

    .hero-copy p,
    .lead {
        font-size: 16px;
        line-height: 24px;
    }

    .trust-row,
    .steps,
    .service-grid,
    .service-grid + .service-grid,
    .press-grid,
    .option-grid,
    .field-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-menu--tools {
        row-rule : 1.5px solid var(--l-border)
    }

    .mega-menu--tools .tools-column:first-child {
        border-bottom : 1.5px solid var(--d-border);
        margin-bottom : var(--s-4)
    }

    .mega-menu--tools .tools-grid {
        grid-template-columns: repeat(1,1fr);
        gap: var(--s-6);
        row-rule : 1px solid var(--l-border)
    }

    .step + .step {
        border-left: 0;
        padding-left: 0;
    }

    .step-media {
        height: 240px;
    }

    .service-card {
        min-height: auto;
    }

    .section-head {
        display: block;
    }

        .section-head .lead {
            margin-top: var(--s-3);
        }

    .supplier-panel {
        margin-bottom : var(--s-7)
    }

    .buyer-cta-container,
    .supplier-cta-container {
        width : 100%
    }

    .buyer-options-cta,
    .supplier-options-cta {
        margin-top : var(--s-7);
        width: 100%
    }

    .wizard-content,
    .wizard-foot,
    .supplier-panel {
        padding: var(--s-4);
    }

    .wizard-foot {
        align-items: stretch;
        flex-direction: column;
    }

        .wizard-foot .btn {
            width: 100%;
        }

    .footer-bottom {
        flex-direction: column;
    }
}

