:root {
    --orange: #ff6b00;
    --orange-dark: #d94f00;
    --orange-soft: #fff0e4;
    --navy: #102a43;
    --teal: #0f766e;
    --purple: #6d5dfb;
    --ink: #1f2937;
    --muted: #667085;
    --paper: #fffdf9;
    --cream: #fff7ed;
    --white: #fff;
    --line: #eadfd6;
    --shadow: 0 24px 70px rgba(66, 37, 19, .12);
    --shadow-soft: 0 14px 36px rgba(66, 37, 19, .08);
    --radius: 28px;
    --radius-sm: 18px;
    --shell: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden
}

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

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

button,
input,
select {
    font: inherit
}

.shell {
    width: min(calc(100% - 34px), var(--shell));
    margin-inline: auto
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.tp-icon {
    width: 1.15em;
    height: 1.15em;
    display: inline-block;
    vertical-align: -.18em;
    flex: none
}

.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    pointer-events: none
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ffb36b, var(--purple));
    transition: width .1s linear
}

.announcement-bar {
    background: var(--navy);
    color: #e9f4ff;
    font-size: .78rem
}

.announcement-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    gap: 24px
}

.announcement-inner span,
.announcement-inner a {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.announcement-inner a {
    margin-left: auto;
    color: #fff;
    font-weight: 800
}

.announcement-inner a:hover {
    color: #ffcfaa
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(234, 223, 214, .86);
    transition: box-shadow .25s ease, background .25s ease
}

.site-header.scrolled {
    box-shadow: 0 12px 32px rgba(16, 42, 67, .08);
    background: rgba(255, 255, 255, .96)
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 25px
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0
}

.brand-logo {
    width: 184px;
    height: 54px;
    object-fit: contain;
    object-position: left center
}

.desktop-nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
    font-size: .91rem;
    font-weight: 750
}

.desktop-nav a {
    position: relative;
    padding: 27px 0;
    color: #3f4c5b
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: .2s ease
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--navy)
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after {
    transform: scaleX(1)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-weight: 850;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff8733);
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 107, 0, .24)
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    box-shadow: 0 16px 34px rgba(255, 107, 0, .3)
}

.btn-ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--navy)
}

.btn-ghost:hover {
    border-color: #ffb36b;
    box-shadow: var(--shadow-soft)
}

.btn-soft {
    background: var(--orange-soft);
    color: #9a3412;
    border-color: #fed7aa
}

.btn-white {
    background: #fff;
    color: var(--navy)
}

.btn-lg {
    padding: 15px 21px;
    border-radius: 18px
}

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    place-items: center
}

.menu-toggle span {
    display: grid;
    place-items: center
}

.mobile-menu {
    border-top: 1px solid var(--line);
    background: #fff
}

.mobile-menu-inner {
    display: grid;
    padding: 14px 0 22px
}

.mobile-menu a {
    padding: 12px 4px;
    font-weight: 800;
    border-bottom: 1px solid #f3ece6
}

.hero {
    position: relative;
    overflow: hidden
}

.hero-home {
    padding: 86px 0 94px;
    background: radial-gradient(circle at 15% 20%, rgba(255, 179, 107, .23), transparent 34%), linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.45rem);
    line-height: .92;
    letter-spacing: -.065em;
    margin: 24px 0;
    color: var(--navy)
}

.hero-copy h1 span {
    color: var(--orange);
    position: relative
}

.hero-copy h1 span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 12px;
    background: linear-gradient(90deg, #ffd9b7, #ff9f57);
    border-radius: 999px;
    z-index: -1;
    transform: rotate(-1deg)
}

.hero-copy>p,
.page-hero p {
    font-size: 1.16rem;
    color: var(--muted);
    max-width: 700px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .01em;
    box-shadow: 0 8px 24px rgba(154, 52, 18, .06)
}

.pill-live {
    background: rgba(255, 255, 255, .8)
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    animation: pulse 1.8s infinite
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 29px
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 23px;
    color: #5a6572;
    font-size: .86rem;
    font-weight: 750
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.trust-row .tp-icon {
    color: var(--teal)
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .7
}

.hero-blob-one {
    width: 280px;
    height: 280px;
    background: #ffe0c4;
    right: -90px;
    top: -70px
}

.hero-blob-two {
    width: 180px;
    height: 180px;
    background: #ded8ff;
    left: -70px;
    bottom: -80px
}

.hero-showcase {
    min-height: 510px;
    position: relative;
    display: grid;
    place-items: center
}

.showcase-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 107, 0, .28);
    border-radius: 50%;
    animation: spin 20s linear infinite
}

.orbit-one {
    width: 430px;
    height: 430px
}

.orbit-two {
    width: 330px;
    height: 330px;
    animation-direction: reverse;
    animation-duration: 16s
}

.print-machine-card {
    position: relative;
    width: min(390px, 82vw);
    height: 350px;
    border-radius: 38px;
    background: linear-gradient(150deg, #133554, #0d2236);
    box-shadow: 0 35px 80px rgba(16, 42, 67, .28);
    padding: 26px;
    transform: rotate(-2deg)
}

.machine-top {
    display: flex;
    gap: 8px
}

.machine-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #47627b
}

.machine-light.active {
    background: #3ee48e;
    box-shadow: 0 0 16px rgba(62, 228, 142, .7)
}

.machine-slot {
    height: 23px;
    border-radius: 12px;
    background: #071623;
    margin-top: 26px;
    padding: 6px 18px
}

.machine-slot span {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: #324a5e
}

.printed-sheet {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%) rotate(3deg);
    width: 280px;
    min-height: 305px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 24px 50px rgba(16, 42, 67, .23);
    animation: paperFloat 4s ease-in-out infinite
}

.printed-sheet:before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed #ffd1ad;
    border-radius: 10px
}

.sheet-brand {
    font-size: .65rem;
    letter-spacing: .18em;
    font-weight: 950;
    color: var(--orange);
    position: relative
}

.printed-sheet strong {
    display: block;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--navy);
    margin: 36px 0 25px;
    position: relative
}

.sheet-lines {
    display: grid;
    gap: 8px;
    position: relative
}

.sheet-lines i {
    height: 6px;
    border-radius: 999px;
    background: #edf1f5
}

.sheet-lines i:nth-child(2) {
    width: 82%
}

.sheet-lines i:nth-child(3) {
    width: 64%
}

.printed-sheet small {
    position: absolute;
    bottom: 22px;
    left: 25px;
    color: #697586;
    font-weight: 700
}

.floating-note {
    position: absolute;
    padding: 10px 14px;
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    font-size: .78rem;
    font-weight: 900;
    animation: float 4s ease-in-out infinite
}

.note-one {
    left: 0;
    top: 78px;
    transform: rotate(-8deg)
}

.note-two {
    right: 0;
    top: 50px;
    background: #ddfce8;
    transform: rotate(7deg);
    animation-delay: .6s
}

.note-three {
    right: 12px;
    bottom: 3px;
    background: #eeeaff;
    transform: rotate(-5deg);
    animation-delay: 1.2s
}

.stats-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stats-grid article {
    padding: 25px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 9px
}

.stats-grid article:last-child {
    border-right: 0
}

.stats-grid strong {
    font-size: 1.65rem;
    color: var(--navy);
    letter-spacing: -.04em
}

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

.section {
    padding: 92px 0
}

.section-cream {
    background: var(--cream)
}

.section-dark {
    background: linear-gradient(145deg, #102a43, #0a1d2e);
    color: #fff
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px
}

.section-heading h2,
.process-intro h2,
.location-copy h2,
.faq-intro h2,
.final-cta h2,
.content-card h2,
.prep-grid h2 {
    font-size: clamp(2.25rem, 4.7vw, 4.15rem);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 8px 0;
    color: var(--navy)
}

.section-heading p,
.location-copy p,
.faq-intro p {
    color: var(--muted);
    max-width: 660px
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .68rem;
    color: var(--orange);
    font-weight: 950
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-weight: 900;
    white-space: nowrap
}

.text-link .tp-icon,
.catalog-card>a .tp-icon,
.contact-method-card b .tp-icon,
.portfolio-card-new>a .tp-icon {
    transition: transform .2s ease
}

.text-link:hover .tp-icon,
.catalog-card>a:hover .tp-icon,
.contact-method-card:hover b .tp-icon,
.portfolio-card-new>a:hover .tp-icon {
    transform: translateX(4px)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.service-card:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -65px;
    top: -65px;
    background: var(--orange-soft);
    transition: transform .35s ease
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: #ffc08d
}

.service-card:hover:before {
    transform: scale(1.45)
}

.service-card h3,
.service-card h2 {
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 10px 0;
    color: var(--navy)
}

.service-card p {
    color: var(--muted)
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    background: linear-gradient(145deg, #fff1e7, #ffe0c4);
    display: grid;
    place-items: center;
    color: var(--orange);
    margin-bottom: 24px;
    position: relative;
    transition: transform .25s ease
}

.service-icon .tp-icon {
    width: 27px;
    height: 27px
}

.service-card:hover .service-icon {
    transform: rotate(-7deg) scale(1.07)
}

.tag-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 18px
}

.tag-row span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff6ee;
    color: #9a3412;
    font-size: .69rem;
    font-weight: 850;
    border: 1px solid #ffdfc6
}

.card-arrow {
    position: absolute;
    right: 23px;
    bottom: 23px;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    transition: .25s ease
}

.service-card:hover .card-arrow {
    background: var(--orange);
    transform: translateX(3px)
}

.catalog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.catalog-card {
    padding: 25px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #efdccc;
    box-shadow: 0 12px 30px rgba(123, 69, 25, .05);
    transition: .25s ease
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft)
}

.catalog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.catalog-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center
}

.catalog-icon .tp-icon {
    width: 27px;
    height: 27px
}

.catalog-badge {
    padding: 6px 9px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #08794f;
    font-size: .67rem;
    font-weight: 900
}

.catalog-card h3 {
    font-size: 1.28rem;
    line-height: 1.15;
    color: var(--navy);
    margin: 22px 0 8px
}

.catalog-card p {
    color: var(--muted);
    min-height: 49px
}

.catalog-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 19px 0
}

.catalog-price small {
    display: block;
    width: 100%;
    color: var(--muted);
    font-size: .7rem
}

.catalog-price strong {
    font-size: 1.55rem;
    color: var(--orange);
    letter-spacing: -.03em
}

.catalog-price span {
    font-size: .76rem;
    color: var(--muted)
}

.catalog-card>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 900;
    font-size: .85rem
}

.friendly-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.friendly-price-card {
    padding: 22px;
    border-radius: 23px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .23s ease
}

.friendly-price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: #ffc08d
}

.friendly-price-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.friendly-price-head span {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 950
}

.friendly-price-head small {
    padding: 5px 8px;
    background: #f1f5f9;
    border-radius: 999px;
    color: #475569;
    font-weight: 850
}

.friendly-price-card h3 {
    font-size: 1.12rem;
    color: var(--navy);
    margin: 18px 0 3px
}

.friendly-price-card p {
    color: var(--muted);
    font-size: .8rem;
    min-height: 42px
}

.friendly-price-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 16px
}

.friendly-price-value strong {
    font-size: 1.42rem;
    color: var(--orange)
}

.friendly-price-value span {
    font-size: .72rem;
    color: var(--muted)
}

.catalog-summary {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px
}

.catalog-summary span {
    padding: 10px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    color: var(--muted);
    font-size: .8rem
}

.catalog-summary strong {
    color: var(--navy);
    margin-right: 3px
}

.empty-card {
    padding: 34px;
    border-radius: 25px;
    border: 1px dashed #ffb36b;
    background: #fff
}

.process-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start
}

.process-intro h2 {
    color: #fff
}

.process-intro p {
    color: #c6d2de
}

.pill-dark {
    background: #183b59;
    border-color: #31516d;
    color: #ffd4b1
}

.process-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.process-cards li {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    transition: .23s ease
}

.process-cards li:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px)
}

.process-icon {
    width: 49px;
    height: 49px;
    border-radius: 16px;
    background: rgba(255, 107, 0, .18);
    color: #ffae73;
    display: grid;
    place-items: center
}

.process-icon .tp-icon {
    width: 24px;
    height: 24px
}

.process-cards small {
    color: #ffae73;
    font-weight: 950
}

.process-cards strong {
    display: block;
    color: #fff;
    margin: 1px 0 4px
}

.process-cards p {
    margin: 0;
    color: #b9c6d1;
    font-size: .8rem
}

.location-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px;
    align-items: center
}

.location-info {
    display: grid;
    gap: 10px;
    margin: 22px 0
}

.location-info span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #465565;
    font-weight: 750
}

.location-info .tp-icon {
    color: var(--orange)
}

.map-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-height: 420px;
    background: #eaeaea
}

.map-card iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block
}

.map-card-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft)
}

.map-card-label strong,
.map-card-label span {
    display: block
}

.map-card-label span {
    font-size: .73rem;
    color: var(--muted)
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 65px;
    align-items: start
}

.faq-list {
    display: grid;
    gap: 10px
}

.faq-item {
    background: #fff;
    border: 1px solid #eddccc;
    border-radius: 20px;
    overflow: hidden
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-weight: 850;
    color: var(--navy);
    cursor: pointer
}

.faq-item button .tp-icon {
    transition: transform .2s ease
}

.faq-item button[aria-expanded="true"] .tp-icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 22px 19px
}

.faq-answer p {
    margin: 0;
    color: var(--muted)
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff5eb, #fff);
    border: 1px solid #ffd8b8;
    box-shadow: var(--shadow-soft)
}

.final-cta h2 {
    margin-bottom: 10px
}

.final-cta p {
    color: var(--muted)
}

.cta-actions {
    display: flex;
    gap: 10px;
    min-width: max-content
}

.site-footer {
    background: #0c2234;
    color: #fff;
    padding: 65px 0 24px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.55fr .7fr .8fr 1fr;
    gap: 42px
}

.footer-logo {
    width: 210px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p,
.footer-location p,
.footer-links span {
    color: #aebdca
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 19px
}

.social-links a {
    width: 39px;
    height: 39px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #153751;
    color: #fff;
    transition: .2s
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px)
}

.footer-links h3,
.footer-location h3 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #ffb47d
}

.footer-links a,
.footer-links span {
    display: block;
    margin: 8px 0;
    font-size: .88rem
}

.footer-links a:hover {
    color: #ffb47d
}

.footer-location .text-link {
    color: #ffb47d
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid #244156;
    display: flex;
    justify-content: space-between;
    color: #8fa3b3;
    font-size: .78rem
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: grid;
    gap: 9px;
    justify-items: end
}

.floating-action {
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 14px 34px rgba(16, 42, 67, .2);
    transition: .2s ease
}

.floating-action:hover {
    transform: translateY(-3px)
}

.floating-map {
    width: 54px;
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line)
}

.floating-wa {
    padding: 0 17px;
    background: #20bd67;
    color: #fff;
    font-weight: 900
}

.page-hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at 88% 20%, #ffe2ca, transparent 30%), linear-gradient(180deg, #fffdf9, #fff7ed)
}

.page-hero h1 {
    font-size: clamp(3.15rem, 6vw, 5.65rem);
    max-width: 940px
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center
}

.catalog-hero-card,
.contact-quick-card {
    padding: 28px;
    border-radius: 27px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft)
}

.catalog-hero-card>.tp-icon,
.contact-quick-card>span {
    width: 58px;
    height: 58px;
    padding: 15px;
    border-radius: 18px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center
}

.catalog-hero-card strong,
.contact-quick-card strong {
    display: block;
    font-size: 1.25rem;
    color: var(--navy);
    margin: 18px 0 5px
}

.catalog-hero-card span,
.contact-quick-card small {
    color: var(--muted)
}

.catalog-filter {
    display: grid;
    grid-template-columns: minmax(250px, 1.8fr) repeat(5, minmax(120px, .7fr)) auto auto;
    gap: 9px;
    padding: 14px;
    border-radius: 23px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 92px;
    z-index: 30
}

.catalog-filter select,
.catalog-filter input {
    width: 100%;
    border: 1px solid #e6ddd5;
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    padding: 11px 12px;
    outline: none
}

.catalog-filter select:focus,
.catalog-filter input:focus {
    border-color: #ff9f57;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, .1)
}

.filter-search {
    position: relative
}

.filter-search>.tp-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8b98
}

.filter-search input {
    padding-left: 37px
}

.price-size-group {
    margin-top: 45px
}

.price-group-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 17px
}

.price-group-heading>div {
    display: flex;
    align-items: center;
    gap: 14px
}

.size-chip {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 1.08rem
}

.price-group-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.5rem
}

.price-group-heading p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem
}

.price-group-heading>a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 850;
    font-size: .85rem
}

.price-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.price-card-friendly {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .22s ease
}

.price-card-friendly:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: #ffbf8b
}

.price-card-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .73rem;
    font-weight: 850;
    color: #465565
}

.price-card-status small {
    margin-left: auto;
    padding: 4px 7px;
    border-radius: 999px;
    background: #f1f5f9
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.status-bw {
    background: #1f2937
}

.status-color {
    background: linear-gradient(135deg, #ff4d6d, #7c3aed, #0ea5e9)
}

.price-card-friendly h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin: 17px 0 2px
}

.price-card-friendly>p {
    font-size: .8rem;
    color: var(--muted);
    min-height: 38px
}

.price-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 14px 0
}

.price-specs span {
    padding: 4px 7px;
    background: #fff4e9;
    border-radius: 8px;
    color: #9a3412;
    font-size: .65rem;
    font-weight: 850
}

.price-card-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f0e8e2;
    padding-top: 15px
}

.price-card-bottom small {
    display: block;
    color: var(--muted);
    font-size: .66rem
}

.price-card-bottom strong {
    display: block;
    color: var(--orange);
    font-size: 1.35rem
}

.price-order-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #20bd67;
    color: #fff;
    display: grid;
    place-items: center
}

.internal-code {
    margin-top: 12px;
    font-size: .68rem;
    color: #7a8793
}

.internal-code summary {
    cursor: pointer
}

.internal-code code {
    display: inline-block;
    margin-top: 5px;
    padding: 4px 6px;
    background: #f4f6f8;
    border-radius: 7px
}

.empty-state {
    text-align: center;
    padding: 60px 25px;
    border: 1px dashed #ffb36b;
    border-radius: 28px;
    background: #fff
}

.empty-state>span {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center;
    margin: 0 auto
}

.empty-state>span .tp-icon {
    width: 30px;
    height: 30px
}

.empty-state h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 5px
}

.empty-state p {
    color: var(--muted)
}

.addon-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.addon-group-card {
    padding: 24px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #eddccc
}

.addon-group-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.addon-group-head>span {
    width: 47px;
    height: 47px;
    border-radius: 15px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center
}

.addon-group-head h3,
.addon-group-head p {
    margin: 0
}

.addon-group-head h3 {
    color: var(--navy)
}

.addon-group-head p {
    font-size: .75rem;
    color: var(--muted)
}

.addon-list {
    display: grid;
    margin-top: 17px
}

.addon-list>div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1e8e2
}

.addon-list>div:last-child {
    border-bottom: 0
}

.addon-list span {
    font-size: .83rem
}

.addon-list small {
    display: block;
    color: var(--muted);
    font-size: .65rem
}

.addon-list strong {
    color: var(--orange);
    white-space: nowrap
}

.catalog-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft)
}

.catalog-note>span {
    width: 60px;
    height: 60px;
    border-radius: 19px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center
}

.catalog-note h2,
.catalog-note p {
    margin: 0
}

.catalog-note h2 {
    color: var(--navy)
}

.catalog-note p {
    color: var(--muted)
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.contact-method-card {
    padding: 26px;
    border-radius: 25px;
    border: 1px solid var(--line);
    background: #fff;
    transition: .22s ease
}

.contact-method-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: #ffbf8b
}

.contact-method-card>span {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center
}

.contact-method-card small {
    display: block;
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 20px
}

.contact-method-card h2 {
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.2
}

.contact-method-card p {
    color: var(--muted);
    font-size: .85rem
}

.contact-method-card b {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--navy);
    font-size: .82rem
}

.content-grid,
.prep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.content-card,
.prep-grid>article {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #fff
}

.tag-row-large span {
    font-size: .78rem;
    padding: 8px 11px
}

.check-list {
    padding-left: 0;
    list-style: none
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    color: #53606d
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e9fbf1;
    color: #08794f;
    font-size: .72rem;
    font-weight: 950
}

.product-hero-icon {
    min-height: 300px;
    border-radius: 36px;
    background: linear-gradient(145deg, var(--navy), #173f60);
    color: #fff;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden
}

.product-hero-icon:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 107, 0, .2);
    right: -50px;
    top: -50px
}

.product-hero-icon>span {
    width: 120px;
    height: 120px;
    border-radius: 35px;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center
}

.product-hero-icon>span .tp-icon {
    width: 60px;
    height: 60px
}

.product-hero-icon small {
    position: absolute;
    bottom: 24px;
    letter-spacing: .2em;
    font-weight: 900;
    color: #ffb47d
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0
}

.steps-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.steps-page li {
    display: flex;
    gap: 15px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff
}

.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center;
    flex: none
}

.steps-page small {
    color: var(--orange);
    font-weight: 950
}

.steps-page strong {
    display: block;
    color: var(--navy);
    font-size: 1.06rem
}

.steps-page p {
    margin: 4px 0 0;
    color: var(--muted)
}

.channel-cards {
    display: grid;
    gap: 11px
}

.channel-cards a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 17px;
    border: 1px solid var(--line);
    background: #fff
}

.channel-cards a>.tp-icon {
    width: 28px;
    height: 28px;
    color: var(--orange)
}

.channel-cards strong,
.channel-cards small {
    display: block
}

.channel-cards small {
    color: var(--muted)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.portfolio-card-new {
    padding: 20px;
    border-radius: 27px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .24s ease
}

.portfolio-card-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft)
}

.portfolio-visual {
    height: 235px;
    border-radius: 21px;
    background: linear-gradient(145deg, #fff0e4, #fff9f3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px
}

.portfolio-visual>span {
    width: 85px;
    height: 85px;
    border-radius: 27px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    transform: rotate(-6deg)
}

.portfolio-visual>span .tp-icon {
    width: 42px;
    height: 42px
}

.portfolio-visual small {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 2.5rem;
    font-weight: 950;
    color: #ffd4b1
}

.portfolio-featured .portfolio-visual {
    background: linear-gradient(145deg, #e9e5ff, #fff)
}

.portfolio-card-new h2 {
    color: var(--navy);
    font-size: 1.3rem
}

.portfolio-card-new p {
    color: var(--muted)
}

.portfolio-card-new>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 900;
    font-size: .82rem
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1)
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes float {

    0%,
    100% {
        translate: 0 0
    }

    50% {
        translate: 0 -9px
    }
}

@keyframes paperFloat {

    0%,
    100% {
        transform: translateX(-50%) rotate(3deg) translateY(0)
    }

    50% {
        transform: translateX(-50%) rotate(2deg) translateY(-8px)
    }
}

@media(max-width:1120px) {
    .catalog-filter {
        grid-template-columns: repeat(4, 1fr);
        position: static
    }

    .filter-search {
        grid-column: span 2
    }

    .price-card-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .contact-method-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .footer-location {
        grid-column: 2/4
    }

    .friendly-price-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {
    .announcement-location {
        display: none
    }

    .desktop-nav,
    .admin-link {
        display: none
    }

    .menu-toggle {
        display: grid
    }

    .nav-actions {
        margin-left: auto
    }

    .hero-grid,
    .page-hero-grid,
    .process-layout,
    .location-grid,
    .faq-layout {
        grid-template-columns: 1fr
    }

    .hero-home {
        padding-top: 62px
    }

    .hero-showcase {
        min-height: 470px;
        margin-top: 35px
    }

    .service-grid,
    .catalog-card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .friendly-price-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid article:nth-child(2) {
        border-right: 0
    }

    .stats-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .price-card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .addon-groups {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column
    }

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

    .cta-actions {
        min-width: 0;
        width: 100%;
        flex-wrap: wrap
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-location {
        grid-column: auto
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .catalog-note {
        grid-template-columns: auto 1fr
    }

    .catalog-note .btn {
        grid-column: 1/-1
    }

    .process-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:650px) {
    .shell {
        width: min(calc(100% - 22px), var(--shell))
    }

    .announcement-inner {
        justify-content: center
    }

    .announcement-inner>span:first-child {
        display: none
    }

    .announcement-inner a {
        margin-left: 0
    }

    .nav-wrap {
        min-height: 68px
    }

    .brand-logo {
        width: 145px;
        height: 44px
    }

    .nav-actions>.btn-primary {
        padding: 10px 12px;
        font-size: .78rem
    }

    .hero-copy h1 {
        font-size: 3.45rem
    }

    .hero-copy>p,
    .page-hero p {
        font-size: 1rem
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-showcase {
        min-height: 400px
    }

    .print-machine-card {
        width: 290px;
        height: 270px
    }

    .printed-sheet {
        width: 220px;
        min-height: 250px;
        bottom: -75px
    }

    .printed-sheet strong {
        font-size: 1.55rem;
        margin-top: 28px
    }

    .floating-note {
        font-size: .66rem
    }

    .note-one {
        left: 0;
        top: 45px
    }

    .note-two {
        right: 0;
        top: 25px
    }

    .note-three {
        right: 0
    }

    .orbit-one {
        width: 330px;
        height: 330px
    }

    .orbit-two {
        width: 255px;
        height: 255px
    }

    .section {
        padding: 68px 0
    }

    .service-grid,
    .catalog-card-grid,
    .friendly-price-grid,
    .price-card-grid,
    .addon-groups,
    .contact-method-grid,
    .content-grid,
    .prep-grid,
    .steps-page,
    .portfolio-grid,
    .process-cards {
        grid-template-columns: 1fr
    }

    .stats-grid article {
        padding: 19px 14px;
        display: block
    }

    .stats-grid strong,
    .stats-grid span {
        display: block
    }

    .stats-grid strong {
        font-size: 1.4rem
    }

    .section-heading h2,
    .process-intro h2,
    .location-copy h2,
    .faq-intro h2,
    .final-cta h2,
    .content-card h2,
    .prep-grid h2 {
        font-size: 2.45rem
    }

    .catalog-filter {
        grid-template-columns: 1fr
    }

    .filter-search {
        grid-column: auto
    }

    .catalog-filter .btn {
        width: 100%
    }

    .price-group-heading {
        align-items: flex-start
    }

    .price-group-heading>a {
        display: none
    }

    .size-chip {
        width: 49px;
        height: 49px
    }

    .page-hero {
        padding: 70px 0 55px
    }

    .page-hero h1 {
        font-size: 3.15rem
    }

    .map-card,
    .map-card iframe {
        min-height: 340px;
        height: 340px
    }

    .final-cta {
        padding: 28px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-brand,
    .footer-location {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px
    }

    .floating-map {
        display: none
    }

    .floating-wa span {
        display: none
    }

    .floating-wa {
        width: 56px;
        padding: 0
    }

    .catalog-note {
        grid-template-columns: 1fr;
        text-align: left
    }

    .catalog-note>span {
        width: 50px;
        height: 50px
    }

    .contact-quick-card,
    .catalog-hero-card {
        margin-top: 15px
    }

    .process-cards li {
        padding: 17px
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }
}