:root {
    --blue: #1688c9;
    --blue-dark: #075b92;
    --blue-soft: #eaf6fd;
    --ink: #172033;
    --muted: #667085;
    --line: #e3eaf2;
    --soft: #f5f9fd;
    --white: #ffffff;
    --green: #22b45a;
    --orange: #ffb323;
    --red: #f20d0d;
    --shadow: 0 18px 44px rgba(23, 32, 51, .12);
    --radius: 12px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.top-contact {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 7px 18px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    font-size: 14px;
    font-weight: 800;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
}

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

.site-header-inner,
.section-inner,
.footer-inner,
.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
    min-height: 126px;
    padding: 14px 0;
}

.brand img {
    display: block;
    width: 292px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    font-size: 16px;
    font-weight: 800;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--ink);
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.products-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 80;
    display: none;
    width: min(980px, 92vw);
    transform: translateX(-50%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
    border-top: 4px solid var(--blue);
    border-radius: 0 0 var(--radius) var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.nav-dropdown:hover .products-menu,
.nav-dropdown:focus-within .products-menu {
    display: grid;
}

.products-menu div {
    display: grid;
    align-content: start;
    gap: 8px;
}

.products-menu strong {
    margin-top: 8px;
    color: var(--blue-dark);
    font-size: 15px;
}

.products-menu div > strong:first-child {
    margin-top: 0;
}

.products-menu a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.15;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.site-header .button-icon {
    filter: brightness(0) invert(1);
}

.site-header .button {
    padding: 12px 18px;
    font-size: 16px;
}

.button-primary,
.whatsapp-button {
    color: #fff;
    background: var(--green);
    box-shadow: 0 14px 26px rgba(34, 180, 90, .24);
}

.button-primary:hover,
.whatsapp-button:hover {
    background: #189949;
    box-shadow: 0 18px 34px rgba(24, 153, 73, .28);
    transform: translateY(-1px);
}

.button-blue {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 14px 26px rgba(22, 136, 201, .24);
}

.button-blue:hover {
    background: var(--blue-dark);
    box-shadow: 0 18px 34px rgba(0, 96, 160, .28);
    transform: translateY(-1px);
}

.button-light,
.button.light {
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(23, 32, 51, .07);
}

.button.secondary {
    color: #fff;
    background: var(--blue);
}

.section {
    padding: 80px 0;
}

.section > .section-head,
.section > .category-grid,
.section > .product-grid,
.section > .steps-grid,
.section > .solution-grid,
.section > .article-grid,
.section > .filters,
.section > .purchase-toolbar,
.section > .quantity-group,
.section > .empty-products,
.section > .quote-panel,
.section > .visual-panel {
    width: min(var(--max), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 136, 201, .18), transparent 30%),
        linear-gradient(135deg, #050b14 0%, #08111F 58%, #0B1324 100%);
}

.section-dark .eyebrow,
.section-dark .section-head h2 {
    color: #fff;
}

.section-dark .feature-card {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .28);
}

.section-dark .feature-card h3 {
    color: #fff;
}

.section-dark .feature-card p {
    color: #d6e3f2;
}

.hero {
    position: relative;
    padding: 58px 0 66px;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 179, 35, .08), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(57, 177, 235, .16), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 92%;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(28, 161, 226, .34), transparent 58%),
        radial-gradient(ellipse at 50% 50%, rgba(135, 220, 255, .24), transparent 72%);
    border-radius: 999px;
    filter: blur(30px);
    opacity: .72;
    transform: translate3d(-62%, -8%, 0) scale(1.12);
    animation: hero-section-light 15s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle, rgba(0, 174, 239, .12) 0 1.2px, transparent 1.4px),
        radial-gradient(circle, rgba(236, 0, 140, .08) 0 1px, transparent 1.3px),
        radial-gradient(circle, rgba(255, 203, 5, .1) 0 1px, transparent 1.3px),
        linear-gradient(110deg, transparent 0 52%, rgba(255, 255, 255, .42) 52% 54%, transparent 54% 100%);
    background-position: 0 0, 12px 16px, 24px 6px, center;
    background-size: 44px 44px, 52px 52px, 60px 60px, 100% 100%;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .42) 36%, rgba(0, 0, 0, .18) 100%);
    opacity: .46;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 70px;
    align-items: center;
}

@keyframes hero-section-light {
    0%,
    10% {
        opacity: .44;
        transform: translate3d(-62%, -8%, 0) scale(1.12);
    }

    32% {
        opacity: .9;
        transform: translate3d(18%, -6%, 0) scale(1.16);
    }

    44% {
        opacity: .68;
        transform: translate3d(62%, -4%, 0) scale(1.12);
    }

    52% {
        opacity: 0;
        transform: translate3d(38%, 72%, 0) scale(.82);
    }

    60% {
        opacity: .62;
        transform: translate3d(18%, 52%, 0) scale(.96);
    }

    78% {
        opacity: .86;
        transform: translate3d(12%, 12%, 0) scale(1.08);
    }

    100% {
        opacity: .44;
        transform: translate3d(6%, -26%, 0) scale(1.12);
    }
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero .eyebrow {
    padding-bottom: 14px;
    white-space: nowrap;
}

.hero h1 {
    margin: 0;
    max-width: 650px;
    color: #101522;
    font-size: clamp(38px, 4.45vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 20px;
}

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

.hero-actions .button {
    width: 238px;
}

.hero-mockups {
    position: relative;
    min-height: 500px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 24% 24%, rgba(22, 136, 201, .16), transparent 30%),
        linear-gradient(135deg, rgba(234, 246, 253, .86), rgba(255, 255, 255, .72));
    border: 1px solid rgba(22, 136, 201, .16);
    box-shadow:
        0 24px 70px rgba(7, 91, 146, .16),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(4px);
}

.hero-mockups::before {
    content: "";
    position: absolute;
    inset: 28px;
    z-index: 0;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .68)),
        repeating-linear-gradient(90deg, rgba(7, 91, 146, .035) 0 1px, transparent 1px 24px);
    box-shadow:
        inset 0 0 0 1px rgba(22, 136, 201, .14),
        0 18px 44px rgba(23, 32, 51, .08);
}

.hero-mockups::after {
    content: "";
    position: absolute;
    inset: -12%;
    z-index: 2;
    background:
        radial-gradient(circle at 30% 46%, rgba(56, 176, 235, .2), transparent 25%),
        radial-gradient(circle at 72% 36%, rgba(22, 136, 201, .14), transparent 28%);
    filter: blur(14px);
    opacity: .46;
    pointer-events: none;
}

@keyframes hero-blue-light {
    0%,
    20% {
        opacity: .46;
        background-position: center, center, -80% 0;
        transform: translate3d(-18%, 5%, 0) rotate(-5deg);
    }

    34%,
    52% {
        opacity: .9;
        background-position: center, center, 80% 0;
        transform: translate3d(7%, -6%, 0) rotate(2deg);
    }

    66%,
    82% {
        opacity: .58;
        background-position: center, center, 120% 0;
        transform: translate3d(17%, 7%, 0) rotate(5deg);
    }

    94%,
    100% {
        opacity: .46;
        background-position: center, center, -80% 0;
        transform: translate3d(-18%, 5%, 0) rotate(-5deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero::before,
    .mockup-card,
    .hero-mockups::after,
    .folder-carousel img,
    .folder-thumbs span {
        animation: none;
    }

    .mockup-card {
        opacity: 1;
        transform: none;
    }

    .hero-mockups::after {
        opacity: .5;
        transform: translate3d(0, 0, 0);
    }

    .folder-carousel img:first-child {
        opacity: 1;
    }

    .folder-thumbs span:first-child {
        border-color: var(--blue);
        opacity: 1;
    }
}

.mockup-card {
    position: absolute;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .96), transparent 38%),
        linear-gradient(145deg, #ffffff 0%, #f7fbfd 62%, #edf7fc 100%);
    box-shadow:
        0 20px 40px rgba(23, 32, 51, .14),
        0 2px 0 rgba(255, 255, 255, .86) inset,
        inset 0 -18px 34px rgba(7, 91, 146, .045);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(-46px, -30px, 0) rotate(-10deg) scale(.94);
    transform-origin: 20% 120%;
    animation: deal-mockup-card .72s cubic-bezier(.2, .82, .2, 1) forwards;
}

.mockup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .24), transparent 42%),
        radial-gradient(circle at 72% 16%, rgba(255, 255, 255, .34), transparent 26%);
    pointer-events: none;
}

.mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--mockup-focus, center);
    filter: brightness(1.035) contrast(1.035) saturate(.96);
}

.mockup-1 {
    left: 26px;
    top: 36px;
    width: 286px;
    height: 286px;
    z-index: 4;
    --mockup-focus: 42% 42%;
    animation-delay: .1s;
}

.mockup-2 {
    right: 28px;
    top: 48px;
    width: 292px;
    height: 216px;
    z-index: 3;
    --mockup-focus: 50% 58%;
    animation-delay: .22s;
}

.mockup-3 {
    left: 38px;
    bottom: 42px;
    width: 292px;
    height: 204px;
    z-index: 5;
    --mockup-focus: 52% 50%;
    animation-delay: .34s;
}

.mockup-4 {
    right: 42px;
    bottom: 50px;
    width: 270px;
    height: 202px;
    z-index: 4;
    --mockup-focus: 54% 48%;
    animation-delay: .46s;
}

@keyframes deal-mockup-card {
    0% {
        opacity: 0;
        transform: translate3d(-46px, -30px, 0) rotate(-10deg) scale(.94);
    }

    72% {
        opacity: 1;
        transform: translate3d(4px, 3px, 0) rotate(1.4deg) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .mockup-card,
    .folder-carousel img,
    .folder-thumbs span {
        animation: none;
    }

    .mockup-card {
        opacity: 1;
        transform: none;
    }

    .folder-carousel img:first-child {
        opacity: 1;
    }

    .folder-thumbs span:first-child {
        border-color: var(--blue);
        opacity: 1;
    }
}

.mockup-5 {
    left: 44px;
    bottom: 142px;
    width: 150px;
    height: 140px;
    z-index: 2;
}

.flyer-selector-section {
    background:
        linear-gradient(180deg, #f3f8fc 0%, #eef6fb 100%);
}

.flyer-selector-heading {
    margin-bottom: 22px;
    text-align: center;
}

.flyer-selector-heading .eyebrow {
    margin: 0;
}

.flyer-selector-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.flyer-selector-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 8px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.flyer-selector {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: start;
}

.flyer-selector-intro {
    position: sticky;
    top: 142px;
    padding: 0 28px 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue-soft), #fff);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.flyer-selector-intro img {
    display: block;
    width: calc(100% + 86px);
    max-width: none;
    height: auto;
    max-height: 533px;
    margin: 24px -43px -30px;
    object-fit: contain;
    object-position: center bottom;
}

.flyer-selector-panel {
    display: grid;
    gap: 16px;
}

.selector-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(22, 136, 201, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 24px rgba(23, 32, 51, .05);
}

.selector-progress button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: #f2f7fb;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.selector-progress button.is-active {
    color: #fff;
    background: var(--blue);
}

.selector-progress button.is-complete {
    color: var(--blue-dark);
    background: var(--blue-soft);
}

.selector-step,
.selector-result {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
    transition: opacity .2s ease, filter .2s ease;
}

.selector-step.is-locked,
.selector-result.is-locked {
    display: block;
    opacity: .72;
    background: linear-gradient(135deg, #fff, #f7fbff);
    box-shadow: none;
}

.selector-step.is-locked .selector-step-head,
.selector-result.is-locked .selector-step-head {
    margin-bottom: 0;
}

.selector-step.is-locked .selector-step-head > span,
.selector-result.is-locked .selector-step-head > span {
    color: var(--blue-dark);
    background: var(--blue-soft);
}

.selector-step.is-locked .selector-options,
.selector-result.is-locked [data-result-content] {
    display: none;
}

.selector-step.is-collapsed {
    display: none;
}

.selector-step.is-collapsed .selector-step-head {
    margin-bottom: 0;
}

.selector-step.is-collapsed .selector-step-head p:not(.selector-step-summary),
.selector-step.is-collapsed .selector-options,
.selector-step.is-collapsed [data-quantity-options] {
    display: none;
}

.selector-step-summary {
    display: none;
    margin: 6px 0 0;
    color: var(--blue-dark);
    font-weight: 900;
}

.selector-step.is-collapsed .selector-step-summary {
    display: block;
}

.selector-result.is-active .selector-step-head {
    display: none;
}

.selector-step-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.selector-step-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-weight: 900;
}

.selector-step-head h3 {
    margin: 0;
    color: #101522;
    font-size: 24px;
}

.selector-step-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

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

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

.selector-option {
    min-height: 116px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 8px 18px rgba(23, 32, 51, .05);
    cursor: pointer;
    text-align: left;
}

.selector-option:hover {
    border-color: var(--blue);
}

.selector-option.is-selected {
    border-color: var(--green);
    background: #f0fff6;
    box-shadow: 0 0 0 3px rgba(34, 180, 90, .14);
}

.selector-option strong {
    display: block;
    font-size: 18px;
}

.selector-option span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

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

.quantity-option {
    min-height: 70px;
    text-align: center;
}

.selector-empty,
.selector-no-result p {
    margin: 0 0 16px;
    color: var(--muted);
}

.selector-product {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.selector-product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}

.selector-product h4 {
    margin: 0 0 10px;
    color: #101522;
    font-size: 21px;
    line-height: 1.12;
}

.selector-product dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 10px;
}

.selector-product dl div {
    padding: 9px 10px;
    border-radius: 8px;
    background: #fff;
}

.selector-product dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.selector-product dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.18;
}

.selector-price {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-size: 18px;
}

.selector-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.selector-result-actions .selector-main-cta {
    min-width: 260px;
    box-shadow: 0 18px 34px rgba(34, 180, 90, .28);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.section-head h2 {
    margin: 0;
    color: #101522;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
}

.category-grid,
.product-grid,
.steps-grid,
.review-grid,
.feature-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.category-card,
.product-card,
.step-card,
.review-card,
.feature-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.category-card {
    display: flex;
    min-height: 248px;
    overflow: hidden;
    flex-direction: column;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-card:hover {
    border-color: rgba(22, 136, 201, .34);
    box-shadow: 0 18px 34px rgba(23, 32, 51, .1);
    transform: translateY(-2px);
}

.category-card img {
    width: 100%;
    height: 158px;
    object-fit: cover;
    padding: 0;
    background: var(--blue-soft);
}

.category-card div {
    display: grid;
    gap: 7px;
    padding: 16px 18px 18px;
    background: #f8fafc;
}

.category-card strong {
    display: block;
    color: #101522;
    font-size: 20px;
    line-height: 1.18;
}

.category-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.category-card em {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 2px;
    color: var(--blue-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.category-card em::after {
    content: "›";
    margin-left: 7px;
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}

.special-cards-section {
    background: #f3f8fc;
}

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

.special-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.special-card-media {
    position: relative;
    display: grid;
    min-height: 238px;
    place-items: center;
    background:
        radial-gradient(circle at 24% 12%, rgba(255, 255, 255, .9), transparent 32%),
        linear-gradient(135deg, #f8fbfe, #edf7fc);
}

.special-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    padding: 0;
}

.special-card-media iframe {
    width: 100%;
    min-height: 430px;
    border: 0;
    background: #fff;
}

.special-video-button {
    position: absolute;
    left: 50%;
    bottom: 18px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    transform: translateX(-50%);
    box-shadow: 0 12px 24px rgba(22, 136, 201, .24);
}

.special-card-body {
    padding: 16px 18px 18px;
}

.special-card-body h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.15;
}

.special-card-body p {
    min-height: 42px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.36;
}

.special-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.special-card-actions .button {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
}

.special-product-link {
    color: var(--blue-dark);
    font-weight: 900;
    text-decoration: none;
}

.section-institutional {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 91, 146, .96), rgba(22, 136, 201, .94)),
        var(--blue-dark);
}

.institutional-grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 42px;
    align-items: center;
}

.section-institutional::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .18), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(255, 255, 255, .14), transparent 28%);
    pointer-events: none;
}

.section-institutional .section-inner {
    position: relative;
    z-index: 1;
}

.institutional-copy h2,
.amanda-card h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.section-institutional .eyebrow,
.section-institutional .institutional-copy h2 {
    color: #fff;
}

.institutional-copy p {
    color: #dff3ff;
    font-size: 18px;
}

.amanda-card p {
    color: var(--muted);
    font-size: 18px;
}

.institutional-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.institutional-card {
    display: block;
    min-height: 250px;
    padding: 0 20px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    overflow: hidden;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.institutional-card:hover {
    border-color: rgba(22, 136, 201, .34);
    box-shadow: 0 18px 34px rgba(23, 32, 51, .12);
    transform: translateY(-2px);
}

.institutional-cards img {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    height: 138px;
    object-fit: cover;
    margin: 0 -20px 18px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: #fff;
}

.institutional-cards h3 {
    margin: 0 0 7px;
    color: #101522;
    font-size: 18px;
    line-height: 1.16;
}

.institutional-cards p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.35;
}

.amanda-section {
    background: #fff;
}

.amanda-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
    gap: 36px;
    align-items: stretch;
    overflow: hidden;
    padding: 42px 48px 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue-soft), #fff);
    box-shadow: var(--shadow);
}

.amanda-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 42px;
}

.amanda-card img {
    display: block;
    width: min(360px, 100%);
    align-self: end;
    justify-self: center;
}

.folder-showcase-section {
    background:
        radial-gradient(circle at 12% 24%, rgba(255, 179, 35, .1), transparent 24%),
        radial-gradient(circle at 86% 40%, rgba(22, 136, 201, .12), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
}

.folder-showcase {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(360px, .92fr);
    gap: 34px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(22, 136, 201, .16);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(234, 246, 253, .74));
    box-shadow: 0 24px 64px rgba(23, 32, 51, .12);
}

.folder-gallery {
    display: grid;
    gap: 14px;
    padding: 0;
    border-radius: 22px;
}

.folder-carousel {
    position: relative;
    min-height: 432px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.folder-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.018);
    animation: folder-slide 18s infinite;
}

.folder-carousel img:nth-child(1) { animation-delay: 0s; }
.folder-carousel img:nth-child(2) { animation-delay: 3s; }
.folder-carousel img:nth-child(3) { animation-delay: 6s; }
.folder-carousel img:nth-child(4) { animation-delay: 9s; }
.folder-carousel img:nth-child(5) { animation-delay: 12s; }
.folder-carousel img:nth-child(6) { animation-delay: 15s; }

.folder-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.folder-thumbs span {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.42;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #fff;
    opacity: .58;
    animation: folder-thumb 18s infinite;
}

.folder-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.folder-thumbs span:nth-child(1) { animation-delay: 0s; }
.folder-thumbs span:nth-child(2) { animation-delay: 3s; }
.folder-thumbs span:nth-child(3) { animation-delay: 6s; }
.folder-thumbs span:nth-child(4) { animation-delay: 9s; }
.folder-thumbs span:nth-child(5) { animation-delay: 12s; }
.folder-thumbs span:nth-child(6) { animation-delay: 15s; }

@keyframes folder-thumb {
    0%,
    30% {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(22, 136, 201, .14);
        opacity: 1;
    }

    36%,
    100% {
        border-color: transparent;
        box-shadow: none;
        opacity: .58;
    }
}

@keyframes folder-slide {
    0% {
        opacity: 0;
        transform: scale(1.018);
    }

    8%,
    22% {
        opacity: 1;
        transform: scale(1);
    }

    30%,
    100% {
        opacity: 0;
        transform: scale(1.018);
    }
}

.folder-offer {
    padding: 10px 8px 10px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(4px);
}

.folder-offer h2 {
    max-width: 620px;
    margin: 0;
    color: #101522;
    font-size: clamp(26px, 2.55vw, 34px);
    line-height: 1.1;
}

.folder-offer p:not(.eyebrow) {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.folder-offer dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 0;
}

.folder-offer dl div {
    padding: 11px 13px;
    border: 1px solid rgba(22, 136, 201, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.folder-offer dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.folder-offer dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.18;
}

.folder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.folder-actions .button-primary {
    min-width: 190px;
}

.product-card {
    display: flex;
    min-height: 492px;
    overflow: hidden;
    flex-direction: column;
}

.product-card a {
    text-decoration: none;
}

.product-image-link {
    display: block;
    padding: 18px 18px 0;
}

.product-image-link img {
    display: block;
    width: 100%;
    height: 188px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8fafc;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-info h2,
.product-info h3 {
    min-height: 62px;
    margin: 0;
    color: #3f4b5f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.price {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    background: #d92d20;
    font-weight: 900;
}

.owner-copy-price {
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.owner-copy-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    padding: 10px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 91, 146, .94);
    box-shadow: 0 14px 30px rgba(23, 32, 51, .22);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

.owner-copy-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-deadline {
    margin: 12px 0 0;
    color: var(--ink);
    font-weight: 800;
}

.product-small-meta {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.product-actions {
    margin-top: auto;
}

.whatsapp-button {
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
}

.step-card,
.review-card,
.feature-card {
    min-height: 220px;
    padding: 24px;
}

.steps-grid .step-card {
    min-height: 205px;
    padding: 22px;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-weight: 900;
}

.step-card h3,
.review-card strong,
.feature-card h3 {
    display: block;
    margin: 18px 0 8px;
    color: #101522;
    font-size: 21px;
    line-height: 1.16;
}

.step-card p,
.review-card p,
.feature-card p {
    margin: 0;
    color: var(--muted);
}

.reviews {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 30px;
    align-items: center;
}

.reviews-unified-section {
    background: var(--soft);
}

.reviews-unified-panel {
    display: grid;
    gap: 24px;
    padding: 38px;
    border: 1px solid rgba(22, 136, 201, .16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 12% 12%, rgba(22, 136, 201, .09), transparent 26%),
        linear-gradient(135deg, #fff, #f7fbfe);
    box-shadow: 0 24px 58px rgba(23, 32, 51, .1);
}

.reviews-copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

.google-proof {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 24px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 36px rgba(23, 32, 51, .08);
    text-align: center;
}

.reviews-copy .google-proof {
    max-width: 260px;
    padding: 20px 18px;
}

.google-proof strong {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.12;
}

.google-proof span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.google-review-image {
    width: 150px;
}

.google-title-logo {
    width: 108px;
    margin-bottom: -6px;
}

.reviews h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.reviews p {
    color: var(--muted);
}

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

.reviews-carousel {
    position: relative;
    display: grid;
    gap: 18px;
}

.reviews-carousel .review-grid {
    min-height: 300px;
}

.reviews-carousel .review-card {
    min-height: 300px;
    padding: 28px;
}

.carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 44px;
    border: 1px solid rgba(0, 96, 160, .18);
    border-radius: 999px;
    color: var(--blue-dark);
    background: linear-gradient(135deg, #fff, var(--blue-soft));
    box-shadow: 0 10px 24px rgba(23, 32, 51, .08);
    cursor: pointer;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.carousel-arrow:hover {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
    transform: translateY(-2px);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.review-stars {
    display: block;
    margin-bottom: 12px;
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.review-card strong {
    margin-top: 0;
}

.review-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    font-size: 17px;
    line-height: 1.48;
}

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

.google-review-section {
    padding-top: 0;
    background: var(--soft);
}

.google-review-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(22, 136, 201, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    text-align: center;
}

.google-review-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.google-review-actions .button {
    min-height: 44px;
    white-space: nowrap;
}

.google-review-card h2 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(30px, 3.4vw, 44px);
}

.google-review-card .google-proof {
    padding: 18px;
}

.google-review-card p {
    max-width: 620px;
    margin: 8px auto 0;
    color: var(--muted);
}

.conversion-band {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.conversion-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
}

.conversion-band-copy {
    max-width: 760px;
}

.conversion-band .eyebrow,
.conversion-band h2,
.conversion-band p {
    color: #fff;
}

.conversion-band .eyebrow {
    margin-bottom: 10px;
    padding-bottom: 0;
}

.conversion-band h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.conversion-band p:not(.eyebrow) {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.conversion-band .button {
    min-width: 260px;
    white-space: nowrap;
}

.final-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.final-cta .eyebrow,
.final-cta p,
.final-cta h2 {
    color: #fff;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.final-cta p {
    max-width: 600px;
    margin: 10px 0 0;
}

.page-title {
    padding: 56px 0 36px;
    background: var(--blue-soft);
    border-bottom: 1px solid var(--line);
}

.page-title > * {
    width: min(var(--max), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.page-title h1 {
    margin-top: 8px;
    font-size: clamp(34px, 4vw, 52px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 800;
}

.filters {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 28px;
}

.filters input {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.purchase-toolbar {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.purchase-toolbar .filters {
    width: 100%;
    margin: 0;
}

.quick-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.quick-filter strong {
    margin-right: 4px;
    color: var(--ink);
}

.quick-filter a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.quick-filter a:hover,
.quick-filter a.is-active {
    border-color: var(--blue);
    color: var(--blue-dark);
    background: var(--blue-soft);
}

.product-count {
    align-self: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--blue-soft);
    font-weight: 900;
}

.quantity-group {
    margin-top: 34px;
}

.quantity-group h3 {
    margin: 0 0 14px;
    font-size: 26px;
}

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

.purchase-card {
    min-height: 500px;
}

.purchase-quantity {
    margin-top: 12px;
    color: var(--ink);
    font-size: 18px;
}

.print-badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--blue-soft);
    font-size: 13px;
    font-weight: 900;
}

.empty-products {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
}

.product-detail img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.detail-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 48px rgba(4, 40, 66, .22);
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.spec-list div {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.spec-list dt {
    color: var(--muted);
    font-size: 13px;
}

.spec-list dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.quote-panel,
.article-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.quote-panel {
    padding: 28px;
}

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

.quote-panel input,
.quote-panel textarea,
.quote-panel select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.quote-panel textarea {
    min-height: 110px;
    grid-column: 1 / -1;
}

.quote-panel .button {
    grid-column: 1 / -1;
}

.article-card {
    display: flex;
    min-height: 344px;
    overflow: hidden;
    flex-direction: column;
    padding: 0;
}

.article-image {
    display: block;
}

.article-image img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: var(--blue-soft);
}

.article-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.article-topic {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-card h3 {
    margin: 10px 0 8px;
    color: #101522;
    font-size: 18px;
    line-height: 1.18;
}

.article-card h3 a {
    text-decoration: none;
}

.article-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.38;
}

.article-card time {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.article-link {
    margin-top: auto;
    padding-top: 18px;
    color: var(--blue-dark);
    font-weight: 900;
    text-decoration: none;
}

.blog-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, #fff, var(--blue-soft));
}

.blog-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 40px;
    align-items: center;
}

.blog-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.04;
}

.blog-hero p {
    margin: 16px 0 0;
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
}

.blog-hero span {
    display: block;
    max-width: 720px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 18px;
}

.blog-hero img {
    width: 150px;
    justify-self: end;
}

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.topic-list a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--blue-soft);
    font-weight: 800;
    text-decoration: none;
}

.topic-list a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    margin-left: 6px;
    padding: 0 7px;
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
}

.blog-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .05);
}

.blog-summary strong {
    color: var(--blue-dark);
    font-size: 20px;
}

.blog-summary span {
    color: var(--muted);
}

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

.blog-topic-section {
    border-top: 1px solid var(--line);
}

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

.article-page-hero {
    padding: 64px 0;
    background: var(--blue-soft);
}

.article-page-hero h1 {
    max-width: 860px;
    margin: 10px 0 0;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.article-page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
}

.article-page-body {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
    gap: 44px;
    padding: 72px 0;
}

.article-page-body > img {
    width: 100%;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.article-content h2 {
    margin: 28px 0 8px;
    font-size: 28px;
}

.article-content p {
    color: var(--muted);
    font-size: 18px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-content figure {
    margin: 28px 0;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.article-content li + li {
    margin-top: 8px;
}

.article-content a:not(.button) {
    color: var(--blue-dark);
    font-weight: 800;
}

.article-author-box {
    margin: 34px 0 24px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--blue-soft);
}

.article-author-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 18px;
}

.article-author-box p {
    margin: 0;
    font-size: 16px;
}

.article-editorial-intro,
.article-commercial-cta,
.article-related-products,
.article-faq {
    margin: 0 0 30px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(8, 17, 31, .07);
}

.article-editorial-intro {
    border-left: 5px solid var(--blue);
    background: var(--blue-soft);
}

.article-editorial-intro p,
.article-commercial-cta p {
    margin: 0;
}

.article-editorial-intro p + p {
    margin-top: 12px;
}

.article-related-products span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-related-products div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-related-products a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid rgba(0, 96, 160, .2);
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-weight: 900;
    text-decoration: none;
}

.article-faq h2 {
    margin-top: 0;
}

.article-faq details {
    border-top: 1px solid var(--line);
    padding: 14px 0;
}

.article-faq details:first-of-type {
    border-top: 0;
}

.article-faq summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.article-commercial-cta {
    background: #08111F;
    color: #fff;
}

.article-commercial-cta strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

.article-commercial-cta p {
    color: #d9e6f7;
}

.article-commercial-cta .button {
    margin-top: 18px;
}

.article-cluster-box {
    margin: 0 0 30px;
    padding: 26px;
    border: 1px solid rgba(0, 96, 160, .18);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
    box-shadow: 0 18px 44px rgba(8, 17, 31, .08);
}

.article-cluster-box > span {
    display: block;
    margin-bottom: 6px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-cluster-box h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

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

.article-cluster-list a {
    display: block;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
}

.article-cluster-list strong {
    display: block;
    line-height: 1.25;
}

.article-cluster-list small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.article-cluster-products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.article-cluster-products a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.site-footer {
    padding: 54px 0 26px;
    color: #eef5ff;
    background: #08111F;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    display: block;
    max-width: 190px;
    height: auto;
    margin-bottom: 14px;
    padding: 6px;
    border-radius: 8px;
    background: #fff;
}

.site-footer h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 17px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
    color: #cbd7e8;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 8px 0;
}

.site-footer a {
    color: #eaf6fd;
    text-decoration: none;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 16px 34px rgba(18, 140, 77, .34);
    animation: whatsapp-nudge 5s ease-in-out infinite;
    transition: transform .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(18, 140, 77, .4);
    animation-play-state: paused;
}

.floating-whatsapp img {
    display: block;
    width: 34px;
    height: 34px;
}

@keyframes whatsapp-nudge {
    0%,
    88%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0);
    }

    90% {
        transform: translate3d(-2px, 0, 0) rotate(-3deg);
    }

    92% {
        transform: translate3d(3px, 0, 0) rotate(3deg);
    }

    94% {
        transform: translate3d(-2px, 0, 0) rotate(-2deg);
    }

    96% {
        transform: translate3d(2px, 0, 0) rotate(2deg);
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: 14px;
}

@media (max-width: 1060px) {
    .site-header-inner,
    .hero-inner,
    .folder-showcase,
    .flyer-selector,
    .reviews,
    .google-review-card,
    .institutional-grid,
    .amanda-card,
    .blog-hero-inner,
    .article-page-body,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .google-proof,
    .google-review-card .google-proof {
        justify-self: start;
        max-width: 260px;
    }

    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .category-grid,
    .product-grid,
    .steps-grid,
    .feature-grid,
    .special-card-grid,
    .selector-options,
    .quantity-options,
    .article-grid,
    .institutional-cards,
    .article-grid-featured,
    .conversion-band-inner,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .flyer-selector-intro {
        position: static;
    }

    .products-menu {
        position: fixed;
        top: 142px;
        left: 20px;
        right: 20px;
        width: auto;
        max-height: 70vh;
        overflow: auto;
        transform: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-hero img {
        justify-self: start;
    }

    .folder-carousel {
        min-height: 390px;
    }
}

@media (max-width: 680px) {
    body {
        overflow-x: hidden;
    }

    .top-contact {
        justify-content: center;
        overflow: hidden;
        gap: 14px;
        padding: 6px 14px;
        white-space: nowrap;
        font-size: 12px;
    }

    .top-contact a[href^="mailto"] {
        display: none;
    }

    .section {
        padding: 42px 0;
    }

    .site-header-inner,
    .section-inner,
    .footer-inner,
    .footer-bottom,
    .page-title > *,
    .section > .purchase-toolbar,
    .section > .quantity-group,
    .section > .empty-products,
    .product-detail {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        position: static;
    }

    .site-header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        padding: 10px 0 12px;
    }

    .brand {
        justify-self: center;
    }

    .brand img {
        width: 190px;
    }

    .site-header .button {
        order: 2;
        width: 100%;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        gap: 8px;
        padding: 2px 0 4px;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        min-height: 36px;
        padding: 0 11px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: #fff;
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-dropdown {
        flex: 0 0 auto;
        min-height: 36px;
    }

    .products-menu,
    .nav-dropdown:hover .products-menu,
    .nav-dropdown:focus-within .products-menu {
        display: none;
    }

    .hero {
        padding: 30px 0 38px;
    }

    .hero-inner {
        gap: 24px;
    }

    .hero .eyebrow {
        padding-bottom: 8px;
        white-space: normal;
    }

    .hero h1 {
        font-size: clamp(31px, 9vw, 38px);
        line-height: 1.08;
    }

    .hero p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .button {
        width: auto;
        min-height: 46px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .hero-mockups {
        min-height: 318px;
        border-radius: 22px;
    }

    .hero-mockups::before {
        inset: 16px;
        border-radius: 18px;
    }

    .folder-carousel {
        min-height: 260px;
    }

    .folder-gallery {
        padding: 10px;
    }

    .folder-showcase {
        padding: 14px;
        border-radius: 20px;
    }

    .folder-offer {
        padding: 10px 4px 4px;
    }

    .folder-thumbs {
        gap: 6px;
    }

    .folder-offer {
        padding: 24px 20px;
    }

    .folder-offer dl {
        grid-template-columns: 1fr;
    }

    .folder-actions .button {
        width: 100%;
    }

    .mockup-1 {
        left: 18px;
        top: 20px;
        width: 150px;
        height: 150px;
    }

    .mockup-2 {
        right: 16px;
        top: 44px;
        width: 148px;
        height: 112px;
    }

    .mockup-3 {
        left: 16px;
        bottom: 32px;
        width: 170px;
        height: 124px;
    }

    .mockup-4 {
        right: 16px;
        bottom: 38px;
        width: 138px;
        height: 112px;
    }

    .mockup-5 {
        display: none;
    }

    .category-grid,
    .product-grid,
    .steps-grid,
    .feature-grid,
    .special-card-grid,
    .institutional-cards,
    .article-grid-featured,
    .conversion-band-inner,
    .footer-inner,
    .article-grid,
    .products-menu,
    .selector-options,
    .selector-options.two-cols,
    .quantity-options,
    .selector-product,
    .selector-product dl,
    .quote-panel form,
    .spec-list,
    .filters {
        grid-template-columns: 1fr;
    }

    .flyer-selector-heading {
        margin-bottom: 16px;
    }

    .flyer-selector-heading h2,
    .section-head h2,
    .institutional-copy h2,
    .amanda-card h2,
    .final-cta h2,
    .reviews h2,
    .blog-hero h1,
    .page-title h1 {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.1;
    }

    .flyer-selector-heading p:not(.eyebrow),
    .section-head p,
    .institutional-copy p,
    .amanda-card p,
    .reviews p,
    .blog-hero span,
    .final-cta p {
        font-size: 15px;
        line-height: 1.48;
    }

    .flyer-selector {
        gap: 18px;
    }

    .flyer-selector-intro {
        display: none;
    }

    .selector-progress {
        position: sticky;
        top: 0;
        z-index: 6;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
        padding: 6px;
        border-radius: 12px;
    }

    .selector-progress button {
        min-height: 34px;
        padding: 6px 4px;
        font-size: 11px;
    }

    .selector-step,
    .selector-result {
        padding: 16px;
    }

    .selector-step-head {
        gap: 10px;
        margin-bottom: 14px;
    }

    .selector-step-head > span {
        width: 32px;
        height: 32px;
    }

    .selector-step-head h3 {
        font-size: 21px;
        line-height: 1.16;
    }

    .selector-option {
        min-height: 0;
        padding: 14px;
    }

    .selector-option strong {
        font-size: 16px;
    }

    .selector-option span {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.35;
    }

    .conversion-band .button {
        width: 100%;
        min-width: 0;
    }

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

    .selector-product img {
        height: 150px;
    }

    .selector-product h4 {
        font-size: 19px;
    }

    .selector-result-actions {
        display: grid;
    }

    .selector-result-actions .selector-main-cta,
    .selector-result-actions .button {
        width: 100%;
        min-width: 0;
    }

    .amanda-card {
        gap: 16px;
        padding: 24px 20px 0;
    }

    .amanda-card > div {
        padding-bottom: 18px;
    }

    .amanda-card img {
        max-height: 300px;
        object-fit: contain;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .section-head.split .button {
        width: 100%;
        margin-top: 16px;
    }

    .category-card {
        min-height: 0;
    }

    .home .category-grid,
    .home .product-grid,
    .home .special-card-grid,
    .home .institutional-cards,
    .home .article-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home .category-grid::-webkit-scrollbar,
    .home .product-grid::-webkit-scrollbar,
    .home .special-card-grid::-webkit-scrollbar,
    .home .institutional-cards::-webkit-scrollbar,
    .home .article-grid::-webkit-scrollbar {
        display: none;
    }

    .home .category-grid > *,
    .home .product-grid > *,
    .home .special-card-grid > *,
    .home .institutional-cards > *,
    .home .article-grid > * {
        flex: 0 0 min(84%, 320px);
        scroll-snap-align: start;
    }

    .home .product-grid > *,
    .home .special-card-grid > * {
        flex-basis: min(88%, 330px);
    }

    .category-card img {
        height: 132px;
    }

    .category-card div {
        padding: 14px 16px 16px;
    }

    .category-card strong {
        font-size: 18px;
    }

    .product-card,
    .purchase-card {
        min-height: 0;
    }

    .product-image-link {
        padding: 14px 14px 0;
    }

    .product-image-link img {
        height: 150px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h2,
    .product-info h3 {
        min-height: 0;
        font-size: 16px;
    }

    .special-card-media {
        min-height: 0;
    }

    .special-card-media img {
        height: 170px;
    }

    .special-card-body {
        padding: 14px 16px 16px;
    }

    .special-card-body h3 {
        font-size: 18px;
    }

    .special-card-body p {
        min-height: 0;
    }

    .special-card-actions {
        display: grid;
    }

    .special-card-actions .button {
        width: 100%;
    }

    .institutional-grid {
        gap: 24px;
    }

    .institutional-card {
        min-height: 0;
        padding: 0 16px 16px;
    }

    .institutional-cards img {
        width: calc(100% + 32px);
        height: 116px;
        margin: 0 -16px 14px;
    }

    .reviews-carousel {
        gap: 14px;
    }

    .reviews-carousel .review-card,
    .reviews-carousel .review-grid {
        min-height: 0;
    }

    .reviews-unified-panel {
        gap: 18px;
        padding: 18px;
        border-radius: 20px;
    }

    .reviews {
        gap: 20px;
    }

    .google-title-logo {
        width: 92px;
        margin-bottom: -4px;
    }

    .reviews-carousel .review-card:nth-child(n+2) {
        display: none;
    }

    .review-card p {
        -webkit-line-clamp: 5;
        font-size: 15px;
    }

    .google-review-card {
        padding: 18px;
    }

    .google-review-card h2 {
        font-size: 26px;
    }

    .google-review-actions {
        display: grid;
        width: 100%;
    }

    .google-review-card .button {
        width: 100%;
        margin-top: 0;
    }

    .step-card,
    .review-card,
    .feature-card,
    .steps-grid .step-card {
        min-height: 0;
        padding: 18px;
    }

    .step-card h3,
    .review-card strong,
    .feature-card h3 {
        margin: 12px 0 6px;
        font-size: 18px;
    }

    .folder-showcase {
        gap: 18px;
    }

    .folder-offer h2 {
        font-size: 25px;
    }

    .folder-offer dd {
        font-size: 16px;
    }

    .folder-actions {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .folder-actions .button {
        width: 100%;
        min-width: 0;
    }

    .article-card {
        min-height: 0;
    }

    .article-image img {
        height: 140px;
    }

    .article-body {
        padding: 15px;
    }

    .article-card h3 {
        font-size: 17px;
    }

    .blog-hero {
        padding: 44px 0;
    }

    .blog-hero p {
        font-size: 18px;
    }

    .page-title {
        padding: 36px 0 26px;
    }

    .filters {
        gap: 10px;
    }

    .filters .button,
    .quote-panel .button {
        width: 100%;
    }

    .purchase-toolbar,
    .quote-panel,
    .detail-card {
        padding: 18px;
    }

    .product-detail {
        gap: 22px;
        padding: 42px 0;
    }

    .product-detail img {
        max-height: 320px;
        object-fit: contain;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp img {
        width: 31px;
        height: 31px;
    }

    .section-head.split,
    .final-cta-inner,
    .footer-bottom {
        display: block;
    }

    .final-cta .button {
        margin-top: 22px;
    }
}
