/*
Theme Name: ZeroY Starter
Author: ZeroY Studio
Description: QINFENG B2B theme. The site framework: every page of 网站规划.md is a theme template, the content types render the fields of inc/content-model.json, and the static pages render a placeholder until their copy arrives.
Version: 0.6.0
*/

/*
 * Framework styling only: enough for the placeholder pages to be readable while
 * the design is still to come. The Deep Green and Ink values are the brand
 * colours of DESIGN(20260921-052233).md; the design stage replaces this file
 * with the real tokens and components.
 */
:root {
    color-scheme: light;
    /* Primary Brand Palette per DESIGN.md */
    --brand: #55C83A;
    --signal: #D4FF00;
    --deep: #0D4B3E;
    --olive: #527700;
    --ink: #15211E;
    --slate: #5D6B67;
    --soft: #F5F7F6;
    --mist: #E9EEEC;
    --pale: #EDF7E9;
    --sand: #EEE9E1;
    --white: #FFFFFF;
    --warning: #D58A24;
    
    /* Legacy variables mapping */
    --qf-deep-green: var(--deep);
    --qf-ink: var(--ink);
    --qf-muted: var(--slate);
    --qf-line: var(--mist);

    /* Typography */
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Elevation & Shadows */
    --qf-shadow: 0 15px 42px rgba(21, 33, 30, 0.09);
    --qf-shadow-hover: 0 22px 50px rgba(13, 75, 62, 0.16);
    --qf-radius: 14px;
    --qf-radius-lg: 24px;
    --qf-transition: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--ink);
}

a {
    color: var(--deep);
    transition: color var(--qf-transition);
}

.qf-shell {
    width: min(100% - 2.5rem, 76rem);
    margin-inline: auto;
}

.qf-skip {
    position: absolute;
    left: -9999px;
}

.qf-skip:focus {
    left: 1rem;
    top: 1rem;
    padding: .5rem .75rem;
    background: #FFFFFF;
}

/*
 * Primary navigation ------------------------------------------------------
 * One horizontal bar on desktop: brand left, nav right, everything centred.
 * A grouped item opens either a narrow dropdown panel (--list) anchored to
 * its own item or a full-width mega panel (--mega) spanning the header.
 * State is read from attributes only: html.qf-nav-js (the site script is
 * running), li[data-open="true"] (that panel is open) and
 * nav[data-nav-open="true"] (the mobile menu is open). Without the script the
 * nav stays fully visible, and every panel is reachable by keyboard through
 * :focus-within on desktop and the caret button on mobile.
 */
.qf-header {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid var(--qf-line);
    --qf-nav-shell: min(100% - 2.5rem, 76rem);
    --qf-nav-panel-bg: #FFFFFF;
    --qf-nav-panel-line: var(--qf-line);
    --qf-nav-shadow: 0 1rem 2.25rem rgba(13, 75, 62, .14);
    --qf-nav-hover-bg: rgba(13, 75, 62, .06);
    --qf-nav-tint: rgba(13, 75, 62, .05);
    --qf-nav-woven: repeating-linear-gradient(135deg, rgba(13, 75, 62, .12) 0 2px, rgba(13, 75, 62, 0) 2px 7px);
    --qf-nav-dur: 160ms;
}

.qf-header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.qf-brand {
    margin: 0;
    min-width: 0;
}

.qf-brand-link {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .04em;
    text-decoration: none;
}

.qf-brand-link:hover,
.qf-brand-link:focus {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

.qf-brand-tagline {
    display: block;
    font-size: .75rem;
    color: var(--qf-muted);
}

/* The list itself: a column on mobile, one row from 64rem up. */
.qf-nav {
    min-width: 0;
}

.qf-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-nav-item {
    position: relative;
    border-bottom: 1px solid var(--qf-line);
}

.qf-nav-item--group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.qf-nav-item--group > .qf-nav-link {
    flex: 1 1 auto;
}

.qf-nav-link {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: .4rem 0;
    color: var(--qf-ink);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--qf-nav-dur) ease, background-color var(--qf-nav-dur) ease;
}

.qf-nav-link:hover,
.qf-nav-link:focus {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

/* Caret toggle: the caret is the only visible content (the label is clipped
   for screen readers, and stays in the button's accessible name). */
.qf-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: none;
    color: var(--qf-ink);
    font: inherit;
    cursor: pointer;
    transition: background-color var(--qf-nav-dur) ease, color var(--qf-nav-dur) ease;
}

.qf-nav-toggle:hover {
    background-color: var(--qf-nav-hover-bg);
    color: var(--qf-deep-green);
}

.qf-nav-caret {
    display: block;
    width: .45rem;
    height: .45rem;
    margin-top: -.1rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--qf-nav-dur) ease;
}

.qf-nav-item--group[data-open="true"] > .qf-nav-toggle .qf-nav-caret,
.qf-nav-menu[aria-expanded="true"] .qf-nav-caret {
    transform: rotate(-135deg);
}

.qf-nav-vh {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
}

/* The mobile menu button. [hidden] is in the HTML and the script removes it,
   so the guard keeps display:none winning over the rule below. */
.qf-nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    width: 100%;
    min-height: 2.75rem;
    padding: .5rem .75rem;
    border: 1px solid var(--qf-deep-green);
    border-radius: 2px;
    background: #FFFFFF;
    color: var(--qf-deep-green);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--qf-nav-dur) ease, color var(--qf-nav-dur) ease;
}

.qf-nav-menu:hover {
    background-color: var(--qf-nav-hover-bg);
}

.qf-nav-menu[hidden] {
    display: none;
}

/* Panels: static and full width on mobile, absolutely positioned from 64rem. */
.qf-nav-panel {
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding: .5rem 0 1rem;
    border-top: 1px solid var(--qf-line);
    background: var(--qf-nav-panel-bg);
}

.qf-nav-item--group[data-open="true"] > .qf-nav-panel {
    display: block;
}

/* Mega panel content: the inner .qf-mega is itself the shell. */
.qf-mega {
    width: 100%;
    margin-inline: 0;
    padding: 0;
}

.qf-mega-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qf-mega-block {
    min-width: 0;
}

.qf-mega-heading,
.qf-menu-heading {
    margin: 0 0 .6rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--qf-deep-green);
}

/* Product cards inside a mega panel: image, title, 2-line summary. */
.qf-mega-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-mega-card {
    min-width: 0;
}

.qf-mega-card-link {
    display: block;
    color: var(--qf-ink);
    text-decoration: none;
}

.qf-mega-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 2px;
    background-color: var(--qf-nav-tint);
    object-fit: cover;
}

.qf-mega-card-title {
    display: block;
    margin-top: .55rem;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35;
}

.qf-mega-card-summary {
    display: -webkit-box;
    overflow: hidden;
    margin-top: .15rem;
    font-size: .85rem;
    line-height: 1.45;
    color: var(--qf-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.qf-mega-card-link:hover .qf-mega-card-title,
.qf-mega-card-link:focus .qf-mega-card-title {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

/* A calm woven placeholder wherever a record has no image. */
.qf-mega-image--empty,
.qf-mega-thumb--empty,
.qf-menu-thumb--empty {
    background-color: var(--qf-nav-tint);
    background-image: var(--qf-nav-woven);
}

/* Compact industry rows: small square thumb beside title and summary. */
.qf-mega-terms {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-mega-term {
    min-width: 0;
}

.qf-mega-term-link {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    min-height: 2.75rem;
    padding: .35rem 0;
    color: var(--qf-ink);
    text-decoration: none;
}

.qf-mega-thumb,
.qf-menu-thumb {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    border-radius: 2px;
    background-color: var(--qf-nav-tint);
    object-fit: cover;
}

.qf-mega-term-text,
.qf-menu-text {
    display: block;
    min-width: 0;
}

.qf-mega-term-title,
.qf-menu-title {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.35;
}

.qf-mega-term-summary,
.qf-menu-summary {
    display: block;
    margin-top: .1rem;
    font-size: .8rem;
    line-height: 1.4;
    color: var(--qf-muted);
}

.qf-mega-term-link:hover .qf-mega-term-title,
.qf-mega-term-link:focus .qf-mega-term-title {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

/* Narrow dropdown panels. Group headings are headings, not links. */
.qf-menu {
    display: grid;
    gap: 1.25rem;
}

.qf-menu--groups {
    grid-template-columns: minmax(0, 1fr);
}

.qf-menu-group {
    min-width: 0;
}

.qf-menu-list {
    display: grid;
    gap: .1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-menu-item {
    min-width: 0;
}

.qf-menu-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 2.75rem;
    padding: .3rem 0;
    color: var(--qf-ink);
    font-size: .9rem;
    text-decoration: none;
    transition: color var(--qf-nav-dur) ease;
}

.qf-menu-link:hover,
.qf-menu-link:focus {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

.qf-menu-item--media .qf-menu-link {
    align-items: flex-start;
    padding: .45rem 0;
}

/* Bottom strip of a mega panel. */
.qf-mega-foot {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem 1.5rem;
    margin: 1.5rem 0 0;
    padding: .5rem 0 0;
    border-top: 1px solid var(--qf-line);
    list-style: none;
}

.qf-mega-foot-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
}

.qf-mega-foot-link:hover,
.qf-mega-foot-link:focus {
    color: var(--qf-deep-green);
    text-decoration: underline;
}

/* Request a Quote stays the one obvious action. */
.qf-nav-cta {
    padding: .5rem 0;
}

.qf-nav-cta .qf-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: .35rem .9rem;
    border: 1px solid var(--qf-deep-green);
    border-radius: 2px;
    color: var(--qf-deep-green);
    font-weight: 600;
    transition: background-color var(--qf-nav-dur) ease, color var(--qf-nav-dur) ease;
}

.qf-nav-cta .qf-nav-link:hover,
.qf-nav-cta .qf-nav-link:focus {
    background-color: var(--qf-deep-green);
    color: #FFFFFF;
    text-decoration: none;
}

.qf-nav :focus-visible,
.qf-nav-menu:focus-visible {
    outline: 2px solid var(--qf-deep-green);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .qf-header .qf-nav,
    .qf-header .qf-nav *,
    .qf-header .qf-nav-menu,
    .qf-header .qf-nav-menu * {
        transition: none;
    }
}

/* ---- Mobile: one column, panels in the flow ---------------------------- */
@media (max-width: 63.99rem) {
    /* Visible once the script removes [hidden]; [hidden] still wins. */
    .qf-nav-menu {
        display: flex;
    }

    /* With the script the nav waits for the menu button; without qf-nav-js it
       stays fully visible and usable. */
    html.qf-nav-js .qf-nav:not([data-nav-open="true"]) {
        display: none;
    }

    .qf-nav {
        width: 100%;
    }

    .qf-nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .qf-nav-item {
        border-bottom: 1px solid var(--qf-line);
    }

    .qf-nav-item--group {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Panels drop into the flow, full width, no shadow, no height cap. */
    .qf-nav-panel {
        position: static;
        display: none;
        flex-basis: 100%;
        width: 100%;
        max-height: none;
        padding: .5rem 0 1rem;
        border-top: 1px solid var(--qf-line);
        background: var(--qf-nav-panel-bg);
        box-shadow: none;
        overflow: visible;
    }

    .qf-nav-item--group[data-open="true"] > .qf-nav-panel {
        display: block;
    }

    /* The panel already sits inside the shell-width header, so the inner shell
       must not inset a second time. */
    .qf-mega,
    .qf-mega .qf-shell {
        width: 100%;
        margin-inline: 0;
        padding: 0;
    }

    .qf-mega-body {
        flex-direction: column;
        gap: 1.5rem;
    }

    .qf-mega-block {
        flex: 1 1 auto;
    }

    .qf-mega-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qf-mega-terms,
    .qf-menu--groups {
        grid-template-columns: minmax(0, 1fr);
    }

    .qf-mega-foot {
        margin-top: 1.25rem;
    }

    /* Touch targets stay at least 2.75rem tall. */
    .qf-nav-link,
    .qf-nav-toggle,
    .qf-nav-menu,
    .qf-menu-link,
    .qf-mega-term-link,
    .qf-mega-foot-link {
        min-height: 2.75rem;
    }

    .qf-nav-cta .qf-nav-link {
        padding-block: .5rem;
    }
}

/* ---- Desktop: one bar, brand left and nav right, panels out of flow ---- */
@media (min-width: 64rem) {
    .qf-header-inner {
        gap: 2rem;
    }

    .qf-brand {
        flex: 0 0 auto;
    }

    .qf-nav {
        margin-left: auto;
    }

    .qf-nav-menu {
        display: none;
    }

    .qf-nav-list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 1.25rem;
    }

    /* Items are not positioned, so a mega panel spans the whole header rather
       than its own item; only an item that owns a narrow dropdown becomes the
       panel's anchor. */
    .qf-nav-item {
        position: static;
        border-bottom: 0;
    }

    .qf-nav-item--group {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: .25rem;
    }

    @supports selector(:has(*)) {
        .qf-nav-item--group:has(> .qf-nav-panel--list) {
            position: relative;
        }

        /* The last dropdown sits at the right edge of the bar, so open it
           leftwards: a wide group panel then cannot leave the viewport. */
        .qf-nav-item--group:has(+ .qf-nav-cta) > .qf-nav-panel--list {
            left: auto;
            right: 0;
        }
    }

    .qf-nav-item--group > .qf-nav-link {
        flex: 0 0 auto;
    }

    .qf-nav-link {
        min-height: 2.25rem;
        padding: .35rem 0;
    }

    .qf-nav-toggle {
        min-width: 1.75rem;
        min-height: 1.75rem;
        margin-left: 0;
    }

    .qf-nav-panel {
        position: absolute;
        top: 100%;
        display: none;
        flex-basis: auto;
        width: auto;
        max-height: none;
        padding: 0;
        border-top: 0;
        background: var(--qf-nav-panel-bg);
        z-index: 40;
    }

    /* Hover, keyboard focus inside, or the script's open state. */
    .qf-nav-item--group:hover > .qf-nav-panel,
    .qf-nav-item--group:focus-within > .qf-nav-panel,
    .qf-nav-item--group[data-open="true"] > .qf-nav-panel {
        display: block;
    }

    .qf-nav-panel--mega {
        left: 0;
        right: 0;
        max-height: 78vh;
        overflow-y: auto;
        border-top: 1px solid var(--qf-nav-panel-line);
        box-shadow: var(--qf-nav-shadow);
    }

    .qf-nav-panel--list {
        left: 0;
        right: auto;
        min-width: 16rem;
        max-width: min(22rem, calc(100vw - 3rem));
        padding: .9rem 1.1rem 1rem;
        border: 1px solid var(--qf-nav-panel-line);
        border-radius: 0 0 2px 2px;
        box-shadow: var(--qf-nav-shadow);
    }

    .qf-nav-panel--groups {
        min-width: min(30rem, calc(100vw - 3rem));
        max-width: min(36rem, calc(100vw - 3rem));
    }

    /* Mega content: back to shell width, and a row of blocks that share it. */
    .qf-mega {
        width: var(--qf-nav-shell);
        margin-inline: auto;
        padding: 1.5rem 0 1.25rem;
    }

    .qf-mega-body {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.75rem 2rem;
    }

    /* A lone wide block fills the row (Products); wide and side share it. */
    .qf-mega-block--wide {
        flex: 2 1 32rem;
        min-width: 0;
    }

    .qf-mega-block--side {
        flex: 1 1 15rem;
        min-width: 0;
    }

    .qf-mega-cards {
        grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
        gap: 1.5rem 1.25rem;
    }

    .qf-mega-terms {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .35rem 1.5rem;
    }

    .qf-menu--groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1.75rem;
    }

    .qf-menu-link,
    .qf-mega-term-link {
        min-height: 2.25rem;
        padding: .25rem 0;
    }

    .qf-menu-item--media .qf-menu-link {
        padding: .4rem 0;
    }

    .qf-mega-foot {
        margin-top: 1.75rem;
        padding-top: .35rem;
    }

    .qf-mega-foot-link {
        min-height: 2.25rem;
        padding: .25rem 0;
    }

    .qf-nav-cta {
        padding: 0;
    }

    .qf-nav-cta .qf-nav-link {
        min-height: 2.25rem;
    }
}

/* A narrow desktop: the bar has to fit between 64rem and 80rem, so the labels,
   the gaps and the CTA tighten and the brand tagline steps aside until there is
   room for it again. */
@media (min-width: 64rem) and (max-width: 79.99rem) {
    .qf-brand-tagline {
        display: none;
    }

    .qf-nav-list {
        gap: .75rem;
    }

    .qf-nav-link {
        font-size: .9rem;
    }

    .qf-nav-toggle {
        min-width: 1.5rem;
    }

    .qf-nav-cta .qf-nav-link {
        padding-inline: .7rem;
    }
}

.qf-main {
    min-height: 50vh;
    padding: 3rem 0;
}

.qf-eyebrow {
    margin: 0 0 .5rem;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--qf-muted);
}

.qf-title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
    line-height: 1.15;
}

.qf-planning {
    margin: 0 0 .75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--qf-deep-green);
}

.qf-note,
.qf-cta {
    margin: 0 0 .5rem;
    font-size: .9rem;
    color: var(--qf-muted);
}

.qf-list {
    list-style: none;
    margin: 2rem auto 0;
    padding: 0;
}

.qf-list li {
    border-bottom: 1px solid var(--qf-line);
    padding: .5rem 0;
}

/*
 * The content templates: a record, its fields and the lists that hold records.
 * Still framework styling - readable and plain - built on the same two brand
 * colours, until the design stage replaces this file.
 */
.qf-entry {
    max-width: 52rem;
}

.qf-lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: var(--qf-muted);
}

.qf-body > *:first-child {
    margin-top: 0;
}

.qf-body img {
    max-width: 100%;
    height: auto;
}

.qf-fields {
    margin: 2.5rem 0 0;
    border-top: 1px solid var(--qf-line);
}

.qf-field {
    border-bottom: 1px solid var(--qf-line);
    padding: 1.5rem 0;
}

.qf-field-label {
    margin: 0 0 .75rem;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--qf-deep-green);
}

.qf-field-body > *:last-child {
    margin-bottom: 0;
}

.qf-field-note {
    font-size: .85rem;
    color: var(--qf-muted);
}

.qf-table-wrap {
    overflow-x: auto;
}

.qf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    text-align: left;
}

.qf-table th,
.qf-table td {
    border-bottom: 1px solid var(--qf-line);
    padding: .6rem .75rem .6rem 0;
    vertical-align: top;
}

.qf-table th {
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--qf-muted);
}

.qf-kv {
    margin: 0;
}

.qf-kv dt {
    font-weight: 600;
    margin-top: .75rem;
}

.qf-kv dt:first-child {
    margin-top: 0;
}

.qf-kv dd {
    margin: .15rem 0 0;
}

.qf-bullets,
.qf-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-bullets li {
    border-bottom: 1px solid var(--qf-line);
    padding: .35rem 0;
}

.qf-bullets--links,
.qf-bullets--terms {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
}

.qf-bullets--links li,
.qf-bullets--terms li {
    border-bottom: 0;
    padding: 0;
}

.qf-checklist-item {
    border-bottom: 1px solid var(--qf-line);
    padding: .6rem 0;
}

.qf-checklist-question {
    margin: 0;
    font-weight: 600;
}

.qf-checklist-required {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--qf-deep-green);
}

.qf-checklist-help {
    margin: .15rem 0 0;
    font-size: .9rem;
    color: var(--qf-muted);
}

.qf-button {
    display: inline-block;
    border: 1px solid var(--qf-deep-green);
    border-radius: 2px;
    padding: .5rem 1rem;
    font-weight: 600;
    text-decoration: none;
}

.qf-cta-block {
    margin: 2.5rem 0 0;
    border-top: 1px solid var(--qf-line);
    padding-top: 1.5rem;
}

.qf-cta-note {
    margin: 0 0 .75rem;
    font-size: .9rem;
    color: var(--qf-muted);
}

.qf-archive-head {
    margin-bottom: 2rem;
}

.qf-cards {
    display: grid;
    gap: 1.5rem;
}

.qf-card {
    border: 1px solid var(--qf-line);
    border-radius: 2px;
    padding: 1.25rem;
}

.qf-card-title {
    margin: 0 0 .5rem;
    font-size: 1.15rem;
}

.qf-card-title a {
    text-decoration: none;
}

.qf-card-title a:hover,
.qf-card-title a:focus {
    text-decoration: underline;
}

.qf-card-summary {
    margin: 0;
    font-size: .95rem;
    color: var(--qf-muted);
}

.qf-card-meta {
    margin-top: .75rem;
    font-size: .8rem;
}

.qf-card-meta .qf-bullets li a {
    color: var(--qf-muted);
}

.qf-pagination {
    margin-top: 2rem;
}

.qf-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (min-width: 48rem) {
    .qf-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*
 * The inquiry form (parts/inquiry-form.php). Framework styling on the same
 * tokens as the rest of this file, until the design stage replaces it. Nothing
 * here is needed for the form to work: the markup posts without JavaScript and
 * every control is native.
 */
.qf-form {
    max-width: 52rem;
}

.qf-form-grid {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0 0;
}

.qf-form-item {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin: 0;
}

.qf-form-label {
    font-size: .85rem;
    font-weight: 600;
}

.qf-form-required {
    margin-left: .35rem;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--qf-muted);
}

.qf-form-input {
    width: 100%;
    border: 1px solid var(--qf-line);
    border-radius: 2px;
    padding: .5rem .6rem;
    font: inherit;
    color: var(--qf-ink);
    background-color: #FFFFFF;
}

.qf-form-input[aria-invalid="true"] {
    border-color: #B3261E;
}

.qf-form-hint {
    font-size: .8rem;
    color: var(--qf-muted);
}

.qf-form-error {
    margin: 1.5rem 0 0;
    border-left: 3px solid #B3261E;
    padding: .5rem .75rem;
    font-size: .9rem;
    background-color: rgba(179, 38, 30, .06);
}

.qf-form-error-message {
    margin: 0;
}

.qf-form-error-list {
    margin: .35rem 0 0;
    padding-left: 1.1rem;
    font-size: .85rem;
}

.qf-form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.qf-form-consent .qf-form-label {
    display: flex;
    gap: .5rem;
    font-weight: 400;
}

.qf-form-submit {
    margin: 1.75rem 0 0;
}

.qf-form-button {
    font: inherit;
    cursor: pointer;
    background-color: var(--qf-deep-green);
    color: #FFFFFF;
}

.qf-form :focus-visible {
    outline: 2px solid var(--qf-deep-green);
    outline-offset: 2px;
}

@media (min-width: 48rem) {
    .qf-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qf-form-item--wide {
        grid-column: 1 / -1;
    }
}

/* ==========================================================================
   HOMEPAGE DESIGN & ANIMATION SYSTEM (DESIGN v5.0 IMPLEMENTATION)
   ========================================================================== */

/* Utility containers */
.qf-container {
    width: min(calc(100% - 48px), 1320px);
    margin-inline: auto;
}

.qf-wide {
    width: min(calc(100% - 24px), 1500px);
    margin-inline: auto;
}

.qf-section {
    padding: 100px 0;
    position: relative;
}

.qf-bg-sand { background-color: var(--sand); }
.qf-bg-soft { background-color: var(--soft); }
.qf-bg-pale { background-color: var(--pale); }

/* Eyebrows & Section Headers */
.qf-eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--olive);
}

.qf-eyebrow--lime { color: var(--signal); }
.qf-eyebrow--signal { color: var(--signal); }
.qf-eyebrow--dark { color: var(--deep); }

.qf-section-title {
    font-size: clamp(1.6rem, 2.75vw, 2.5rem);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.qf-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--slate);
    max-width: 680px;
    margin: 0;
}

.qf-section-intro {
    text-align: center;
    margin-bottom: 54px;
}

.qf-section-intro .qf-lead {
    margin-inline: auto;
}

.qf-section-head-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.qf-center-action {
    text-align: center;
    margin-top: 48px;
}

/* Reusable Interactive Buttons with dynamic hover animations */
.qf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--qf-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.qf-btn--primary {
    background-color: var(--brand);
    color: var(--deep);
}

.qf-btn--primary:hover {
    background-color: var(--deep);
    color: #FFFFFF;
}

.qf-btn--light {
    background-color: #FFFFFF;
    color: var(--deep);
}

.qf-btn--light:hover {
    background-color: var(--signal);
    color: var(--deep);
}

.qf-btn--dark {
    background-color: var(--deep);
    color: #FFFFFF;
}

.qf-btn--dark:hover {
    background-color: var(--ink);
    color: var(--signal);
}

.qf-btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.qf-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.qf-btn--outline {
    background: transparent;
    color: var(--deep);
    border-color: var(--deep);
}

.qf-btn--outline:hover {
    background: var(--deep);
    color: #FFFFFF;
}

.qf-btn--signal {
    background-color: var(--signal);
    color: var(--deep);
}

.qf-btn--signal:hover {
    background-color: #FFFFFF;
    color: var(--deep);
}

.qf-btn--lg {
    min-height: 58px;
    padding: 0 34px;
    font-size: 1.05rem;
}

.qf-icon-btn {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid var(--deep);
    background: #FFFFFF;
    color: var(--deep);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--qf-transition);
}

.qf-icon-btn:hover {
    background: var(--signal);
    transform: scale(1.05);
}

/* Gentle Keyframe Animations */
@keyframes qfFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qfSlideFade {
    from {
        opacity: 0.15;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes qfPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 255, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 255, 0, 0);
    }
}

.qf-btn--pulse {
    animation: qfPulse 3s infinite;
}

/* Scroll Reveal States */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].qf-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 1. HERO SECTION (TAMA-INSPIRED ANGULAR CUTS & LAYOUT) */
.qf-hero {
    position: relative;
    overflow: hidden;
    min-height: 780px;
    padding-top: 24px;
    background: #FFFFFF;
}

.qf-hero-slide {
    display: none;
}

.qf-hero-slide.active {
    display: block;
    animation: qfSlideFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.qf-hero-grid {
    display: grid;
    grid-template-columns: 32% 48% 20%;
    gap: 12px;
    min-height: 540px;
}

.qf-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 48px 80px;
    background: var(--olive);
    color: #FFFFFF;
    clip-path: polygon(0 4%, 95% 0, 85% 88%, 0 100%);
    box-shadow: var(--qf-shadow);
}

.qf-hero-copy-inner {
    max-width: 440px;
}

.qf-hero-title {
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    line-height: 0.94;
    margin: 0 0 20px;
    color: #FFFFFF;
    letter-spacing: -0.045em;
}

.qf-hero-lead {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
}

.qf-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.qf-hero-center {
    position: relative;
    overflow: hidden;
    margin-left: -40px;
    background: var(--pale);
    clip-path: polygon(8% 0, 100% 8%, 94% 94%, 0 100%);
}

.qf-hero-center img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.8s ease;
}

.qf-hero-slide.active .qf-hero-center img {
    transform: scale(1.03);
}

.qf-hero-center::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(transparent, rgba(13, 75, 62, 0.88));
}

.qf-hero-caption {
    position: absolute;
    z-index: 2;
    left: 12%;
    right: 12%;
    bottom: 50px;
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.qf-hero-side {
    position: relative;
    overflow: hidden;
    margin-left: -46px;
    clip-path: polygon(8% 4%, 100% 0, 100% 100%, 0 90%);
}

.qf-hero-side img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qf-hero-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(212, 255, 0, 0.2), rgba(85, 200, 58, 0.25));
}

.qf-hero-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 24px;
    color: var(--olive);
}

.qf-slide-count {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--deep);
}

.qf-progress-bars {
    display: flex;
    gap: 8px;
}

.qf-progress-bars button {
    width: 54px;
    height: 8px;
    border: 0;
    border-radius: 2px;
    background: rgba(85, 200, 58, 0.3);
    transform: skewX(-20deg);
    cursor: pointer;
    transition: background-color var(--qf-transition);
}

.qf-progress-bars button.active {
    background: var(--signal);
    box-shadow: 0 0 10px rgba(212, 255, 0, 0.8);
}

.qf-hero-landscape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent), repeating-linear-gradient(90deg, #F5F7F6 0 120px, #FFFFFF 120px 240px);
    opacity: 0.6;
    pointer-events: none;
}

/* 2. TRUST STRIP (EVIDENCE METRICS) */
.qf-trust-strip {
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}

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

.qf-trust-item {
    padding: 34px 28px;
    border-right: 1px solid var(--mist);
    transition: background-color var(--qf-transition);
}

.qf-trust-item:last-child {
    border-right: 0;
}

.qf-trust-item:hover {
    background-color: var(--soft);
}

.qf-trust-num-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.qf-trust-prefix {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--olive);
}

.qf-trust-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--deep);
    line-height: 1;
    letter-spacing: -0.03em;
}

.qf-trust-unit {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand);
}

.qf-trust-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--pale);
    color: var(--deep);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.qf-trust-desc {
    display: block;
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.4;
}

/* 3. PRODUCT RAIL & OVERSIZED CARDS */
.qf-product-shell {
    position: relative;
    width: 100%;
}

.qf-product-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 30px 4vw 46px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.qf-product-track::-webkit-scrollbar {
    display: none;
}

.qf-product-card {
    flex: 0 0 380px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: var(--qf-radius-lg);
    background: #FFFFFF;
    box-shadow: var(--qf-shadow);
    scroll-snap-align: start;
    transition: transform var(--qf-transition), box-shadow var(--qf-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.qf-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--qf-shadow-hover);
}

.qf-product-card.featured {
    transform: translateY(-16px);
    border: 2px solid var(--brand);
}

.qf-product-card.featured:hover {
    transform: translateY(-24px);
    box-shadow: var(--qf-shadow-hover);
}

.qf-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px 14px;
}

.qf-product-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--deep);
    letter-spacing: -0.02em;
}

.qf-badge {
    padding: 6px 14px;
    border-radius: 0 12px 0 12px;
    background: var(--signal);
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.qf-product-header {
    padding: 0 28px 16px;
}

.qf-product-name {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.qf-product-name a {
    color: var(--ink);
    text-decoration: none;
}

.qf-product-name a:hover {
    color: var(--deep);
}

.qf-product-sub {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--deep);
}

.qf-product-image-box {
    height: 290px;
    margin: 0 28px 20px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--pale);
    transition: transform var(--qf-transition);
}

.qf-product-card:hover .qf-product-image-box img {
    transform: scale(1.05);
}

.qf-product-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qf-product-footer {
    padding: 0 28px 28px;
}

.qf-product-desc {
    margin: 0 0 18px;
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.55;
    min-height: 48px;
}

.qf-product-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--olive);
    text-decoration: none;
    transition: transform var(--qf-transition), color var(--qf-transition);
}

.qf-product-action:hover {
    color: var(--deep);
    transform: translateX(4px);
}

.qf-rail-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

/* 4. CUSTOM FIBC 6 DECISIONS GRID */
.qf-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.qf-decision-card {
    padding: 34px 30px;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    background: #FFFFFF;
    transition: all var(--qf-transition);
}

.qf-decision-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 12px 30px rgba(85, 200, 58, 0.12);
}

.qf-decision-card:nth-child(even) {
    background: var(--pale);
}

.qf-decision-card--highlight {
    background: var(--signal) !important;
    color: var(--deep);
    border-color: transparent;
}

.qf-decision-card--highlight:hover {
    box-shadow: 0 12px 30px rgba(212, 255, 0, 0.35);
}

.qf-decision-step {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--olive);
    margin-bottom: 24px;
}

.qf-decision-card--highlight .qf-decision-step {
    color: var(--deep);
}

.qf-decision-title {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.25;
}

.qf-decision-desc {
    margin: 0;
    font-size: 0.94rem;
    color: var(--slate);
    line-height: 1.6;
}

.qf-decision-card--highlight .qf-decision-desc {
    color: rgba(13, 75, 62, 0.85);
    font-weight: 500;
}

/* 5. APPLICATION COLLAGE (ASYMMETRIC INDUSTRIAL VIEWS) */
.qf-app-collage {
    display: grid;
    grid-template-columns: 20% 28% 24% 28%;
    gap: 14px;
    align-items: stretch;
}

.qf-collage-col {
    display: grid;
    gap: 14px;
}

.qf-app-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: var(--pale);
    border-radius: 6px;
}

.qf-clip-a {
    clip-path: polygon(0 0, 95% 5%, 100% 100%, 6% 95%);
}

.qf-clip-b {
    clip-path: polygon(6% 4%, 100% 0, 95% 95%, 0 100%);
}

.qf-clip-c {
    clip-path: polygon(0 6%, 94% 0, 100% 92%, 6% 100%);
}

.qf-app-short { min-height: 200px; }
.qf-app-tall { min-height: 420px; }

.qf-app-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.qf-app-img:hover img {
    transform: scale(1.06);
}

.qf-app-img::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(13, 75, 62, 0.75));
    transition: opacity var(--qf-transition);
}

.qf-app-tag {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 20px;
    padding: 8px 14px;
    border-radius: 6px;
    background: var(--signal);
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 6. WHY QINFENG INTERACTIVE MULTI-STAGE SHOWCASE */
.qf-why-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 22px;
}

.qf-why-stage {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-radius: var(--qf-radius-lg);
    background: var(--deep);
    box-shadow: var(--qf-shadow);
}

.qf-why-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transition: opacity 0.4s ease, transform 0.8s ease;
}

.qf-why-stage:hover img {
    transform: scale(1.02);
}

.qf-why-stage-copy {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 160px 58px 52px;
    background: linear-gradient(transparent, rgba(13, 75, 62, 0.96));
    color: #FFFFFF;
}

.qf-why-stage-title {
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 16px;
    color: #FFFFFF;
}

.qf-why-stage-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 28px;
}

.qf-why-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qf-accordion-item {
    overflow: hidden;
    border-radius: 16px;
    background: var(--soft);
    border: 1px solid var(--mist);
    transition: all var(--qf-transition);
}

.qf-accordion-item.active {
    background: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 10px 25px rgba(85, 200, 58, 0.25);
}

.qf-accordion-trigger {
    display: flex;
    width: 100%;
    min-height: 110px;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.qf-plus {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--deep);
    font-size: 1.35rem;
    font-weight: 800;
    transition: transform var(--qf-transition);
}

.qf-accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--deep);
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.qf-accordion-item.active .qf-accordion-panel {
    max-height: 160px;
    padding: 0 28px 24px;
}

.qf-accordion-panel p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(13, 75, 62, 0.95);
}

/* 7. VISIBLE PRODUCTION PROCESS GRID */
.qf-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qf-process-card {
    overflow: hidden;
    border-radius: var(--qf-radius);
    background: #FFFFFF;
    border: 1px solid var(--mist);
    transition: all var(--qf-transition);
}

.qf-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--qf-shadow);
}

.qf-process-img-box {
    height: 220px;
    overflow: hidden;
    background: var(--pale);
}

.qf-process-img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qf-process-card:hover .qf-process-img-box img {
    transform: scale(1.06);
}

.qf-process-body {
    padding: 24px;
}

.qf-process-num {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-top: -46px;
    position: relative;
    border-radius: 50%;
    background: var(--signal);
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.qf-process-title {
    margin: 18px 0 8px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.qf-process-desc {
    margin: 0;
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* 8. QUALITY MADE VISIBLE STRIP */
.qf-quality-strip {
    background: var(--deep);
    color: #FFFFFF;
}

.qf-quality-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 640px;
}

.qf-quality-image {
    position: relative;
    overflow: hidden;
}

.qf-quality-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qf-quality-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(13, 75, 62, 0.35));
}

.qf-quality-copy {
    padding: 75px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qf-quality-title {
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    line-height: 1.05;
    margin: 0 0 16px;
    color: #FFFFFF;
}

.qf-quality-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 32px;
}

.qf-proof-list {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.qf-proof-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--qf-transition);
}

.qf-proof-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--signal);
}

.qf-proof-badge {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--signal);
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
}

.qf-proof-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.qf-proof-sub {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* 9. TESTIMONIALS / CASE STUDIES SLIDER */
.qf-story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qf-story-copy {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qf-story-slide {
    animation: qfFadeInUp 0.5s ease both;
}

.qf-story-quote {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.qf-story-meta {
    margin: 0 0 28px;
    color: var(--slate);
    font-size: 0.95rem;
}

.qf-story-meta strong {
    color: var(--deep);
}

.qf-story-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qf-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: rgba(85, 200, 58, 0.35);
    cursor: pointer;
    transition: all var(--qf-transition);
}

.qf-dot.active {
    background: var(--signal);
    box-shadow: 0 0 0 3px var(--deep);
    transform: scale(1.15);
}

.qf-story-image-box {
    height: 500px;
    overflow: hidden;
    clip-path: polygon(0 0, 95% 5%, 100% 100%, 6% 94%);
    border-radius: 12px;
    background: var(--brand);
}

.qf-story-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.8s ease;
}

.qf-story-image-box:hover img {
    transform: scale(1.04);
}

/* 10. PACKING & CONTAINER LOADING */
.qf-packing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.qf-packing-image {
    height: 520px;
    overflow: hidden;
    clip-path: polygon(6% 4%, 100% 0, 94% 95%, 0 100%);
    border-radius: 12px;
    background: var(--pale);
}

.qf-packing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.qf-packing-image:hover img {
    transform: scale(1.04);
}

.qf-spec-lines {
    margin: 32px 0 36px;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}

.qf-spec-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid var(--mist);
}

.qf-spec-line:last-child {
    border-bottom: 0;
}

.qf-spec-line strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--deep);
}

.qf-spec-line span {
    color: var(--slate);
    font-size: 0.9rem;
}

/* 11. STREAMLINED RFQ FORM SECTION */
.qf-rfq-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border-radius: var(--qf-radius-lg);
    box-shadow: var(--qf-shadow);
    border: 1px solid var(--mist);
    background: #FFFFFF;
}

.qf-rfq-sidebar {
    padding: 56px 48px;
    background: var(--brand);
    color: var(--deep);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qf-rfq-title {
    font-size: clamp(1.4rem, 1.9vw, 1.9rem);
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--deep);
}

.qf-rfq-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(13, 75, 62, 0.9);
    margin: 0 0 28px;
}

.qf-rfq-thumb {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(13, 75, 62, 0.15);
}

.qf-rfq-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.qf-rfq-guarantees {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
}

.qf-rfq-body {
    padding: 56px 52px;
    background: #FFFFFF;
}

.qf-rfq-body .qf-form {
    max-width: 100%;
}

.qf-rfq-body .qf-form-grid {
    margin-top: 0;
}

.qf-rfq-body .qf-form-input {
    border: 1px solid var(--mist);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
    transition: all var(--qf-transition);
}

.qf-rfq-body .qf-form-input:focus {
    border-color: var(--deep);
    outline: 3px solid rgba(212, 255, 0, 0.65);
}

.qf-rfq-body .qf-form-button {
    background-color: var(--brand);
    color: var(--deep);
    border-radius: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    border: 2px solid transparent;
    transition: all var(--qf-transition);
}

.qf-rfq-body .qf-form-button:hover {
    background-color: var(--deep);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* 12. CALL TO ACTION BANNER */
.qf-cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--brand);
    padding: 85px 0;
}

.qf-cta-banner::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: 6%;
    bottom: -220px;
    background: rgba(212, 255, 0, 0.45);
    transform: rotate(22deg);
    pointer-events: none;
}

.qf-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.qf-cta-title {
    font-size: clamp(1.7rem, 2.75vw, 2.5rem);
    line-height: 1.05;
    margin: 0 0 14px;
    color: var(--deep);
}

.qf-cta-sub {
    font-size: 1.15rem;
    color: rgba(13, 75, 62, 0.88);
    max-width: 600px;
    margin: 0;
}

.qf-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
}

/* RESPONSIVE ADAPTATIONS */
@media (max-width: 1080px) {
    .qf-hero-grid {
        grid-template-columns: 44% 56%;
    }
    .qf-hero-side {
        display: none;
    }
    .qf-decision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qf-app-collage {
        grid-template-columns: 1fr 1fr;
    }
    .qf-why-grid {
        grid-template-columns: 1fr;
    }
    .qf-why-stage {
        min-height: 500px;
    }
    .qf-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qf-quality-grid,
    .qf-story-wrap,
    .qf-packing-grid,
    .qf-rfq-card {
        grid-template-columns: 1fr;
    }
    .qf-quality-copy {
        padding: 50px 32px;
    }
}

@media (max-width: 768px) {
    .qf-section {
        padding: 65px 0;
    }
    .qf-hero-grid {
        display: flex;
        flex-direction: column;
    }
    .qf-hero-copy {
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
        padding: 50px 24px 65px;
    }
    .qf-hero-center {
        margin: -25px 0 0;
        min-height: 380px;
        clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
    }
    .qf-hero-caption {
        bottom: 28px;
    }
    .qf-trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .qf-trust-item {
        padding: 24px 18px;
    }
    .qf-trust-item:nth-child(2) {
        border-right: 0;
    }
    .qf-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--mist);
    }
    .qf-section-head-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .qf-decision-grid {
        grid-template-columns: 1fr;
    }
    .qf-app-collage {
        grid-template-columns: 1fr;
    }
    .qf-process-grid {
        grid-template-columns: 1fr;
    }
    .qf-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .qf-rfq-sidebar,
    .qf-rfq-body {
        padding: 36px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   13. CONTACT PAGE SPECIFIC STYLES (CLEAN & MINIMALIST)
   ========================================================================== */
.qf-contact-simple {
    background: #FAFBFB;
}

.qf-contact-head {
    position: relative;
    background: #EAF0E8;
    padding: 84px 0 72px;
    color: var(--ink);
    overflow: hidden;
    border-bottom: 1px solid #DCE5D9;
}

.qf-contact-head-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qf-contact-head-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.22;
    filter: saturate(0.85);
}

.qf-contact-head-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 249, 245, 0.94) 0%, rgba(234, 242, 232, 0.90) 100%);
    z-index: 2;
}

.qf-contact-head-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.qf-contact-title {
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: var(--deep);
    margin: 10px 0 16px;
    letter-spacing: -0.035em;
}

.qf-contact-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #4A5B53;
    margin: 0;
    max-width: 780px;
}

.qf-contact-body {
    padding: 64px 0 88px;
}

.qf-contact-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 48px;
    align-items: flex-start;
}

/* Left info column */
.qf-contact-photo-box {
    position: relative;
    border-radius: var(--qf-radius);
    overflow: hidden;
    margin-bottom: 30px;
    background: var(--mist);
    border: 1px solid var(--mist);
}

.qf-contact-photo-box img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9.5;
    object-fit: cover;
}

.qf-contact-photo-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(13, 75, 62, 0.9);
    color: var(--signal);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.qf-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.qf-info-card {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(21, 33, 30, 0.03);
}

.qf-info-icon {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--pale);
    color: var(--deep);
    flex-shrink: 0;
}

.qf-info-details h3 {
    font-size: 1.15rem;
    color: var(--deep);
    margin: 0 0 4px;
    line-height: 1.3;
}

.qf-info-name {
    font-size: 0.88rem;
    color: var(--slate);
    margin: 0 0 10px;
    font-weight: 500;
}

.qf-info-line {
    font-size: 0.88rem;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.5;
}

.qf-info-line strong {
    color: var(--deep);
}

.qf-info-line:last-child {
    margin-bottom: 0;
}

.qf-info-summary {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    padding: 22px 24px;
    display: grid;
    gap: 12px;
}

.qf-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--mist);
}

.qf-summary-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.qf-sum-label {
    color: var(--slate);
    font-weight: 600;
}

.qf-sum-val {
    color: var(--ink);
    text-align: right;
    font-weight: 500;
}

/* Right form column */
.qf-clean-form-card {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius-lg);
    box-shadow: 0 12px 36px rgba(21, 33, 30, 0.05);
    overflow: hidden;
}

.qf-clean-form-head {
    padding: 36px 40px 24px;
    border-bottom: 1px solid var(--mist);
    background: #FAFCFA;
}

.qf-clean-form-head h2 {
    font-size: 1.65rem;
    color: var(--deep);
    margin: 0 0 8px;
}

.qf-clean-form-head p {
    font-size: 0.95rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.55;
}

.qf-clean-form-body {
    padding: 36px 40px 40px;
}

.qf-clean-form-body .qf-form-grid {
    margin-top: 0;
}

@media (max-width: 960px) {
    .qf-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .qf-clean-form-head,
    .qf-clean-form-body {
        padding: 28px 24px;
    }
    .qf-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .qf-sum-val {
        text-align: left;
    }
}


/* ==========================================================================
   14. THANK YOU PAGE SPECIFIC STYLES
   ========================================================================== */
.qf-thankyou-page {
    background: #FAFBFB;
}

.qf-thankyou-hero {
    position: relative;
    background: #EAF0E8;
    padding: 84px 0 72px;
    color: var(--ink);
    overflow: hidden;
    border-bottom: 1px solid #DCE5D9;
}

.qf-thankyou-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qf-thankyou-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.22;
    filter: saturate(0.85);
}

.qf-thankyou-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 249, 245, 0.94) 0%, rgba(234, 242, 232, 0.90) 100%);
    z-index: 2;
}

.qf-thankyou-hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
}

.qf-thankyou-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    background: #FFFFFF;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(85, 200, 58, 0.35);
    box-shadow: 0 2px 8px rgba(13, 75, 62, 0.06);
}

.qf-thankyou-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--brand);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 900;
}

.qf-thankyou-badge-wrap .qf-eyebrow {
    margin: 0;
    color: var(--deep);
}

.qf-thankyou-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.12;
    color: var(--deep);
    margin: 12px 0 16px;
    letter-spacing: -0.035em;
}

.qf-thankyou-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #4A5B53;
    margin: 0;
    max-width: 780px;
}

.qf-thankyou-body {
    padding: 64px 0 96px;
}

.qf-thankyou-card {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius-lg);
    box-shadow: 0 10px 30px rgba(21, 33, 30, 0.04);
    padding: 48px;
    margin-bottom: 56px;
}

.qf-thankyou-card-head {
    max-width: 680px;
    margin-bottom: 40px;
}

.qf-thankyou-card-head h2 {
    font-size: 1.85rem;
    color: var(--deep);
    margin: 0 0 10px;
}

.qf-thankyou-card-head p {
    font-size: 1.05rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.6;
}

.qf-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.qf-step-item {
    background: #FAFBFB;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--qf-transition), border-color var(--qf-transition);
}

.qf-step-item:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 200, 58, 0.5);
}

.qf-step-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--olive);
    margin-bottom: 12px;
    line-height: 1;
}

.qf-step-item h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 0 8px;
}

.qf-step-item p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.55;
    margin: 0 0 16px;
    flex-grow: 1;
}

.qf-step-time {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--deep);
    background: var(--pale);
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.qf-thankyou-direct-bar {
    background: #F4F7F5;
    border-radius: var(--qf-radius);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-left: 4px solid var(--brand);
}

.qf-direct-copy strong {
    display: block;
    font-size: 1.05rem;
    color: var(--deep);
    margin-bottom: 4px;
}

.qf-direct-copy p {
    font-size: 0.92rem;
    color: var(--slate);
    margin: 0;
}

/* Explore Section */
.qf-thankyou-explore {
    margin-top: 20px;
}

.qf-explore-head {
    margin-bottom: 28px;
}

.qf-explore-head h2 {
    font-size: 1.75rem;
    color: var(--deep);
    margin: 6px 0 0;
}

.qf-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.qf-explore-card {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--qf-transition), box-shadow var(--qf-transition), border-color var(--qf-transition);
}

.qf-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(21, 33, 30, 0.06);
    border-color: var(--brand);
}

.qf-explore-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.qf-explore-card h3 {
    font-size: 1.2rem;
    color: var(--deep);
    margin: 0 0 8px;
}

.qf-explore-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.55;
    margin: 0 0 18px;
    flex-grow: 1;
}

.qf-explore-link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--olive);
}

.qf-explore-card:hover .qf-explore-link {
    color: var(--brand);
}

@media (max-width: 1024px) {
    .qf-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qf-explore-grid {
        grid-template-columns: 1fr;
    }
    .qf-thankyou-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .qf-steps-grid {
        grid-template-columns: 1fr;
    }
    .qf-thankyou-direct-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

/* ==========================================================================
   15. TAMA-STYLE BRAND OLIVE FOOTER
   ========================================================================== */
.qf-footer {
    background-color: #5F7A1A;
    color: #FFFFFF;
    padding: 70px 0 40px;
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
}

/* 1. Multi-column Nav Grid */
.qf-footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.qf-fcol {
    display: flex;
    flex-direction: column;
}

.qf-fnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.qf-fnav-list li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: opacity var(--qf-transition), color var(--qf-transition);
    opacity: 0.95;
    font-weight: 500;
}

.qf-fnav-list li a:hover {
    opacity: 1;
    color: var(--signal);
    text-decoration: underline;
}

/* Contact us standalone link */
.qf-footer-contact-link-wrap {
    margin-top: 24px;
    margin-bottom: 60px;
}

.qf-footer-contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.55rem;
    font-weight: 700;
    font-family: var(--font-display);
    display: inline-block;
    transition: color var(--qf-transition), transform var(--qf-transition);
}

.qf-footer-contact-link:hover {
    color: var(--signal);
    transform: translateX(4px);
}

/* 2. Newsletter Subscription Area */
.qf-footer-newsletter-wrap {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 50px;
}

.qf-newsletter-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    font-family: var(--font-display);
    color: #FFFFFF;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.qf-newsletter-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px;
}

.qf-newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qf-newsletter-inputs {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.1fr 1.4fr;
    gap: 14px;
    width: 100%;
}

.qf-news-field {
    position: relative;
    width: 100%;
}

.qf-news-input,
.qf-news-select {
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 0 20px;
    color: #FFFFFF;
    font-size: 0.92rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--qf-transition), background-color var(--qf-transition);
}

.qf-news-input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.qf-news-input:focus,
.qf-news-select:focus {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.qf-news-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 36px;
}

.qf-news-select option {
    background-color: #4A6114;
    color: #FFFFFF;
}

.qf-news-select-wrap .qf-select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 0.85rem;
    pointer-events: none;
}

.qf-newsletter-consent {
    max-width: 820px;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 8px;
}

.qf-consent-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    cursor: pointer;
}

.qf-consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
}

.qf-newsletter-btn {
    display: inline-block;
    background: #FFFFFF;
    color: #5F7A1A;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 24px;
    padding: 12px 64px;
    cursor: pointer;
    transition: background-color var(--qf-transition), transform var(--qf-transition), box-shadow var(--qf-transition);
}

.qf-newsletter-btn:hover {
    background: #F1F4E8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* 3. Horizontal Divider */
.qf-footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin: 40px 0 36px;
}

/* 4. Center Brand Identity */
.qf-footer-center-brand {
    text-align: center;
    margin-bottom: 30px;
}

.qf-footer-brand-title {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 6px;
    transition: opacity var(--qf-transition);
}

.qf-footer-brand-title:hover {
    opacity: 0.9;
}

.qf-footer-brand-sub {
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

/* 5. Bottom Horizontal Legal Links */
.qf-footer-bottom-legal {
    text-align: center;
}

.qf-legal-inline-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-legal-inline-list li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity var(--qf-transition), text-decoration var(--qf-transition);
}

.qf-legal-inline-list li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.qf-pipe {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    user-select: none;
}

/* Responsive Overrides for Footer */
@media (max-width: 1080px) {
    .qf-footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .qf-newsletter-inputs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .qf-footer {
        padding: 50px 0 30px;
    }
    .qf-footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .qf-newsletter-inputs {
        grid-template-columns: 1fr;
    }
    .qf-footer-contact-link {
        font-size: 1.35rem;
    }
    .qf-legal-inline-list {
        gap: 8px 10px;
    }
    .qf-pipe {
        display: none;
    }
    .qf-legal-inline-list li {
        width: 100%;
        margin-bottom: 4px;
    }
}

/* ==========================================================================
   16. ABOUT PAGE SPECIFIC STYLES & ANIMATIONS
   ========================================================================== */
.qf-about-page {
    background: #FFFFFF;
}

/* 1. Hero Section */
.qf-about-hero {
    position: relative;
    background: #EAF0E8;
    padding: 96px 0 84px;
    color: var(--ink);
    overflow: hidden;
    border-bottom: 1px solid #DCE5D9;
}

.qf-about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qf-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.24;
    filter: saturate(0.85);
}

.qf-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 249, 245, 0.94) 0%, rgba(234, 242, 232, 0.88) 100%);
    z-index: 2;
}

.qf-about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
}

.qf-about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    background: #FFFFFF;
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(85, 200, 58, 0.35);
    box-shadow: 0 2px 10px rgba(13, 75, 62, 0.05);
}

.qf-about-hero-badge .qf-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
}

.qf-about-hero-badge .qf-eyebrow {
    margin: 0;
}

.qf-about-hero-title {
    font-size: clamp(2.1rem, 3.8vw, 3.3rem);
    line-height: 1.08;
    color: var(--deep);
    margin: 12px 0 20px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.qf-about-hero-lead {
    font-size: 1.18rem;
    line-height: 1.68;
    color: #4A5B53;
    margin: 0 0 36px;
    max-width: 800px;
}

.qf-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* 2. Key Performance Figures Strip */
.qf-about-stats-bar {
    background: #FFFFFF;
    padding: 44px 0;
    border-bottom: 1px solid var(--mist);
}

.qf-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.qf-stat-card {
    border-left: 2px solid rgba(85, 200, 58, 0.4);
    padding-left: 20px;
    transition: transform var(--qf-transition), border-color var(--qf-transition);
}

.qf-stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
}

.qf-stat-val-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: 6px;
}

.qf-stat-card strong {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    font-weight: 800;
    color: var(--deep);
}

.qf-stat-plus,
.qf-stat-unit {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand);
}

.qf-stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.qf-stat-sub {
    font-size: 0.88rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.45;
}

/* 3. Dual Base Cards (Yantai & Qingdao) */
.qf-dual-base-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}

.qf-base-card {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21, 33, 30, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.qf-base-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(13, 75, 62, 0.1);
    border-color: rgba(85, 200, 58, 0.5);
}

.qf-base-img-box {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #EAF0E8;
}

.qf-base-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.qf-base-card:hover .qf-base-img-box img {
    transform: scale(1.06);
}

.qf-base-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--deep);
    color: var(--signal);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qf-base-info {
    padding: 32px 34px 36px;
}

.qf-base-info h3 {
    font-size: 1.55rem;
    color: var(--deep);
    margin: 0 0 6px;
}

.qf-base-company {
    font-size: 0.92rem;
    color: var(--olive);
    font-weight: 600;
    margin: 0 0 16px;
}

.qf-base-desc {
    font-size: 0.96rem;
    color: var(--slate);
    line-height: 1.65;
    margin: 0 0 22px;
}

.qf-base-tags {
    list-style: none;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--mist);
    display: grid;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--ink);
}

.qf-base-tags li span {
    font-weight: 700;
    color: var(--deep);
}

/* 4. Interactive Tabbed Value Architecture */
.qf-about-tabs-section {
    padding: 88px 0;
}

.qf-about-tab-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 48px auto 36px;
    max-width: 1040px;
}

.qf-tab-btn {
    background: #FFFFFF;
    border: 1.5px solid var(--mist);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qf-tab-btn:hover {
    border-color: rgba(85, 200, 58, 0.6);
    background: #F8FAF7;
    transform: translateY(-2px);
}

.qf-tab-btn.active {
    background: var(--deep);
    border-color: var(--deep);
    box-shadow: 0 8px 24px rgba(13, 75, 62, 0.18);
    transform: translateY(-3px);
}

.qf-tab-num {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--olive);
    transition: color 0.3s ease;
}

.qf-tab-btn.active .qf-tab-num {
    color: var(--signal);
}

.qf-tab-text {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.3s ease;
}

.qf-tab-btn.active .qf-tab-text {
    color: #FFFFFF;
}

.qf-about-tab-panels {
    max-width: 1100px;
    margin: 0 auto;
}

.qf-tab-panel {
    display: none;
}

.qf-tab-panel.active {
    display: block;
    animation: qfPanelFade 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes qfPanelFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qf-tab-grid {
    background: #FFFFFF;
    border-radius: var(--qf-radius-lg);
    border: 1px solid var(--mist);
    overflow: hidden;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    box-shadow: 0 10px 32px rgba(21, 33, 30, 0.06);
}

.qf-tab-copy {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qf-tab-badge {
    display: inline-block;
    background: #EAF0E8;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.qf-tab-copy h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    line-height: 1.2;
    color: var(--deep);
    margin: 0 0 14px;
}

.qf-tab-copy p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.65;
    margin: 0 0 24px;
}

.qf-feature-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--ink);
    line-height: 1.5;
}

.qf-feature-checklist li {
    position: relative;
    padding-left: 24px;
}

.qf-feature-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 900;
}

.qf-feature-checklist strong {
    color: var(--deep);
}

.qf-tab-visual {
    background: #EAF0E8;
    overflow: hidden;
    position: relative;
}

.qf-tab-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.qf-tab-grid:hover .qf-tab-visual img {
    transform: scale(1.04);
}

/* 5. Timeline Section */
.qf-about-timeline-section {
    padding: 88px 0;
}

.qf-timeline-wrap {
    position: relative;
    max-width: 960px;
    margin: 56px auto 0;
}

.qf-timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48px;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand) 0%, rgba(85, 200, 58, 0.2) 100%);
    z-index: 1;
}

.qf-timeline-cards {
    display: grid;
    gap: 36px;
    position: relative;
    z-index: 2;
}

.qf-timeline-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.qf-time-bullet {
    width: 98px;
    height: 44px;
    background: var(--deep);
    color: var(--signal);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(13, 75, 62, 0.16);
    border: 2px solid #FFFFFF;
    transition: transform var(--qf-transition), background-color var(--qf-transition);
}

.qf-timeline-card:hover .qf-time-bullet {
    transform: scale(1.06);
    background: var(--olive);
    color: #FFFFFF;
}

.qf-time-box {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: var(--qf-radius);
    padding: 26px 30px;
    flex-grow: 1;
    box-shadow: 0 4px 16px rgba(21, 33, 30, 0.04);
    transition: transform var(--qf-transition), box-shadow var(--qf-transition), border-color var(--qf-transition);
}

.qf-timeline-card:hover .qf-time-box {
    transform: translateX(6px);
    border-color: rgba(85, 200, 58, 0.45);
    box-shadow: 0 8px 24px rgba(13, 75, 62, 0.08);
}

.qf-time-year {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--olive);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.qf-time-box h3 {
    font-size: 1.35rem;
    color: var(--deep);
    margin: 0 0 10px;
}

.qf-time-box p {
    font-size: 0.94rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* 6. Operational Discipline: Boundary Cards */
.qf-about-boundaries {
    padding: 88px 0;
}

.qf-boundary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}

.qf-boundary-card {
    background: #FFFFFF;
    border-radius: var(--qf-radius-lg);
    border: 1px solid var(--mist);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(21, 33, 30, 0.04);
    transition: transform var(--qf-transition), box-shadow var(--qf-transition);
}

.qf-boundary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(21, 33, 30, 0.08);
}

.qf-boundary-card--focus {
    border-top: 4px solid var(--brand);
}

.qf-boundary-card--boundary {
    border-top: 4px solid #A1A8A3;
}

.qf-boundary-badge {
    display: inline-block;
    background: #EAF0E8;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.qf-boundary-badge--neutral {
    background: #F1F3F2;
    color: var(--slate);
}

.qf-boundary-head h3 {
    font-size: 1.5rem;
    color: var(--deep);
    margin: 0 0 20px;
}

.qf-boundary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    font-size: 0.94rem;
    color: var(--ink);
    line-height: 1.55;
}

.qf-boundary-list strong {
    color: var(--deep);
}

/* 7. Gallery Section */
.qf-about-gallery {
    padding: 88px 0;
}

.qf-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 48px;
}

.qf-gallery-item {
    position: relative;
    border-radius: var(--qf-radius);
    overflow: hidden;
    background: #EAF0E8;
    box-shadow: 0 6px 20px rgba(21, 33, 30, 0.05);
}

.qf-gallery-item--large {
    grid-row: span 2;
}

.qf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.qf-gallery-item:hover img {
    transform: scale(1.05);
}

.qf-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(13, 75, 62, 0.95) 0%, rgba(13, 75, 62, 0) 100%);
    color: #FFFFFF;
    transition: opacity var(--qf-transition);
}

.qf-gallery-caption strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.qf-gallery-caption span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Overrides for About Page */
@media (max-width: 1080px) {
    .qf-about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .qf-dual-base-grid,
    .qf-boundary-grid {
        grid-template-columns: 1fr;
    }
    .qf-about-tab-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    .qf-tab-grid {
        grid-template-columns: 1fr;
    }
    .qf-tab-visual {
        height: 320px;
    }
    .qf-gallery-grid {
        grid-template-columns: 1fr;
    }
    .qf-gallery-item--large {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .qf-about-hero {
        padding: 60px 0 50px;
    }
    .qf-about-tab-nav {
        grid-template-columns: 1fr;
    }
    .qf-tab-copy {
        padding: 28px 20px;
    }
    .qf-timeline-track {
        left: 20px;
    }
    .qf-timeline-card {
        flex-direction: column;
        gap: 12px;
        padding-left: 48px;
    }
    .qf-time-bullet {
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 0.72rem;
        border-radius: 50%;
    }
}

/* ==========================================================================
   EXPORT & SHIPPING SUPPORT PAGE (/export-shipping/)
   Built from DESIGN(20260921-052233).md: angled hero, 28px cards, Deep Green
   evidence panels, Signal Lime accents, Brand Green CTA. The carousel and the
   two accordions are the WP Behaviors components (data-behavior), so the
   reduced-motion handling, keyboard support and ARIA come from the library.
   ========================================================================== */

/* 1. Hero: Deep Green band with an angled bottom edge. */
.qf-export-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 132px;
    background: var(--deep);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 54px), 0 100%);
}

.qf-export-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qf-export-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.34;
}

.qf-export-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(6, 44, 36, 0.94) 0%, rgba(13, 75, 62, 0.86) 52%, rgba(13, 75, 62, 0.6) 100%);
}

.qf-export-hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
}

.qf-export-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 7px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 255, 0, 0.35);
}

.qf-export-hero-badge .qf-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal);
    flex-shrink: 0;
}

.qf-export-hero-badge .qf-eyebrow {
    margin: 0;
    color: var(--signal);
}

.qf-export-hero-title {
    font-size: clamp(2.1rem, 3.8vw, 3.3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin: 14px 0 20px;
}

.qf-export-hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 800px;
    margin: 0 0 34px;
}

.qf-export-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.qf-export-hero-actions .qf-btn--outline {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.55);
}

.qf-export-hero-actions .qf-btn--outline:hover {
    background: #FFFFFF;
    color: var(--deep);
    border-color: #FFFFFF;
}

.qf-export-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-export-hero-chips li {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
/* 2. Export figures strip. */
.qf-export-stats {
    background: #FFFFFF;
    padding: 54px 0;
    border-bottom: 1px solid var(--mist);
}

.qf-export-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.qf-export-stat {
    border-left: 2px solid rgba(85, 200, 58, 0.4);
    padding-left: 20px;
    transition: transform var(--qf-transition), border-color var(--qf-transition);
}

.qf-export-stat:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
}

.qf-export-stat-val {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: 6px;
}

.qf-export-stat-val strong,
.qf-export-stat-word {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.2vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--deep);
}

.qf-export-stat-plus,
.qf-export-stat-unit {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand);
}

.qf-export-stat--word .qf-export-stat-unit {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.qf-export-stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.qf-export-stat-sub {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--slate);
    margin: 0;
}

/* 3. Trade-term carousel. The library swaps the hidden attribute; the fade is
   its own --carousel-duration animation. */
.qf-export-terms {
    background: #FFFFFF;
}

.qf-export-carousel {
    --carousel-duration: 420ms;
}

.qf-export-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(21, 33, 30, 0.07);
}

.qf-export-slide[hidden] {
    display: none;
}

.qf-export-slide-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 900 / 560;
    object-fit: cover;
    display: block;
}

.qf-export-slide-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 48px;
}

.qf-export-term-code {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--olive);
    background: var(--pale);
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 18px;
}

.qf-export-term-name {
    font-size: clamp(1.5rem, 2.1vw, 1.9rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 14px;
}

.qf-export-term-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--slate);
    margin: 0 0 22px;
}

.qf-export-term-facts {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--mist);
}

.qf-export-term-facts div {
    display: grid;
    grid-template-columns: 152px 1fr;
    gap: 14px;
}

.qf-export-term-facts dt {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    padding-top: 3px;
}

.qf-export-term-facts dd {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--ink);
}

.qf-export-carousel-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.qf-export-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--mist);
    background: #FFFFFF;
    color: var(--deep);
    font-size: 1.05rem;
    cursor: pointer;
    transition: background var(--qf-transition), color var(--qf-transition), border-color var(--qf-transition);
}

.qf-export-arrow:hover {
    background: var(--deep);
    border-color: var(--deep);
    color: #FFFFFF;
}

.qf-export-dots {
    display: flex;
    gap: 8px;
    margin: 0 4px;
}

.qf-export-dots button {
    width: 34px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 75, 62, 0.18);
    cursor: pointer;
    transition: background var(--qf-transition), width var(--qf-transition);
}

.qf-export-dots button[aria-current="true"] {
    width: 52px;
    background: var(--deep);
}

.qf-export-play {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--mist);
    background: #FFFFFF;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep);
    cursor: pointer;
    transition: background var(--qf-transition), color var(--qf-transition), border-color var(--qf-transition);
}

.qf-export-play[aria-pressed="true"] {
    background: var(--deep);
    border-color: var(--deep);
    color: #FFFFFF;
}

.qf-export-carousel-status {
    margin: 0 0 0 auto;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
}

.qf-export-arrow:focus-visible,
.qf-export-play:focus-visible,
.qf-export-dots button:focus-visible,
.qf-export-acc-trigger:focus-visible,
.qf-export-faq-trigger:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 2px;
}
/* 4. Responsibility matrix. The wrapper scrolls horizontally on a narrow screen. */
.qf-export-table-wrap {
    padding: 8px;
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 24px;
    box-shadow: 0 8px 26px rgba(21, 33, 30, 0.05);
    overflow-x: auto;
}

.qf-export-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.qf-export-table thead th {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    color: #FFFFFF;
    background: var(--deep);
    padding: 16px 18px;
    white-space: nowrap;
}

.qf-export-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.qf-export-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.qf-export-table tbody tr:nth-child(even) {
    background: rgba(245, 247, 246, 0.75);
}

.qf-export-table tbody th {
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
    padding: 16px 18px;
    max-width: 320px;
}

.qf-export-table td {
    padding: 16px 18px;
    vertical-align: middle;
}

.qf-export-cell {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 999px;
}

.qf-export-cell--us {
    background: var(--pale);
    color: var(--olive);
    border: 1px solid rgba(82, 119, 0, 0.25);
}

.qf-export-cell--buyer {
    background: var(--soft);
    color: var(--slate);
    border: 1px solid var(--mist);
}

.qf-export-cell--check {
    background: var(--sand);
    color: #7A5B18;
    border: 1px solid rgba(213, 138, 36, 0.35);
}

.qf-export-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 24px 0 0;
}

.qf-export-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate);
}

.qf-export-note {
    max-width: 1000px;
    margin: 20px 0 0;
    padding-left: 18px;
    border-left: 3px solid var(--brand);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
}

/* 5. Transport-mode accordion. --disclosure-duration is the library hook. */
.qf-export-accordion {
    --disclosure-duration: 320ms;
    display: grid;
    gap: 14px;
}

.qf-export-acc-item {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color var(--qf-transition), box-shadow var(--qf-transition);
}

.qf-export-acc-item[data-state="open"] {
    border-color: rgba(85, 200, 58, 0.55);
    box-shadow: 0 12px 32px rgba(13, 75, 62, 0.08);
}

.qf-export-acc-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 44px;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.qf-export-acc-num {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand);
}

.qf-export-acc-title {
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.qf-export-acc-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.qf-export-acc-icon::before,
.qf-export-acc-icon::after {
    content: "";
    position: absolute;
    background: var(--deep);
    border-radius: 2px;
    transition: transform var(--qf-transition), opacity var(--qf-transition);
}

.qf-export-acc-icon::before {
    top: 50%;
    left: 0;
    width: 22px;
    height: 2px;
    transform: translateY(-50%);
}

.qf-export-acc-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 22px;
    transform: translateX(-50%);
}

[aria-expanded="true"] .qf-export-acc-icon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

.qf-export-acc-inner {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 34px;
    padding: 0 28px 30px;
}

.qf-export-acc-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.qf-export-acc-copy p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.68;
    color: var(--slate);
}

.qf-export-acc-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-export-acc-list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink);
}

.qf-export-acc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
}
/* 6. Shipping release: ten conditions and the document set. */
.qf-export-ready-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: start;
}

.qf-export-check-list {
    counter-reset: qf-export-check;
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
}

.qf-export-check-list li {
    counter-increment: qf-export-check;
    position: relative;
    padding: 16px 20px 16px 62px;
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 16px;
    font-size: 0.99rem;
    line-height: 1.55;
    color: var(--ink);
    transition: border-color var(--qf-transition), transform var(--qf-transition);
}

.qf-export-check-list li::before {
    content: counter(qf-export-check, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--brand);
}

.qf-export-check-list li:hover {
    border-color: rgba(85, 200, 58, 0.5);
    transform: translateX(4px);
}

.qf-export-ready-aside {
    display: grid;
    gap: 22px;
}

.qf-export-ready-media img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: var(--qf-shadow);
}

.qf-export-ready-card {
    padding: 30px 28px;
    background: var(--deep);
    border-radius: 24px;
}

.qf-export-ready-card h3 {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.qf-export-ready-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
}

.qf-export-ready-docs {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-export-ready-docs li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.qf-export-ready-docs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--signal);
    transform: rotate(45deg);
}

/* 7. Post-shipment milestones. */
.qf-export-track-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-export-track-card {
    position: relative;
    padding: 30px 26px 26px;
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 22px;
    overflow: hidden;
    transition: transform var(--qf-transition), box-shadow var(--qf-transition), border-color var(--qf-transition);
}

.qf-export-track-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--brand), var(--signal));
}

.qf-export-track-card:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 200, 58, 0.45);
    box-shadow: var(--qf-shadow);
}

.qf-export-track-num {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--pale);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--olive);
}

.qf-export-track-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.qf-export-track-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--slate);
    margin: 0;
}
/* 8. Destination check. */
.qf-export-dest-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: center;
}

.qf-export-dest-media img {
    width: 100%;
    border-radius: 28px;
    display: block;
    box-shadow: var(--qf-shadow);
}

.qf-export-dest-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.qf-export-dest-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ink);
}

.qf-export-dest-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 14px;
    height: 14px;
    border: 2px solid var(--brand);
    border-radius: 4px;
}

.qf-export-warning {
    margin: 28px 0 0;
    padding: 16px 20px;
    background: rgba(213, 138, 36, 0.1);
    border-left: 3px solid var(--warning);
    border-radius: 0 14px 14px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B4A12;
}

/* 9. Quote transparency. */
.qf-export-quote-panel {
    padding: 48px 50px;
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 28px;
    box-shadow: 0 10px 34px rgba(21, 33, 30, 0.06);
}

.qf-export-quote-copy h2 {
    max-width: 720px;
}

.qf-export-quote-copy p {
    max-width: 780px;
    margin: 0 0 30px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--slate);
}

.qf-export-quote-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qf-export-quote-list li {
    position: relative;
    padding-left: 30px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ink);
}

.qf-export-quote-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--signal);
}

.qf-export-quote-note {
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--mist);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
}

/* 10. Trade questions accordion. */
.qf-export-faq-wrap {
    --disclosure-duration: 300ms;
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.qf-export-faq-item {
    background: #FFFFFF;
    border: 1px solid var(--mist);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color var(--qf-transition);
}

.qf-export-faq-item[data-state="open"] {
    border-color: rgba(85, 200, 58, 0.5);
}

.qf-export-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 44px;
    padding: 22px 26px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.qf-export-faq-q {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.qf-export-faq-panel p {
    max-width: 780px;
    margin: 0;
    padding: 0 26px 24px;
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--slate);
}

/* 11. Centred section header, scoped to this page (About uses the same classes). */
.qf-export-page .qf-center-header {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.qf-export-page .qf-lead--centered {
    margin-inline: auto;
}

.qf-export-cta .qf-cta-title {
    max-width: 720px;
}
/* 12. Responsive behaviour of the export page. */
@media (max-width: 1080px) {
    .qf-export-hero {
        padding: 88px 0 112px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%);
    }

    .qf-export-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .qf-export-slide {
        grid-template-columns: 1fr;
    }

    .qf-export-slide-media img {
        aspect-ratio: 16 / 9;
    }

    .qf-export-slide-body {
        padding: 34px 30px;
    }

    .qf-export-acc-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .qf-export-ready-grid,
    .qf-export-dest-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .qf-export-quote-panel {
        padding: 38px 32px;
    }
}

@media (max-width: 720px) {
    .qf-export-hero {
        padding: 76px 0 96px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 0 100%);
    }

    .qf-export-hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .qf-export-hero-lead {
        font-size: 1.05rem;
    }

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

    .qf-export-stats-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .qf-export-term-facts div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .qf-export-carousel-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .qf-export-carousel-status {
        width: 100%;
        margin-left: 0;
    }

    .qf-export-acc-trigger {
        gap: 14px;
        padding: 20px;
    }

    .qf-export-acc-inner {
        padding: 0 20px 24px;
    }

    .qf-export-check-list li {
        padding: 14px 16px 14px 54px;
    }

    .qf-export-dest-list,
    .qf-export-quote-list {
        grid-template-columns: 1fr;
    }

    .qf-export-track-grid {
        grid-template-columns: 1fr;
    }

    .qf-export-quote-panel {
        padding: 28px 22px;
    }

    .qf-export-ready-card {
        padding: 24px 22px;
    }

    .qf-export-faq-trigger {
        padding: 20px;
    }

    .qf-export-faq-panel p {
        padding: 0 20px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qf-export-stat:hover,
    .qf-export-track-card:hover,
    .qf-export-check-list li:hover {
        transform: none;
    }
}
