:root {
    --ink: #132238;
    --navy: #0f2a43;
    --blue: #2359df;
    --teal: #18a999;
    --coral: #f26d5b;
    --gold: #f5b84b;
    --paper: #f7f9fc;
    --white: #ffffff;
    --muted: #65758b;
    --line: #dce4ef;
    --shadow: 0 18px 45px rgba(19, 34, 56, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--white);
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 99;
    padding: 10px 14px;
    color: var(--white);
    background: var(--blue);
}

.skip-link:focus {
    top: 12px;
}

.top-bar {
    color: rgba(255, 255, 255, 0.88);
    background: var(--navy);
    font-size: 14px;
}

.top-bar__inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 8px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: var(--radius);
    font-weight: 800;
}

.brand__text {
    display: grid;
    line-height: 1.1;
}

.brand__text strong {
    font-size: 19px;
}

.brand__text small {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav > a,
.nav-dropdown > a {
    padding: 12px 14px;
    color: #27364a;
    font-weight: 700;
    border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.nav-dropdown.is-active > a {
    color: var(--blue);
    background: #eef4ff;
}

.nav-cta {
    margin-left: 8px;
    color: var(--white) !important;
    background: var(--blue) !important;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    min-width: 230px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero,
.page-hero,
.service-hero,
.print-hero {
    padding: 78px 0;
}

.hero--home {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero__grid,
.service-hero__grid,
.print-hero__grid,
.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 48px;
}

.hero__content h1,
.page-hero h1,
.service-hero h1,
.print-hero h1 {
    max-width: 760px;
    margin: 12px 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.02;
}

.service-hero h1,
.print-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.hero__content p,
.page-hero p,
.service-hero p,
.print-hero p,
.section-heading p {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}

.hero__media img,
.service-hero img,
.rounded-image {
    height: 460px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.eyebrow {
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    transition: 180ms ease;
}

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

.btn--primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 20px rgba(35, 89, 223, 0.22);
}

.btn--secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.btn--light {
    color: var(--ink);
    background: var(--white);
}

.btn--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.section {
    padding: 76px 0;
}

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

.section--ink {
    color: var(--white);
    background: var(--ink);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.feature-panel h3,
.print-strip h2 {
    margin: 8px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.wide-service-card,
.info-card,
.values-grid article,
.process-grid article,
.print-grid article,
.contact-form,
.contact-card,
.feature-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(19, 34, 56, 0.06);
}

.service-card {
    overflow: hidden;
}

.service-card img {
    height: 170px;
}

.service-card div,
.wide-service-card div,
.info-card,
.values-grid article,
.process-grid article,
.contact-card,
.contact-form,
.feature-panel {
    padding: 24px;
}

.service-card h3,
.wide-service-card h2,
.info-card h2,
.feature-list h2,
.process-grid h2 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.service-card p,
.wide-service-card p,
.info-card p,
.values-grid p,
.process-grid p,
.feature-list p,
.feature-panel p,
.legal-content p {
    color: var(--muted);
}

.service-card a:not(.btn) {
    color: var(--blue);
    font-weight: 800;
}

.service-card--accent {
    border-color: rgba(242, 109, 91, 0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}

.stats-grid div {
    padding: 26px 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.stats-grid strong {
    display: block;
    color: var(--blue);
    font-size: 36px;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-weight: 700;
}

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

.check-list li {
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(135deg, rgba(15, 42, 67, 0.94), rgba(35, 89, 223, 0.84)), url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.84);
}

.wide-service-card {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    overflow: hidden;
}

.wide-service-card img {
    height: 100%;
    min-height: 300px;
}

.wide-service-card--print {
    border-color: rgba(245, 184, 75, 0.8);
}

.service-hero {
    background: #f9fbff;
}

.process-grid,
.values-grid,
.feature-list,
.print-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-grid span,
.print-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-weight: 900;
}

.feature-list div {
    padding: 0 0 0 20px;
    border-left: 4px solid var(--teal);
}

.print-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 184, 75, 0.45), transparent 26%),
        linear-gradient(135deg, #101b31 0%, #1f4c7a 48%, #df5d52 100%);
}

.print-hero p {
    color: rgba(255, 255, 255, 0.86);
}

.print-showcase {
    position: relative;
}

.print-showcase img {
    height: 500px;
    border: 10px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.print-badge {
    position: absolute;
    right: -14px;
    bottom: 28px;
    padding: 18px 20px;
    color: var(--ink);
    background: var(--gold);
    border-radius: var(--radius);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.print-products {
    background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%);
}

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

.print-grid article {
    padding: 26px;
    border-color: rgba(245, 184, 75, 0.45);
}

.print-grid article:nth-child(2n) span {
    background: var(--coral);
}

.print-grid article:nth-child(3n) span {
    background: var(--teal);
}

.print-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-layout {
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 7px;
}

label {
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: #fbfdff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(35, 89, 223, 0.14);
}

.form-note {
    min-height: 24px;
    margin: 0;
    color: var(--teal);
    font-weight: 800;
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 240px;
    margin-top: 22px;
    color: var(--muted);
    background:
        linear-gradient(45deg, rgba(35, 89, 223, 0.10) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(24, 169, 153, 0.10) 25%, transparent 25%),
        #f8fbff;
    background-size: 28px 28px;
    border: 1px dashed #9fb2ca;
    border-radius: var(--radius);
    font-weight: 900;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-top: 28px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: #0d1b2e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding: 58px 0;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
    color: var(--white);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links,
.contact-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover,
.contact-list a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        align-items: stretch;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav > a,
    .nav-dropdown > a {
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        margin: 4px 0 8px;
        box-shadow: none;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero__grid,
    .service-hero__grid,
    .print-hero__grid,
    .split,
    .contact-layout,
    .wide-service-card {
        grid-template-columns: 1fr;
    }

    .card-grid--four,
    .card-grid--three,
    .card-grid--two,
    .process-grid,
    .values-grid,
    .feature-list,
    .print-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .print-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .top-bar {
        display: none;
    }

    .top-bar__inner,
    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .page-hero,
    .service-hero,
    .print-hero,
    .section {
        padding: 54px 0;
    }

    .hero__content h1,
    .page-hero h1,
    .service-hero h1,
    .print-hero h1 {
        font-size: 36px;
    }

    .hero__media img,
    .service-hero img,
    .rounded-image,
    .print-showcase img {
        height: 320px;
    }

    .card-grid--four,
    .card-grid--three,
    .card-grid--two,
    .process-grid,
    .values-grid,
    .feature-list,
    .print-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand__text small {
        display: none;
    }

    .print-badge {
        right: 12px;
        bottom: 12px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-heading--center {
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

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

.testimonial-grid article {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(19, 34, 56, 0.06);
}

.testimonial-grid p {
    margin-top: 0;
    color: #34445a;
    font-size: 17px;
}

.testimonial-grid strong,
.testimonial-grid span {
    display: block;
}

.testimonial-grid span {
    color: var(--muted);
    font-size: 14px;
}

.insight-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.8fr;
    gap: 32px;
    align-items: center;
    padding: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.insight-band p {
    color: rgba(255, 255, 255, 0.84);
}

.insight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.insight-list span {
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    font-weight: 800;
}

.print-hero--service {
    padding: 86px 0 70px;
    color: var(--white);
    background:
        radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(135deg, #2464ea 0%, #1746c4 52%, #0f2a7a 100%);
}

.print-hero--service::after {
    position: absolute;
    right: -12%;
    bottom: -24%;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.print-hero--service .print-hero__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 0.86fr 1.14fr;
}

.print-hero--service .eyebrow {
    color: #d9e6ff;
}

.print-hero--service .print-showcase img {
    height: auto;
    min-height: 380px;
    object-fit: contain;
    padding: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 28px 26px rgba(4, 18, 54, 0.34));
}

.print-hero__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.print-hero__metrics span {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
}

.print-hero__metrics strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.print-services-overview {
    background: #f4f8ff;
}

.print-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.print-service-cards article,
.print-benefit-grid article,
.print-issue-grid article {
    padding: 28px;
    background: var(--white);
    border: 1px solid #d8e5ff;
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(22, 61, 142, 0.09);
}

.print-service-cards article {
    min-height: 280px;
}

.print-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 14px;
    font-weight: 900;
}

.print-service-cards h3 {
    margin: 22px 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.print-service-cards p,
.print-benefit-grid p,
.print-issue-grid p,
.print-help p,
.print-about p {
    color: var(--muted);
}

.print-service-cards a {
    color: var(--blue);
    font-weight: 900;
}

.print-benefit-grid,
.print-issue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.print-benefit-grid article {
    border-left: 4px solid var(--blue);
}

.print-benefit-grid strong::before {
    color: var(--teal);
    content: "\2713  ";
}

.print-issue-grid article {
    border-color: var(--line);
}

.print-issue-grid h3 {
    margin-top: 0;
    color: var(--blue);
    font-size: 18px;
}

.print-about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.print-about__image {
    height: auto;
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(19, 34, 56, 0.18));
}

.print-provide {
    background: #ffffff;
}

.print-help {
    color: var(--white);
    background: linear-gradient(135deg, #2359df, #1b43b3);
}

.print-help__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.72fr;
    gap: 42px;
    align-items: center;
}

.print-help .eyebrow,
.print-help .check-list li::before {
    color: #b8f4eb;
}

.print-help p {
    color: rgba(255, 255, 255, 0.84);
}

.print-help__panel {
    display: grid;
    gap: 14px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(4, 18, 54, 0.18);
}

.print-help__panel h3 {
    margin: 0;
    font-size: 28px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .testimonial-grid,
    .print-service-cards,
    .print-benefit-grid,
    .print-issue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-band,
    .print-help__grid,
    .print-hero--service .print-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .testimonial-grid,
    .print-service-cards,
    .print-benefit-grid,
    .print-issue-grid,
    .insight-list {
        grid-template-columns: 1fr;
    }

    .insight-band,
    .print-help__panel {
        padding: 24px;
    }

    .print-hero--service .print-showcase img {
        min-height: 240px;
    }
}
