:root {
    --bg: #0d1621;
    --bg-soft: #111e2d;
    --surface: #f3f5f7;
    --surface-2: #ffffff;
    --line: #d0d8df;
    --text: #13202b;
    --muted: #5d6b78;
    --accent: #de7f2a;
    --accent-dark: #b65d0f;
    --steel: #6b7c8d;
    --success: #1d8a52;
    --error: #bb3f32;
    --shadow: 0 18px 40px rgba(8, 14, 21, 0.12);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #e9edf0 0%, #f8fafb 100%);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(10, 17, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.brand {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 14px;
    color: #fff;
    min-width: 0;
    max-width: 100%;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #f2a84d);
    color: #10151b;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-logo-wrap {
    width: 400px;
    flex: 0 1 auto;
    max-width: min(50vw, 400px);
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.2, 1.38);
    transform-origin: left center;
}

.brand-copy strong,
.brand-copy small {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}

.site-nav a,
.nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.site-nav a.active,
.site-nav a:hover,
.nav-dropdown.active > .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 280px;
    padding: 12px;
    display: grid;
    gap: 6px;
    background: rgba(12, 20, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu-products {
    min-width: 280px;
    max-width: min(88vw, 320px);
    left: auto;
    right: 0;
    grid-template-columns: 1fr;
    gap: 8px;
}

.nav-submenu {
    position: relative;
}

.nav-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.nav-submenu-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.nav-submenu.active > .nav-submenu-toggle,
.nav-submenu-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-submenu-panel {
    position: absolute;
    top: -12px;
    left: auto;
    right: calc(100% + 12px);
    min-width: 320px;
    max-width: min(78vw, 320px);
    padding: 12px;
    display: grid;
    gap: 6px;
    background: rgba(12, 20, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 5;
}

.nav-submenu-panel a {
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active,
.nav-submenu-panel a:hover,
.nav-submenu-panel a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu:hover .nav-submenu-panel,
.nav-submenu.open .nav-submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.nav-cta,
.btn-primary {
    background: var(--accent);
    color: #10151b;
}

.nav-cta {
    position: relative;
    padding: 12px 22px;
    background: linear-gradient(135deg, #f19a3f 0%, #de7f2a 48%, #b65d0f 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(182, 93, 15, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.btn-primary:hover,
.nav-cta:hover {
    background: linear-gradient(135deg, #ffb25e 0%, #de7f2a 48%, #9d4b08 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(182, 93, 15, 0.42);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fbf63 0%, #109248 100%);
    color: #fff;
    box-shadow: 0 18px 38px rgba(16, 146, 72, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(16, 146, 72, 0.42);
}

.floating-whatsapp-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.floating-whatsapp-copy {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.floating-whatsapp-copy strong,
.floating-whatsapp-copy small {
    color: #fff;
}

.floating-whatsapp-copy small {
    font-size: 0.76rem;
    opacity: 0.84;
}

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(222, 127, 42, 0.18), transparent 26%),
        linear-gradient(135deg, #0d1621 0%, #172838 100%);
    color: #fff;
    padding: 82px 0;
}

.hero-grid,
.intro-grid,
.two-column-content,
.contact-grid,
.product-detail-grid {
    display: grid;
    gap: 30px;
}

.hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-banner h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-copy p,
.page-banner p,
.section-head p,
.panel p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-panel-card,
.panel,
.product-card,
.gallery-card,
.install-card,
.admin-card,
.data-table-wrap {
    background: var(--surface-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel-card {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-panel-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-grid span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.section,
.page-banner {
    padding: 74px 0;
}

.page-banner {
    background: linear-gradient(135deg, #101924 0%, #24384c 100%);
    color: #fff;
}

.muted {
    background: linear-gradient(180deg, #edf1f4 0%, #f7f9fb 100%);
}

.intro-grid,
.two-column-content,
.contact-grid,
.product-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.catalogue-section + .catalogue-section {
    padding-top: 0;
}

.catalogue-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.catalogue-section-head h2 {
    margin: 14px 0 12px;
}

.catalogue-section-head p {
    color: var(--muted);
    line-height: 1.7;
}

.catalogue-banner {
    min-height: 250px;
    margin-bottom: 28px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: end;
    box-shadow: var(--shadow);
}

.catalogue-banner-copy {
    width: 100%;
    padding: 28px;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 14, 21, 0) 0%, rgba(8, 14, 21, 0.7) 100%);
}

.catalogue-banner-copy strong,
.catalogue-banner-copy span {
    display: block;
}

.catalogue-banner-copy strong {
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    margin-bottom: 8px;
}

.catalogue-banner-copy span {
    color: rgba(255, 255, 255, 0.86);
    max-width: 720px;
    line-height: 1.6;
}

.catalogue-section-action {
    margin-top: 24px;
}

.catalogue-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 600;
}

.catalogue-breadcrumb a {
    color: #0f4f87;
}

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

.image-link-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid #dfe5ea;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(8, 14, 21, 0.16);
}

.image-link-visual {
    display: block;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

.image-link-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px 20px;
}

.image-link-body strong {
    color: var(--text);
    font-size: 1.04rem;
}

.image-link-body small {
    color: var(--muted);
    font-size: 0.9rem;
}

.section-head p,
.panel p,
.inner-page p,
.product-body p,
.product-detail-grid p {
    color: var(--muted);
}

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

.catalogue-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.catalogue-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #102030 0%, #1d3144 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    box-shadow: var(--shadow);
}

.catalogue-card p {
    color: rgba(255, 255, 255, 0.82);
}

.catalogue-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 14px;
}

.catalogue-card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
}

.catalogue-card a {
    color: #ffd3a3;
    font-weight: 700;
}

.product-card {
    overflow: hidden;
    border: 1px solid #e0e6eb;
}

.product-image,
.detail-image {
    min-height: 240px;
    background:
        linear-gradient(135deg, rgba(16, 25, 36, 0.78), rgba(36, 56, 76, 0.72));
    background-size: cover;
    background-position: center;
}

.detail-image {
    border-radius: var(--radius);
    min-height: 420px;
}

.product-body,
.panel,
.install-card,
.admin-card,
.data-table-wrap {
    padding: 24px;
}

.product-body h2,
.product-body h3,
.panel h2,
.panel h3 {
    margin-top: 0;
}

.pill {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef4f8;
    color: #34506a;
    font-weight: 700;
    font-size: 0.82rem;
}

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

.check-list li,
.industry-list li,
.site-footer li {
    margin-bottom: 12px;
    color: var(--muted);
}

.check-list li::before {
    content: "■";
    color: var(--accent);
    margin-right: 10px;
}

.dark-panel {
    background: linear-gradient(135deg, #111d2a 0%, #1d3144 100%);
    color: #fff;
}

.light {
    background: rgba(255, 255, 255, 0.08);
    color: #ffd3a3;
}

.dark-panel .industry-list li,
.dark-panel p,
.dark-panel h2 {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-card {
    overflow: hidden;
    border: 1px solid #dfe5ea;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px dashed #b7c3ce;
    border-radius: var(--radius);
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.site-footer {
    background: #0b121b;
    color: rgba(255, 255, 255, 0.78);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 28px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-top: 0;
}

.footer-logo-wrap {
    width: 220px;
    max-width: 100%;
    margin-bottom: 18px;
}

.footer-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.site-footer p,
.site-footer li,
.contact-list li,
.contact-list a {
    color: rgba(223, 232, 240, 0.84);
}

.contact-detail-link {
    color: #0f4f87;
    font-weight: 700;
}

.contact-detail-link:hover {
    color: var(--accent-dark);
}

.contact-quick-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #24c96a 0%, #12944a 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 146, 72, 0.24);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #31da79 0%, #0f7f3f 100%);
    color: #fff;
}

.footer-links a,
.contact-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(223, 232, 240, 0.84);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::after,
.contact-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.footer-links a:hover,
.contact-list a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-links a:hover::after,
.contact-list a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 34px;
    padding: 20px 0;
}

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

.form-grid label,
.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
}

.full-span {
    grid-column: 1 / -1;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #cbd5dd;
    font: inherit;
    color: var(--text);
    background: #fff;
}

textarea {
    resize: vertical;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
}

.alert.success {
    background: rgba(29, 138, 82, 0.12);
    color: var(--success);
}

.alert.error {
    background: rgba(187, 63, 50, 0.12);
    color: var(--error);
}

.install-page,
.admin-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #102030 0%, #22384a 100%);
}

.install-card,
.admin-card {
    width: min(100%, 560px);
}

.menu-toggle {
    display: none;
}

@media (max-width: 960px) {
    .header-inner {
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .brand {
        max-width: calc(100% - 88px);
    }

    .hero-grid,
    .intro-grid,
    .two-column-content,
    .contact-grid,
    .product-detail-grid,
    .footer-grid,
    .card-grid,
    .image-link-grid,
    .catalogue-split,
    .gallery-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 56px 0;
    }

    .hero-copy h1,
    .page-banner h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.1;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: #102030;
        border-radius: 16px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        z-index: 50;
    }

    .nav-dropdown {
        display: grid;
        gap: 10px;
    }

    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 0 14px;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .nav-dropdown-menu-products {
        left: 0;
        right: auto;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nav-submenu-panel {
        position: static;
        min-width: 0;
        padding: 6px 0 0 14px;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .nav-submenu.open .nav-submenu-panel,
    .nav-submenu.active .nav-submenu-panel {
        display: grid;
    }

    .nav-submenu-panel a {
        padding: 8px 0;
    }

    .nav-submenu-toggle {
        padding: 0;
        border-radius: 0;
    }

    .nav-submenu-toggle:hover,
    .nav-submenu.active > .nav-submenu-toggle {
        background: transparent;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
    }

    .brand-logo-wrap {
        width: min(190px, calc(100vw - 144px));
        max-width: 100%;
        height: 46px;
    }

    .brand-logo {
        transform: none;
    }

    .brand-copy strong {
        font-size: 0.98rem;
        line-height: 1.2;
    }

    .brand-copy small {
        font-size: 0.72rem;
        line-height: 1.25;
    }

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

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        min-width: 72px;
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        padding: 9px 12px;
        border-radius: 12px;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        gap: 8px;
        padding: 10px 0;
    }

    .brand {
        gap: 10px;
        max-width: calc(100% - 74px);
    }

    .brand-logo-wrap {
        width: min(150px, calc(100vw - 116px));
        height: 40px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .brand-copy small {
        font-size: 0.68rem;
    }

    .menu-toggle {
        min-width: 64px;
        padding: 8px 10px;
        font-size: 0.92rem;
    }

    .site-nav {
        left: 12px;
        right: 12px;
        top: calc(100% + 6px);
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 10px 12px 10px 10px;
        gap: 8px;
    }

    .floating-whatsapp-copy small {
        display: none;
    }

    .hero-section,
    .page-banner {
        padding: 44px 0;
    }

    .eyebrow,
    .section-tag {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        padding: 7px 11px;
    }

    .hero-copy h1,
    .page-banner h1 {
        margin: 14px 0 12px;
        font-size: clamp(1.9rem, 9.6vw, 2.7rem);
        line-height: 1.08;
    }

    .hero-copy p,
    .page-banner p {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 22px;
    }

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

    .hero-panel {
        gap: 14px;
    }

    .hero-panel-card {
        padding: 20px;
    }

    .hero-panel-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-panel-grid article {
        padding: 18px;
    }
}

@media (max-width: 420px) {
    .hero-section,
    .page-banner {
        padding: 38px 0;
    }

    .hero-copy h1,
    .page-banner h1 {
        font-size: clamp(1.75rem, 10.4vw, 2.35rem);
    }

    .hero-copy p,
    .page-banner p {
        font-size: 0.94rem;
    }
}
