/* ============================================================
   CO-PACKING PAGE — "Walk the Line"
   Design language: ink-green factory dark + Samley teal,
   conveyor motifs (ticker, twin can columns, station timeline).
   All classes are cp- prefixed and self-contained.
   ============================================================ */

:root {
    --cp-ink: #0d1f1d;
    --cp-ink-deep: #091614;
    --cp-teal: var(--color-primary, #00AE9C);
    --cp-teal-soft: rgba(0, 174, 156, 0.10);
    --cp-paper: #ffffff;
    --cp-paper-warm: #f6faf9;
    --cp-text: #231F20;
    --cp-muted: #6F7C7C;
    --cp-line: rgba(13, 31, 29, 0.10);
    --cp-radius: 14px;
    --cp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.cp-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* ── Shared type ─────────────────────────────────────────── */

.cp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cp-teal);
    margin-bottom: 14px;
}
.cp-eyebrow--light { color: #35cfbf; }
.cp-eyebrow i { font-size: 9px; }

.cp-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 5vw, 3.9rem);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 20px;
}
.cp-h1 em {
    font-style: italic;
    font-weight: 500;
    color: #7be3d6;
}

.cp-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 700;
    color: var(--cp-text);
    line-height: 1.18;
    margin: 0 0 14px;
}
.cp-h2--light { color: #ffffff; }

.cp-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cp-muted);
    line-height: 1.65;
    margin: 0;
}

.cp-intro { margin-bottom: 48px; }
.cp-intro--center {
    text-align: center;
}
.cp-intro--center .cp-sub { max-width: 560px; margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────── */

.cp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 999px;
    transition: transform 0.25s var(--cp-ease), box-shadow 0.25s var(--cp-ease), background 0.25s;
    cursor: pointer;
}
.cp-btn i { transition: transform 0.25s var(--cp-ease); }
.cp-btn:hover i { transform: translateX(4px); }
.cp-btn--primary {
    background: var(--cp-teal);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 174, 156, 0.35);
}
.cp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 174, 156, 0.5);
}
.cp-btn--ghost {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cp-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}
.cp-btn--ghost:hover i { transform: translateY(3px); }
.cp-btn--lg { padding: 17px 36px; font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */

.cp-hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 75% 20%, rgba(0, 174, 156, 0.16), transparent 60%),
        linear-gradient(180deg, var(--cp-ink-deep) 0%, var(--cp-ink) 100%);
    overflow: hidden;
    padding-top: 140px;
}

/* faint engineering grid */
.cp-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 75%);
    pointer-events: none;
}

.cp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 56px;
    align-items: center;
    padding-bottom: 72px;
}

.cp-hero-lede {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    margin: 0 0 18px;
}
.cp-hero-lede span { color: #7be3d6; }

.cp-hero-body {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 0 32px;
}

.cp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* hero entrance */
@keyframes cpHeroIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cp-hero-fade {
    animation: cpHeroIn 0.9s var(--cp-ease) var(--d, 0ms) both;
}

/* ── Twin conveyor columns ── */

.cp-hero-conveyor {
    position: relative;
    display: flex;
    gap: 18px;
    justify-content: center;
    height: 480px;
    padding-bottom: 26px;
}

.cp-conveyor-col {
    width: 150px;
    overflow: hidden;
    border-radius: 16px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.cp-conveyor-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cp-conveyor-col--up .cp-conveyor-track   { animation: cpConveyUp 26s linear infinite; }
.cp-conveyor-col--down .cp-conveyor-track { animation: cpConveyDown 30s linear infinite; }

@keyframes cpConveyUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
@keyframes cpConveyDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}

.cp-conveyor-track figure {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f2f2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cp-conveyor-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-conveyor-caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Conveyor ticker strip ── */

.cp-ticker {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding-block: 15px;
}
.cp-ticker-track {
    display: flex;
    width: max-content;
    animation: cpTicker 36s linear infinite;
}
@keyframes cpTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.cp-ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.cp-ticker-group span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding-inline: 28px;
    white-space: nowrap;
}
.cp-ticker-group i {
    font-size: 6px;
    color: var(--cp-teal);
}

/* ============================================================
   WHO WE CO-PACK FOR
   ============================================================ */

.cp-who {
    background: var(--cp-paper);
    padding-block: 90px;
}

.cp-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cp-who-card {
    position: relative;
    background: var(--cp-paper-warm);
    border: 1px solid var(--cp-line);
    border-radius: var(--cp-radius);
    padding: 30px 24px 26px;
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease), border-color 0.3s;
}
.cp-who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(13, 31, 29, 0.10);
    border-color: rgba(0, 174, 156, 0.35);
}

/* batch code — like the date-lot code inkjetted on a can end */
.cp-batch {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(13, 31, 29, 0.30);
}

.cp-who-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--cp-teal-soft);
    color: var(--cp-teal);
    font-size: 20px;
    margin-bottom: 18px;
    transition: transform 0.3s var(--cp-ease);
}
.cp-who-card:hover .cp-who-icon { transform: translateY(-3px) rotate(-6deg); }

.cp-who-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--cp-text);
    line-height: 1.35;
    margin: 0 0 10px;
}
.cp-who-card p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--cp-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   THE LINE — capabilities + can diagram
   ============================================================ */

.cp-line {
    background:
        radial-gradient(ellipse 70% 90% at 20% 50%, rgba(0, 174, 156, 0.10), transparent 60%),
        var(--cp-ink);
    padding-block: 100px;
    overflow: hidden;
}

.cp-line-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
}

.cp-line-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 18px;
}

.cp-line-note {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: #7be3d6;
    line-height: 1.6;
    margin: 0 0 40px;
    padding-left: 18px;
    border-left: 2px solid rgba(0, 174, 156, 0.5);
}

.cp-line-stats {
    display: flex;
    gap: 0;
}
.cp-stat {
    flex: 1;
    padding-inline: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.cp-stat:first-child { padding-left: 0; border-left: none; }
.cp-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}
.cp-stat-label {
    display: block;
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ── CSS can spec diagram ── */

.cp-can-diagram {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 56px;
    padding: 20px 10px 58px;
}

.cp-can {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 108px;
}
.cp-can--250 .cp-can-body { height: 200px; }
.cp-can--355 .cp-can-body { height: 274px; }

.cp-can-lid {
    position: relative;
    height: 14px;
    border-radius: 10px 10px 2px 2px;
    background: linear-gradient(180deg, #dfe6e5 0%, #9fb0ad 60%, #7c8f8c 100%);
    box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.25);
}
.cp-can-lid::after {
    /* tab */
    content: "";
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 8px;
    border-radius: 999px;
    background: rgba(13, 31, 29, 0.35);
}

.cp-can-body {
    position: relative;
    border-radius: 3px 3px 12px 12px;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.22) 18%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.16) 72%,
            rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(180deg, #12312d 0%, #0e2624 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-can-vol {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}
.cp-can-vol small {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 3px;
}

/* dimension callouts */
.cp-can-callout {
    position: absolute;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #7be3d6;
    white-space: nowrap;
}
.cp-can-callout--lid {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 16px;
    background:
        linear-gradient(180deg, transparent 14px, rgba(123, 227, 214, 0.6) 14px) no-repeat center bottom / 1px 14px;
}
.cp-can-callout--body {
    top: 50%;
    right: -14px;
    transform: translate(100%, -50%);
    padding-left: 18px;
    background:
        linear-gradient(90deg, rgba(123, 227, 214, 0.6), rgba(123, 227, 214, 0.6)) no-repeat left center / 12px 1px;
}

.cp-can-baseline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    border-top: 1px dashed rgba(255, 255, 255, 0.22);
    text-align: center;
}
.cp-can-baseline span {
    position: relative;
    top: 10px;
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* ============================================================
   BEVERAGES WE FILL
   ============================================================ */

.cp-beverages {
    background: var(--cp-paper);
    padding-block: 96px;
}

.cp-bev-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.cp-bev-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cp-bev-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cp-text);
    padding: 15px 6px;
    border-bottom: 1px solid var(--cp-line);
    transition: padding-left 0.3s var(--cp-ease), border-color 0.3s;
}
.cp-bev-list li:hover {
    padding-left: 14px;
    border-bottom-color: rgba(0, 174, 156, 0.45);
}
.cp-bev-list li i {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--cp-teal-soft);
    color: var(--cp-teal);
    font-size: 17px;
}

.cp-bev-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cp-bev-mosaic figure {
    border-radius: var(--cp-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(13, 31, 29, 0.12);
}
.cp-bev-mosaic figure:nth-child(2) { transform: translateY(22px); }
.cp-bev-mosaic figure:nth-child(3) { transform: translateY(-10px); }
.cp-bev-mosaic figure:nth-child(4) { transform: translateY(12px); }
.cp-bev-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--cp-ease);
}
.cp-bev-mosaic figure:hover img { transform: scale(1.05); }

/* ============================================================
   FORMULATION — two paths
   ============================================================ */

.cp-formulation {
    background: var(--cp-paper-warm);
    padding-block: 96px;
}

.cp-form-paths {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: stretch;
    max-width: 940px;
    margin-inline: auto;
}

.cp-form-path {
    background: var(--cp-paper);
    border: 1px solid var(--cp-line);
    border-radius: var(--cp-radius);
    padding: 34px 30px;
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease), border-color 0.3s;
}
.cp-form-path:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 174, 156, 0.4);
    box-shadow: 0 16px 36px rgba(13, 31, 29, 0.10);
}

.cp-form-tag {
    display: inline-block;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--cp-teal);
    border: 1px solid rgba(0, 174, 156, 0.35);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 18px;
}

.cp-form-path h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--cp-text);
    margin: 0 0 12px;
}
.cp-form-path h3 i { color: var(--cp-teal); font-size: 22px; }
.cp-form-path p {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--cp-muted);
    line-height: 1.7;
    margin: 0;
}

.cp-form-or {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-form-or span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cp-ink);
    color: #7be3d6;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
}

.cp-form-note {
    max-width: 720px;
    margin: 36px auto 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--cp-muted);
    line-height: 1.7;
}

/* ============================================================
   HOT-FILL vs COLD-FILL
   ============================================================ */

.cp-fillmethod {
    background: var(--cp-paper);
    padding-block: 96px;
}

.cp-fill-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1000px;
    margin-inline: auto;
}

.cp-fill-panel {
    border-radius: var(--cp-radius);
    padding: 36px 32px;
    color: #ffffff;
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease);
}
.cp-fill-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(13, 31, 29, 0.18);
}
.cp-fill-panel--hot {
    background:
        radial-gradient(ellipse 90% 70% at 85% 0%, rgba(255, 158, 74, 0.28), transparent 60%),
        linear-gradient(160deg, #4a2c14 0%, #2b1a0c 100%);
}
.cp-fill-panel--cold {
    background:
        radial-gradient(ellipse 90% 70% at 85% 0%, rgba(86, 190, 255, 0.25), transparent 60%),
        linear-gradient(160deg, #10333e 0%, #0a1e26 100%);
}

.cp-fill-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.cp-fill-temp {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.10);
}
.cp-fill-panel--hot .cp-fill-temp { color: #ffb36b; }
.cp-fill-panel--cold .cp-fill-temp { color: #7fd4ff; }

.cp-fill-head h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 3px;
}
.cp-fill-for {
    font-family: var(--font-body);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cp-fill-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.cp-fill-panel ul li {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.cp-fill-why {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.cp-fill-why strong { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

.cp-fill-caution {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 28px auto 0;
    background: var(--cp-paper-warm);
    border: 1px solid var(--cp-line);
    border-left: 4px solid var(--cp-teal);
    border-radius: 0 var(--cp-radius) var(--cp-radius) 0;
    padding: 24px 28px;
}
.cp-fill-caution i {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--cp-teal);
    margin-top: 2px;
}
.cp-fill-caution p {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--cp-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SLEEVE / CAN DECORATION
   ============================================================ */

.cp-sleeve {
    background: var(--cp-paper-warm);
    padding-block: 96px;
    overflow: hidden;
}

.cp-sleeve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.cp-sleeve-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 340px;
}
.cp-sleeve-can {
    width: 42%;
    aspect-ratio: 1;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(13, 31, 29, 0.16);
    background: #f2f2f2;
}
.cp-sleeve-can img { width: 100%; height: 100%; object-fit: cover; }
.cp-sleeve-can--a { transform: rotate(-7deg) translate(12%, -8%); z-index: 1; }
.cp-sleeve-can--b { z-index: 2; width: 48%; margin-inline: -6%; }
.cp-sleeve-can--c { transform: rotate(7deg) translate(-12%, -8%); z-index: 1; }

.cp-sleeve-copy p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cp-muted);
    line-height: 1.75;
    margin: 0 0 22px;
}
.cp-sleeve-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--cp-text);
    padding-block: 7px;
}
.cp-sleeve-points li i { color: var(--cp-teal); font-size: 17px; }

/* ============================================================
   LOW-MOQ BAND
   ============================================================ */

.cp-moq {
    background:
        radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0, 174, 156, 0.14), transparent 65%),
        var(--cp-ink);
    padding-block: 88px;
    text-align: center;
}

.cp-moq-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    max-width: 880px;
    margin: 0 auto 18px;
}
.cp-moq-quote em {
    font-style: italic;
    color: #7be3d6;
}
.cp-moq-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ============================================================
   TURNKEY / CERTS / QC
   ============================================================ */

.cp-turnkey {
    background: var(--cp-paper);
    padding-block: 96px;
}

.cp-turnkey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}

.cp-turnkey-card {
    background: var(--cp-paper-warm);
    border: 1px solid var(--cp-line);
    border-radius: var(--cp-radius);
    padding: 32px 28px;
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease), border-color 0.3s;
}
.cp-turnkey-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 174, 156, 0.35);
    box-shadow: 0 14px 34px rgba(13, 31, 29, 0.09);
}
.cp-turnkey-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cp-ink);
    color: #7be3d6;
    font-size: 21px;
    margin-bottom: 18px;
}
.cp-turnkey-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--cp-text);
    margin: 0 0 10px;
}
.cp-turnkey-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cp-muted);
    line-height: 1.7;
    margin: 0;
}

.cp-cert-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.cp-cert-row figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 128px;
    padding: 20px 12px 16px;
    background: var(--cp-paper);
    border: 1px solid var(--cp-line);
    border-radius: 12px;
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease);
}
.cp-cert-row figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13, 31, 29, 0.10);
}
.cp-cert-row img {
    height: 52px;
    width: auto;
    object-fit: contain;
}
.cp-cert-row figcaption {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--cp-muted);
    text-align: center;
}

/* ============================================================
   PROCESS — five stations
   ============================================================ */

.cp-process {
    background:
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(0, 174, 156, 0.12), transparent 65%),
        var(--cp-ink);
    padding-block: 100px;
}

.cp-stations {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.cp-station-line {
    position: absolute;
    top: 23px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(255, 255, 255, 0.22) 0 10px,
        transparent 10px 20px);
}

.cp-station {
    position: relative;
    text-align: left;
}

.cp-station-num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cp-ink);
    border: 1px solid rgba(0, 174, 156, 0.55);
    color: #7be3d6;
    font-family: "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--cp-ink);
}

.cp-station-icon {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.cp-station h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}
.cp-station p {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   WHY SAMLEY
   ============================================================ */

.cp-why {
    background: var(--cp-paper);
    padding-block: 96px;
}

.cp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.cp-why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    padding: 28px 28px 26px;
    border: 1px solid var(--cp-line);
    border-radius: var(--cp-radius);
    background: var(--cp-paper);
    transition: transform 0.3s var(--cp-ease), box-shadow 0.3s var(--cp-ease), border-color 0.3s;
}
.cp-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 174, 156, 0.35);
    box-shadow: 0 14px 34px rgba(13, 31, 29, 0.09);
}
.cp-why-card--feature {
    background: var(--cp-ink);
    border-color: transparent;
}
.cp-why-card.cp-why-card--feature h3 { color: #ffffff; }
.cp-why-card.cp-why-card--feature p { color: rgba(255, 255, 255, 0.6); }

.cp-why-card > i {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: flex-start;
    font-size: 24px;
    color: var(--cp-teal);
    padding-top: 3px;
}
.cp-why-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cp-text);
    margin: 0 0 8px;
}
.cp-why-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cp-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.cp-faq {
    background: var(--cp-paper-warm);
    padding-block: 96px;
}

.cp-faq-list {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cp-faq-item {
    background: var(--cp-paper);
    border: 1px solid var(--cp-line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.cp-faq-item[open] { border-color: rgba(0, 174, 156, 0.4); }

.cp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--cp-text);
}
.cp-faq-item summary::-webkit-details-marker { display: none; }
.cp-faq-item summary i {
    flex-shrink: 0;
    font-size: 15px;
    color: var(--cp-teal);
    transition: transform 0.3s var(--cp-ease);
}
.cp-faq-item[open] summary i { transform: rotate(45deg); }

.cp-faq-answer { padding: 0 24px 22px; }
.cp-faq-answer p {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--cp-muted);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.cp-cta {
    background:
        radial-gradient(ellipse 70% 90% at 80% 20%, rgba(0, 174, 156, 0.18), transparent 60%),
        linear-gradient(180deg, var(--cp-ink) 0%, var(--cp-ink-deep) 100%);
    padding-block: 96px;
}

.cp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.cp-cta-copy p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}
.cp-cta-action { flex-shrink: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.cp-animate {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s var(--cp-ease), transform 0.65s var(--cp-ease);
    transition-delay: var(--cp-delay, 0ms);
}
.cp-animate.cp-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .cp-hero-fade,
    .cp-ticker-track,
    .cp-conveyor-track { animation: none !important; }
    .cp-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1060px) {
    .cp-hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .cp-hero { padding-top: 120px; }
    .cp-hero-conveyor { height: 320px; }
    .cp-conveyor-col { width: 132px; }

    .cp-who-grid { grid-template-columns: repeat(2, 1fr); }
    .cp-line-grid { grid-template-columns: 1fr; gap: 56px; }
    .cp-bev-grid { grid-template-columns: 1fr; gap: 48px; }
    .cp-sleeve-grid { grid-template-columns: 1fr; gap: 48px; }

    .cp-stations { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
    .cp-station-line { display: none; }
    .cp-station-num { box-shadow: none; }
}

@media (max-width: 700px) {
    .cp-who { padding-block: 68px; }
    .cp-who-grid { grid-template-columns: 1fr; }

    .cp-line,
    .cp-beverages,
    .cp-formulation,
    .cp-fillmethod,
    .cp-sleeve,
    .cp-turnkey,
    .cp-process,
    .cp-why,
    .cp-faq,
    .cp-cta { padding-block: 68px; }

    .cp-form-paths { grid-template-columns: 1fr; }
    .cp-form-or { padding-block: 4px; }

    .cp-fill-split { grid-template-columns: 1fr; }

    .cp-line-stats { flex-direction: column; gap: 22px; }
    .cp-stat { padding-inline: 0; border-left: none; }

    .cp-can-diagram { gap: 34px; transform: scale(0.9); }
    .cp-can-callout--body { display: none; }

    .cp-bev-mosaic figure:nth-child(n) { transform: none; }

    .cp-stations { grid-template-columns: 1fr 1fr; }

    .cp-turnkey-grid { grid-template-columns: 1fr; }
    .cp-why-grid { grid-template-columns: 1fr; }

    .cp-cta-inner { flex-direction: column; align-items: flex-start; }

    .cp-hero-actions .cp-btn { width: 100%; justify-content: center; }
}
