:root {
    --ink: #151716;
    --muted: #66737f;
    --paper: #f2f9ff;
    --panel: #ffffff;
    --dark: #11161a;
    --dark-2: #1d2730;
    --line: #d8e5ef;
    --leaf: #9ed8ff;
    --leaf-dark: #2f80b7;
    --leaf-text: #0b82c6;
    --red: #e4212d;
    --red-dark: #ad111b;
    --red-soft: #fff1f2;
    --red-on-dark: #ff7f87;
    --amber: #f4b94f;
    --cyan: #46b7b0;
    --on-dark-muted: #d8e3eb;
    --on-dark-soft: #bcc9d4;
    --on-dark-subtle: #96a5b2;
    --shadow: 0 22px 60px rgba(17, 21, 20, .09);
    --shadow-strong: 0 32px 80px rgba(17, 21, 20, .17);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-feature-settings: "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    color: var(--ink);
    background: #ffffff;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(.98rem, .94rem + .16vw, 1.04rem);
    font-weight: 500;
    line-height: 1.76;
    letter-spacing: 0;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

p + p {
    margin-top: .9rem;
}

.dark-band p {
    color: var(--on-dark-soft);
}

.site-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--leaf-text);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: .85rem 1.35rem;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), #cf1d28);
    color: white;
    box-shadow: 0 8px 18px rgba(228, 33, 45, .18);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d91f2a, #bd1722);
    box-shadow: 0 10px 22px rgba(228, 33, 45, .22);
}

.btn-secondary {
    border: 1px solid rgba(17, 21, 20, .13);
    color: var(--ink);
    background: rgba(255, 255, 255, .86);
}

.btn-secondary:hover {
    color: var(--ink);
    border-color: rgba(240, 24, 37, .22);
}

.glass-nav {
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 21, 20, .08);
}

.premium-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.soft-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(17, 21, 20, .045);
}

.pouch-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.pouch-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--leaf), var(--red));
    transform: scaleX(.34);
    transform-origin: left;
    transition: transform .22s ease;
}

.pouch-card:hover,
.pouch-card:focus-visible {
    background: #fffefe;
    transform: translateY(-5px);
    border-color: rgba(228, 33, 45, .42);
    box-shadow: 0 22px 56px rgba(17, 21, 20, .13);
    outline: none;
}

.pouch-card:hover::before,
.pouch-card:focus-visible::before {
    transform: scaleX(1);
}

.pouch-card-media {
    position: relative;
    display: flex;
    aspect-ratio: 4 / 3;
    height: auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background:
        linear-gradient(90deg, rgba(21, 23, 22, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 23, 22, .03) 1px, transparent 1px),
        radial-gradient(circle at 50% 40%, rgba(158, 216, 255, .28), transparent 36%),
        #f4faff;
    background-size: 28px 28px, 28px 28px, auto, auto;
}

.pouch-card-media img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(17, 21, 20, .14));
    transform: scale(1);
    transition: transform .22s ease;
}

.pouch-card:hover .pouch-card-media img,
.pouch-card:focus-visible .pouch-card-media img {
    transform: scale(1.04);
}

.pouch-card-body {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-top: 1px solid rgba(221, 227, 220, .78);
    margin: 0;
    padding: .75rem .85rem;
}

.pouch-card-title {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
}

.pouch-card-arrow {
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(228, 33, 45, .24);
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    font-size: .9rem;
    font-weight: 900;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.pouch-card:hover .pouch-card-arrow,
.pouch-card:focus-visible .pouch-card-arrow {
    background: var(--red);
    color: #ffffff;
    transform: translateX(2px);
}

.industry-carousel {
    position: relative;
    overflow: hidden;
}

.industry-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1px;
    padding: .25rem 1px 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.industry-carousel-track::-webkit-scrollbar {
    display: none;
}

.industry-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    transform: translateY(-.45rem);
}

.industry-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(228, 33, 45, .24);
    border-radius: 999px;
    background: #ffffff;
    color: var(--red);
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.industry-carousel-btn svg {
    width: 21px;
    height: 21px;
}

.industry-carousel-btn:hover,
.industry-carousel-btn:focus-visible {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

.industry-card {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #cfe9fb;
    border-radius: 8px;
    background: #eaf6ff;
    scroll-snap-align: start;
    transition: transform .22s ease, border-color .22s ease;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.industry-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background:
        linear-gradient(90deg, rgba(21, 23, 22, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 23, 22, .03) 1px, transparent 1px),
        #f4faff;
    background-size: 28px 28px;
    transition: transform .22s ease;
}

.industry-card h3 {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 1rem;
    border-top: 1px solid rgba(174, 218, 246, .82);
    background: #ffffff;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 33, 45, .42);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

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

.facility-stat {
    min-height: 116px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 1rem;
}

.facility-stat strong,
.facility-stat span {
    display: block;
}

.facility-stat strong {
    color: var(--leaf-text);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1;
}

.facility-stat span {
    margin-top: .55rem;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.35;
}

.machinery-overview {
    position: relative;
    overflow: hidden;
    background: #f2f9ff;
    padding: clamp(3.75rem, 7vw, 6rem) 0;
}

.machinery-overview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.machinery-overview-head h2 {
    max-width: 820px;
    margin-top: 1rem;
    color: var(--ink);
    font-size: clamp(1.75rem, 3vw, 2.85rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.machinery-overview-badge {
    width: min(100%, 240px);
    flex: 0 0 auto;
    border: 1px solid rgba(216, 229, 239, .95);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    padding: 1.15rem;
    box-shadow: 0 16px 40px rgba(17, 21, 20, .06);
}

.machinery-overview-badge strong,
.machinery-overview-badge span {
    display: block;
}

.machinery-overview-badge strong {
    color: var(--leaf-text);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.machinery-overview-badge span {
    margin-top: .6rem;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.35;
}

.machinery-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.machinery-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 18px 48px rgba(17, 21, 20, .055);
}

.machinery-overview-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.86;
}

.machinery-capacity-note {
    margin-top: 1.5rem;
    border-left: 4px solid var(--red);
    background: var(--red-soft);
    padding: 1rem 1.15rem;
}

.machinery-capacity-note span {
    display: block;
    color: var(--red);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.machinery-capacity-note p {
    margin-top: .65rem;
    color: var(--ink);
    font-size: .96rem;
    line-height: 1.68;
}

.machinery-machine-list {
    display: grid;
    gap: .85rem;
}

.machinery-machine-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 94px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    padding: 1rem;
    box-shadow: 0 14px 34px rgba(17, 21, 20, .045);
    transition: transform .22s ease, border-color .22s ease;
}

.machinery-machine-item:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 33, 45, .34);
    box-shadow: 0 20px 48px rgba(17, 21, 20, .09);
}

.machinery-machine-item > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--paper);
    color: var(--leaf-text);
    font-size: .82rem;
    font-weight: 900;
}

.machinery-machine-item h3 {
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.25;
    text-transform: uppercase;
}

.machinery-machine-item strong {
    display: inline-flex;
    margin-top: .45rem;
    border-radius: 999px;
    background: var(--red-soft);
    padding: .34rem .7rem;
    color: var(--red);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.machinery-design-note {
    margin-top: 1rem;
    border: 1px solid rgba(47, 128, 183, .22);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(158, 216, 255, .2), rgba(255, 255, 255, .88)),
        rgba(255, 255, 255, .9);
    padding: clamp(1.1rem, 2.5vw, 1.45rem);
}

.machinery-design-note span {
    display: block;
    color: var(--leaf-text);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.machinery-design-note p {
    max-width: 980px;
    margin-top: .65rem;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.72;
}

.machinery-feature {
    position: relative;
    overflow: hidden;
    padding: .7rem;
    background:
        linear-gradient(90deg, rgba(21, 23, 22, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 23, 22, .03) 1px, transparent 1px),
        #f5fbff;
    background-size: 34px 34px;
}

.machinery-feature img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 6px;
    object-fit: cover;
}

.machinery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(17, 21, 20, .05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.machinery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background: #f4faff;
    transition: transform .22s ease;
}

.machinery-card div {
    min-height: 114px;
    border-top: 1px solid rgba(221, 227, 220, .78);
    padding: 1rem;
}

.machinery-card span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: var(--red-soft);
    padding: .32rem .65rem;
    color: var(--red);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.machinery-card h3 {
    margin-top: .7rem;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.28;
}

.machinery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 33, 45, .42);
    box-shadow: 0 22px 56px rgba(17, 21, 20, .13);
}

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

.prepress-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 2rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(21, 23, 22, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 23, 22, .03) 1px, transparent 1px),
        linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #eaf6ff 100%);
    background-size: 58px 58px, 58px 58px, auto;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: var(--shadow);
}

.prepress-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
}

.prepress-kicker {
    color: var(--leaf-text);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.prepress-copy h2 {
    max-width: 560px;
    margin-top: .85rem;
    color: var(--ink);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 900;
    line-height: 1.04;
}

.prepress-copy p {
    max-width: 590px;
    margin-top: 1.1rem;
    color: var(--muted);
    line-height: 1.85;
}

.prepress-timeline {
    display: grid;
    align-content: center;
    gap: .85rem;
}

.prepress-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    padding: 1rem;
    box-shadow: 0 14px 38px rgba(17, 21, 20, .045);
}

.prepress-step span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(228, 33, 45, .2);
    border-radius: 8px;
    background: var(--red-soft);
    color: var(--red);
    font-weight: 900;
}

.prepress-step h3 {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
}

.prepress-step p {
    margin-top: .35rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.62;
}

.client-logo-carousel {
    position: relative;
    display: flex;
    gap: .85rem;
    overflow: hidden;
    padding: .35rem 0 1rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-carousel:hover .client-logo-track,
.client-logo-carousel:focus-within .client-logo-track {
    animation-play-state: paused;
}

.client-logo-track {
    display: flex;
    min-width: max-content;
    flex: 0 0 auto;
    gap: .85rem;
    animation: client-logo-scroll 52s linear infinite;
}

.client-logo-card {
    display: flex;
    width: clamp(150px, 44vw, 190px);
    min-height: 112px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(221, 227, 220, .72);
    border-radius: 8px;
    background: #ffffff;
    padding: .95rem;
    box-shadow: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.client-logo-card img {
    display: block;
    width: 100%;
    max-width: 175px;
    height: auto;
    aspect-ratio: 350 / 200;
    object-fit: contain;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 33, 45, .28);
    box-shadow: none;
}

.testimonial-section {
    background: var(--paper);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1px;
    padding: .25rem 1px 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    transform: translateY(-.45rem);
}

.testimonial-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(228, 33, 45, .24);
    border-radius: 999px;
    background: #ffffff;
    color: var(--red);
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.testimonial-carousel-btn svg {
    width: 21px;
    height: 21px;
}

.testimonial-carousel-btn:hover,
.testimonial-carousel-btn:focus-visible {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

.testimonial-card {
    position: relative;
    flex: 0 0 min(88vw, 390px);
    min-height: 230px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--red));
    transform: scaleX(.34);
    transform-origin: left;
    transition: transform .22s ease;
}

.testimonial-card::after {
    content: "\201C";
    position: absolute;
    right: 1.1rem;
    bottom: -.8rem;
    color: rgba(158, 216, 255, .34);
    font-family: Georgia, serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.7;
}

.testimonial-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 1.35rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--red);
    font-size: .95rem;
    font-weight: 900;
}

.testimonial-card h3::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 33, 45, .38);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

@keyframes client-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - .85rem));
    }
}

@media (min-width: 640px) {
    .industry-card {
        flex-basis: calc((100% - 1rem) / 2);
    }

    .client-logo-card {
        width: 180px;
    }

    .testimonial-card {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

@media (min-width: 1024px) {
    .industry-card {
        flex-basis: calc((100% - 2rem) / 3);
    }

    .client-logo-card {
        width: 198px;
    }

    .testimonial-card {
        flex-basis: calc((100% - 2rem) / 3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .client-logo-carousel {
        flex-wrap: wrap;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .client-logo-track {
        flex-wrap: wrap;
        min-width: 0;
        animation: none;
    }

    .client-logo-track[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 1024px) {
    .machinery-overview-head {
        align-items: stretch;
        flex-direction: column;
    }

    .machinery-overview-grid {
        grid-template-columns: 1fr;
    }

    .machinery-overview-badge {
        width: 100%;
    }
}

.speciality-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 21, 20, .06);
    background: var(--paper);
}

.speciality-section::before {
    content: none;
}

.speciality-intro {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2.25rem;
}

.speciality-intro-copy {
    max-width: 44rem;
}

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.speciality-card {
    position: relative;
    display: flex;
    min-height: 196px;
    flex-direction: column;
    justify-content: flex-start;
    gap: .85rem;
    overflow: hidden;
    border: 1px solid rgba(216, 229, 239, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    padding: 1.25rem;
    box-shadow: 0 18px 46px rgba(158, 216, 255, .22);
    backdrop-filter: blur(10px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.speciality-card-head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.speciality-marker {
    display: inline-flex;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 128, 183, .18);
    border-radius: 999px;
    background: #f4faff;
    color: var(--leaf-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.speciality-marker svg {
    width: 34px;
    height: 34px;
}

.speciality-card h3 {
    color: var(--ink);
    font-size: 1.13rem;
    font-weight: 900;
    line-height: 1.24;
}

.speciality-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}

.speciality-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    border-color: rgba(228, 33, 45, .42);
    box-shadow: 0 22px 56px rgba(158, 216, 255, .32);
}

.speciality-card:hover .speciality-marker {
    border-color: rgba(228, 33, 45, .32);
    background: var(--red);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .speciality-intro {
        align-items: stretch;
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .speciality-intro {
        margin-bottom: 1.5rem;
    }

    .speciality-grid {
        grid-template-columns: 1fr;
    }

    .speciality-card {
        min-height: auto;
    }
}

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(47, 128, 183, .075) 1px, transparent 1px),
        linear-gradient(180deg, rgba(47, 128, 183, .075) 1px, transparent 1px),
        radial-gradient(circle at 0% 0%, rgba(158, 216, 255, .38) 0%, rgba(215, 238, 255, .3) 24%, transparent 48%),
        linear-gradient(135deg, #ffffff 0%, #eef8ff 48%, #d7eeff 100%);
    background-size: 56px 56px, 56px 56px, auto, auto;
    border-bottom: 1px solid rgba(17, 21, 20, .06);
}

.hero-section::before {
    content: none;
}

.hero-section::after {
    content: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.hero-copy-panel {
    position: relative;
    padding: 0;
}

@media (max-width: 1023.98px) {
    .hero-layout .hero-image-card {
        order: 1;
    }
    .hero-layout .hero-copy-panel {
        order: 2;
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(17, 21, 20, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    padding: .48rem .78rem;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
}

.hero-pill::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: var(--leaf);
    box-shadow: 0 0 0 5px rgba(158, 216, 255, .32);
}

.hero-printing-panel {
    max-width: 620px;
}

.hero-printing-head {
    margin-bottom: .8rem;
}

.hero-printing-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-printing-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
}

.hero-printing-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem .7rem;
}

.hero-printing-list li {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 38px;
    border: 1px solid rgba(47, 128, 183, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .76);
    padding: .55rem .7rem;
    box-shadow: 0 10px 24px rgba(17, 21, 20, .04);
    color: var(--ink);
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-printing-list li::before {
    content: "";
    flex: 0 0 auto;
    width: .46rem;
    height: .46rem;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(228, 33, 45, .12);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 640px;
    overflow: hidden;
    border: 1px solid rgba(17, 21, 20, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(17, 21, 20, .06);
}

.stat-strip > div {
    padding: 1rem;
}

.stat-strip > div + div {
    border-left: 1px solid rgba(17, 21, 20, .09);
}

.icon-box {
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(158, 216, 255, .95), rgba(244, 185, 79, .88));
    color: var(--dark);
    box-shadow: 0 14px 28px rgba(47, 128, 183, .2);
}

.contact-method-card {
    position: relative;
    display: grid;
    min-height: 188px;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(221, 227, 220, .96);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 252, 247, .92)),
        #ffffff;
    padding: 1.35rem;
    box-shadow: 0 16px 42px rgba(17, 21, 20, .06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-method-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--contact-accent, var(--red));
    transform: scaleX(.28);
    transform-origin: left;
    transition: transform .22s ease;
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
    border-color: color-mix(in srgb, var(--contact-accent, var(--red)) 42%, var(--line));
    box-shadow: 0 24px 58px rgba(17, 21, 20, .12);
    transform: translateY(-4px);
    outline: none;
}

.contact-method-card:hover::before,
.contact-method-card:focus-visible::before {
    transform: scaleX(1);
}

.contact-method-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border: 1px solid color-mix(in srgb, var(--contact-accent, var(--red)) 24%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--contact-accent, var(--red)) 11%, #ffffff);
    color: var(--contact-accent, var(--red));
}

.contact-method-label {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-method-card strong {
    display: block;
    margin-top: .45rem;
    color: var(--ink);
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    font-weight: 900;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-method-action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    padding-top: 1.15rem;
    color: var(--contact-accent, var(--red));
    font-size: .86rem;
    font-weight: 900;
}

.contact-method-action::after {
    content: "->";
    transition: transform .22s ease;
}

.contact-method-card:hover .contact-method-action::after,
.contact-method-card:focus-visible .contact-method-action::after {
    transform: translateX(3px);
}

.contact-method-card-email {
    --contact-accent: var(--red);
}

.contact-method-card-phone {
    --contact-accent: var(--cyan);
}

.contact-method-card-address {
    --contact-accent: var(--amber);
}

.dark-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(158, 216, 255, .2), transparent 28%),
        radial-gradient(circle at 90% 60%, rgba(47, 128, 183, .2), transparent 30%),
        linear-gradient(135deg, var(--dark), var(--dark-2));
}

.dark-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .55;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 21, 20, .08);
    background:
        linear-gradient(90deg, rgba(47, 128, 183, .1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(47, 128, 183, .09) 1px, transparent 1px),
        linear-gradient(135deg, #f3f9ff 0%, #e8f4ff 58%, #dceeff 100%);
    background-size: 72px 72px, 72px 72px, auto;
}

.page-hero-shell {
    position: relative;
    z-index: 1;
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

.page-hero-copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: .45rem;
    color: var(--leaf-text);
    font-size: .84rem;
    font-weight: 900;
}

.breadcrumb-trail a,
.breadcrumb-trail span[aria-current="page"] {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid rgba(31, 111, 158, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    padding: .5rem 1rem;
    line-height: 1;
}

.breadcrumb-trail a {
    color: #245f83;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.breadcrumb-trail a:hover {
    border-color: rgba(228, 33, 45, .26);
    background: #ffffff;
    color: var(--red);
}

.breadcrumb-trail span[aria-current="page"] {
    border-color: rgba(228, 33, 45, .2);
    background: rgba(255, 255, 255, .92);
    color: var(--red-dark);
}

.breadcrumb-separator {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    color: rgba(31, 111, 158, .58);
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.page-hero h1 {
    max-width: 860px;
    margin: 0;
    color: #102f43;
    font-size: clamp(2rem, 4.2vw, 3.85rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: 0;
}

.site-footer {
    padding: 4.5rem 0 2rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05)),
        rgba(255, 255, 255, .06);
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

.footer-kicker {
    color: var(--red-on-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-cta h2 {
    margin-top: .45rem;
    max-width: 680px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.12;
    font-weight: 900;
}

.footer-cta-button {
    flex: 0 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(140px, .55fr) minmax(180px, .85fr) minmax(240px, 1fr);
    gap: 2rem;
}

.footer-brand p {
    max-width: 330px;
    color: var(--on-dark-soft);
    font-size: .95rem;
    line-height: 1.75;
}

.footer-logo {
    width: auto;
    height: 4.5rem;
    margin-bottom: 1.25rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.4rem;
}

.footer-badges span {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: .4rem .65rem;
    background: rgba(255, 255, 255, .07);
    color: var(--on-dark-muted);
    font-size: .78rem;
    font-weight: 800;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.footer-column ul {
    display: grid;
    gap: .65rem;
}

.footer-column a {
    color: var(--on-dark-soft);
    font-size: .94rem;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-products ul {
    grid-template-columns: 1fr;
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: .75rem;
}

.footer-contact h3 {
    margin-bottom: .25rem;
}

.footer-contact-card {
    display: block;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    padding: .85rem .95rem;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.footer-contact-card:hover {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .09);
    transform: translateY(-2px);
}

.footer-contact-card span,
.footer-contact-card strong {
    display: block;
}

.footer-contact-card span {
    color: var(--red-on-dark);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-contact-card strong {
    margin-top: .25rem;
    color: var(--on-dark-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.4rem;
    color: var(--on-dark-subtle);
    font-size: .82rem;
    font-weight: 700;
}

.footer-bottom a {
    color: var(--on-dark-muted);
    transition: color .2s ease;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: .95rem;
    flex-wrap: wrap;
}

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

.product-visual {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(158, 216, 255, .34), rgba(240, 24, 37, .12)),
        linear-gradient(180deg, #ffffff, #eaf6ff);
}

.product-visual::before,
.product-visual::after {
    content: "";
    position: absolute;
    border-radius: 6px;
    transform: rotate(-8deg);
}

.product-visual::before {
    width: 54%;
    height: 70%;
    left: 12%;
    top: 15%;
    background: linear-gradient(145deg, #ffffff, #d7eeff 45%, var(--leaf));
    box-shadow: 34px 30px 80px rgba(32, 39, 31, .16);
}

.product-visual::after {
    width: 46%;
    height: 58%;
    right: 10%;
    bottom: 10%;
    background: linear-gradient(145deg, var(--dark), var(--leaf) 48%, var(--red));
    box-shadow: 20px 28px 70px rgba(32, 39, 31, .22);
}

.about-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    border-radius: 8px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

.home-about-image {
    position: relative;
    display: inline-flex;
    max-width: 100%;
}

.home-about-image img {
    display: block;
}

.home-about-badge {
    position: absolute;
    top: 24px;
    right: -34px;
    z-index: 2;
    display: flex;
    min-width: 132px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 16px 34px rgba(173, 17, 27, .28);
    color: #ffffff;
    padding: .8rem 1rem;
    line-height: 1;
}

.home-about-badge span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-about-badge strong {
    margin-top: .28rem;
    font-size: 1.8rem;
    font-weight: 900;
}

.home-about-materials {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: .8rem;
}

.home-about-materials li {
    display: inline-flex;
    flex: 1 1 110px;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 46px;
    border: 1px solid rgba(228, 33, 45, .16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(17, 21, 20, .06);
    color: var(--ink);
    padding: .6rem .9rem;
    font-size: .95rem;
    font-weight: 900;
}

.home-about-materials li::before {
    content: "\2713";
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    font-size: .72rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .home-about-badge {
        right: -16px;
        min-width: 118px;
        padding: .7rem .85rem;
    }

    .home-about-badge strong {
        font-size: 1.55rem;
    }

    .home-about-materials {
        gap: .6rem;
    }

    .home-about-materials li {
        flex-basis: calc(50% - .3rem);
    }
}

.hero-image-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.hero-cylinder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.1rem;
    margin-top: -10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(228, 33, 45, 0.22);
    border-radius: 9999px;
    box-shadow: 0 10px 28px -4px rgba(228, 33, 45, 0.14), 0 4px 12px -2px rgba(17, 21, 20, 0.05);
    backdrop-filter: blur(14px);
    color: var(--red);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    z-index: 10;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hero-cylinder-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 14px 34px -4px rgba(228, 33, 45, 0.18), 0 6px 16px -2px rgba(17, 21, 20, 0.08);
}

.hero-cylinder-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    flex-shrink: 0;
}

.hero-image-card::before {
    content: none;
}

.hero-image-card::after {
    content: none;
}

.hero-carousel {
    position: relative;
    z-index: 2;
    width: min(82vw, 460px);
    aspect-ratio: 1;
    perspective: 900px;
    transform: translateY(8px);
}

.hero-carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: clamp(92px, 29%, 132px);
    aspect-ratio: .72;
    display: grid;
    place-items: center;
    opacity: .72;
    transition: transform .85s cubic-bezier(.22, .74, .22, 1), opacity .85s ease, filter .85s ease, z-index .85s step-end;
    transform:
        translate(-50%, -50%)
        translate(var(--carousel-x, 0), var(--carousel-y, 0))
        scale(var(--carousel-scale, 1))
        rotateY(var(--carousel-rotate-y, 0));
    transform-style: preserve-3d;
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(17, 21, 20, .24)) contrast(1.05);
}

.hero-carousel-item.is-front {
    z-index: 6;
    opacity: 1;
    filter: none;
    --carousel-y: 54px;
    --carousel-scale: 2.20;
}

.hero-carousel-item.is-right-front {
    z-index: 5;
    opacity: .9;
    --carousel-x: 130px;
    --carousel-y: 44px;
    --carousel-scale: 1.04;
    --carousel-rotate-y: -18deg;
}

.hero-carousel-item.is-right-back {
    z-index: 3;
    opacity: .58;
    filter: blur(.2px) saturate(.86);
    --carousel-x: 138px;
    --carousel-y: -82px;
    --carousel-scale: .78;
    --carousel-rotate-y: -34deg;
}

.hero-carousel-item.is-back {
    z-index: 1;
    opacity: .42;
    filter: blur(.6px) saturate(.74);
    --carousel-y: -132px;
    --carousel-scale: .68;
}

.hero-carousel-item.is-left-back {
    z-index: 3;
    opacity: .58;
    filter: blur(.2px) saturate(.86);
    --carousel-x: -138px;
    --carousel-y: -82px;
    --carousel-scale: .78;
    --carousel-rotate-y: 34deg;
}

.hero-carousel-item.is-left-front {
    z-index: 5;
    opacity: .9;
    --carousel-x: -130px;
    --carousel-y: 44px;
    --carousel-scale: 1.04;
    --carousel-rotate-y: 18deg;
}

.roll-graphic {
    position: absolute;
    left: 9%;
    bottom: 13%;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #ffffff 0 22%, #ffd3d6 23% 35%, var(--leaf) 36% 60%, var(--dark) 61% 100%);
    box-shadow: 0 20px 50px rgba(32, 39, 31, .18);
}

.manufacture-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 21, 20, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17, 21, 20, .025) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    background-size: 88px 88px, 88px 88px, auto;
}

.manufacture-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
    align-items: stretch;
}

.manufacture-showcase {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(17, 21, 20, .1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(158, 216, 255, .22) 0%, transparent 38%),
        linear-gradient(135deg, #11161a, #203343 58%, #11161a);
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.manufacture-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .7;
}

.manufacture-showcase-copy {
    position: relative;
    z-index: 2;
    max-width: 390px;
    padding: 2rem;
}

.manufacture-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .35rem .7rem;
    background: rgba(255, 255, 255, .08);
    color: var(--red-on-dark);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.manufacture-showcase h3 {
    margin-top: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.manufacture-showcase p {
    margin-top: 1rem;
    color: var(--on-dark-muted);
    line-height: 1.75;
}

.manufacture-product-frame {
    position: absolute;
    right: -2%;
    bottom: 76px;
    z-index: 1;
    width: min(56%, 270px);
    transform: rotate(7deg);
}

.manufacture-product-frame img {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .34));
}

.manufacture-spec-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
}

.manufacture-spec-strip div {
    padding: 1rem;
}

.manufacture-spec-strip div + div {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.manufacture-spec-strip strong,
.manufacture-spec-strip span {
    display: block;
}

.manufacture-spec-strip strong {
    font-size: .92rem;
    font-weight: 900;
}

.manufacture-spec-strip span {
    margin-top: .35rem;
    color: var(--on-dark-soft);
    font-size: .76rem;
    line-height: 1.45;
}

.manufacture-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.manufacture-card {
    min-height: 248px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(17, 21, 20, .1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
        var(--panel);
    padding: 1.35rem;
    box-shadow: 0 16px 42px rgba(17, 21, 20, .055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.manufacture-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 33, 45, .22);
    box-shadow: 0 24px 54px rgba(17, 21, 20, .1);
}

.manufacture-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.manufacture-number {
    color: rgba(21, 23, 22, .2);
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.manufacture-card h3 {
    margin-top: auto;
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.25;
}

.manufacture-card p {
    margin-top: .8rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

.manufacture-process-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(17, 21, 20, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 42px rgba(17, 21, 20, .045);
}

.manufacture-process-row div {
    padding: 1.25rem;
}

.manufacture-process-row div + div {
    border-left: 1px solid rgba(17, 21, 20, .09);
}

.manufacture-process-row span {
    display: block;
    color: var(--red);
    font-size: .78rem;
    font-weight: 900;
}

.manufacture-process-row strong {
    display: block;
    margin-top: .35rem;
    color: var(--ink);
    font-weight: 900;
}

.manufacture-process-row p {
    margin-top: .45rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}

.section-band {
    padding: 5rem 0;
}

.field {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(32, 39, 31, .14);
    background: #ffffff;
    color: var(--ink);
    padding: .85rem 1rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field::placeholder {
    color: #8b99a6;
}

.field:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 4px rgba(158, 216, 255, .32);
}

.alert-success {
    border: 1px solid rgba(47, 128, 183, .36);
    background: #e5f4ff;
    color: var(--ink);
}

.alert-error {
    border: 1px solid rgba(240, 24, 37, .3);
    background: var(--red-soft);
    color: var(--red-dark);
}

@media (max-width: 768px) {
    .hero-section {
        background:
            linear-gradient(90deg, rgba(47, 128, 183, .065) 1px, transparent 1px),
            linear-gradient(180deg, rgba(47, 128, 183, .065) 1px, transparent 1px),
            radial-gradient(circle at 0% 0%, rgba(158, 216, 255, .38) 0%, rgba(215, 238, 255, .3) 24%, transparent 48%),
            linear-gradient(135deg, #ffffff 0%, #eef8ff 48%, #d7eeff 100%);
        background-size: 44px 44px, 44px 44px, auto, auto;
    }

    .hero-section::before {
        content: none;
    }

    .hero-section::after {
        content: none;
    }

    .hero-layout {
        min-height: auto;
    }

    .page-hero-shell {
        padding-top: 2.4rem;
        padding-bottom: 2.6rem;
    }

    .breadcrumb-trail {
        gap: .35rem;
        font-size: .78rem;
    }

    .breadcrumb-trail a,
    .breadcrumb-trail span[aria-current="page"] {
        min-height: 34px;
        padding: .44rem .8rem;
    }

    .breadcrumb-separator {
        width: 14px;
        height: 14px;
    }

    .page-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.8rem);
        line-height: 1.02;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-strip > div + div {
        border-left: 0;
        border-top: 1px solid rgba(17, 21, 20, .09);
    }

    .section-band {
        padding: 3.5rem 0;
    }

    .machinery-overview-head h2 {
        line-height: 1.05;
    }

    .machinery-machine-item {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .speciality-card h3 {
        white-space: normal;
    }

    .prepress-panel {
        grid-template-columns: 1fr;
    }

    .prepress-copy h2 {
        max-width: none;
    }

    .site-footer {
        padding-top: 3rem;
    }

    .footer-cta,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-cta {
        margin-bottom: 2.5rem;
        padding: 1.25rem;
    }

    .footer-cta-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-products ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem 1rem;
    }

    .footer-bottom {
        margin-top: 2.5rem;
    }

    .product-visual {
        min-height: 340px;
    }

    .manufacture-layout,
    .manufacture-card-grid,
    .manufacture-process-row {
        grid-template-columns: 1fr;
    }

    .manufacture-showcase {
        min-height: 560px;
    }

    .manufacture-showcase-copy {
        padding: 1.5rem;
    }

    .manufacture-product-frame {
        right: 50%;
        bottom: 118px;
        width: min(58vw, 230px);
        transform: translateX(50%) rotate(5deg);
    }

    .manufacture-spec-strip {
        grid-template-columns: 1fr;
    }

    .manufacture-spec-strip div + div,
    .manufacture-process-row div + div {
        border-left: 0;
        border-top: 1px solid rgba(17, 21, 20, .09);
    }

    .manufacture-spec-strip div + div {
        border-top-color: rgba(255, 255, 255, .12);
    }

    .hero-image-card {
        justify-content: center;
        min-height: 300px;
    }

    .hero-image-card::before {
        inset: 1% -6% 2%;
    }

    .hero-carousel {
        width: min(88vw, 340px);
        transform: translateY(4px);
    }

    .hero-carousel-item {
        width: clamp(74px, 30%, 106px);
    }

    .hero-carousel-item.is-front {
        --carousel-y: 42px;
        --carousel-scale: 1.58;
    }

    .hero-carousel-item.is-right-front {
        --carousel-x: 88px;
        --carousel-y: 34px;
    }

    .hero-carousel-item.is-right-back {
        --carousel-x: 94px;
        --carousel-y: -62px;
    }

    .hero-carousel-item.is-back {
        --carousel-y: -98px;
    }

    .hero-carousel-item.is-left-back {
        --carousel-x: -94px;
        --carousel-y: -62px;
    }

    .hero-carousel-item.is-left-front {
        --carousel-x: -88px;
        --carousel-y: 34px;
    }
}

/* Vibrant Colorful Journey Timeline (Matching Reference Image) */
.journey-section {
    position: relative;
    padding: 4rem 0 5rem;
    background: #ffffff;
    overflow: hidden;
}

.journey-eyebrow {
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.journey-title-underline {
    position: relative;
    display: inline-block;
}

.journey-title-underline::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3.5px;
    background-color: #16a34a;
    border-radius: 4px;
}

.journey-timeline-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 3.5rem auto 2.5rem;
    padding: 0;
}

/* Central / Left Straight Multi-Color Gradient Line */
.journey-straight-line {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 20px;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(180deg, 
        #7c3aed 0%, 
        #2563eb 12%, 
        #16a34a 25%, 
        #6d28d9 37%, 
        #d97706 50%, 
        #0d9488 62%, 
        #0284c7 75%, 
        #ea580c 87%, 
        #e11d48 100%
    );
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 992px) {
    .journey-straight-line {
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        top: 25px;
        bottom: 25px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    }
}

/* Rows Container */
.journey-rows-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .journey-rows-list {
        gap: 3.5rem;
    }
}

/* Milestone Row Layout */
.journey-row {
    position: relative;
    display: block;
    padding-left: 48px;
}

@media (min-width: 992px) {
    .journey-row {
        display: grid;
        grid-template-columns: 1fr 60px 1fr;
        gap: 0;
        padding-left: 0;
        align-items: center;
    }
}

/* Card Wrapper Container */
.journey-card-wrapper {
    position: relative;
    width: 100%;
}

/* Dotted Connector Lines */
.journey-mobile-connector {
    position: absolute;
    top: 30px;
    left: -28px;
    width: 28px;
    height: 0;
    border-top: 2.5px dotted var(--theme-main);
    pointer-events: none;
}

@media (min-width: 992px) {
    .journey-mobile-connector {
        display: none;
    }

    .journey-connector-left {
        position: absolute;
        top: 50%;
        right: -30px;
        width: 30px;
        height: 0;
        border-top: 2.5px dotted var(--theme-main);
        transform: translateY(-50%);
        pointer-events: none;
    }

    .journey-connector-right {
        position: absolute;
        top: 50%;
        left: -30px;
        width: 30px;
        height: 0;
        border-top: 2.5px dotted var(--theme-main);
        transform: translateY(-50%);
        pointer-events: none;
    }
}

/* Milestone Cards */
.journey-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.1);
    border-color: var(--theme-border);
}

.journey-date {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--theme-main);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.journey-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.journey-card-desc {
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Color Themes */
.theme-purple {
    --theme-main: #7c3aed;
    --theme-light: #f3e8ff;
    --theme-border: #a855f7;
}

.theme-blue {
    --theme-main: #2563eb;
    --theme-light: #dbeafe;
    --theme-border: #3b82f6;
}

.theme-green {
    --theme-main: #16a34a;
    --theme-light: #dcfce7;
    --theme-border: #22c55e;
}

.theme-violet {
    --theme-main: #6d28d9;
    --theme-light: #f3e8ff;
    --theme-border: #8b5cf6;
}

.theme-amber {
    --theme-main: #d97706;
    --theme-light: #fef3c7;
    --theme-border: #f59e0b;
}

.theme-teal {
    --theme-main: #0d9488;
    --theme-light: #ccfbf1;
    --theme-border: #14b8a6;
}

.theme-sky {
    --theme-main: #0284c7;
    --theme-light: #e0f2fe;
    --theme-border: #38bdf8;
}

.theme-orange {
    --theme-main: #ea580c;
    --theme-light: #ffedd5;
    --theme-border: #f97316;
}

.theme-crimson {
    --theme-main: #e11d48;
    --theme-light: #ffe4e6;
    --theme-border: #f43f5e;
}

/* Circular Connecting Dot Node */
.journey-dot-node {
    position: absolute;
    left: 20px;
    top: 30px;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .journey-dot-node {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
}

.journey-dot-node::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3.5px solid var(--theme-main);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 992px) {
    .journey-dot-node::before {
        width: 20px;
        height: 20px;
        border-width: 4px;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(0, 0, 0, 0.12);
    }
}

.journey-row:hover .journey-dot-node::before {
    transform: scale(1.3);
    background-color: var(--theme-main);
    box-shadow: 0 0 0 5px var(--theme-light), 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* ==========================================
   S-CURVE SERPENTINE TIMELINE DESIGN
   ========================================== */
.scurve-timeline-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 2.5rem auto 1rem;
    padding: 0 1rem;
}

/* Desktop Container & Overlay Cards Layer */
.scurve-desktop-container {
    width: 100%;
    position: relative;
    overflow: visible;
}

.scurve-desktop-svg {
    display: block;
    width: 100%;
    height: auto;
}

.scurve-pin-static {
    cursor: default;
    pointer-events: none;
}

.scurve-desktop-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scurve-card-node {
    position: absolute;
    font-family: inherit;
    box-sizing: border-box;
    pointer-events: auto;
    background: transparent;
}

/* Percentage Coordinates matching SVG viewBox 0 0 1150 900 */
.scurve-pos-1 { left: 1.74%; top: 0.8%; width: 17.4%; }
.scurve-pos-2 { left: 23.48%; top: 0.8%; width: 17.4%; }
.scurve-pos-3 { left: 45.22%; top: 0.8%; width: 17.4%; }
.scurve-pos-4 { left: 66.96%; top: 0.8%; width: 17.4%; }

.scurve-pos-5 { left: 60.87%; top: 31.0%; width: 17.4%; }
.scurve-pos-6 { left: 35.65%; top: 31.0%; width: 17.4%; }
.scurve-pos-7 { left: 10.43%; top: 31.0%; width: 17.4%; }

.scurve-pos-8 { left: 27.83%; top: 63.0%; width: 17.4%; }
.scurve-pos-9 { left: 58.26%; top: 63.0%; width: 17.4%; }

.scurve-year-title {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
}

.scurve-color-bar {
    height: 3.5px;
    width: 44px;
    border-radius: 4px;
    margin: 4px 0 6px 0;
}

.scurve-item-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px 0;
    line-height: 1.25;
}

.scurve-item-desc {
    font-size: 0.725rem;
    line-height: 1.4;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

/* Mobile Serpentine Timeline Layout (lg:hidden) */
.scurve-mobile-container {
    position: relative;
    padding: 1rem 0 2rem 0.5rem;
}

.scurve-mobile-ribbon-line {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 21px;
    width: 6px;
    background: linear-gradient(180deg, 
        #9333ea 0%, 
        #4f46e5 15%, 
        #0284c7 30%, 
        #00bbff 42%, 
        #0d9488 55%, 
        #10b981 68%, 
        #eab308 80%, 
        #f97316 90%, 
        #e11d48 100%
    );
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.scurve-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.scurve-mobile-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.scurve-mobile-pin-col {
    position: relative;
    flex-shrink: 0;
    width: 32px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.scurve-mobile-pin {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--pin-color, #9333ea);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--pin-color, #9333ea), 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scurve-mobile-pin-dot {
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    border-radius: 50%;
}

.scurve-mobile-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.06);
}






