/**
 * customprinting lander — bright-blue / white / navy layout, no top header.
 */

:root {
    --blue: #1EA7E8;
    --blue-deep: #1489C4;
    --navy: #0C1018;
    --ink: #111827;
    --body: #374151;
    --muted: #6B7280;
    --line: #E5E7EB;
    --wa: #25D366;
    --font: Poppins, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--body);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2 { color: var(--ink); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
button, input { font: inherit; }
.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 30;
    background: var(--blue); color: #fff; padding: 8px 12px;
}
.skip-link:focus { left: 0; }

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    padding: 12px 16px 12px 26px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.cp-btn:hover { transform: translateY(-1px); text-decoration: none; filter: brightness(.97); }
.cp-arr {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none;
}
.cp-arr svg { width: 14px; height: 14px; }

.cp-btn-hero {
    background: #fff;
    color: var(--blue);
    border: 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.cp-btn-hero .cp-arr { background: var(--blue); color: #fff; }

.cp-btn-outline {
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.cp-btn-outline .cp-arr { background: var(--blue); color: #fff; }

.cp-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.cp-btn-ghost .cp-arr { background: #fff; color: var(--blue); }

.cp-hero {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 88px 0 80px;
    background: #0a3d63 url("/assets/img/customprinting-hero.jpg") center / cover no-repeat;
}
.cp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 48, 78, .58), rgba(10, 58, 96, .72));
}
.cp-hero-inner { position: relative; z-index: 1; }
.cp-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.8vw, 3.15rem);
    margin-bottom: 14px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}
.cp-hero p {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .92);
}
.cp-os-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cp-block { padding: 72px 0; }
.cp-center-title {
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.15rem);
    margin-bottom: 40px;
}
.cp-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.cp-split-flip { grid-template-columns: .95fr 1.05fr; }
.cp-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.cp-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.15rem);
    margin-bottom: 16px;
}
.cp-copy p {
    font-size: 1.02rem;
    max-width: 46ch;
    margin-bottom: 22px;
}

.cp-band { padding: 56px 0; text-align: center; }
.cp-band p {
    max-width: 820px;
    margin-inline: auto;
    font-size: 1.02rem;
    line-height: 1.7;
}
.cp-band-dark { background: var(--navy); color: #fff; }
.cp-band-blue { background: var(--blue); color: #fff; padding: 64px 0; }
.cp-band-blue h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    margin-bottom: 16px;
}
.cp-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.cp-end {
    background: #071018;
    color: #94A3B8;
    padding: 22px 0 28px;
}
.disclaimer { font-size: .72rem; line-height: 1.55; max-width: 980px; }
.disclaimer strong { color: #E2E8F0; }
.copy { margin-top: 12px; font-size: .78rem; }
.copy a { color: #93C5FD; }

.float-help {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 0;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(30, 167, 232, .42);
    display: grid;
    place-items: center;
}
.float-help:hover { color: #fff; }
.float-help svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
    .cp-hero { min-height: 380px; padding: 68px 0 60px; }
    .cp-block { padding: 48px 0; }
    .cp-split,
    .cp-split-flip { grid-template-columns: 1fr; gap: 28px; }
    .cp-copy p { max-width: none; }
    .cp-os-row .cp-btn { min-width: min(220px, 100%); }
}
