﻿:root {
    --blue: #48bdea;
    --blue-dark: #006a9c;
    --navy: #063b5a;
    --navy-deep: #082433;
    --ink: #17212b;
    --muted: #617284;
    --line: #dfe7ee;
    --soft: #f4f9fc;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(14, 55, 82, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
}

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

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

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

.topbar {
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.topbar a {
    text-decoration: none;
}

.topbar-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1.2;
}

.topbar-phone strong {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.topbar-phone span {
    opacity: .94;
}

.topbar-email {
    flex: 0 0 auto;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.header-inner {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    width: 245px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 16px;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
}

.main-nav a.nav-whatsapp {
    padding: 0;
    flex: 0 0 30px;
    align-self: center;
    transform: translateY(-2px);
}

.main-nav a.active::after,
.main-nav a:not(.nav-whatsapp):hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
}

.nav-whatsapp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 0;
    line-height: 0;
}

.nav-whatsapp img,
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
}

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

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 24, 37, .34), rgba(0, 32, 50, .1) 54%, rgba(0, 24, 37, 0)),
        linear-gradient(0deg, rgba(0, 24, 37, .12), rgba(0, 24, 37, 0) 48%);
}

.hero-slider {
    position: absolute;
    inset: 0;
    background: var(--navy-deep);
}

.hero-slider img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-slider img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 54px 0;
}

.hero-copy-panel {
    display: none;
    width: min(540px, 100%);
    text-shadow: 0 3px 18px rgba(0, 20, 32, .42);
}

.hero-copy-panel.active {
    display: block;
    animation: heroCopyFade .58s ease both;
}

.hero-kicker {
    display: block;
    margin: 0 0 9px;
    color: var(--white);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.08;
    white-space: nowrap;
}

.hero-message-card {
    position: relative;
    width: min(520px, 100%);
    padding: 12px 18px 14px;
    overflow: hidden;
    border-radius: 0 0 18px 0;
    background: rgba(72, 189, 234, .82);
    box-shadow: 0 18px 44px rgba(0, 42, 68, .18);
}

.hero-message-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .18) 1px, transparent 1px) 0 0 / 6px 6px,
        linear-gradient(90deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-message-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 210px;
    height: 44px;
    background: rgba(0, 106, 156, .62);
    transform: skewX(-22deg);
}

.hero-message-card h1,
.hero-message-card h2,
.hero-message-card .hero-subtitle {
    position: relative;
    z-index: 1;
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(14px, 2.4vw, 38px);
    pointer-events: none;
}

.hero-control {
    width: clamp(32px, 3.4vw, 48px);
    height: clamp(54px, 6vw, 72px);
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    text-shadow: 0 3px 14px rgba(0, 24, 37, .7);
    pointer-events: auto;
    transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.hero-control span {
    display: block;
    margin-top: -4px;
    font-size: clamp(52px, 5.2vw, 74px);
    font-weight: 300;
    line-height: .72;
}

.hero-control:hover {
    color: var(--blue);
    text-shadow: 0 3px 18px rgba(0, 24, 37, .78);
    transform: scale(1.08);
}

.hero-control:focus-visible {
    outline: 3px solid rgba(72, 189, 234, .7);
    outline-offset: 3px;
}

@keyframes heroCopyFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p,
.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.hero-message-card h2,
.page-hero h1 {
    max-width: 760px;
    margin: 0 0 4px;
    font-size: 34px;
    line-height: 1.12;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--blue-dark);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.button.secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.hero-metrics {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 34px 0 0;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, .22);
}

.hero-metrics div {
    padding: 18px 20px;
    background: rgba(5, 35, 51, .72);
}

.hero-metrics dt {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
}

.hero-metrics dd {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0 64px;
}

.features article,
.product-card,
.contact-card,
.contact-form,
.hours-card,
.support-list article,
.notice-box {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.features article {
    position: relative;
    overflow: hidden;
}

.features article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
}

.features span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.features h2,
.product-card h2,
.product-card h3,
.site-footer h2,
.contact-card h2,
.contact-form h2,
.hours-card h2,
.support-list h2,
.notice-box h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px;
}

.features p,
.product-card p,
.site-footer p,
.content-section p,
.page-hero p,
.notice-box p {
    color: var(--muted);
    line-height: 1.7;
}

.split-section,
.content-section {
    padding: 72px 0;
}

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

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.media-frame {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.split-grid h2,
.section-heading h2,
.content-section h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.2;
}

.text-link {
    color: var(--blue-dark);
    font-weight: 800;
}

.about-intro {
    padding: 72px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 44px;
    align-items: stretch;
}

.about-intro h2,
.about-cta h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.2;
}

.about-intro p,
.about-values p {
    color: var(--muted);
    line-height: 1.75;
}

.about-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-radius: 6px;
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow);
}

.about-card strong {
    color: var(--blue);
    font-size: 64px;
    line-height: 1;
}

.about-card span {
    margin: 10px 0 18px;
    font-size: 22px;
    font-weight: 800;
}

.about-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.about-split {
    background: var(--soft);
}

.about-values {
    padding: 72px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-values article {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-values article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
}

.about-values h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px;
}

.about-cta {
    padding: 56px 0;
    background: var(--navy-deep);
    color: var(--white);
}

.about-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.about-cta h2 {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--white);
}

.process-band {
    padding: 72px 0;
    background: var(--navy-deep);
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.process-grid h2 {
    margin: 0;
    color: var(--white);
    font-size: 34px;
    line-height: 1.22;
}

.process-grid ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-grid li {
    min-height: 138px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
}

.process-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 18px;
}

.process-grid span {
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

.products-band {
    padding: 72px 0;
}

.product-intro {
    padding: 56px 0;
    background: var(--soft);
}

.product-intro-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.product-intro h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.2;
}

.product-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-index a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.product-showcase {
    padding: 72px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 44px;
    align-items: center;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 150px;
}

.product-detail:first-child {
    padding-top: 0;
}

.product-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.product-detail:nth-child(even) .product-gallery {
    order: 2;
}

.product-gallery {
    min-width: 0;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    object-fit: cover;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-thumbs button {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 5px;
    background: transparent;
}

.product-thumbs button.active {
    border-color: var(--blue);
}

.product-thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 3px;
    object-fit: cover;
}

.product-copy h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.18;
}

.product-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.product-features {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    color: var(--ink);
    font-weight: 700;
}

.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
}

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

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

.product-grid.wide {
    grid-template-columns: repeat(2, 1fr);
}

.home-hero {
    align-items: flex-start;
    height: min(56.25vw, calc(100vh - 136px));
    min-height: 560px;
    max-height: 980px;
}

.home-hero .hero-content {
    width: auto;
    margin-left: clamp(20px, 4vw, 72px);
    margin-right: 20px;
    padding: clamp(34px, 3.8vw, 72px) 0 0;
}

.hero-subtitle {
    display: block;
    max-width: 640px;
    margin: 0;
    color: rgba(6, 59, 90, .98);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.18;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s ease, transform .72s ease;
}

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

.home-proof-band {
    position: relative;
    z-index: 2;
    margin-top: -44px;
    padding-bottom: 36px;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-proof-grid article {
    min-height: 178px;
    padding: 26px;
    background: var(--white);
}

.home-proof-grid span,
.home-product-card span,
.home-news-cards span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-proof-grid strong,
.home-application-grid strong,
.home-news-cards strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
}

.home-proof-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-about-showcase,
.home-process-section,
.home-news-preview {
    padding: 82px 0;
}

.home-about-grid,
.home-process-grid,
.home-news-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.home-about-copy h2,
.home-quality-grid h2,
.home-process-grid h2,
.home-applications h2,
.home-news-grid h2,
.home-final-cta h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.15;
}

.home-about-copy p,
.home-quality-grid p,
.home-news-grid p,
.home-final-cta p {
    color: var(--muted);
    line-height: 1.78;
}

.home-about-media {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-about-media img,
.home-process-image img,
.home-process-image video {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.home-process-image video {
    opacity: 1;
    transition: opacity .24s ease;
}

.video-replay {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(6, 59, 90, .72);
    color: var(--white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.home-process-image.is-ended .video-replay {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.video-replay:hover {
    background: rgba(0, 106, 156, .88);
}


.home-process-image img {
    display: block;
    height: 100%;
}

.home-about-media div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-left: 5px solid var(--blue);
    background: rgba(8, 36, 51, .92);
    color: var(--white);
}

.home-about-media strong,
.home-about-media span {
    display: block;
}

.home-about-media strong {
    font-size: 22px;
    line-height: 1.25;
}

.home-about-media span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
}

.home-products-showcase {
    padding: 82px 0;
    background: var(--white);
}

.home-product-carousel {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(360px, 1fr);
    gap: 34px;
    align-items: center;
}

.home-product-media {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #f2f4f6;
}

.home-product-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 158px 1fr;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
}

.home-product-slide.active {
    opacity: 1;
    visibility: visible;
}

.home-product-slide figcaption {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 22px;
    text-align: center;
    background: #f1f3f5;
}

.home-product-slide figcaption img {
    width: 96px;
    margin-bottom: 4px;
}

.home-product-slide figcaption strong {
    color: var(--blue-dark);
    font-size: 18px;
    line-height: 1.2;
}

.home-product-slide figcaption span {
    color: var(--navy);
    font-size: 16px;
}

.home-product-slide > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.home-product-media-controls {
    position: absolute;
    inset: 158px 0 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.home-product-arrow {
    width: 34px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    text-shadow: 0 3px 14px rgba(0, 24, 37, .72);
    pointer-events: auto;
    transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.home-product-arrow span {
    display: block;
    margin-top: -4px;
    font-size: 60px;
    font-weight: 300;
    line-height: .72;
}

.home-product-arrow:hover {
    color: var(--blue);
    text-shadow: 0 3px 18px rgba(0, 24, 37, .82);
    transform: scale(1.08);
}

.home-product-arrow:focus-visible {
    outline: 3px solid rgba(72, 189, 234, .72);
    outline-offset: 3px;
}

.home-product-copy {
    position: relative;
    min-height: 430px;
}

.home-product-panel {
    display: block;
}

.home-product-panel h2 {
    max-width: 680px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 39px;
    line-height: 1.18;
}

.home-product-panel p {
    max-width: 720px;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.78;
}

.home-product-panel ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.home-product-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-weight: 700;
}

.home-product-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .64em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.home-product-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.home-product-controls > button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 30px;
    line-height: 1;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.home-product-controls > button:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.home-product-controls div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-product-controls div button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c8d7e2;
}

.home-product-controls div button.active {
    width: 28px;
    border-radius: 999px;
    background: var(--blue);
}

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

.home-product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.home-product-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .5s ease;
}

.home-product-card:hover img {
    transform: scale(1.04);
}

.home-product-card div {
    padding: 24px;
}

.home-product-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.22;
}

.home-product-card p {
    color: var(--muted);
    line-height: 1.68;
}

.home-quality-band {
    padding: 86px 0;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .95), rgba(0, 67, 101, .82)),
        url("../img/produtos/02-tubular-alto/03.jpg") center/cover;
    color: var(--white);
}

.home-quality-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 54px;
    align-items: center;
}

.home-quality-grid h2,
.home-final-cta h2 {
    color: var(--white);
}

.home-quality-grid p,
.home-final-cta p {
    color: rgba(255, 255, 255, .82);
}

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

.home-quality-list article {
    min-height: 160px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
}

.home-quality-list strong,
.home-quality-list span {
    display: block;
}

.home-quality-list strong {
    color: var(--blue);
    font-size: 19px;
    line-height: 1.3;
}

.home-quality-list span {
    margin-top: 9px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

.home-process-section {
    background: var(--white);
}

.home-process-grid {
    align-items: stretch;
}

.home-process-image {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-process-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: home-process;
}

.home-process-list li {
    counter-increment: home-process;
    position: relative;
    padding: 20px 20px 20px 68px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}

.home-process-list li::before {
    content: counter(home-process);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
}

.home-process-list strong,
.home-process-list span {
    display: block;
}

.home-process-list strong {
    color: var(--navy);
    font-size: 18px;
}

.home-process-list span {
    margin-top: 5px;
    color: var(--muted);
    line-height: 1.6;
}

.home-applications {
    padding: 82px 0;
    background: var(--soft);
}

.home-applications h2 {
    max-width: 780px;
}

.home-application-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.home-application-grid article {
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.home-application-grid span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.home-news-preview {
    background: var(--white);
}

.home-news-cards {
    display: grid;
    gap: 14px;
}

.home-news-cards article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}

.home-final-cta {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .94), rgba(0, 106, 156, .72)),
        url("../img/produtos/03-reservatorio-taca/01.jpg") center/cover;
    color: var(--white);
}

.home-final-inner {
    max-width: 850px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-product-card img {
        transition: none;
    }
}
.page-hero {
    padding: 86px 0;
    background: linear-gradient(rgba(0, 45, 70, .72), rgba(0, 45, 70, .72)), url("../img/hero-tanque.jpg") center/cover;
    color: var(--white);
}

.page-hero.compact {
    padding: 64px 0;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
}

.page-fale-conosco .home-hero {
    min-height: 720px;
}

.hero-subtitle {
    display: block;
    max-width: 640px;
    margin: 0;
    color: rgba(6, 59, 90, .98);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.18;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s ease, transform .72s ease;
}

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

.home-proof-band {
    position: relative;
    z-index: 2;
    margin-top: -44px;
    padding-bottom: 36px;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-proof-grid article {
    min-height: 178px;
    padding: 26px;
    background: var(--white);
}

.home-proof-grid span,
.home-product-card span,
.home-news-cards span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-proof-grid strong,
.home-application-grid strong,
.home-news-cards strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
}

.home-proof-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-about-showcase,
.home-process-section,
.home-news-preview {
    padding: 82px 0;
}

.home-about-grid,
.home-process-grid,
.home-news-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.home-about-copy h2,
.home-quality-grid h2,
.home-process-grid h2,
.home-applications h2,
.home-news-grid h2,
.home-final-cta h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.15;
}

.home-about-copy p,
.home-quality-grid p,
.home-news-grid p,
.home-final-cta p {
    color: var(--muted);
    line-height: 1.78;
}

.home-about-media {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-about-media img,
.home-process-image img,
.home-process-image video {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.home-process-image video {
    opacity: 1;
    transition: opacity .24s ease;
}


.home-process-image img {
    display: block;
    height: 100%;
}

.home-about-media div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-left: 5px solid var(--blue);
    background: rgba(8, 36, 51, .92);
    color: var(--white);
}

.home-about-media strong,
.home-about-media span {
    display: block;
}

.home-about-media strong {
    font-size: 22px;
    line-height: 1.25;
}

.home-about-media span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
}

.home-products-showcase {
    padding: 82px 0;
    background: var(--soft);
}

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

.home-product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.home-product-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .5s ease;
}

.home-product-card:hover img {
    transform: scale(1.04);
}

.home-product-card div {
    padding: 24px;
}

.home-product-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.22;
}

.home-product-card p {
    color: var(--muted);
    line-height: 1.68;
}

.home-quality-band {
    padding: 86px 0;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .95), rgba(0, 67, 101, .82)),
        url("../img/produtos/02-tubular-alto/03.jpg") center/cover;
    color: var(--white);
}

.home-quality-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 54px;
    align-items: center;
}

.home-quality-grid h2,
.home-final-cta h2 {
    color: var(--white);
}

.home-quality-grid p,
.home-final-cta p {
    color: rgba(255, 255, 255, .82);
}

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

.home-quality-list article {
    min-height: 160px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
}

.home-quality-list strong,
.home-quality-list span {
    display: block;
}

.home-quality-list strong {
    color: var(--blue);
    font-size: 19px;
    line-height: 1.3;
}

.home-quality-list span {
    margin-top: 9px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

.home-process-section {
    background: var(--white);
}

.home-process-grid {
    align-items: stretch;
}

.home-process-image {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.home-process-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: home-process;
}

.home-process-list li {
    counter-increment: home-process;
    position: relative;
    padding: 20px 20px 20px 68px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}

.home-process-list li::before {
    content: counter(home-process);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
}

.home-process-list strong,
.home-process-list span {
    display: block;
}

.home-process-list strong {
    color: var(--navy);
    font-size: 18px;
}

.home-process-list span {
    margin-top: 5px;
    color: var(--muted);
    line-height: 1.6;
}

.home-applications {
    padding: 82px 0;
    background: var(--soft);
}

.home-applications h2 {
    max-width: 780px;
}

.home-application-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.home-application-grid article {
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.home-application-grid span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.home-news-preview {
    background: var(--white);
}

.home-news-cards {
    display: grid;
    gap: 14px;
}

.home-news-cards article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}

.home-final-cta {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .94), rgba(0, 106, 156, .72)),
        url("../img/produtos/03-reservatorio-taca/01.jpg") center/cover;
    color: var(--white);
}

.home-final-inner {
    max-width: 850px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-product-card img {
        transition: none;
    }
}
.page-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .9), rgba(0, 106, 156, .62)),
        url("../img/produtos/01-reservatorio-in-loco/01.jpg") right center / contain no-repeat,
        var(--navy-deep);
}

.contact-overview {
    padding: 56px 0;
    background: var(--soft);
}

.contact-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-overview article {
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-overview span,
.map-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-overview h2,
.contact-main h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 22px;
}

.contact-overview a {
    display: block;
    margin-top: 9px;
    color: var(--ink);
    font-weight: 800;
}

.page-fale-conosco .contact-overview a {
}

.contact-overview p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-main {
    padding: 72px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 32px;
    align-items: start;
}

.contact-side {
    display: grid;
    gap: 24px;
}

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

.quote-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quote-fields.is-hidden {
    display: none;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 14px;
    font: inherit;
}

.contact-form select {
    background: var(--white);
}

.hours-card p {
    color: var(--muted);
    line-height: 1.65;
}

.map-card {
    display: block;
    min-height: 230px;
    padding: 28px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(8, 36, 51, .92), rgba(0, 106, 156, .78)),
        url("../img/empresa.jpg") center/cover;
    color: var(--white);
    box-shadow: var(--shadow);
}

.map-card span {
    color: var(--blue);
}

.map-card strong {
    display: block;
    margin: 42px 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.map-card small {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.news-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .9), rgba(0, 106, 156, .66)),
        url("../img/produtos/03-reservatorio-taca/02.jpg") center/cover;
}

.news-intro,
.news-empty-section {
    padding: 64px 0;
    background: var(--soft);
}

.news-intro-grid,
.news-empty-box {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.news-intro h2,
.news-empty-box h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.22;
}

.news-intro p,
.news-empty-box p,
.news-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.news-topics-section {
    padding: 72px 0;
}

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

.news-topic-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.news-topic-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-topic-content {
    padding: 24px;
}

.news-topic-content span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-topic-content h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.25;
}

.news-topic-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.news-topic-content ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.news-topic-content li {
    position: relative;
    padding-left: 20px;
    color: var(--ink);
    line-height: 1.55;
}

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

.news-topic-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.news-empty-box {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.news-empty-box .button {
    justify-self: end;
}
.support-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, .88), rgba(0, 106, 156, .68)),
        url("../img/produtos/02-tubular-alto/01.jpg") center/cover;
}

.support-intro,
.support-steps-section {
    padding: 64px 0;
    background: var(--soft);
}

.support-intro-grid,
.support-steps-grid,
.support-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.support-intro h2,
.support-steps-grid h2,
.support-cta h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.22;
}

.support-intro p,
.support-steps-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.support-docs-section {
    padding: 72px 0;
}

.support-heading {
    margin-bottom: 30px;
}

.support-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.support-doc-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.support-category {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.support-doc-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.25;
}

.support-doc-card p {
    margin: 0;
}

.support-doc-card ul,
.support-steps {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.support-doc-card li {
    position: relative;
    padding-left: 20px;
    color: var(--ink);
    line-height: 1.55;
}

.support-doc-card li + li {
    margin-top: 8px;
}

.support-doc-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.support-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.support-status {
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.text-link {
    color: var(--navy);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.support-steps {
    counter-reset: support-step;
    display: grid;
    gap: 14px;
}

.support-steps li {
    counter-increment: support-step;
    position: relative;
    padding: 18px 18px 18px 62px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.support-steps li::before {
    content: counter(support-step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
}

.support-steps strong,
.support-steps span {
    display: block;
}

.support-steps strong {
    color: var(--navy);
    font-size: 17px;
}

.support-steps span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.55;
}

.support-cta {
    padding: 56px 0;
    background: var(--navy-deep);
    color: var(--white);
}

.support-cta h2 {
    color: var(--white);
}

.support-cta .btn {
    justify-self: end;
}

.site-footer {
    padding: 28px 0;
    background: #0f2938;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: .95fr 1fr 1.1fr;
    gap: 34px;
    align-items: stretch;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .78);
}

.site-footer h2 {
    color: var(--white);
    font-size: 21px;
    line-height: 1.2;
}

.footer-brand-block,
.footer-contact-block {
    padding: 0;
}

.footer-logo {
    width: 178px;
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 4px;
    background: var(--white);
}

.footer-brand-block p {
    max-width: 360px;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.48;
}

.footer-contact-block h2 {
    margin: 0 0 10px;
}

.footer-contact-block h2 + p,
.footer-contact-block p + p {
    margin-top: 0;
}

.footer-contact-block p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.35;
}

.footer-contact-block strong {
    color: var(--white);
}

.footer-contact-block h2:nth-of-type(2) {
    margin-top: 16px;
}

.footer-phones {
    display: grid;
    gap: 2px;
    margin-bottom: 6px;
}

.footer-phones a,
.footer-email,
.footer-address {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.32;
}

.footer-phones span {
    font-weight: 700;
}

.footer-email {
    display: inline-block;
    margin: 2px 0 6px;
}

.footer-address {
    max-width: 430px;
}

.footer-map {
    min-height: 205px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 205px;
    border: 0;
    display: block;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 16px;
}

.social-links a {
    width: auto;
    height: auto;
    display: inline-flex;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

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

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 25;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .24));
    animation: whatsappPulse 2.8s ease-in-out infinite;
    transition: transform .22s ease, filter .22s ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 210, 44, .46);
    box-shadow:
        0 0 0 0 rgba(0, 210, 44, .35),
        0 0 22px rgba(0, 210, 44, .65),
        0 0 42px rgba(0, 210, 44, .34);
    animation: whatsappGlow 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .26));
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.045);
    }
}

@keyframes whatsappGlow {
    0%, 100% {
        opacity: .72;
        box-shadow:
            0 0 0 0 rgba(0, 210, 44, .3),
            0 0 20px rgba(0, 210, 44, .58),
            0 0 38px rgba(0, 210, 44, .3);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 0 9px rgba(0, 210, 44, .08),
            0 0 28px rgba(0, 210, 44, .82),
            0 0 58px rgba(0, 210, 44, .42);
    }
}


@media (max-width: 900px) {
    .topbar-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 10px 0 12px;
    }

    .topbar-phones {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .topbar-phone {
        min-height: 34px;
        justify-content: center;
        gap: 3px;
        flex-direction: column;
        padding: 6px 8px;
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: 4px;
        text-align: center;
        white-space: normal;
    }

    .topbar-phone span {
        font-size: 11px;
    }

    .topbar-email {
        align-self: center;
        text-align: center;
    }

    .header-inner {
        height: auto;
        min-height: 84px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        background: var(--white);
        border-top: 1px solid var(--line);
    }

    .main-nav a.nav-whatsapp {
        width: auto;
        height: auto;
        min-height: 38px;
        display: inline-flex;
        gap: 8px;
        align-self: flex-start;
        align-items: center;
        margin-top: 4px;
        padding: 0;
        color: var(--navy);
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        transform: none;
    }

    .main-nav a.nav-whatsapp img {
        width: 24px;
        height: 24px;
    }

    .main-nav a.nav-whatsapp span {
        font-size: 15px;
        line-height: 1;
    }

    .main-nav.open {
        display: flex;
    }

    .hero {
        min-height: 560px;
    }

    .home-hero {
        height: auto;
        min-height: 640px;
    }
    .home-hero .hero-content {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding: 34px 0 0;
    }

    .hero-copy-panel {
        width: min(500px, 100%);
    }

    .hero-kicker {
        font-size: 20px;
    }

    .hero-message-card {
        padding: 13px 18px 15px;
    }

    .hero-controls {
        padding: 0 12px;
    }

    .hero-message-card h1,
    .hero-message-card h2 {
        font-size: 30px;
    }

    .hero-message-card .hero-subtitle {
        font-size: 22px;
        line-height: 1.18;
    }

    .home-proof-band {
        margin-top: 0;
        padding: 34px 0;
        background: var(--soft);
    }

    .home-about-grid,
    .home-quality-grid,
    .home-process-grid,
    .home-news-grid {
        gap: 34px;
    }

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

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

    .features,
    .home-proof-grid,
    .home-about-grid,
    .home-product-carousel,
    .home-product-grid,
    .home-quality-grid,
    .home-quality-list,
    .home-process-grid,
    .home-application-grid,
    .home-news-grid,
    .split-grid,
    .product-grid,
    .product-grid.wide,
    .contact-grid,
    .contact-overview-grid,
    .contact-main-grid,
    .quote-fields,
    .news-topic-grid,
    .news-intro-grid,
    .news-empty-box,
    .support-list,
    .support-intro-grid,
    .support-steps-grid,
    .support-cta-inner,
    .footer-grid,
    .process-grid,
    .process-grid ol,
    .product-intro-grid,
    .product-detail,
    .about-intro-grid,
    .about-values-grid,
    .about-cta-inner {
        grid-template-columns: 1fr;
    }

    .about-cta-inner,
    .support-cta-inner {
        align-items: flex-start;
    }

    .news-empty-box .button,
    .support-cta .btn {
        justify-self: start;
    }

    .product-detail:nth-child(even) .product-gallery {
        order: initial;
    }

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

    .site-footer {
        padding: 28px 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-map,
    .footer-map iframe {
        min-height: 220px;
    }

    .home-product-media {
        min-height: 520px;
    }

    .home-product-copy {
        min-height: 0;
    }

    .home-product-panel h2 {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 205px;
    }

    .topbar {
        font-size: 12px;
    }

    .topbar-phones {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .topbar-phone {
        padding: 6px 5px;
    }

    .topbar-email {
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: 560px;
    }

    .home-hero {
        height: auto;
        min-height: 640px;
    }
    .home-hero .hero-content {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding: 28px 0 0;
    }

    .hero-kicker {
        font-size: 16px;
    }

    .hero-message-card {
        padding: 12px 14px 14px;
    }

    .hero-control {
        width: 38px;
        height: 38px;
    }

    .hero-message-card h1,
    .hero-message-card h2 {
        font-size: 24px;
    }

    .hero-message-card .hero-subtitle {
        font-size: 18px;
        line-height: 1.18;
    }

    .home-proof-band {
        margin-top: 0;
        padding: 34px 0;
        background: var(--soft);
    }

    .home-about-grid,
    .home-quality-grid,
    .home-process-grid,
    .home-news-grid {
        gap: 34px;
    }

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


    .hero h1,
    .page-hero h1 {
        font-size: 31px;
    }

    .hero-content {
        padding: 34px 0 118px;
    }

    .hero-actions {
        gap: 10px;
    }

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

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }

    .hero-metrics div {
        padding: 11px 9px;
    }

    .hero-metrics dt {
        font-size: 18px;
    }

    .hero-metrics dd {
        font-size: 11px;
        line-height: 1.35;
    }

    .features,
    .home-about-showcase,
    .home-products-showcase,
    .home-quality-band,
    .home-process-section,
    .home-applications,
    .home-news-preview,
    .home-final-cta,
    .split-section,
    .content-section,
    .products-band,
    .process-band,
    .contact-overview,
    .contact-main,
    .news-intro,
    .news-topics-section,
    .news-empty-section,
    .support-intro,
    .support-docs-section,
    .support-steps-section,
    .support-cta {
        padding: 44px 0;
    }

    .process-grid h2,
    .home-about-copy h2,
    .home-quality-grid h2,
    .home-process-grid h2,
    .home-applications h2,
    .home-news-grid h2,
    .home-final-cta h2,
    .split-grid h2,
    .section-heading h2,
    .content-section h2,
    .product-intro h2,
    .product-copy h2,
    .about-intro h2,
    .about-cta h2,
    .news-intro h2,
    .news-empty-box h2,
    .support-intro h2,
    .support-steps-grid h2,
    .support-cta h2 {
        font-size: 28px;
    }

    .about-intro,
    .about-values,
    .about-cta {
        padding: 44px 0;
    }

    .about-card {
        padding: 28px;
    }

    .about-card strong {
        font-size: 52px;
    }

    .product-showcase {
        padding: 44px 0;
    }

    .product-detail {
        gap: 24px;
        padding: 34px 0;
        scroll-margin-top: 120px;
    }

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

    .home-subtitle,
    .hero-subtitle {
        font-size: 16px;
    }

    .home-about-media,
    .home-about-media img,
    .home-process-image img {
        min-height: 330px;
    }

    .home-product-carousel {
        gap: 26px;
    }

    .home-product-media {
        min-height: 440px;
    }

    .home-product-slide {
        grid-template-rows: 128px 1fr;
    }

    .home-product-slide figcaption {
        padding: 16px;
    }

    .home-product-slide figcaption img {
        width: 82px;
    }

    .home-product-slide figcaption strong {
        font-size: 16px;
    }

    .home-product-slide figcaption span {
        font-size: 14px;
    }

    .home-product-panel h2 {
        font-size: 28px;
    }

    .home-product-panel p {
        font-size: 16px;
    }

    .home-product-controls {
        justify-content: center;
    }

    .home-product-media-controls {
        inset: 158px 0 0;
        padding: 0 12px;
    }

    .home-product-arrow {
        width: 30px;
        height: 56px;
    }

    .home-product-arrow span {
        font-size: 50px;
    }

    .home-application-grid {
        grid-template-columns: 1fr;
    }

    .home-final-cta .button {
        width: 100%;
    }

    .support-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-empty-box {
        padding: 26px;
    }
}

html,
body,
a,
button,
input,
select,
textarea,
label,
.button {
}
















/* Process video responsive balance */
.home-process-grid {
    align-items: stretch;
}

.home-process-grid > .reveal-on-scroll:last-child {
    display: flex;
    flex-direction: column;
}

.home-process-image {
    min-height: clamp(520px, 46vw, 690px);
}

.home-process-image img,
.home-process-image video {
    min-height: 0;
}

.home-process-list {
    flex: 1;
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.home-process-list li {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(14px, 1.35vw, 20px);
    padding-bottom: clamp(14px, 1.35vw, 20px);
}

@media (max-width: 900px) {
    .home-process-grid > .reveal-on-scroll:last-child {
        display: block;
    }

    .home-process-image {
        min-height: clamp(360px, 72vw, 540px);
    }

    .home-process-list {
        grid-template-rows: none;
    }

    .home-process-list li {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .home-process-image {
        min-height: 360px;
    }
}


/* Process compact viewport tuning */
.home-process-grid h2 {
    font-size: clamp(32px, 3.2vw, 42px);
}

.home-process-list {
    gap: clamp(8px, 1vw, 12px);
    margin-top: clamp(18px, 2vw, 28px);
}

.home-process-list li {
    padding-right: clamp(16px, 1.5vw, 20px);
    padding-left: clamp(60px, 5vw, 68px);
}

.home-process-list strong {
    font-size: clamp(16px, 1.35vw, 18px);
}

.home-process-list span {
    line-height: 1.45;
}

@media (max-height: 820px) and (min-width: 901px) {
    .home-process-section {
        padding: 58px 0;
    }

    .home-process-grid h2 {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .home-process-list li {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .home-process-list span {
        line-height: 1.35;
    }
}


/* Process section final responsive sizing */
.home-process-grid {
    align-items: start;
}

.home-process-grid > .reveal-on-scroll:last-child {
    min-height: 0;
}

.home-process-image {
    height: clamp(430px, 38vw, 600px);
    min-height: 0 !important;
}

.home-process-image img,
.home-process-image video {
    min-height: 0 !important;
}

.home-process-list {
    flex: initial;
    grid-template-rows: none;
}

@media (max-height: 850px) and (min-width: 901px) {
    .home-process-section {
        padding: 48px 0;
    }

    .home-process-grid {
        gap: 38px;
    }

    .home-process-image {
        height: clamp(390px, 34vw, calc(100vh - 180px));
    }

    .home-process-grid h2 {
        font-size: clamp(28px, 2.65vw, 34px);
        margin-bottom: 12px;
    }

    .home-process-list {
        gap: 8px;
        margin-top: 16px;
    }

    .home-process-list li {
        padding-top: 11px;
        padding-bottom: 11px;
        padding-left: 58px;
    }

    .home-process-list li::before {
        left: 18px;
        top: 50%;
        width: 28px;
        height: 28px;
        transform: translateY(-50%);
    }

    .home-process-list strong {
        font-size: 16px;
    }

    .home-process-list span {
        margin-top: 3px;
        font-size: 14px;
        line-height: 1.32;
    }
}

@media (max-width: 1200px) and (min-width: 901px) {
    .home-process-grid {
        grid-template-columns: .92fr 1.08fr;
        gap: 34px;
    }

    .home-process-image {
        height: clamp(390px, 36vw, 520px);
    }
}

@media (max-width: 900px) {
    .home-process-grid {
        align-items: start;
    }

    .home-process-image {
        height: clamp(320px, 64vw, 500px);
        min-height: 0 !important;
    }
}

@media (max-width: 560px) {
    .home-process-image {
        height: 340px;
        min-height: 0 !important;
    }

    .home-process-list li {
        padding: 16px 16px 16px 58px;
    }

    .home-process-list li::before {
        left: 16px;
        width: 28px;
        height: 28px;
    }
}


/* Process large desktop balance */
@media (min-width: 1201px) and (min-height: 851px) {
    .home-process-grid {
        grid-template-columns: minmax(520px, 1.05fr) minmax(460px, .95fr);
        align-items: stretch;
    }

    .home-process-image {
        height: clamp(620px, 40vw, 760px);
    }

    .home-process-grid > .reveal-on-scroll:last-child {
        display: flex;
        flex-direction: column;
    }

    .home-process-list {
        flex: 1;
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .home-process-list li {
        justify-content: center;
    }
}


/* Process medium desktop balance */
@media (min-width: 901px) and (min-height: 760px) {
    .home-process-grid {
        align-items: stretch;
    }

    .home-process-image {
        height: clamp(520px, 43vw, 680px);
    }

    .home-process-grid > .reveal-on-scroll:last-child {
        display: flex;
        flex-direction: column;
    }

    .home-process-list {
        flex: 1;
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .home-process-list li {
        justify-content: center;
    }
}

@media (min-width: 901px) and (max-height: 759px) {
    .home-process-image {
        height: clamp(390px, 34vw, calc(100vh - 180px));
    }
}

/* Mini carousel dots inside image */
.home-product-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.home-product-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(202, 218, 230, 0.95);
    transition: width 0.18s ease, background 0.18s ease;
}

.home-product-dots button.active {
    width: 28px;
    border-radius: 999px;
    background: var(--blue);
}

@media (max-width: 560px) {
    .home-product-dots {
        bottom: 14px;
    }
}

/* Home clients and partners carousel */
.home-partners-section {
    padding: 28px 0 42px;
    background: var(--white);
}

.home-partners-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-partners-heading h2 {
    margin: 0;
    color: #0b1720;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-partners-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.home-partners-controls button {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--blue);
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, transform 0.18s ease;
}

.home-partners-controls button:hover {
    background: var(--navy);
    transform: translateY(-1px);
}

.home-partners-line {
    height: 2px;
    margin: 14px 0 38px;
    background: var(--blue);
}

.home-partners-window {
    overflow: hidden;
}

.home-partners-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.home-partners-track::-webkit-scrollbar {
    display: none;
}

.home-partner-card {
    flex: 0 0 calc((100% - 110px) / 6);
    min-width: 150px;
    height: 86px;
    margin: 0;
    border: 1px solid rgba(12, 52, 74, 0.08);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 14px 0 24px rgba(8, 36, 51, 0.08), -14px 0 24px rgba(8, 36, 51, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.home-partner-card img {
    display: block;
    width: auto;
    max-width: 78%;
    max-height: 48px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .home-partner-card {
        flex-basis: calc((100% - 44px) / 3);
    }
}

@media (max-width: 560px) {
    .home-partners-section {
        padding: 24px 0 34px;
    }

    .home-partners-heading h2 {
        font-size: 20px;
    }

    .home-partners-line {
        margin-bottom: 24px;
    }

    .home-partner-card {
        flex-basis: calc((100% - 22px) / 2);
        min-width: 130px;
        height: 78px;
    }
}

/* Acquatec visual refinement for clients carousel */
.home-partners-section {
    position: relative;
    padding: 58px 0 64px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.home-partners-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark), var(--navy));
}

.home-partners-carousel {
    position: relative;
}

.home-partners-heading {
    align-items: flex-end;
    margin-bottom: 28px;
}

.home-partners-heading .eyebrow {
    margin-bottom: 8px;
}

.home-partners-heading h2 {
    max-width: 620px;
    color: var(--navy);
    font-size: 34px;
    font-weight: 800;
    text-transform: none;
}

.home-partners-line {
    display: none;
}

.home-partners-controls {
    gap: 12px;
}

.home-partners-controls button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(72, 189, 234, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    box-shadow: 0 12px 28px rgba(8, 36, 51, 0.10);
    font-size: 32px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.home-partners-controls button:hover {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: 0 16px 32px rgba(8, 36, 51, 0.16);
}

.home-partners-window {
    margin: 0 -10px;
    padding: 4px 10px 10px;
}

.home-partners-track {
    gap: 18px;
    padding: 10px 0 12px;
}

.home-partner-card {
    flex-basis: calc((100% - 90px) / 6);
    height: 104px;
    border: 1px solid rgba(72, 189, 234, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(14, 55, 82, 0.10);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-partner-card:hover {
    border-color: rgba(72, 189, 234, 0.45);
    box-shadow: 0 22px 48px rgba(14, 55, 82, 0.15);
    transform: translateY(-2px);
}

.home-partner-card img {
    max-width: 76%;
    max-height: 54px;
    filter: saturate(0.92) contrast(1.02);
}

@media (max-width: 900px) {
    .home-partners-heading {
        align-items: flex-start;
    }

    .home-partners-heading h2 {
        font-size: 30px;
    }

    .home-partner-card {
        flex-basis: calc((100% - 36px) / 3);
    }
}

@media (max-width: 560px) {
    .home-partners-section {
        padding: 42px 0 46px;
    }

    .home-partners-heading {
        gap: 14px;
    }

    .home-partners-heading h2 {
        font-size: 25px;
    }

    .home-partners-controls button {
        width: 34px;
        height: 34px;
        font-size: 28px;
    }

    .home-partner-card {
        flex-basis: calc((100% - 18px) / 2);
        height: 92px;
    }
}

/* Clients marquee compact version */
.home-partners-section {
    padding: 30px 0 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.home-partners-section::before {
    height: 4px;
}

.home-partners-heading {
    display: block;
    margin-bottom: 16px;
}

.home-partners-heading .eyebrow {
    margin-bottom: 6px;
}

.home-partners-heading h2 {
    font-size: 30px;
    line-height: 1.16;
}

.home-partners-controls {
    display: none;
}

.home-partners-window {
    position: relative;
    margin: 0;
    padding: 6px 0 8px;
    overflow: hidden;
}

.home-partners-window::before,
.home-partners-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 70px;
    pointer-events: none;
}

.home-partners-window::before {
    left: 0;
    background: linear-gradient(90deg, #f8fbfd, rgba(248, 251, 253, 0));
}

.home-partners-window::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbfd, rgba(248, 251, 253, 0));
}

.home-partners-track {
    width: max-content;
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 4px 0 8px;
    animation: partnersMarquee 42s linear infinite;
    will-change: transform;
}

.home-partners-window:hover .home-partners-track {
    animation-play-state: paused;
}

.home-partner-card {
    flex: 0 0 168px;
    width: 168px;
    min-width: 168px;
    height: 82px;
    border-radius: 7px;
    box-shadow: 0 12px 26px rgba(14, 55, 82, 0.08);
}

.home-partner-card:hover {
    transform: translateY(-1px);
}

.home-partner-card img {
    max-width: 74%;
    max-height: 46px;
}

@keyframes partnersMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .home-partners-section {
        padding: 28px 0 32px;
    }

    .home-partners-heading h2 {
        font-size: 27px;
    }

    .home-partner-card {
        flex-basis: 154px;
        width: 154px;
        min-width: 154px;
        height: 76px;
    }
}

@media (max-width: 560px) {
    .home-partners-section {
        padding: 24px 0 28px;
    }

    .home-partners-heading {
        margin-bottom: 12px;
    }

    .home-partners-heading h2 {
        font-size: 23px;
    }

    .home-partners-track {
        gap: 12px;
        animation-duration: 34s;
    }

    .home-partner-card {
        flex-basis: 138px;
        width: 138px;
        min-width: 138px;
        height: 70px;
    }

    .home-partners-window::before,
    .home-partners-window::after {
        width: 34px;
    }
}
/* Mobile mini carousel image fit */
@media (max-width: 760px) {
    .home-products-showcase {
        padding-top: 24px;
    }

    .home-product-media {
        min-height: clamp(390px, 112vw, 480px);
        background: #f2f4f6;
    }

    .home-product-slide {
        grid-template-rows: 92px minmax(0, 1fr);
    }

    .home-product-slide figcaption {
        padding: 12px 14px 10px;
        gap: 2px;
    }

    .home-product-slide figcaption img {
        width: 58px;
        margin-bottom: 0;
    }

    .home-product-slide > img {
        height: 100%;
        object-fit: contain;
        object-position: top center;
        background: #f2f4f6;
    }

    .home-product-media-controls {
        inset: 92px 0 0;
    }
}

/* News topic cards without images */
.news-topic-card {
    overflow: visible;
}

.news-topic-card .news-topic-content {
    min-height: 100%;
    padding: 30px 28px;
}

.news-topic-card img {
    display: none;
}

/* About page custom banner */
.page-sobre .page-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 42%, rgba(0, 106, 156, 0.48) 72%, rgba(0, 106, 156, 0.12) 100%),
        url("../img/banner-sobre-nos.jpg") right center / auto 100% no-repeat,
        var(--navy-deep);
}

/* About banner soft transition */
.page-sobre .page-hero {
    position: relative;
    overflow: hidden;
}

.page-sobre .page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34%;
    z-index: 0;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 36, 51, 0.88) 36%, rgba(8, 36, 51, 0.48) 66%, rgba(8, 36, 51, 0) 100%);
}

.page-sobre .page-hero .container {
    position: relative;
    z-index: 1;
}

/* About banner mobile composition */
@media (max-width: 760px) {
    .page-sobre .page-hero {
        min-height: 460px;
        padding: 74px 0 82px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 48%, rgba(8, 36, 51, 0.62) 70%, rgba(8, 36, 51, 0.22) 100%),
            url("../img/banner-sobre-nos.jpg") 78% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-sobre .page-hero::before {
        inset: 0;
        width: auto;
        background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 36, 51, 0.86) 46%, rgba(8, 36, 51, 0.36) 76%, rgba(8, 36, 51, 0) 100%);
    }

    .page-sobre .page-hero .container {
        width: min(100% - 52px, 1180px);
    }

    .page-sobre .page-hero h1 {
        max-width: 320px;
        font-size: 38px;
        line-height: 1.06;
    }

    .page-sobre .page-hero p {
        max-width: 330px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .page-sobre .page-hero {
        min-height: 430px;
        padding: 68px 0 74px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 76%, rgba(8, 36, 51, 0.2) 100%),
            url("../img/banner-sobre-nos.jpg") 82% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-sobre .page-hero h1 {
        font-size: 36px;
    }

    .page-sobre .page-hero p {
        max-width: 300px;
        font-size: 18px;
    }
}

/* About banner mobile without transition overlay */
@media (max-width: 760px) {
    .page-sobre .page-hero::before {
        display: none;
    }
}

/* Products page custom banner */
.page-produtos .page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 42%, rgba(0, 106, 156, 0.46) 72%, rgba(0, 106, 156, 0.12) 100%),
        url("../img/banner-produtos.png") right center / auto 100% no-repeat,
        var(--navy-deep);
}

.page-produtos .page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34%;
    z-index: 0;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 36, 51, 0.88) 36%, rgba(8, 36, 51, 0.48) 66%, rgba(8, 36, 51, 0) 100%);
}

.page-produtos .page-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .page-produtos .page-hero {
        min-height: 460px;
        padding: 74px 0 82px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 48%, rgba(8, 36, 51, 0.62) 70%, rgba(8, 36, 51, 0.22) 100%),
            url("../img/banner-produtos.png") 82% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-produtos .page-hero::before {
        display: none;
    }

    .page-produtos .page-hero .container {
        width: min(100% - 52px, 1180px);
    }

    .page-produtos .page-hero h1 {
        max-width: 335px;
        font-size: 36px;
        line-height: 1.08;
    }

    .page-produtos .page-hero p {
        max-width: 330px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .page-produtos .page-hero {
        min-height: 430px;
        padding: 68px 0 74px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 76%, rgba(8, 36, 51, 0.2) 100%),
            url("../img/banner-produtos.png") 86% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-produtos .page-hero h1 {
        font-size: 33px;
    }

    .page-produtos .page-hero p {
        max-width: 300px;
        font-size: 18px;
    }
}

/* Products banner seam refinement */
.page-produtos .page-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.96) 30%, rgba(8, 36, 51, 0.82) 48%, rgba(8, 36, 51, 0.52) 64%, rgba(0, 106, 156, 0.18) 82%, rgba(0, 106, 156, 0.04) 100%),
        url("../img/banner-produtos.png") right center / auto 100% no-repeat,
        var(--navy-deep);
}

.page-produtos .page-hero::before {
    left: 22%;
    width: 58%;
    background: linear-gradient(90deg, rgba(8, 36, 51, 0.18) 0%, rgba(8, 36, 51, 0.74) 28%, rgba(8, 36, 51, 0.42) 62%, rgba(8, 36, 51, 0) 100%);
}

/* Products banner desktop full bleed fix */
@media (min-width: 761px) {
    .page-produtos .page-hero {
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 34%, rgba(8, 36, 51, 0.72) 54%, rgba(0, 106, 156, 0.20) 78%, rgba(0, 106, 156, 0.04) 100%),
            url("../img/banner-produtos.png") center center / cover no-repeat,
            var(--navy-deep);
    }

    .page-produtos .page-hero::before {
        display: none;
    }
}

/* Products banner seam mask without repositioning */
@media (min-width: 761px) {
    .page-produtos .page-hero {
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 42%, rgba(0, 106, 156, 0.46) 72%, rgba(0, 106, 156, 0.12) 100%),
            url("../img/banner-produtos.png") right center / auto 100% no-repeat,
            var(--navy-deep);
    }

    .page-produtos .page-hero::before {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 18%;
        z-index: 0;
        width: 42%;
        pointer-events: none;
        background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 36, 51, 0.94) 32%, rgba(8, 36, 51, 0.68) 58%, rgba(8, 36, 51, 0.22) 82%, rgba(8, 36, 51, 0) 100%);
    }
}

/* Products banner left edge mask */
@media (min-width: 761px) {
    .page-produtos .page-hero::before {
        display: block;
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        z-index: 0;
        width: 66%;
        pointer-events: none;
        background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-deep) 38%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 74%, rgba(8, 36, 51, 0) 100%);
    }
}

/* News page custom banner */
.page-noticias .page-hero,
.page-noticias .news-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 42%, rgba(0, 106, 156, 0.46) 72%, rgba(0, 106, 156, 0.12) 100%),
        url("../img/banner-noticias.jpg") right center / auto 100% no-repeat,
        var(--navy-deep);
}

.page-noticias .page-hero::before,
.page-noticias .news-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: 66%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-deep) 38%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 74%, rgba(8, 36, 51, 0) 100%);
}

.page-noticias .page-hero .container,
.page-noticias .news-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .page-noticias .page-hero,
    .page-noticias .news-hero {
        min-height: 460px;
        padding: 74px 0 82px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 48%, rgba(8, 36, 51, 0.62) 70%, rgba(8, 36, 51, 0.22) 100%),
            url("../img/banner-noticias.jpg") 78% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-noticias .page-hero::before,
    .page-noticias .news-hero::before {
        display: none;
    }

    .page-noticias .page-hero .container,
    .page-noticias .news-hero .container {
        width: min(100% - 52px, 1180px);
    }

    .page-noticias .page-hero h1,
    .page-noticias .news-hero h1 {
        max-width: 335px;
        font-size: 36px;
        line-height: 1.08;
    }

    .page-noticias .page-hero p,
    .page-noticias .news-hero p {
        max-width: 330px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .page-noticias .page-hero,
    .page-noticias .news-hero {
        min-height: 430px;
        padding: 68px 0 74px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 76%, rgba(8, 36, 51, 0.2) 100%),
            url("../img/banner-noticias.jpg") 84% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-noticias .page-hero h1,
    .page-noticias .news-hero h1 {
        font-size: 33px;
    }

    .page-noticias .page-hero p,
    .page-noticias .news-hero p {
        max-width: 300px;
        font-size: 18px;
    }
}

/* Contact page custom banner */
.page-fale-conosco .page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 42%, rgba(0, 106, 156, 0.46) 72%, rgba(0, 106, 156, 0.12) 100%),
        url("../img/banner-fale-conosco.jpg") right center / auto 100% no-repeat,
        var(--navy-deep);
}

.page-fale-conosco .page-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: 66%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-deep) 38%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 74%, rgba(8, 36, 51, 0) 100%);
}

.page-fale-conosco .page-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .page-fale-conosco .page-hero {
        min-height: 460px;
        padding: 74px 0 82px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 48%, rgba(8, 36, 51, 0.62) 70%, rgba(8, 36, 51, 0.22) 100%),
            url("../img/banner-fale-conosco.jpg") 82% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-fale-conosco .page-hero::before {
        display: none;
    }

    .page-fale-conosco .page-hero .container {
        width: min(100% - 52px, 1180px);
    }

    .page-fale-conosco .page-hero h1 {
        max-width: 335px;
        font-size: 36px;
        line-height: 1.08;
    }

    .page-fale-conosco .page-hero p {
        max-width: 330px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .page-fale-conosco .page-hero {
        min-height: 430px;
        padding: 68px 0 74px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 52%, rgba(8, 36, 51, 0.62) 76%, rgba(8, 36, 51, 0.2) 100%),
            url("../img/banner-fale-conosco.jpg") 86% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-fale-conosco .page-hero h1 {
        font-size: 33px;
    }

    .page-fale-conosco .page-hero p {
        max-width: 300px;
        font-size: 18px;
    }
}

/* Contact banner seam softening */
.page-fale-conosco .page-hero {
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 1) 0%, rgba(8, 36, 51, 1) 46%, rgba(8, 36, 51, 0.94) 56%, rgba(8, 36, 51, 0.58) 76%, rgba(0, 106, 156, 0.12) 100%),
        url("../img/banner-fale-conosco.jpg") right center / auto 100% no-repeat,
        var(--navy-deep);
}

.page-fale-conosco .page-hero::before {
    width: 78%;
    background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-deep) 54%, rgba(8, 36, 51, 0.96) 66%, rgba(8, 36, 51, 0.58) 84%, rgba(8, 36, 51, 0) 100%);
}

@media (max-width: 760px) {
    .page-fale-conosco .page-hero::before {
        display: none;
    }

    .page-fale-conosco .whatsapp-float {
        display: none;
    }
}

/* Support page custom banner */
.page-suporte .support-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 40%, rgba(8, 36, 51, 0.68) 68%, rgba(0, 106, 156, 0.2) 100%),
        url("../img/banner-suporte.png") center center / cover no-repeat,
        var(--navy-deep);
}

.page-suporte .support-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 36, 51, 0.96) 34%, rgba(8, 36, 51, 0.58) 66%, rgba(8, 36, 51, 0.1) 100%);
}

.page-suporte .support-hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .page-suporte .support-hero {
        min-height: 440px;
        padding: 72px 0 80px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.98) 0%, rgba(8, 36, 51, 0.94) 54%, rgba(8, 36, 51, 0.52) 100%),
            url("../img/banner-suporte.png") 68% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-suporte .support-hero::before {
        display: none;
    }

    .page-suporte .support-hero .container {
        width: min(100% - 52px, 1180px);
    }

    .page-suporte .support-hero h1 {
        max-width: 360px;
        font-size: 36px;
        line-height: 1.08;
    }

    .page-suporte .support-hero p {
        max-width: 330px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .page-suporte .support-hero {
        min-height: 420px;
        padding: 66px 0 72px;
        background:
            linear-gradient(90deg, rgba(8, 36, 51, 0.99) 0%, rgba(8, 36, 51, 0.95) 58%, rgba(8, 36, 51, 0.48) 100%),
            url("../img/banner-suporte.png") 72% center / cover no-repeat,
            var(--navy-deep);
    }

    .page-suporte .support-hero h1 {
        font-size: 33px;
    }

    .page-suporte .support-hero p {
        max-width: 300px;
        font-size: 18px;
    }
}

/* SEO landing pages */
.product-intro p {
    max-width: 640px;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.product-seo-hub {
    padding: 72px 0;
    background: var(--soft);
}

.compact-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.compact-heading p {
    color: var(--muted);
    line-height: 1.72;
}

.seo-hub-groups {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
}

.seo-hub-group {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(8, 36, 51, .08);
}

.seo-hub-group h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 23px;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.seo-link-grid a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(68, 187, 229, .28);
    border-radius: 6px;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.25;
    background: rgba(68, 187, 229, .07);
}

.seo-link-grid a:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    align-items: center;
    margin-top: 24px;
}

.seo-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-deep);
}

.seo-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: .8;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(8, 36, 51, .98) 0%, rgba(8, 36, 51, .92) 42%, rgba(8, 36, 51, .56) 72%, rgba(8, 36, 51, .18) 100%);
}

.seo-hero-inner {
    position: relative;
    z-index: 2;
    padding: 86px 0;
}

.seo-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--white);
    font-size: 52px;
    line-height: 1.08;
}

.seo-hero p {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 20px;
    line-height: 1.65;
}

.seo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
    margin-top: 30px;
}

.text-link.light {
    color: var(--white);
}

.seo-overview-section,
.seo-list-section,
.seo-faq-section,
.seo-related-section,
.seo-final-cta {
    padding: 82px 0;
}

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

.seo-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 54px;
    align-items: start;
}

.seo-main-copy h2,
.seo-two-columns h2,
.seo-faq-grid h2,
.seo-final-inner h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 40px;
    line-height: 1.16;
}

.seo-main-copy p,
.seo-faq-grid p,
.seo-final-inner p {
    color: var(--muted);
    line-height: 1.78;
}

.seo-side-panel {
    position: sticky;
    top: 120px;
    padding: 30px;
    border-radius: 6px;
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow);
}

.seo-side-panel span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-side-panel strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.2;
}

.seo-side-panel p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, .42);
    background: transparent;
    color: var(--white);
}

.seo-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.seo-check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.seo-check-list li {
    position: relative;
    padding: 16px 18px 16px 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
}

.seo-check-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

.seo-faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
}

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

.seo-faq-list details {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    overflow: hidden;
}

.seo-faq-list summary {
    padding: 18px 20px;
    color: var(--navy);
    font-weight: 900;
}

.seo-faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.72;
}

.seo-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.seo-related-grid a {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(8, 36, 51, .07);
}

.seo-related-grid span,
.seo-related-grid small {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-related-grid strong {
    display: block;
    margin: 10px 0 18px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.22;
}

.seo-final-cta {
    background: var(--navy-deep);
    color: var(--white);
}

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

.seo-final-inner h2 {
    color: var(--white);
}

.seo-final-inner p {
    max-width: 660px;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 900px) {
    .seo-hub-groups,
    .seo-overview-grid,
    .seo-two-columns,
    .seo-faq-grid,
    .seo-final-inner {
        grid-template-columns: 1fr;
    }

    .seo-final-inner {
        display: grid;
    }

    .seo-side-panel {
        position: static;
    }

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

@media (max-width: 640px) {
    .seo-link-grid,
    .seo-related-grid {
        grid-template-columns: 1fr;
    }

    .seo-hero {
        min-height: 430px;
    }

    .seo-hero-inner {
        padding: 66px 0;
    }

    .seo-hero h1 {
        font-size: 36px;
    }

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

    .seo-main-copy h2,
    .seo-two-columns h2,
    .seo-faq-grid h2,
    .seo-final-inner h2 {
        font-size: 31px;
    }
}

/* SEO product submenu refinements */
.product-seo-hub {
    display: none;
}

.product-seo-nav-section {
    position: relative;
    z-index: 8;
    padding: 42px 0 34px;
    background: linear-gradient(180deg, #f3f9fc 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.seo-menu-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 32px;
    align-items: end;
    margin-bottom: 22px;
}

.seo-menu-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
}

.seo-menu-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.seo-mega-menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(68, 187, 229, .26);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 46px rgba(8, 36, 51, .09);
}

.seo-mega-item {
    position: relative;
}

.seo-mega-item > button,
.seo-menu-direct {
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--navy-deep);
    color: var(--white);
    font: inherit;
    font-weight: 900;
}

.seo-mega-item > button::after {
    content: "⌄";
    margin-left: 10px;
    font-size: 14px;
}

.seo-menu-direct {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    background: var(--blue);
}

.seo-mega-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    z-index: 30;
    min-width: 520px;
    padding: 20px;
    border: 1px solid rgba(68, 187, 229, .28);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 58px rgba(8, 36, 51, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.seo-mega-item:hover .seo-mega-panel,
.seo-mega-item:focus-within .seo-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.seo-mega-item.wide .seo-mega-panel {
    width: min(980px, calc(100vw - 72px));
}

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

.model-panel a {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fcfe;
}

.model-panel span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.model-panel strong {
    color: var(--navy);
    font-size: 15px;
    line-height: 1.25;
}

.capacity-panel {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr .8fr;
    gap: 18px;
}

.capacity-column h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 16px;
}

.capacity-column div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.capacity-column:last-child div {
    grid-template-columns: 1fr;
}

.capacity-column a {
    padding: 9px 10px;
    border: 1px solid rgba(68, 187, 229, .26);
    border-radius: 5px;
    background: rgba(68, 187, 229, .07);
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.capacity-column a:hover,
.model-panel a:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
}

@media (max-width: 980px) {
    .seo-menu-head {
        grid-template-columns: 1fr;
    }

    .seo-mega-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-mega-item {
        display: contents;
    }

    .seo-mega-item > button {
        grid-row: 1;
    }

    .seo-mega-item .seo-mega-panel {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .seo-menu-direct {
        display: none;
    }

    .seo-mega-item > button {
        width: 100%;
        padding: 0 16px;
    }

    .seo-mega-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 10px;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
    }

    .seo-mega-item.is-open .seo-mega-panel {
        max-height: 1600px;
        margin-top: 12px;
        padding-top: 20px;
        padding-bottom: 20px;
        opacity: 1;
        visibility: visible;
    }

    .seo-mega-item.is-open > button::after {
        content: "⌃";
    }

    .capacity-panel,
    .model-panel {
        grid-template-columns: 1fr;
    }

    .capacity-column div,
    .capacity-column:last-child div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .seo-menu-head h2 {
        font-size: 28px;
    }

    .capacity-column div {
        grid-template-columns: 1fr;
    }
}

/* SEO deep content sections */
.seo-choice-section,
.seo-budget-section {
    padding: 82px 0;
}

.seo-choice-grid,
.seo-budget-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.seo-choice-copy h2,
.seo-budget-grid h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.16;
}

.seo-choice-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.seo-choice-cards {
    display: grid;
    gap: 14px;
}

.seo-choice-cards article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 14px 28px rgba(8, 36, 51, .06);
}

.seo-choice-cards span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.seo-choice-cards p {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.55;
}

.seo-info-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.seo-info-list li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
}

.seo-info-list li::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 21px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
}

.seo-capacity-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.seo-capacity-pills a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(68, 187, 229, .32);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    font-weight: 900;
}

.seo-capacity-pills a:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
}

@media (max-width: 900px) {
    .seo-choice-grid,
    .seo-budget-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .seo-choice-copy h2,
    .seo-budget-grid h2 {
        font-size: 30px;
    }

    .seo-choice-cards article {
        grid-template-columns: 1fr;
    }
}

/* Capacity link density */
.seo-budget-grid {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.seo-capacity-pills {
    max-height: 360px;
    overflow: auto;
    padding: 2px 8px 8px 2px;
}

.seo-capacity-pills a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
}

.seo-capacity-pills::-webkit-scrollbar {
    width: 8px;
}

.seo-capacity-pills::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(68, 187, 229, .65);
}

@media (max-width: 900px) {
    .seo-budget-grid {
        grid-template-columns: 1fr;
    }

    .seo-capacity-pills {
        max-height: none;
    }
}

/* SEO product gallery */
.seo-gallery-section {
    padding: 82px 0;
}

.seo-gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 14px;
}

.seo-gallery-item {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy-deep);
    box-shadow: 0 18px 42px rgba(8, 36, 51, .12);
}

.seo-gallery-item.featured {
    grid-row: span 2;
}

.seo-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.seo-gallery-item:hover img {
    transform: scale(1.04);
}

.seo-gallery-item span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-left: 4px solid var(--blue);
    border-radius: 4px;
    background: rgba(8, 36, 51, .88);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .seo-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .seo-gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 560px) {
    .seo-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .seo-gallery-item.featured {
        grid-column: auto;
    }
}

/* Gallery lightbox without captions */
.seo-gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    appearance: none;
    cursor: inherit;
    text-align: left;
}

.seo-gallery-item span {
    display: none;
}

.seo-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 36, 51, 0) 55%, rgba(8, 36, 51, .22) 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.seo-gallery-item:hover::after {
    opacity: 1;
}

.seo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(8, 36, 51, .88);
}

.seo-lightbox.is-open {
    display: flex;
}

.seo-lightbox img {
    max-width: min(1180px, 100%);
    max-height: calc(100vh - 96px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.seo-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(8, 36, 51, .76);
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    cursor: inherit;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 560px) {
    .seo-lightbox {
        padding: 18px;
    }

    .seo-lightbox-close {
        top: 12px;
        right: 12px;
    }
}

/* Button and final CTA polish */
.button,
.btn,
.seo-menu-direct {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 106, 156, .16);
}

.button:hover,
.btn:hover,
.seo-menu-direct:hover {
    box-shadow: 0 12px 28px rgba(0, 106, 156, .22);
}

.seo-final-cta {
    padding: 58px 0;
}

.seo-final-inner {
    display: grid;
    grid-template-columns: minmax(0, 680px) auto;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
}

.seo-final-inner h2 {
    max-width: 680px;
    margin-bottom: 16px;
    font-size: 38px;
}

.seo-final-inner p {
    max-width: 660px;
    margin-bottom: 0;
}

.seo-final-inner .button {
    justify-self: end;
}

@media (max-width: 900px) {
    .seo-final-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .seo-final-inner .button {
        justify-self: start;
    }
}

@media (max-width: 520px) {
    .button,
    .btn,
    .seo-menu-direct {
        width: 100%;
        white-space: normal;
        line-height: 1.22;
        padding: 12px 18px;
    }

    .seo-final-cta {
        padding: 48px 0;
    }
}

/* Final CTA spacing refinement */
.button,
.btn,
.seo-menu-direct {
    white-space: nowrap !important;
}

.seo-final-cta {
    padding: 50px 0;
}

.seo-final-inner {
    grid-template-columns: minmax(0, 720px) auto;
    justify-content: start;
    gap: 74px;
}

.seo-final-inner h2 {
    font-size: 36px;
}

.seo-final-inner .button {
    min-width: 178px;
    justify-self: start;
}

@media (max-width: 900px) {
    .seo-final-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 520px) {
    .button,
    .btn,
    .seo-menu-direct {
        white-space: nowrap !important;
    }
}

/* Capacity hero carousel */
.seo-hero-capacity {
    min-height: 0;
    height: auto;
    aspect-ratio: 1920 / 760;
    align-items: center;
}

.seo-hero-capacity .seo-hero-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding-top: clamp(56px, 5vw, 86px);
    padding-bottom: clamp(118px, 8vw, 142px);
}

.seo-hero-capacity .eyebrow {
    margin-bottom: 12px;
}

.seo-hero-capacity h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(38px, 4.15vw, 58px);
    line-height: 1.08;
}

.seo-hero-capacity p {
    max-width: 760px;
    margin-top: 22px;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.58;
}

.seo-hero-capacity .seo-hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 34px;
}

.seo-hero-capacity .seo-hero-actions .button,
.seo-hero-capacity .seo-hero-actions .text-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
}

.seo-hero-carousel {
    position: absolute;
    inset: 0;
}

.seo-hero-carousel .seo-hero-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .8s ease;
}

.seo-hero-carousel .seo-hero-bg.is-active {
    opacity: .8;
}

.seo-hero-carousel .seo-hero-bg-blur {
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0;
}

.seo-hero-carousel .seo-hero-bg-blur.is-active {
    opacity: .72;
}

.seo-hero-carousel .seo-hero-bg-fit {
    left: 50%;
    right: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translateX(-50%);
}

.seo-hero-carousel .seo-hero-bg-fit.is-active {
    opacity: .88;
}

.seo-hero-facts {
    width: min(1060px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.seo-hero-facts span {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    background: rgba(8, 36, 51, .52);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.42;
    backdrop-filter: blur(2px);
}

.seo-hero-facts strong {
    color: var(--white);
    font-size: 14px;
    line-height: 1.25;
}

.seo-hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(8, 36, 51, .58);
    backdrop-filter: blur(2px);
}

.seo-hero-bottom span {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 22px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.seo-hero-bottom span:last-child {
    border-right: 0;
}

.seo-hero-bottom strong {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .seo-hero-capacity .seo-hero-inner {
        padding-top: 46px;
        padding-bottom: 118px;
    }

    .seo-hero-facts {
        width: min(920px, 100%);
        gap: 14px;
    }

    .seo-hero-facts span {
        min-height: 86px;
        padding: 16px;
    }

    .seo-hero-bottom span {
        min-height: 62px;
        padding: 14px 16px;
    }
}

@media (max-width: 980px) {
    .seo-hero-capacity {
        aspect-ratio: auto;
        min-height: 680px;
    }

    .seo-hero-capacity .seo-hero-inner {
        padding-top: 72px;
        padding-bottom: 42px;
        justify-content: center;
    }

    .seo-hero-capacity .seo-hero-actions {
        gap: 22px;
    }

    .seo-hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 680px;
    }

    .seo-hero-bottom {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 24px;
    }

    .seo-hero-bottom span:nth-child(2) {
        border-right: 0;
    }

    .seo-hero-bottom span:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }
}

@media (max-width: 640px) {
    .seo-hero-carousel .seo-hero-bg-fit {
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none;
    }

    .seo-hero-capacity {
        min-height: 620px;
    }

    .seo-hero-capacity .seo-hero-inner {
        padding-top: 58px;
        padding-bottom: 44px;
    }

    .seo-hero-capacity h1 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .seo-hero-capacity p {
        max-width: 100%;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .seo-hero-capacity .seo-hero-actions {
        width: 100%;
        align-items: flex-start;
        gap: 14px;
        margin-top: 26px;
    }

    .seo-hero-facts {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .seo-hero-facts span {
        min-height: 0;
        padding: 15px 16px;
    }

    .seo-hero-bottom {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .seo-hero-bottom span,
    .seo-hero-bottom span:nth-child(2) {
        min-height: 54px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .seo-hero-bottom span:last-child {
        border-bottom: 0;
    }
}


/* Premium corporate footer redesign */
.site-footer {
    padding: clamp(54px, 5vw, 76px) 0 clamp(42px, 4vw, 58px);
    background: #0f2938;
    color: var(--white);
}

.site-footer .container {
    max-width: 1180px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(300px, .92fr) minmax(320px, .88fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
}

.footer-brand-block,
.footer-contact-block,
.footer-map-block {
    min-width: 0;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.footer-logo {
    width: 188px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.footer-brand-copy {
    display: grid;
    gap: 12px;
    max-width: 390px;
}

.footer-brand-block p,
.footer-contact-block p,
.footer-contact-block a,
.site-footer a {
    color: rgba(255, 255, 255, .76);
}

.footer-brand-block p {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
}

.footer-social-area {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.footer-social-title {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

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

.social-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(72, 189, 234, .72);
    background: rgba(72, 189, 234, .12);
    color: var(--white);
}

.footer-contact-block {
    display: grid;
    gap: 28px;
}

.footer-section {
    display: grid;
    gap: 16px;
}

.site-footer h2,
.footer-contact-block h2,
.footer-contact-block h2:nth-of-type(2) {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: .01em;
}

.footer-hours-list {
    display: grid;
    gap: 9px;
}

.footer-hours-list p {
    display: grid;
    grid-template-columns: minmax(145px, auto) 1fr;
    gap: 12px;
    align-items: baseline;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
}

.footer-hours-list strong,
.footer-contact-block strong {
    color: var(--white);
    font-weight: 900;
}

.footer-hours-list span {
    color: rgba(255, 255, 255, .76);
}

.footer-phones {
    display: grid;
    gap: 8px;
    margin: 0;
}

.footer-phones a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
    line-height: 1.35;
}

.footer-phones a:last-child {
    border-bottom: 0;
}

.footer-phones span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.footer-email {
    width: fit-content;
    display: inline-flex;
    margin: 6px 0 0;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-email:hover {
    color: var(--white);
}

.footer-address {
    max-width: 440px;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.62;
}

.footer-map-block {
    display: flex;
    justify-content: flex-end;
}

.footer-map {
    width: min(100%, 365px);
    min-height: 245px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .22);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 245px;
    border: 0;
    display: block;
    filter: saturate(.9) contrast(.96);
}

@media (max-width: 980px) {
    .site-footer {
        padding: 54px 0 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        align-items: start;
    }

    .footer-brand-block,
    .footer-contact-block,
    .footer-map-block {
        width: 100%;
    }

    .footer-brand-copy,
    .footer-address {
        max-width: 640px;
    }

    .footer-map-block {
        justify-content: flex-start;
    }

    .footer-map {
        width: min(100%, 620px);
        min-height: 260px;
    }

    .footer-map iframe {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 46px 0 40px;
        text-align: center;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-brand-block,
    .footer-contact-block,
    .footer-section,
    .footer-social-area {
        align-items: center;
    }

    .footer-logo {
        width: 176px;
    }

    .footer-brand-copy {
        max-width: 100%;
        gap: 10px;
    }

    .footer-brand-block p,
    .footer-address {
        font-size: 13.5px;
        line-height: 1.68;
    }

    .social-links {
        justify-content: center;
    }

    .footer-hours-list {
        width: 100%;
    }

    .footer-hours-list p {
        grid-template-columns: 1fr;
        gap: 2px;
        justify-items: center;
    }

    .footer-phones {
        width: 100%;
    }

    .footer-phones a {
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        min-height: 54px;
        padding: 10px 0;
    }

    .footer-phones span {
        text-align: center;
    }

    .footer-email {
        justify-self: center;
    }

    .footer-map-block {
        justify-content: center;
    }

    .footer-map {
        width: 100%;
        min-height: 230px;
        border-radius: 8px;
    }

    .footer-map iframe {
        min-height: 230px;
    }
}


.seo-gallery-empty {
    border: 1px dashed rgba(75, 185, 229, 0.45);
    border-radius: 8px;
    padding: 34px;
    background: rgba(239, 247, 251, 0.72);
    color: var(--primary);
    max-width: 680px;
}

.seo-gallery-empty strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.seo-gallery-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 700px) {
    .seo-gallery-empty {
        padding: 24px;
    }
}


/* Product model hero image fit with blurred sides */
.seo-hero:not(.seo-hero-capacity) .seo-hero-bg-blur {
    background-size: cover;
    background-position: center;
    filter: blur(22px);
    transform: scale(1.12);
    opacity: .78;
}

.seo-hero:not(.seo-hero-capacity) .seo-hero-bg-fit {
    left: 50%;
    right: auto;
    width: auto;
    min-width: 0;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translateX(-50%);
    opacity: .9;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

@media (max-width: 700px) {
    .seo-hero:not(.seo-hero-capacity) .seo-hero-bg-blur {
        filter: blur(16px);
        transform: scale(1.08);
    }

    .seo-hero:not(.seo-hero-capacity) .seo-hero-bg-fit {
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }
}


/* Instagram news feed */
.instagram-news-section {
    padding: 86px 0 96px;
    background: var(--soft);
}

.instagram-news-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.instagram-news-copy h2 {
    max-width: 540px;
    margin: 10px 0 18px;
    color: var(--primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.instagram-news-copy p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.instagram-feed-shell {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(75, 185, 229, .22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(8, 36, 51, .09);
    overflow: hidden;
}

.instagram-feed-shell .instagram-media {
    width: 100% !important;
    max-width: 540px !important;
    min-width: 280px !important;
    margin: 0 auto !important;
}

.instagram-feed-shell > a,
.instagram-feed-shell .instagram-media > a {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 900px) {
    .instagram-news-section {
        padding: 64px 0 72px;
    }

    .instagram-news-grid {
        grid-template-columns: 1fr;
    }

    .instagram-feed-shell {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .instagram-news-section {
        padding: 48px 0 56px;
    }

    .instagram-feed-shell {
        min-height: 300px;
        padding: 14px;
    }
}


/* Elfsight Instagram widget adjustments */
.elfsight-feed-shell {
    align-items: stretch;
    min-height: 520px;
}

.elfsight-feed-shell > div {
    width: 100%;
}

.elfsight-feed-shell iframe {
    max-width: 100%;
}

@media (max-width: 900px) {
    .elfsight-feed-shell {
        min-height: 460px;
    }
}

@media (max-width: 560px) {
    .elfsight-feed-shell {
        min-height: 380px;
    }
}


/* Support documents two-card layout */
.support-docs-section .support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 34px);
    max-width: 960px;
    margin-inline: auto;
}

.support-docs-section .support-heading {
    max-width: 960px;
    margin-inline: auto;
}

.support-docs-section .support-doc-card {
    padding: clamp(28px, 3vw, 36px);
}

.support-docs-section .support-doc-card h3 {
    font-size: clamp(24px, 2.2vw, 30px);
}

.support-docs-section .support-doc-card p {
    max-width: 92%;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .support-docs-section .support-list {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .support-docs-section .support-doc-card p {
        max-width: none;
    }
}
