/* ==========================================================================
   pick-pack-v2.css — English Pick and Pack page redesign
   (default/en/new/pick-pack.tpl ONLY).
   Loaded AFTER /app/css/en/new/index-v2.css. The page wrapper carries both
   .index-v2 (shared base + nav-box / main7 / footer / go-top restyles, so the
   shared components render exactly like the redesigned homepage) and
   .pick-pack-v2 (this file: the page-level .pp-* modules ported from
   md文档/英文官网首页等页面改版/改版-pickpack页/styles.css).
   Images live flat in /app/images/en/new/service/.
   ========================================================================== */

/* ----------------------------------------------------------------- base -- */
.pick-pack-v2 {
    background: #f7f8fb;
}

/* reference body base (font 400 17px/1.72 Roboto) scoped to the pp sections;
   bootstrap body would otherwise give 14px/1.42857 */
.pick-pack-v2 section {
    font-family: Roboto, Arial, "Helvetica Neue", sans-serif;
    font-size: 17px;
    line-height: 1.72;
}

/* main.css hits EVERY element directly — `* { font-family:"Rubik-Light" }`
   and `div,span,p,h1..h6 { font-size:16px }` — which beats inheritance and
   breaks the reference typography chain (e.g. btn > span rendering 16px
   Rubik, p rendering 16px). Restore inheritance for everything except the
   headings: h1–h3 keep Inter from index-v2.css `.index-v2 h1,h2,h3`, and
   every module rule that sets an explicit font is (0,2,x)+ so it still
   wins over this (0,1,4) blanket rule. */
.pick-pack-v2 section *:not(h1):not(h2):not(h3) {
    font-family: inherit;
    font-size: inherit;
}

.pick-pack-v2 section img {
    display: block;
    max-width: 100%;
}

.pick-pack-v2 section a {
    color: inherit;
    text-decoration: none;
}

/* the reference renders on browser defaults (headings bold, p margin 1em) —
   bootstrap would give weight 500 / 10px. Module rules with explicit
   font: 700/800 shorthands or margins keep winning on specificity. */
.pick-pack-v2 section h1,
.pick-pack-v2 section h2,
.pick-pack-v2 section h3 {
    font-weight: 700;
}

.pick-pack-v2 section p {
    margin: 1em 0;
}

.pick-pack-v2 .heading-accent {
    color: var(--orange);
}

.pick-pack-v2 .btn-orange-light {
    color: #fff !important;
    background: var(--orange);
}

.pick-pack-v2 .text-link.light {
    color: var(--ink);
}

/* in-content text links become orange buttons (reference .pick-pack-page rules) */
.pick-pack-v2 .pp-definition .text-link,
.pick-pack-v2 .pp-intro .text-link,
.pick-pack-v2 .pp-video .text-link,
.pick-pack-v2 .pp-seo .text-link,
.pick-pack-v2 .pp-cost .text-link {
    color: #fff;
    background: var(--orange);
}

.pick-pack-v2 .pp-definition .text-link:hover,
.pick-pack-v2 .pp-intro .text-link:hover,
.pick-pack-v2 .pp-video .text-link:hover,
.pick-pack-v2 .pp-seo .text-link:hover,
.pick-pack-v2 .pp-cost .text-link:hover {
    color: #fff;
    background: var(--orange-dark);
}

/* ----------------------------------------------------------------- hero -- */
/* desktop keeps the reference 184px top padding (134px fixed header + air);
   the reference's preview-only 96px override is intentionally NOT ported */
.pick-pack-v2 .pp-hero {
    position: relative;
    min-height: 0;
    padding: 184px 0 132px;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
}

.pick-pack-v2 .pp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 8, 23, .96) 0%, rgba(2, 8, 23, .86) 40%, rgba(2, 8, 23, .36) 74%, rgba(2, 8, 23, .22) 100%), url(/app/images/en/new/service/order-fulfillment.webp) center / cover no-repeat;
}

.pick-pack-v2 .pp-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.pick-pack-v2 .pp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.pick-pack-v2 .pp-hero-copy {
    max-width: 660px;
}

.pick-pack-v2 .pp-hero-copy h1 {
    max-width: 640px;
    margin: 18px 0 22px;
    font: 800 clamp(42px, 5vw, 72px)/1.04 Inter, Roboto, sans-serif;
    letter-spacing: -.045em;
}

.pick-pack-v2 .pp-hero-copy h1 em {
    color: var(--orange);
    font-style: normal;
}

.pick-pack-v2 .pp-hero-copy > p {
    max-width: 590px;
    margin: 0 0 30px;
    color: #d5dce7;
    font-size: 18px;
    line-height: 1.75;
}

.pick-pack-v2 .pp-hero-visual {
    position: relative;
    padding: 0 0 48px;
}

.pick-pack-v2 .pp-hero-visual img {
    display: block;
    width: 100%;
    height: 410px;
    object-fit: cover;
    border: 7px solid rgba(255, 255, 255, .9);
    border-radius: 24px 5px 24px 5px;
    box-shadow: 0 26px 65px rgba(0, 0, 0, .3);
}

.pick-pack-v2 .pp-floating-stat {
    position: absolute;
    right: -25px;
    bottom: 8px;
    width: 170px;
    padding: 20px 18px;
    color: var(--ink);
    background: #fff;
    border-top: 5px solid var(--orange);
    border-radius: 7px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.pick-pack-v2 .pp-floating-stat strong {
    display: block;
    color: var(--orange);
    font: 800 34px/1 Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-floating-stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

/* ---------------------------------------------------------------- stats -- */
.pick-pack-v2 .pp-stats-wrap {
    position: relative;
    z-index: 3;
    margin-top: -62px;
    padding-bottom: 18px;
}

.pick-pack-v2 .pp-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(21, 32, 51, .08);
    border-radius: 16px 4px 16px 4px;
    box-shadow: 0 22px 55px rgba(18, 28, 45, .14);
    overflow: hidden;
}

.pick-pack-v2 .pp-stat-strip > div {
    position: relative;
    min-height: 124px;
    padding: 25px 25px 22px;
    border-right: 1px solid var(--line);
}

.pick-pack-v2 .pp-stat-strip > div:last-child {
    border-right: 0;
}

.pick-pack-v2 .pp-stat-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #c8cdd5;
    font: 700 11px Inter, Roboto, sans-serif;
    letter-spacing: .08em;
}

.pick-pack-v2 .pp-stat-strip strong {
    display: block;
    color: var(--orange);
    font: 800 32px/1 Inter, Roboto, sans-serif;
    letter-spacing: -.03em;
}

.pick-pack-v2 .pp-stat-strip small {
    display: block;
    margin-top: 13px;
    color: var(--muted);
    font: 700 11px Inter, Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: .09em;
}

/* ------------------------------------------------- definition / intro ---- */
.pick-pack-v2 .pp-intro {
    padding-top: 90px;
}

.pick-pack-v2 .pp-definition {
    background: #f7f8fb;
}

.pick-pack-v2 .pp-definition-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 78px;
    align-items: center;
}

.pick-pack-v2 .pp-definition-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pick-pack-v2 .pp-definition-points article {
    padding: 24px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px 14px 4px 14px;
    box-shadow: 0 12px 30px rgba(31, 42, 68, .06);
}

.pick-pack-v2 .pp-definition-points span {
    color: var(--orange);
    font: 800 18px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-definition-points h3 {
    margin: 12px 0 8px;
    font-size: 17px;
}

.pick-pack-v2 .pp-definition-points p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.pick-pack-v2 .pp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pick-pack-v2 .pp-feature-grid article {
    min-height: 160px;
    padding: 22px 18px;
}

.pick-pack-v2 .pp-feature-grid article > span {
    color: var(--orange);
    font: 800 22px/1 Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-feature-grid h3 {
    margin-top: 0;
}

/* ------------------------------------------------------------ packaging -- */
.pick-pack-v2 .pp-packaging {
    background: #fff;
}

.pick-pack-v2 .pp-split,
.pick-pack-v2 .pp-video-grid,
.pick-pack-v2 .pp-growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pick-pack-v2 .pp-image-stack {
    position: relative;
    min-height: 440px;
}

.pick-pack-v2 .pp-image-main {
    width: 85%;
    height: 370px;
    object-fit: cover;
    border-radius: 18px 4px 18px 4px;
    box-shadow: 0 18px 40px rgba(20, 31, 51, .15);
}

.pick-pack-v2 .pp-image-inset {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 200px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 4px 18px 4px 18px;
    box-shadow: 0 15px 32px rgba(20, 31, 51, .2);
}

.pick-pack-v2 .pp-image-label {
    position: absolute;
    left: 22px;
    bottom: 24px;
    padding: 10px 14px;
    color: #fff;
    background: var(--orange);
    font: 700 11px Inter, Roboto, sans-serif;
    letter-spacing: .08em;
}

.pick-pack-v2 .pp-check-list {
    margin: 26px 0 30px;
}

.pick-pack-v2 .pp-check-list p {
    display: flex;
    gap: 14px;
    margin: 0 0 15px;
    color: var(--ink);
}

.pick-pack-v2 .pp-check-list b {
    flex: 0 0 auto;
    color: var(--orange);
    font: 800 15px Inter, Roboto, sans-serif;
}

/* -------------------------------------------------------------- process -- */
.pick-pack-v2 .pp-process {
    background: #f0f3f7;
}

.pick-pack-v2 .pp-process-line {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 190px);
    row-gap: 74px;
    margin-top: 76px;
}

.pick-pack-v2 .pp-process-line::before {
    display: none;
}

.pick-pack-v2 .pp-process-curve {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.pick-pack-v2 .pp-process-curve path {
    fill: none;
    stroke: url(#pp-process-gradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 9 9;
}

.pick-pack-v2 .pp-process-line article {
    z-index: 1;
    min-height: 190px;
    padding: 0 30px;
}

.pick-pack-v2 .pp-process-line article:nth-of-type(4) {
    grid-column: 3;
    grid-row: 2;
}

.pick-pack-v2 .pp-process-line article:nth-of-type(5) {
    grid-column: 2;
    grid-row: 2;
}

.pick-pack-v2 .pp-process-line article:nth-of-type(6) {
    grid-column: 1;
    grid-row: 2;
}

.pick-pack-v2 .pp-process-line .process-number {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border: 7px solid #f0f3f7;
    border-radius: 50%;
    font: 800 18px Inter, Roboto, sans-serif;
    box-shadow: 0 8px 18px rgba(245, 101, 27, .24);
}

.pick-pack-v2 .pp-process-line h3 {
    margin-bottom: 12px;
}

/* ---------------------------------------------------------------- video -- */
.pick-pack-v2 .pp-video {
    background: #fff;
}

.pick-pack-v2 .pp-video-frame {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 18px 4px 18px 4px;
    background: var(--navy);
    box-shadow: 0 20px 48px rgba(20, 31, 51, .18);
}

.pick-pack-v2 .pp-video-frame iframe {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
}

.pick-pack-v2 .pp-video-cover {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity .3s ease, visibility .3s ease;
}

.pick-pack-v2 .pp-video-frame::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(2, 8, 23, .08) 20%, rgba(2, 8, 23, .72));
    transition: opacity .3s ease;
}

.pick-pack-v2 .pp-video-caption {
    position: absolute;
    z-index: 4;
    left: 26px;
    bottom: 22px;
    color: #fff;
    font: 700 13px Inter, Roboto, sans-serif;
    letter-spacing: .08em;
    transition: opacity .3s ease, visibility .3s ease;
}

.pick-pack-v2 .pp-video-play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    width: 74px;
    height: 74px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border: 5px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 32px rgba(2, 8, 23, .3);
    cursor: pointer;
    transition: transform .25s ease, opacity .3s ease, visibility .3s ease;
}

.pick-pack-v2 .pp-video-play:hover {
    transform: translate(-50%, -50%) scale(1.07);
}

.pick-pack-v2 .pp-video-play span {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid #fff;
}

.pick-pack-v2 .pp-video-frame.is-playing .pp-video-cover,
.pick-pack-v2 .pp-video-frame.is-playing .pp-video-play,
.pick-pack-v2 .pp-video-frame.is-playing .pp-video-caption {
    opacity: 0;
    visibility: hidden;
}

.pick-pack-v2 .pp-video-frame.is-playing::after {
    opacity: 0;
}

/* --------------------------------------------------------------- growth -- */
.pick-pack-v2 .pp-growth {
    position: relative;
    color: #fff;
    background: linear-gradient(90deg, rgba(2, 8, 23, .78) 0%, rgba(2, 8, 23, .62) 52%, rgba(2, 8, 23, .70) 100%), url(/app/images/en/new/service/fulfillment-inventory-racks.webp) center 48% / cover no-repeat;
}

.pick-pack-v2 .pp-growth .section-copy h2 {
    color: #fff;
}

.pick-pack-v2 .pp-growth .section-copy p {
    color: #ccd5e1;
}

.pick-pack-v2 .pp-growth-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.pick-pack-v2 .pp-growth-points span {
    padding: 15px 12px;
    color: #fff;
    border-left: 3px solid var(--orange);
    background: rgba(255, 255, 255, .06);
    font-size: 13px;
    line-height: 1.45;
}

.pick-pack-v2 .pp-quote-card {
    position: relative;
    padding: 40px 36px 34px;
    color: var(--ink);
    background: #fff;
    border-radius: 4px 20px 4px 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .2);
}

/* index-v2.css keeps the testimonial .quote-mark base (absolute, orange,
   opacity .16) — the reference pp-quote-card cascade overrides these three */
.pick-pack-v2 .quote-mark {
    top: 14px;
    left: 25px;
    font: 800 74px/1 Georgia, serif;
}

.pick-pack-v2 .pp-quote-card p {
    margin: 28px 0 22px;
    font-size: 18px;
    line-height: 1.75;
}

.pick-pack-v2 .pp-quote-card strong {
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ------------------------------------------------------------------ seo -- */
.pick-pack-v2 .pp-seo {
    background: #fff;
}

.pick-pack-v2 .pp-seo-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 78px;
    align-items: start;
}

.pick-pack-v2 .pp-seo-intro {
    position: sticky;
    top: 170px;
}

.pick-pack-v2 .pp-seo-intro h2 {
    /* reference renders this h2 at the browser default 1.5em (it is not a
       .section-copy/.section-head h2) — bootstrap would give a fixed 30px */
    font-size: 1.5em;
    margin-bottom: 18px;
}

.pick-pack-v2 .pp-seo-intro p {
    margin-bottom: 28px;
    color: var(--muted);
}

.pick-pack-v2 .pp-seo-list {
    border-top: 1px solid var(--line);
}

.pick-pack-v2 .pp-seo-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.pick-pack-v2 .pp-seo-number {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--orange);
    background: var(--orange-soft);
    border-radius: 50%;
    font: 800 16px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-seo-card small {
    color: var(--orange);
    font: 700 11px Inter, Roboto, sans-serif;
    letter-spacing: .1em;
}

.pick-pack-v2 .pp-seo-card h3 {
    margin: 8px 0 10px;
    font-size: 22px;
}

.pick-pack-v2 .pp-seo-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.pick-pack-v2 .pp-seo-card a {
    color: var(--ink);
    border-bottom: 1px solid var(--orange);
    font: 700 13px Inter, Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ------------------------------------------------------------------ faq -- */
.pick-pack-v2 .pp-faq {
    background: #f0f3f7;
}

.pick-pack-v2 .pp-faq-list {
    max-width: 900px;
    margin: 42px auto 0;
}

.pick-pack-v2 .pp-faq-list details {
    padding: 20px 0;
    border-bottom: 1px solid #d9dee7;
}

.pick-pack-v2 .pp-faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font: 700 18px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-faq-list p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
}

/* ----------------------------------------------------------------- cost -- */
.pick-pack-v2 .pp-cost {
    background: #f7f8fb;
}

.pick-pack-v2 .pp-cost-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.pick-pack-v2 .pp-cost-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pick-pack-v2 .pp-cost-list article {
    display: flex;
    min-height: 176px;
    gap: 14px;
    padding: 22px 18px;
    background: #fff;
    border-left: 3px solid var(--orange);
    box-shadow: 0 10px 24px rgba(31, 42, 68, .05);
}

.pick-pack-v2 .pp-cost-list article > b {
    color: var(--orange);
    font: 800 16px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-cost-list h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.pick-pack-v2 .pp-cost-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ----------------------------------------------------------------- blog -- */
.pick-pack-v2 .pp-blog-links {
    background: #fff;
}

.pick-pack-v2 .pp-blog-carousel {
    margin-top: 34px;
}

.pick-pack-v2 .pp-blog-controls {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pick-pack-v2 .pp-blog-controls > span {
    color: var(--muted);
    font: 700 11px Inter, Roboto, sans-serif;
    letter-spacing: .1em;
}

.pick-pack-v2 .pp-blog-controls > div {
    display: flex;
    gap: 8px;
}

.pick-pack-v2 .pp-blog-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border: 0;
    border-radius: 50%;
    font: 500 28px/1 Inter, Roboto, sans-serif;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.pick-pack-v2 .pp-blog-controls button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.pick-pack-v2 .pp-blog-controls button:disabled {
    opacity: .35;
    cursor: default;
    transform: none;
}

.pick-pack-v2 .pp-blog-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.pick-pack-v2 .pp-blog-viewport::-webkit-scrollbar {
    display: none;
}

.pick-pack-v2 .pp-blog-grid {
    display: flex;
    gap: 14px;
}

.pick-pack-v2 .pp-blog-link {
    display: flex;
    min-height: 292px;
    flex: 0 0 calc((100% - 42px) / 4);
    flex-direction: column;
    overflow: hidden;
    background: #f7f8fb;
    border: 1px solid var(--line);
    border-radius: 4px 14px 4px 14px;
    scroll-snap-align: start;
    transition: .25s;
}

.pick-pack-v2 .pp-blog-link:hover {
    border-color: rgba(245, 101, 27, .45);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(31, 42, 68, .08);
}

.pick-pack-v2 .pp-blog-link img {
    width: 100%;
    aspect-ratio: 900 / 383;
    object-fit: cover;
    background: #e9edf3;
}

.pick-pack-v2 .pp-blog-link > div {
    display: flex;
    min-height: 150px;
    padding: 18px;
    flex: 1;
    flex-direction: column;
}

.pick-pack-v2 .pp-blog-link span {
    color: var(--orange);
    font: 800 16px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-blog-link strong {
    margin-top: 11px;
    color: var(--ink);
    font: 700 16px/1.38 Inter, Roboto, sans-serif;
}

/* -------------------------------------------------------------- quality -- */
.pick-pack-v2 .pp-quality {
    background: #fff;
}

.pick-pack-v2 .pp-quality-grid,
.pick-pack-v2 .pp-returns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    align-items: center;
}

.pick-pack-v2 .pp-quality-points {
    display: grid;
    gap: 12px;
}

.pick-pack-v2 .pp-quality-points article {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f7f8fb;
    border-left: 3px solid var(--orange);
}

.pick-pack-v2 .pp-quality-points b,
.pick-pack-v2 .pp-choice-grid b {
    color: var(--orange);
    font: 800 16px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-quality-points h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.pick-pack-v2 .pp-quality-points p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* --------------------------------------------------------- integrations -- */
.pick-pack-v2 .pp-integrations {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    isolation: isolate;
}

.pick-pack-v2 .pp-integrations::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 8, 23, .92) 0%, rgba(2, 8, 23, .62) 45%, rgba(2, 8, 23, .28) 72%, rgba(2, 8, 23, .42) 100%);
}

.pick-pack-v2 .pp-integrations::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 46%;
    background: linear-gradient(0deg, rgba(2, 8, 23, .82), transparent);
}

.pick-pack-v2 .pp-integrations-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url(/app/images/en/new/service/china-warehouse.webp) center 48% / cover no-repeat;
    transform: scale(1.012);
}

.pick-pack-v2 .pp-integrations-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, .84fr);
    gap: 24px;
    align-items: end;
}

.pick-pack-v2 .pp-integration-card {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    padding: 34px 36px;
    overflow: hidden;
    background: rgba(10, 23, 48, .88);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.pick-pack-v2 .pp-integration-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 4px;
    background: var(--orange);
}

.pick-pack-v2 .pp-integration-card-main {
    min-height: 314px;
    border-bottom: 5px solid var(--orange);
}

.pick-pack-v2 .pp-integration-card-side {
    min-height: 268px;
    margin-bottom: 23px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    border-color: rgba(255, 255, 255, .58);
}

.pick-pack-v2 .pp-integration-card .pp-seo-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    align-self: start;
    color: #fff;
    background: var(--orange);
    border-radius: 50%;
    font: 800 18px/1 Inter, Roboto, sans-serif;
    box-shadow: 0 10px 28px rgba(245, 101, 27, .28);
}

.pick-pack-v2 .pp-integration-card small {
    color: var(--orange);
    font: 800 13px/1.2 Inter, Roboto, sans-serif;
    letter-spacing: .09em;
}

.pick-pack-v2 .pp-integration-card h2,
.pick-pack-v2 .pp-integration-card h3 {
    margin: 10px 0 13px;
    color: #fff;
    line-height: 1.2;
}

.pick-pack-v2 .pp-integration-card h2 {
    font-size: clamp(27px, 2.25vw, 36px);
}

.pick-pack-v2 .pp-integration-card h3 {
    font-size: clamp(23px, 1.8vw, 29px);
}

.pick-pack-v2 .pp-integration-card p {
    margin: 0;
    color: #e3e8f0;
    font-size: 16px;
    line-height: 1.72;
}

.pick-pack-v2 .pp-integration-card-side h3 {
    color: var(--ink);
}

.pick-pack-v2 .pp-integration-card-side p {
    color: #526076;
}

/* -------------------------------------------------------------- returns -- */
.pick-pack-v2 .pp-returns {
    background: #f7f8fb;
}

.pick-pack-v2 .pp-returns-card {
    padding: 30px;
    background: #fff;
    border-top: 5px solid var(--orange);
    box-shadow: var(--shadow);
}

.pick-pack-v2 .pp-returns-card strong {
    font: 800 22px Inter, Roboto, sans-serif;
}

.pick-pack-v2 .pp-returns-card p {
    color: var(--muted);
}

/* --------------------------------------------------------------- choice -- */
.pick-pack-v2 .pp-choice {
    background: #fff;
}

.pick-pack-v2 .pp-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 35px;
}

.pick-pack-v2 .pp-choice-grid article {
    padding: 24px 18px;
    background: #f7f8fb;
    border: 1px solid var(--line);
}

.pick-pack-v2 .pp-choice-grid h3 {
    margin: 14px 0 8px;
    font-size: 17px;
}

.pick-pack-v2 .pp-choice-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
    .pick-pack-v2 .pp-hero-inner,
    .pick-pack-v2 .pp-split,
    .pick-pack-v2 .pp-video-grid,
    .pick-pack-v2 .pp-growth-grid,
    .pick-pack-v2 .pp-definition-grid,
    .pick-pack-v2 .pp-cost-grid {
        gap: 42px;
    }

    .pick-pack-v2 .pp-hero-copy h1 {
        font-size: 58px;
    }

    .pick-pack-v2 .pp-stat-strip > div {
        padding-inline: 18px;
    }

    .pick-pack-v2 .pp-stat-strip strong {
        font-size: 28px;
    }

    .pick-pack-v2 .pp-seo-layout {
        gap: 45px;
    }

    .pick-pack-v2 .pp-definition-points {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-blog-link {
        flex-basis: calc((100% - 14px) / 2);
    }
}

@media (max-width: 860px) {
    /* real-site compact header band (106px) — mirrors the homepage hero */
    .pick-pack-v2 .pp-hero {
        padding-top: 150px;
    }

    .pick-pack-v2 .pp-hero-inner,
    .pick-pack-v2 .pp-split,
    .pick-pack-v2 .pp-video-grid,
    .pick-pack-v2 .pp-growth-grid,
    .pick-pack-v2 .pp-seo-layout,
    .pick-pack-v2 .pp-definition-grid,
    .pick-pack-v2 .pp-cost-grid {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-hero-copy {
        max-width: 700px;
    }

    .pick-pack-v2 .pp-hero-copy h1 {
        font-size: clamp(42px, 10vw, 62px);
    }

    .pick-pack-v2 .pp-hero-visual {
        padding-bottom: 105px;
    }

    .pick-pack-v2 .pp-stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .pick-pack-v2 .pp-stat-strip > div:nth-child(2) {
        border-right: 0;
    }

    .pick-pack-v2 .pp-stat-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .pick-pack-v2 .pp-intro {
        padding-top: 70px;
    }

    .pick-pack-v2 .pp-image-stack {
        min-height: 390px;
    }

    .pick-pack-v2 .pp-growth-points {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-seo-intro {
        position: static;
    }

    .pick-pack-v2 .pp-cost-list {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-cost-list article {
        min-height: 0;
    }

    .pick-pack-v2 .pp-quality-grid,
    .pick-pack-v2 .pp-returns-grid,
    .pick-pack-v2 .pp-integrations-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pick-pack-v2 .pp-integrations {
        min-height: 720px;
    }

    .pick-pack-v2 .pp-integrations::before {
        background: linear-gradient(90deg, rgba(2, 8, 23, .88), rgba(2, 8, 23, .48));
    }

    .pick-pack-v2 .pp-integration-card-main,
    .pick-pack-v2 .pp-integration-card-side {
        min-height: 0;
        margin-bottom: 0;
    }

    .pick-pack-v2 .pp-choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pick-pack-v2 .pp-process-line {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        row-gap: 44px;
    }

    .pick-pack-v2 .pp-process-curve {
        display: none;
    }

    .pick-pack-v2 .pp-process-line article,
    .pick-pack-v2 .pp-process-line article:nth-of-type(4),
    .pick-pack-v2 .pp-process-line article:nth-of-type(5),
    .pick-pack-v2 .pp-process-line article:nth-of-type(6) {
        grid-column: auto;
        grid-row: auto;
        min-height: 180px;
        padding-top: 24px;
        border-top: 1px solid #d5dbe4;
    }

    .pick-pack-v2 .pp-process-line .process-number {
        margin-top: -55px;
    }
}

@media (max-width: 800px) {
    /* desktop nav hidden below 800 (main.css) — mirrors the homepage hero */
    .pick-pack-v2 .pp-hero {
        min-height: 0;
        padding: 46px 0 88px;
    }
}

@media (max-width: 600px) {
    .pick-pack-v2 .pp-hero {
        padding: 34px 0 80px;
    }

    .pick-pack-v2 .pp-hero-copy > p {
        font-size: 16px;
    }

    .pick-pack-v2 .pp-hero-visual img {
        height: 300px;
    }

    .pick-pack-v2 .pp-floating-stat {
        right: -4px;
        bottom: 42px;
        width: 145px;
        padding: 15px;
    }

    .pick-pack-v2 .pp-floating-stat strong {
        font-size: 28px;
    }

    .pick-pack-v2 .pp-integrations {
        min-height: auto;
        padding-block: 76px;
        align-items: center;
    }

    .pick-pack-v2 .pp-integrations::before {
        background: linear-gradient(180deg, rgba(2, 8, 23, .73), rgba(2, 8, 23, .91));
    }

    .pick-pack-v2 .pp-integrations-bg {
        background-position: 38% center;
    }

    .pick-pack-v2 .pp-integration-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 25px 22px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .pick-pack-v2 .pp-integration-card .pp-seo-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .pick-pack-v2 .pp-integration-card h2 {
        font-size: 27px;
    }

    .pick-pack-v2 .pp-integration-card h3 {
        font-size: 23px;
    }

    .pick-pack-v2 .pp-integration-card p {
        font-size: 16px;
    }

    .pick-pack-v2 .pp-stat-strip {
        grid-template-columns: 1fr 1fr;
    }

    .pick-pack-v2 .pp-stats-wrap {
        margin-top: -38px;
    }

    .pick-pack-v2 .pp-stat-strip > div {
        min-height: 106px;
        padding: 18px 14px;
    }

    .pick-pack-v2 .pp-stat-strip strong {
        font-size: 23px;
    }

    .pick-pack-v2 .pp-stat-strip small {
        margin-top: 10px;
        font-size: 9px;
    }

    .pick-pack-v2 .pp-stat-index {
        top: 13px;
        right: 12px;
        font-size: 9px;
    }

    .pick-pack-v2 .pp-feature-grid {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-choice-grid {
        grid-template-columns: 1fr;
    }

    .pick-pack-v2 .pp-process-line {
        grid-template-columns: 1fr;
        row-gap: 52px;
    }

    .pick-pack-v2 .pp-process-line article {
        min-height: 0;
    }

    .pick-pack-v2 .pp-image-stack {
        min-height: 320px;
    }

    .pick-pack-v2 .pp-image-main {
        width: 90%;
        height: 280px;
    }

    .pick-pack-v2 .pp-image-inset {
        height: 145px;
        width: 48%;
    }

    .pick-pack-v2 .pp-video-frame,
    .pick-pack-v2 .pp-video-frame iframe {
        min-height: 280px;
        height: 280px;
    }

    .pick-pack-v2 .pp-quote-card {
        padding: 36px 24px 26px;
    }

    .pick-pack-v2 .pp-quote-card p {
        font-size: 16px;
    }

    .pick-pack-v2 .pp-seo-card {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }

    .pick-pack-v2 .pp-seo-number {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .pick-pack-v2 .pp-blog-link {
        flex-basis: 86%;
    }

    .pick-pack-v2 .pp-blog-controls {
        align-items: flex-end;
    }
}
