:root {
    --color-primary: #003f82;
    --color-secondary: #0092ff;
    --color-green-people: #3e8000;
    --color-wine: #80003e;
    --bg: #f4f8fc;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-soft: #e7eef7;
    --ink: #0c2d52;
    --muted: #5a7089;
    --line: rgba(0, 63, 130, 0.12);
    --brand: var(--color-primary);
    --brand-strong: #002c5c;
    --brand-soft: #d8e5f4;
    --shadow: 0 16px 34px rgba(0, 63, 130, 0.1);
    --radius: 10px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(15, 76, 151, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

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

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

.topbar {
    background: linear-gradient(90deg, var(--brand-strong) 0%, var(--color-secondary) 100%);
    color: #fff;
}

.topbar-shell {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.92rem;
    font-weight: 700;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1.05rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 63, 130, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

.brand img {
    width: 190px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin-left: auto;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 3.25rem;
    position: relative;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--muted);
}

.site-nav a[aria-current="page"] {
    color: var(--brand-strong);
}

.site-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.6rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--color-secondary);
}

.site-nav .nav-cta[aria-current="page"]::after {
    display: none;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.92rem 1.45rem;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta,
.button-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 76, 151, 0.18);
}

.nav-cta {
    min-width: 126px;
    min-height: 3.2rem;
    color: #fff !important;
}

.button-secondary {
    background: #fff;
    color: var(--brand-strong);
    border: 1px solid rgba(15, 76, 151, 0.18);
}

.button-whatsapp {
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.button-whatsapp i {
    font-size: 1rem;
    line-height: 1;
}

.button:hover,
.nav-cta:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.mobile-contact-cta:hover,
.mobile-contact-cta:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: #49a614;
    color: var(--brand-strong);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
    background: #1fb456;
    color: #fff;
}

.menu-toggle,
.mobile-contact-cta {
    display: none;
}

.hero,
.inner-hero,
.section {
    padding: 2.5rem 0 5rem;
}

.inner-hero {
    padding-bottom: 2rem;
}

.inner-hero + .section {
    padding-top: 1.5rem;
}

.hero-home {
    padding: 0;
}

.hero-shell,
.inner-hero-shell,
.split-panel,
.contact-grid,
.two-column-grid,
.footer-shell {
    display: grid;
    gap: 1.5rem;
}

.hero-shell,
.inner-hero-shell {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    padding: clamp(1rem, 3vw, 1.6rem) 0;
}

.hero-visual {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(72deg, rgba(0, 63, 130, 0.82) 0%, rgba(16, 82, 161, 0.6) 34%, rgba(29, 105, 189, 0.22) 56%, rgba(29, 105, 189, 0) 74%);
}

.hero-content {
    position: relative;
    min-height: 68vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.75rem;
    padding-bottom: 4.5rem;
}

.hero-copy-home {
    max-width: 42rem;
    color: #fff;
    align-self: center;
}

.hero-copy-home .eyebrow,
.hero-copy-home h1,
.hero-copy-home .lead {
    color: #fff;
}

.hero-copy-home .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.hero-copy-home h1 {
    max-width: 10ch;
}

.hero-copy-home .lead {
    max-width: 37ch;
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow,
.section-label {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
    font-weight: 700;
}

.hero-copy h1,
.inner-hero h1,
.section h2,
.category-card h3,
.product-card h3,
.benefit-card h3,
.info-card h2 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero-copy h1,
.inner-hero h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    max-width: none;
}

.lead,
.section-heading p,
.category-card p,
.info-card p,
.hero-note li,
.footer-shell p,
.contact-form span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions,
.centered-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions {
    margin-top: 1.8rem;
}

.hero-actions .button-primary {
    background: #003f82;
    color: #fff;
    border: 1px solid rgba(127, 196, 255, 0.45);
    box-shadow: 0 12px 24px rgba(0, 63, 130, 0.22);
}

.hero-actions .button-secondary {
    background: #ffffff;
    color: var(--brand-strong);
    border: 1px solid #7fc4ff;
    box-shadow: 0 12px 24px rgba(0, 63, 130, 0.1);
}

.hero-actions .button-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(37, 211, 102, 0.38);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.hero-panel,
.hero-note,
.info-card,
.contact-form,
.error-card {
    padding: 1.6rem;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(29, 43, 42, 0.08);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    align-content: center;
    background:
        linear-gradient(180deg, rgba(31, 95, 91, 0.92), rgba(18, 63, 60, 0.96)),
        linear-gradient(135deg, rgba(209, 123, 73, 0.25), rgba(255, 255, 255, 0));
    color: #fff;
}

.inner-hero-shell > div:first-child {
    max-width: 44rem;
}

.hero-stat {
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(217, 230, 247, 0.42));
}

.highlight-strip {
    position: relative;
    z-index: 2;
    margin-top: -1.25rem;
    padding-bottom: 1.4rem;
}

.highlight-strip-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.highlight-item {
    position: relative;
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.98) 100%);
    border: 1px solid rgba(13, 44, 84, 0.06);
    box-shadow: var(--shadow);
    text-align: left;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.highlight-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 146, 255, 0.1) 0%, rgba(0, 146, 255, 0.04) 22%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.highlight-item h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 15ch;
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 146, 255, 0.1) 0%, rgba(0, 63, 130, 0.06) 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 146, 255, 0.08);
}

.highlight-icon svg,
.highlight-icon i {
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight-item:hover,
.highlight-item:focus-within {
    transform: translateY(-4px);
    border-color: rgba(0, 146, 255, 0.14);
    box-shadow: 0 20px 32px rgba(0, 63, 130, 0.14);
}

.highlight-item:hover .highlight-icon,
.highlight-item:focus-within .highlight-icon {
    background: linear-gradient(180deg, rgba(0, 146, 255, 0.16) 0%, rgba(0, 63, 130, 0.1) 100%);
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2rem;
    text-align: center;
    margin-inline: auto;
}

.section-heading-left {
    max-width: none;
    text-align: left;
    margin-inline: 0;
}

.section-heading h1 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
}

.product-heading {
    margin-bottom: 1rem;
}

.product-hero-section {
    padding-bottom: 1.1rem;
}

.product-detail-section {
    padding-top: 0;
}

.catalog-section {
    padding-top: 0;
}

.inner-hero-shell > div:first-child,
.split-panel > div:first-child {
    text-align: center;
}

.section-heading::after,
.inner-hero-shell > div:first-child::after,
.split-panel > div:first-child::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    background: rgba(0, 146, 255, 0.55);
}

.section-heading-left::after {
    margin-left: 0;
    margin-right: 0;
}

.section h2,
.info-card h2 {
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.category-grid,
.product-grid,
.benefit-list,
.two-column-grid {
    display: grid;
    gap: 1.2rem;
}

.service-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-banner-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-banner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-banner-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(10, 53, 104, 0) 0%, rgba(10, 53, 104, 0.88) 100%);
    color: #fff;
}

.service-banner-copy h3 {
    margin: 0 0 0.55rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-banner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

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

.category-card,
.product-card,
.benefit-card {
    padding: 1.15rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 44, 84, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.category-card h3,
.product-card h3,
.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.product-media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface-soft);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

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

.product-body {
    padding: 1rem 1rem 1.15rem;
}

.product-category {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-sku {
    margin: 0 0 0.45rem;
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-link {
    color: inherit;
}

.product-link:hover,
.product-link:focus-visible {
    color: var(--brand);
}

.catalog-toolbar {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 1.35rem;
    border-radius: 10px;
}

.catalog-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
}

.catalog-search-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    min-height: 3.45rem;
    border: 1px solid rgba(13, 44, 84, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
}

.catalog-search-input i {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.catalog-search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 63, 130, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-strong);
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
    transform: translateY(-1px);
    border-color: var(--color-secondary);
    background: rgba(0, 146, 255, 0.08);
}

.filter-chip.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 63, 130, 0.16);
}

.catalog-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.catalog-results-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.catalog-empty {
    text-align: center;
}

.catalog-pagination {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pagination-link {
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.7rem 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 63, 130, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-strong);
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pagination-arrow {
    min-width: auto;
    padding-inline: 1rem;
}

.pagination-link:hover,
.pagination-link:focus-visible {
    transform: translateY(-1px);
    border-color: var(--color-secondary);
    background: rgba(0, 146, 255, 0.08);
}

.pagination-link.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 63, 130, 0.16);
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--brand-strong);
    font-weight: 800;
}

.split-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

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

.category-section-heading {
    margin-bottom: 1.6rem;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.category-showcase-card {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(13, 44, 84, 0.08);
    background: #dbe7f5;
    box-shadow: var(--shadow);
}

.category-showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.category-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 44, 92, 0.2) 0%, rgba(0, 63, 130, 0.42) 100%);
    transition: background 220ms ease;
}

.category-showcase-card h3 {
    position: relative;
    z-index: 1;
    width: min(84%, 18ch);
    margin: 0;
    color: #fff;
    text-align: center;
    line-height: 1.18;
    font-size: 1.18rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.category-showcase-card:hover img,
.category-showcase-card:focus-within img {
    transform: scale(1.05);
    filter: saturate(0.9);
}

.category-showcase-card:hover .category-showcase-overlay,
.category-showcase-card:focus-within .category-showcase-overlay {
    background: linear-gradient(180deg, rgba(0, 63, 130, 0.54) 0%, rgba(0, 63, 130, 0.82) 100%);
}

.hero-note strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.hero-note ul {
    margin: 0;
    padding-left: 1.2rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: start;
}

.product-detail-media {
    padding: 1rem;
}

.product-zoom {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-soft);
    cursor: zoom-in;
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--surface-soft);
}

.product-zoom img {
    transition: transform 120ms ease;
    transform-origin: center center;
    will-change: transform;
}

.product-zoom.is-active img {
    transform: scale(2.15);
}

.product-zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(0, 146, 255, 0.08));
    box-shadow: 0 10px 24px rgba(0, 63, 130, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
}

.product-zoom.is-active .product-zoom-lens {
    opacity: 1;
}

.product-zoom-note {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.product-detail-copy {
    display: grid;
    gap: 1rem;
}

.product-detail-copy h2 {
    margin: 0;
}

.product-meta-list {
    display: grid;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.about-grid {
    gap: 1.4rem;
}

.about-card {
    padding: 1.85rem 1.7rem 1.95rem;
}

.about-card .section-label {
    margin-bottom: 1.15rem;
}

.about-card h2 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.14;
    margin-bottom: 1.15rem;
}

.about-card p:last-child {
    margin: 0;
}

.info-grid-balanced,
.quote-grid {
    align-items: stretch;
}

.content-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.85rem 1.7rem 1.95rem;
}

.content-card .section-label {
    margin-bottom: 1.15rem;
}

.content-card h2 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.14;
    margin-bottom: 1.15rem;
}

.content-card p {
    margin-top: 0;
}

.content-card .hero-actions {
    margin-top: auto;
    padding-top: 1.1rem;
}

.content-card .contact-list {
    margin-top: 0.2rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: start;
}

.claim-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: start;
}

.claim-side {
    gap: 1rem;
}

.claim-logo {
    width: 190px;
    height: auto;
    margin-bottom: 0.25rem;
}

.claim-company-list {
    display: grid;
    gap: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.claim-note {
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    border-radius: 10px;
    background: rgba(0, 63, 130, 0.05);
    border: 1px solid rgba(0, 63, 130, 0.08);
}

.claim-note p {
    margin: 0;
}

.claim-form-card {
    padding: 1.8rem;
}

.claim-form {
    gap: 1rem;
}

.claim-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.claim-choice {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 63, 130, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-weight: 700;
}

.claim-choice input {
    margin: 0;
}

.claim-alert {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    font-weight: 700;
}

.claim-alert-success {
    background: rgba(37, 211, 102, 0.12);
    color: #167c3c;
}

.claim-alert-error {
    background: rgba(180, 30, 30, 0.1);
    color: #9f2222;
}

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

.quote-form {
    padding: 1.8rem;
}

.quote-side {
    display: grid;
    gap: 1rem;
}

.contact-list {
    margin-top: 0.35rem;
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field span {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 44, 84, 0.12);
    background: rgba(255, 255, 255, 0.92);
    font: inherit;
    color: var(--ink);
}

.form-field-full,
.form-actions {
    grid-column: 1 / -1;
}

.error-card {
    text-align: center;
    padding: 3rem;
}

.error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
    padding: 0.8rem 1.1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(15, 76, 151, 0.12);
    color: var(--brand);
    font-weight: 800;
}

.centered-actions {
    justify-content: center;
}

.site-footer {
    background: #ffffff;
    color: var(--brand-strong);
}

.footer-topbar,
.footer-bottombar {
    background: var(--brand-strong);
    color: #fff;
}

.footer-topbar p,
.footer-bottombar p {
    margin: 0;
    padding: 0.95rem 0;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-main {
    padding: 3rem 0 3rem;
}

.footer-shell {
    grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1fr) minmax(300px, 1.02fr);
    align-items: start;
    gap: 2.6rem;
}

.footer-company p,
.footer-column,
.footer-item,
.footer-book,
.footer-social-links {
    color: var(--brand-strong);
}

.footer-company {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding-top: 0.2rem;
}

.footer-logo-color {
    width: 170px;
    height: auto;
    margin-bottom: 0.95rem;
}

.footer-column {
    display: grid;
    gap: 1rem;
}

.footer-company-copy {
    max-width: 18rem;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-column h3 {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--brand-strong);
}

.footer-heading-main {
    margin-bottom: 0.15rem;
}

.footer-list {
    display: grid;
    gap: 0.85rem;
}

.footer-item,
.footer-book {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-icon i {
    font-size: 0.95rem;
    line-height: 1;
}

.footer-book {
    margin-top: 1rem;
    font-weight: 600;
    padding-top: 0.2rem;
}

.footer-social-links {
    margin-top: 0.2rem;
    display: grid;
    gap: 0.9rem;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 63, 130, 0.22);
    border-radius: 999px;
    color: var(--brand-strong);
    box-shadow: 0 4px 14px rgba(0, 63, 130, 0.06);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer-social-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
    transform: translateY(-1px);
    color: var(--brand);
    border-color: var(--color-secondary);
    background: rgba(0, 146, 255, 0.06);
}

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

    .service-banner-grid,
    .highlight-strip-shell,
    .hero-content,
    .catalog-search-form {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 3.5rem;
    }

    .highlight-strip {
        margin-top: -0.5rem;
    }

    .split-panel,
    .contact-grid,
    .product-detail-grid,
    .quote-grid,
    .claim-grid,
    .footer-shell,
    .hero-shell,
    .inner-hero-shell,
    .two-column-grid,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        gap: 2rem;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(13, 44, 84, 0.08);
        gap: 0.35rem;
        justify-content: flex-start;
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle,
    .mobile-contact-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1rem;
        border-radius: 6px;
        border: 1px solid rgba(13, 44, 84, 0.12);
        background: rgba(255, 255, 255, 0.92);
        color: var(--ink);
        font: inherit;
        font-weight: 800;
    }

    .brand {
        order: 1;
    }

    .mobile-contact-cta {
        order: 2;
        justify-self: end;
    }

    .menu-toggle {
        order: 3;
        justify-self: end;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .topbar-shell {
        min-height: auto;
        padding: 0.55rem 0;
        text-align: center;
    }

    .hero,
    .inner-hero,
    .section {
        padding: 1.5rem 0 3rem;
    }

    .inner-hero {
        padding-bottom: 1.1rem;
    }

    .inner-hero + .section {
        padding-top: 1rem;
    }

    .hero-copy h1,
    .inner-hero h1 {
        max-width: 100%;
        font-size: clamp(1.7rem, 9vw, 2.5rem);
    }

    .brand img {
        width: 150px;
    }

    .hero-visual,
    .hero-content {
        min-height: 470px;
    }

    .hero-content {
        align-items: end;
        padding-top: 5.25rem;
        padding-bottom: 2rem;
    }

    .highlight-strip {
        margin-top: 0;
    }

    .category-grid,
    .product-grid,
    .contact-form,
    .highlight-strip-shell,
    .service-banner-grid {
        grid-template-columns: 1fr;
    }

    .catalog-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-filters {
        gap: 0.6rem;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions,
    .centered-actions,
    .form-actions {
        flex-direction: column;
    }

    .hero-shell,
    .inner-hero-shell,
    .hero-panel,
    .hero-note,
    .info-card,
    .contact-form,
    .error-card,
    .category-card,
    .product-card,
    .benefit-card {
        border-radius: 8px;
    }

    .footer-company p {
        font-size: 0.9rem;
    }

    .product-zoom {
        cursor: default;
    }

    .product-zoom-note {
        display: none;
    }
}
