:root {
    --blue: #0b5cab;
    --cyan: #00a9e0;
    --green: #38a835;
    --ink: #17202a;
    --soft: #f3f8fb;
}

body {
    min-width: 320px;
}

body.modal-open {
    overflow: hidden;
}

body.promo-open {
    overflow: hidden;
}

a,
button,
input,
select,
textarea {
    outline-color: var(--cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-radius: 999px;
    padding: .65rem .9rem;
    font-size: .83rem;
    font-weight: 700;
    color: rgba(23, 32, 42, .74);
    transition: .2s ease;
}

.nav-link svg {
    width: .9rem;
    height: .9rem;
}

.nav-dropdown {
    position: relative;
    padding-bottom: .75rem;
    margin-bottom: -.75rem;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% - .15rem);
    left: 0;
    display: grid;
    width: 250px;
    gap: .15rem;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: .6rem;
    background: #fff;
    padding: .65rem;
    box-shadow: 0 20px 55px rgba(23, 32, 42, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: .18s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    border-radius: .45rem;
    padding: .68rem .75rem;
    color: rgba(23, 32, 42, .72);
    font-size: .82rem;
    font-weight: 800;
}

.nav-dropdown-panel a:hover {
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(11, 92, 171, .09);
    color: var(--blue);
}

.mobile-nav {
    display: grid;
    gap: .2rem;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding: .75rem 1rem 1.25rem;
    background: #fff;
}

.mobile-nav a {
    border-radius: .6rem;
    padding: .8rem;
    font-weight: 700;
}

.mobile-nav .mobile-sub {
    margin-left: .8rem;
    padding: .55rem .8rem;
    color: rgba(23, 32, 42, .68);
    font-size: .88rem;
}

.btn,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .7rem;
    min-height: 2.75rem;
    font-weight: 800;
    transition: .2s ease;
}

.btn {
    padding: .8rem 1.05rem;
    font-size: .9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0875bc);
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 92, 171, .18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(11, 92, 171, .25);
}

.btn-ghost {
    color: var(--blue);
    background: rgba(11, 92, 171, .08);
}

.btn-light {
    color: var(--blue);
    background: #fff;
}

.icon-button {
    width: 2.75rem;
    color: var(--blue);
    background: rgba(11, 92, 171, .08);
}

.icon-button svg,
.feature-card svg,
.info-panel svg,
.rental-card svg {
    width: 1.3rem;
    height: 1.3rem;
}

.hero {
    position: relative;
    height: clamp(620px, 82vh, 860px);
    overflow: hidden;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero-image,
.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay,
.page-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(6, 20, 34, .82), rgba(6, 20, 34, .46) 48%, rgba(6, 20, 34, .08));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100%;
    max-width: 690px;
    flex-direction: column;
    justify-content: center;
    padding: 5rem max(1rem, calc((100vw - 80rem) / 2)) 7rem;
    color: #fff;
}

.hero-content h1,
.page-hero h1,
.page-title h1 {
    max-width: 920px;
    font-size: clamp(2.15rem, 4.25vw, 4.45rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-content > h1:first-child {
    margin-top: 0;
}

.hero-content p:not(.eyebrow) {
    margin-top: 1.25rem;
    max-width: 660px;
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, .84);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.45rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    padding: .55rem .75rem;
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-proof svg {
    width: 1rem;
    height: 1rem;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .45;
}

.swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
}

.brand-strip {
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    background: #fff;
    padding: 1.35rem 0;
}

.brand-logo-card {
    display: flex;
    min-width: 132px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: .8rem 1rem;
    box-shadow: 0 10px 28px rgba(23, 32, 42, .05);
}

.brand-logo-card img {
    max-width: 112px;
    max-height: 34px;
    object-fit: contain;
}

.eyebrow {
    margin-bottom: .85rem;
    color: var(--green);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-grid {
    display: grid;
    max-width: 80rem;
    gap: clamp(2rem, 5vw, 5rem);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 900px) {
    .section-grid {
        grid-template-columns: .9fr 1.1fr;
        padding: 0 2rem;
    }
}

.section-title {
    max-width: 720px;
    font-size: clamp(1.9rem, 3.5vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
}

.link-action svg {
    width: 1rem;
    height: 1rem;
}

.feature-card,
.info-panel,
.rental-card,
.blog-card,
.contact-aside,
.contact-form {
    border: 1px solid rgba(23, 32, 42, .09);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 16px 45px rgba(23, 32, 42, .06);
}

.feature-card,
.info-panel,
.rental-card,
.blog-card {
    padding: 1.35rem;
}

.feature-card svg,
.info-panel svg,
.rental-card svg {
    margin-bottom: 1.15rem;
    color: var(--blue);
}

.feature-card h3,
.info-panel h2,
.rental-card h2,
.blog-card h2 {
    margin-bottom: .5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-card p,
.info-panel p,
.rental-card p,
.blog-card p,
.prose-block p {
    color: rgba(23, 32, 42, .68);
    line-height: 1.75;
}

.product-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.product-swiper {
    overflow: hidden;
    padding: .35rem .2rem 1rem;
}

.product-swiper .swiper-slide {
    height: auto;
}

.product-swiper .product-card {
    height: 100%;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.carousel-button {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 32, 42, .12);
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    box-shadow: 0 10px 24px rgba(23, 32, 42, .08);
}

.carousel-button svg {
    width: 1.1rem;
    height: 1.1rem;
}

.product-pagination {
    position: static;
    display: inline-flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
}

.product-pagination .swiper-pagination-bullet {
    background: var(--blue);
}

.product-card {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(23, 32, 42, .08);
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #eef5f8;
    padding: .7rem;
}

.product-card-body {
    padding: 1.25rem;
}

.product-card span,
.product-card small,
.blog-card span {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    margin: .7rem 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.product-card p {
    min-height: 5.2rem;
    color: rgba(23, 32, 42, .68);
    line-height: 1.65;
}

.product-card ul {
    display: grid;
    gap: .45rem;
    margin: 1rem 0;
    color: rgba(23, 32, 42, .75);
    font-size: .88rem;
}

.product-card li {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.product-card li svg {
    width: .95rem;
    height: .95rem;
    color: var(--green);
    flex: 0 0 auto;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    border-top: 1px solid rgba(23, 32, 42, .08);
    padding-top: 1rem;
    font-weight: 800;
    color: var(--blue);
}

.product-actions button {
    text-align: right;
}

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

.store-card {
    display: grid;
    gap: .55rem;
    border: 1px solid rgba(23, 32, 42, .08);
    border-radius: .5rem;
    background: #fff;
    padding: .85rem;
}

.store-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f8fafc;
}

.store-card span {
    color: rgba(23, 32, 42, .55);
    font-size: .72rem;
    font-weight: 700;
}

.store-card strong {
    min-height: 3rem;
    font-size: .9rem;
    line-height: 1.35;
}

.store-card em {
    color: var(--green);
    font-style: normal;
    font-weight: 800;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #0b5cab, #047fa8 55%, #38a835);
    padding: clamp(2.5rem, 5vw, 4rem) max(1rem, calc((100vw - 80rem) / 2));
    color: #fff;
}

.cta-band h2 {
    max-width: 760px;
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
}

.cta-band p {
    margin-top: .7rem;
    color: rgba(255, 255, 255, .78);
}

.page-hero {
    position: relative;
    min-height: clamp(430px, 56vh, 660px);
    overflow: hidden;
    color: #fff;
}

.page-hero.compact {
    min-height: 460px;
}

.page-hero > div {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    max-width: 940px;
    flex-direction: column;
    justify-content: end;
    padding: 6rem max(1rem, calc((100vw - 80rem) / 2)) 4rem;
}

.page-title {
    max-width: 80rem;
    padding: clamp(4rem, 8vw, 7rem) 1rem clamp(2rem, 5vw, 4rem);
    margin: 0 auto;
}

.page-title p:not(.eyebrow) {
    margin-top: 1rem;
    max-width: 760px;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.filter-bar {
    position: sticky;
    top: 80px;
    z-index: 20;
    display: flex;
    gap: .55rem;
    max-width: 80rem;
    overflow-x: auto;
    margin: 0 auto 2rem;
    padding: .4rem 1rem 1rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
}

.filter-bar a {
    flex: 0 0 auto;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: 999px;
    padding: .7rem .95rem;
    color: rgba(23, 32, 42, .76);
    font-size: .82rem;
    font-weight: 800;
}

.filter-bar a.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.product-hero {
    display: grid;
    min-height: clamp(560px, 72vh, 760px);
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    background: linear-gradient(135deg, #f7fbfd, #eef6fa);
}

.product-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.product-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 5vw, 5.1rem);
    line-height: .98;
    font-weight: 800;
}

.product-hero-copy > p:not(.eyebrow) {
    margin-top: 1.2rem;
    max-width: 690px;
    color: rgba(23, 32, 42, .68);
    font-size: 1.08rem;
    line-height: 1.8;
}

.product-hero-copy .hero-proof span {
    border-color: rgba(11, 92, 171, .14);
    background: #fff;
    color: var(--blue);
}

.product-hero-media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, rgba(0, 169, 224, .18), transparent 38%), #eaf5f9;
}

.product-hero-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    content: "";
    background: linear-gradient(0deg, rgba(11, 92, 171, .28), transparent);
}

.product-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1rem, 4vw, 3.5rem);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.2rem;
    color: rgba(23, 32, 42, .52);
    font-size: .8rem;
    font-weight: 800;
}

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

.product-anchor-nav {
    position: sticky;
    top: 79px;
    z-index: 25;
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    border-block: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .92);
    padding: .7rem max(1rem, calc((100vw - 80rem) / 2));
    backdrop-filter: blur(12px);
}

.product-anchor-nav a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: .65rem .9rem;
    color: rgba(23, 32, 42, .68);
    font-size: .82rem;
    font-weight: 800;
}

.product-anchor-nav a:hover {
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.product-feature-grid,
.use-case-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.product-story {
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    grid-template-columns: .8fr 1.2fr;
    padding: clamp(4rem, 7vw, 7rem) max(1rem, calc((100vw - 80rem) / 2));
    background: var(--ink);
    color: #fff;
}

.product-story h2 {
    max-width: 560px;
    font-size: clamp(2rem, 3.8vw, 3.7rem);
    line-height: 1.04;
    font-weight: 800;
}

.story-list {
    display: grid;
    gap: 1rem;
}

.story-list article {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding-bottom: 1.4rem;
}

.story-list span {
    color: var(--green);
    font-weight: 800;
}

.story-list h3 {
    margin: .45rem 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.story-list p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.use-case-grid article {
    border-radius: .5rem;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 16px 45px rgba(23, 32, 42, .06);
}

.use-case-grid svg {
    width: 1.2rem;
    color: var(--blue);
}

.use-case-grid h3 {
    margin-top: 1.1rem;
    font-weight: 800;
}

.spec-table {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, .1);
    border-radius: .5rem;
}

.spec-table div {
    display: grid;
    grid-template-columns: minmax(140px, .42fr) 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(23, 32, 42, .08);
    padding: 1rem;
}

.spec-table div:last-child {
    border-bottom: 0;
}

.spec-table strong {
    color: rgba(23, 32, 42, .58);
}

.spec-table a {
    color: var(--blue);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    display: inline-flex;
    width: 3.55rem;
    height: 3.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .36);
}

.whatsapp-float::before,
.whatsapp-float::after {
    position: absolute;
    inset: -.35rem;
    border: 1px solid rgba(37, 211, 102, .45);
    border-radius: inherit;
    content: "";
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: .8s;
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
}

.whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
}

@keyframes whatsapp-pulse {
    0% {
        opacity: .75;
        transform: scale(.92);
    }
    75%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.rental-popup {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
}

.rental-popup.is-open {
    opacity: 1;
    pointer-events: auto;
}

.rental-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 34, .54);
    backdrop-filter: blur(6px);
}

.rental-popup-panel {
    position: relative;
    display: grid;
    width: min(100%, 860px);
    max-height: min(92vh, 720px);
    overflow: hidden;
    grid-template-columns: .95fr 1.05fr;
    border-radius: .85rem;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    transform: translateY(12px) scale(.98);
    transition: .22s ease;
}

.rental-popup.is-open .rental-popup-panel {
    transform: translateY(0) scale(1);
}

.rental-popup-media {
    min-height: 360px;
    background: #eef6fa;
}

.rental-popup-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-popup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.rental-popup-copy h2 {
    max-width: 480px;
    font-size: clamp(1.8rem, 3.8vw, 3.35rem);
    line-height: 1.03;
    font-weight: 800;
}

.rental-popup-copy p:not(.eyebrow) {
    margin-top: 1rem;
    color: rgba(23, 32, 42, .66);
    line-height: 1.75;
}

.rental-popup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
}

.rental-dismiss {
    color: rgba(23, 32, 42, .62);
    font-weight: 800;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}

.contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 34, .68);
    backdrop-filter: blur(8px);
}

.contact-modal-panel {
    position: relative;
    width: min(100%, 680px);
    max-width: calc(100vw - 2rem);
    max-height: min(92vh, 760px);
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: .75rem;
    background: #fff;
    padding: clamp(1.35rem, 4vw, 2.2rem);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    transform: translateY(10px) scale(.98);
    transition: .2s ease;
}

.contact-modal-panel * {
    min-width: 0;
}

.contact-modal.is-open .contact-modal-panel {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(23, 32, 42, .06);
    color: var(--ink);
}

.contact-modal-close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.contact-modal-panel h2 {
    max-width: 520px;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.contact-modal-intro {
    margin-top: .8rem;
    max-width: 560px;
    color: rgba(23, 32, 42, .65);
    line-height: 1.7;
}

.specialist-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.contact-choice {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-choice input {
    position: absolute;
    width: auto;
    opacity: 0;
}

.contact-choice span {
    display: flex;
    min-height: 4rem;
    align-items: center;
    gap: .65rem;
    border: 1px solid rgba(23, 32, 42, .12);
    border-radius: .55rem;
    padding: .85rem;
    color: rgba(23, 32, 42, .74);
    font-weight: 800;
    cursor: pointer;
}

.contact-choice input:checked + span {
    border-color: var(--blue);
    background: rgba(11, 92, 171, .08);
    color: var(--blue);
}

.contact-choice svg {
    width: 1.15rem;
    height: 1.15rem;
}

.specialist-form label {
    display: grid;
    gap: .45rem;
    color: rgba(23, 32, 42, .68);
    font-size: .86rem;
    font-weight: 800;
}

.specialist-form input,
.specialist-form select {
    width: 100%;
    border: 1px solid rgba(23, 32, 42, .14);
    border-radius: .5rem;
    padding: .85rem .9rem;
    color: var(--ink);
    font-weight: 700;
}

.specialist-form .contact-choice input[type="radio"] {
    width: 1px;
    height: 1px;
}

.phone-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: 1.1fr .75fr 1.45fr;
}

.prose-block {
    display: grid;
    gap: 1.1rem;
    font-size: 1.02rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1rem;
}

.stats-row strong {
    border-radius: .5rem;
    background: rgba(56, 168, 53, .1);
    padding: .85rem 1rem;
    color: var(--green);
}

.contact-aside,
.contact-form {
    padding: 1.5rem;
}

.contact-aside h2 {
    margin-bottom: .75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.contact-aside ul {
    display: grid;
    gap: .9rem;
    margin-top: 1.5rem;
}

.contact-aside li {
    display: flex;
    gap: .7rem;
    color: rgba(23, 32, 42, .72);
}

.contact-aside svg {
    width: 1.1rem;
    color: var(--blue);
    flex: 0 0 auto;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form label {
    display: grid;
    gap: .45rem;
    color: rgba(23, 32, 42, .72);
    font-size: .86rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(23, 32, 42, .14);
    border-radius: .5rem;
    padding: .85rem .9rem;
    color: var(--ink);
    font-weight: 600;
}

.footer-title {
    margin-bottom: 1rem;
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .section-heading,
    .cta-band {
        align-items: start;
        flex-direction: column;
    }

    .hero {
        height: 720px;
    }

    .hero-overlay,
    .page-hero::after {
        background: linear-gradient(180deg, rgba(6, 20, 34, .48), rgba(6, 20, 34, .88));
    }

    .product-hero,
    .product-story {
        grid-template-columns: 1fr;
    }

    .product-hero-media {
        order: -1;
        min-height: 300px;
    }

    .product-anchor-nav {
        top: 73px;
    }

    .spec-table div {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .contact-choice,
    .phone-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: .9rem;
        bottom: .9rem;
    }

    .rental-popup-panel {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .rental-popup-media {
        min-height: 220px;
    }
}

@media (max-width: 1100px) {
    .store-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
