/* Shared view styles extracted from PHP views. */

:root {
            --background: #ffffff;
            --surface: #ffffff;
            --surface-dim: #f4f5f7;
            --surface-container: #f8f9fb;
            --surface-container-low: #fbfbfc;
            --surface-container-lowest: #ffffff;
            --surface-container-high: #eef1f5;
            --surface-container-highest: #e3e8ee;
            --outline: rgba(200, 16, 46, 0.18);
            --outline-variant: rgba(200, 16, 46, 0.10);
            --on-surface: #111111;
            --on-surface-variant: #3f454d;
            --primary: #c8102e;
            --primary-container: #8b0a1e;
            --primary-fixed: #ffd9dd;
            --tertiary: #c8102e;
            --bs-primary: #c8102e;
            --bs-primary-rgb: 200, 16, 46;
            --bs-link-color: #111111;
            --bs-link-hover-color: #000000;
            --bs-focus-ring-color: rgba(200, 16, 46, .22);
        }
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        html { scroll-behavior: smooth; }
        body {
            background: var(--background);
            color: var(--on-surface);
            font-family: 'Work Sans', sans-serif;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6, .font-headline, .font-manrope, .brand-font {
            font-family: 'Work Sans', sans-serif;
            letter-spacing: 0.01em;
        }
        .nav-shell {
            background: #ffffff;
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(200, 16, 46, 0.16);
            box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
        }
        .site-nav-wrap {
            gap: 1.5rem;
            min-height: 72px;
            padding-top: 0.85rem;
            padding-bottom: 0.85rem;
        }
        .brand-badge { display: inline-flex; align-items: center; }
        .brand-logo { height: 66px; width: auto; display: block; }
        .site-nav-desktop {
            align-items: center;
            gap: 2rem;
        }
        .site-nav-actions {
            align-items: center;
            gap: 1.25rem;
        }
        .site-nav-link {
            color: #4b5560;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        button.site-nav-link {
            border: 0;
            background: transparent;
            cursor: pointer;
        }
        .site-nav-link:hover { color: #111111; }
        .site-nav-link.is-active {
            color: #111111;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.35rem;
        }
        .site-nav-item {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        .site-products-trigger {
            gap: 0.35rem;
            border: 0;
            background: transparent;
            padding: 0;
        }
        .site-products-trigger .material-symbols-outlined {
            font-size: 1.05rem;
            transition: transform 0.2s ease;
        }
        .site-nav-item:hover .site-products-trigger .material-symbols-outlined,
        .site-nav-item:focus-within .site-products-trigger .material-symbols-outlined {
            transform: rotate(180deg);
        }
        .site-products-menu {
            position: absolute;
            top: calc(100% + 1rem);
            left: 50%;
            width: min(320px, calc(100vw - 2rem));
            transform: translateX(-50%) translateY(10px);
            background: #ffffff;
            border: 1px solid rgba(17, 17, 17, 0.08);
            box-shadow: 0 26px 60px rgba(17, 17, 17, 0.14);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
            z-index: 1300;
        }
        .site-products-menu::before {
            content: "";
            position: absolute;
            inset: -1.1rem 0 auto;
            height: 1.1rem;
        }
        .site-nav-item:hover .site-products-menu,
        .site-nav-item:focus-within .site-products-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
        .site-products-menu-inner {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 0;
            overflow: hidden;
            white-space: normal;
        }
        .site-products-card {
            min-height: 100%;
            flex: 0 0 auto;
            padding: 1.15rem 1rem;
            border-right: 0;
            border-bottom: 1px solid rgba(17, 17, 17, 0.06);
            transition: background 0.2s ease;
        }
        .site-products-card:last-child {
            border-bottom: 0;
        }
        .site-products-card:hover,
        .site-products-card:focus {
            background: #f7f8fa;
        }
        .site-products-title {
            display: block;
            color: #111111;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            line-height: 1.3;
            text-transform: uppercase;
        }
        .site-cta {
            background: var(--primary);
            border-radius: 0;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            color: #fff;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            padding: 0.9rem 1.65rem;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .site-cta:hover {
            background: var(--primary-container);
            color: #fff;
            transform: translateY(-2px);
        }
        .site-mobile-toggle {
            border: 0;
            background: transparent;
            color: var(--on-surface);
            padding: 0.25rem;
            line-height: 1;
        }
        .site-mobile-menu .site-mobile-card {
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(200, 16, 46, 0.14);
            border-radius: 1rem;
            box-shadow: 0 18px 40px rgba(17, 17, 17, 0.10);
            padding: 1rem;
        }
        .site-mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            color: #111111;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .site-mobile-menu button.site-nav-link {
            display: block;
            width: 100%;
            padding: 0.75rem 0;
            color: #111111;
            text-align: left;
        }
        .site-mobile-divider {
            border-top: 1px solid rgba(200, 16, 46, 0.16);
            margin: 0.5rem 0 0.75rem;
            padding-top: 0.75rem;
        }
        .site-mobile-products {
            border-top: 1px solid rgba(200, 16, 46, 0.16);
            margin-top: 0.45rem;
            padding-top: 0.45rem;
        }
        .site-mobile-product-link {
            font-size: 0.82rem !important;
            letter-spacing: 0.1em !important;
            padding: 0.5rem 0 !important;
        }
        .site-mobile-product-link span {
            display: block;
            margin-top: 0.25rem;
            color: #6b7280;
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }
        .page-banner {
            background:
                radial-gradient(circle at top right, rgba(200, 16, 46, 0.12), transparent 30%),
                radial-gradient(circle at bottom left, rgba(200, 16, 46, 0.08), transparent 26%),
                linear-gradient(160deg, #ffffff 0%, #f7f8fa 50%, #ffffff 100%);
            border-bottom: 1px solid rgba(17, 17, 17, 0.06);
        }
        .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.is-visible { opacity: 1; transform: none; }
        .hover-lift { transition: transform 0.35s ease, box-shadow 0.35s ease; }
        .hover-lift:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22); }
        .bg-on-surface,
        .bg-neutral-900,
        .bg-neutral-800 {
            background-color: #ffffff !important;
        }
        .text-white {
            color: #111111 !important;
        }
        .site-cta,
        .bg-primary,
        .bg-primary.text-white,
        .btn-primary,
        .btn-white {
            color: #ffffff !important;
        }
        .page-banner .text-red-200,
        .text-red-500,
        .text-primary {
            color: var(--primary) !important;
        }
        .site-whatsapp-float {
            position: fixed;
            right: 1.5rem;
            bottom: 1.5rem;
            width: 64px;
            height: 64px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: #ffffff;
            text-decoration: none;
            box-shadow: 0 18px 36px rgba(18, 140, 126, 0.35);
            z-index: 1200;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .site-whatsapp-float:hover {
            color: #ffffff;
            transform: translateY(-4px) scale(1.04);
            box-shadow: 0 22px 44px rgba(18, 140, 126, 0.42);
        }
        .site-whatsapp-float i {
            font-size: 2rem;
        }
        .site-catalogue-float {
            position: fixed;
            top: 50%;
            right: -6.4rem;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            padding: 0.95rem 1.4rem;
            border-radius: 1rem 1rem 0 0;
            background: linear-gradient(135deg, #c8102e 0%, #8b0a1e 100%);
            color: #ffffff;
            text-decoration: none;
            box-shadow: 0 20px 38px rgba(139, 10, 30, 0.28);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            z-index: 1190;
        }
        .site-catalogue-float:hover {
            color: #ffffff;
        }
        .site-catalogue-float i {
            font-size: 0.95rem;
        }
        input, select, textarea { color: var(--on-surface); }
        input::placeholder, textarea::placeholder { color: rgba(168, 176, 186, 0.9); }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
            .hover-lift:hover { transform: none; box-shadow: none; }
        }
        @media (max-width: 991.98px) {
            .px-8 { padding-left: 1rem; padding-right: 1rem; }
            .p-12 { padding: 2rem; }
            .p-10 { padding: 1.75rem; }
            .gap-24 { gap: 2rem; }
            .gap-20 { gap: 1.75rem; }
            .gap-16 { gap: 1.5rem; }
        }
        @media (max-width: 767.98px) {
            .py-24 { padding-top: 4rem; padding-bottom: 4rem; }
            .py-20 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
            .py-16 { padding-top: 3rem; padding-bottom: 3rem; }
            .pt-16 { padding-top: 3rem; }
            .h-72 { height: 15rem; }
            .site-whatsapp-float {
                right: 1rem;
                bottom: 1rem;
                width: 58px;
                height: 58px;
            }
            .site-whatsapp-float i {
                font-size: 1.8rem;
            }
            .site-catalogue-float {
                top: 50%;
                right: -5.8rem;
                bottom: auto;
                transform: translateY(-50%) rotate(-90deg);
                padding: 0.8rem 1rem;
                border-radius: 1rem 1rem 0 0;
                font-size: 0.68rem;
                letter-spacing: 0.12em;
            }
        }
/* Footer and inline utility styles moved out of views */
.site-footer {
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.site-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 72px 32px 28px;
}
.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.site-footer-brand {
    min-width: 0;
}
.site-footer-logo-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}
.site-footer-logo {
    height: 99px;
    width: auto;
    display: block;
    margin: 0 auto;
    background: #ffffff;
}
.site-footer-copy {
    max-width: 420px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 15px;
}
.site-footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #c8102e;
    margin-bottom: 18px;
}
.site-footer-links {
    display: grid;
    gap: 12px;
}
.site-footer-link {
    color: #ffffff;
}
.site-footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.site-footer-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.site-footer-credit-link {
    color: #ffffff;
    text-decoration: none;
}
.about-kicker-spaced {
    margin-bottom: 1.2rem;
}
.contact-loader {
    display: none;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
}
.home-about-image {
    height: 480px;
    object-fit: cover;
    width: 100%;
}
.home-faq-copy {
    margin-top: 20px;
}
.view-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}
.view-toolbar-tight {
    margin-bottom: 1rem;
}
.view-toolbar-wide {
    margin-bottom: 1.5rem;
}
.form-toggle-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
}
.admin-hidden {
    display: none;
}
.admin-panel-spaced {
    margin-top: 1rem;
}
.admin-panel-narrow {
    max-width: 980px;
}
.admin-action-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 991.98px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .site-footer-inner {
        padding: 56px 20px 24px;
    }
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Error views */
::selection,
::-moz-selection {
    background-color: #E13300;
    color: white;
}
.ci-error-body {
    background-color: #fff;
    margin: 40px;
    font: 13px/20px normal Helvetica, Arial, sans-serif;
    color: #4F5155;
}
.ci-error-link {
    color: #003399;
    background-color: transparent;
    font-weight: normal;
}
.ci-error-title {
    color: #444;
    background-color: transparent;
    border-bottom: 1px solid #D0D0D0;
    font-size: 19px;
    font-weight: normal;
    margin: 0 0 14px 0;
    padding: 14px 15px 10px 15px;
}
.ci-error-code {
    font-family: Consolas, Monaco, Courier New, Courier, monospace;
    font-size: 12px;
    background-color: #f9f9f9;
    border: 1px solid #D0D0D0;
    color: #002166;
    display: block;
    margin: 14px 0 14px 0;
    padding: 12px 10px 12px 10px;
}
.ci-error-container {
    margin: 10px;
    border: 1px solid #D0D0D0;
    box-shadow: 0 0 8px #D0D0D0;
}
.ci-error-copy {
    margin: 12px 15px 12px 15px;
}
.ci-error-box {
    border: 1px solid #990000;
    padding-left: 20px;
    margin: 0 0 10px 0;
}
.ci-error-trace {
    margin-left: 10px;
}

/* aboutus.php */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.about-stat-box {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.4rem;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
    text-align: center;
}
.about-stat-box strong {
    display: block;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.55rem;
}
.about-stat-box span {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
}
.about-panel {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.about-panel h2,
.about-panel h3 {
    margin-bottom: 1rem;
}
.about-panel p {
    color: var(--on-surface-variant);
    line-height: 1.8;
}
.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.about-kicker::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: var(--primary);
}
.about-feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}
.about-feature-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.about-feature-item:first-child {
    border-top: 0;
    padding-top: 0;
}
.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff1f3 0%, #ffffff 100%);
    border: 1px solid rgba(200, 16, 46, 0.14);
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 12px 28px rgba(200, 16, 46, 0.09);
}
.about-feature-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}
.about-feature-item span {
    display: block;
    color: var(--on-surface-variant);
    line-height: 1.7;
    font-size: 0.96rem;
}
.about-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.about-dual-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.6rem;
    padding: 2rem 1.8rem;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.05);
    min-height: 100%;
}
.about-dual-card .material-symbols-outlined {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.about-process {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}
.about-process-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.5rem;
    padding: 1.7rem 1.45rem;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.05);
}
.about-process-step {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.about-process-card p {
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-top: 0.7rem;
}
.about-quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
.about-quality-visual {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    min-height: 100%;
}
.about-quality-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}
.about-quality-overlay {
    position: absolute;
    inset: auto 1.25rem 1.25rem;
    background: rgba(17, 17, 17, 0.84);
    color: #fff;
    border-radius: 1.3rem;
    padding: 1.25rem 1.2rem;
    backdrop-filter: blur(12px);
}
.about-quality-overlay span {
    display: block;
    margin-top: 0.5rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}
.about-quality-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.about-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}
.about-cert {
    padding: 1.2rem 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(17, 17, 17, 0.06);
    text-align: center;
}
.about-cert-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.85rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 16, 46, 0.10);
    color: var(--primary);
}
.about-cert strong,
.about-cert span {
    display: block;
}
.about-cert span {
    color: var(--on-surface-variant);
    margin-top: 0.3rem;
}
.about-impact-wrap {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.8rem;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.about-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}
.about-impact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.4rem;
    overflow: hidden;
}
.about-impact-media {
    height: 260px;
}
.about-impact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-impact-copy {
    padding: 1.2rem 1.1rem 1.25rem;
}
.about-cta-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.about-cta {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
}
.about-cta .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: center;
}
.about-cta-copy p,
.about-cta-side p {
    color: var(--on-surface-variant);
    line-height: 1.8;
}
.about-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.about-cta-btn.primary {
    background: var(--primary);
    color: #fff;
}
.about-cta-btn.ghost {
    border: 1px solid rgba(17, 17, 17, 0.1);
    color: #111;
}
.about-cta-side {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.06) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid rgba(200, 16, 46, 0.12);
    border-radius: 1.6rem;
    padding: 1.7rem;
}
.about-cta-side-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.about-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
}
.about-cta-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}
.about-cta-point {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--on-surface);
}
.about-cta-point i {
    color: var(--primary);
    margin-top: 0.2rem;
}

/* contact.php */
.contact-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.contact-anchor {
    scroll-margin-top: 104px;
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
}
.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.75rem;
    box-shadow: 0 20px 42px rgba(17, 17, 17, 0.06);
    padding: 2rem;
}
.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.contact-kicker::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: var(--primary);
}
.contact-copy {
    color: var(--on-surface-variant);
    line-height: 1.8;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    background: #fafbfc;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: rgba(200, 16, 46, 0.35);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}
.contact-submit {
    width: 100%;
    border: 0;
    background: var(--primary);
    color: #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.has-error {
    display: block;
    min-height: 1.1rem;
    margin-top: 0.35rem;
    color: #dc3545;
    font-size: 0.82rem;
    font-weight: 700;
}
#show_form_submit_error {
    margin-bottom: 1rem;
}
.contact-info-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.contact-info-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    background: #fafbfc;
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 1.15rem;
}
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 16, 46, 0.10);
    color: var(--primary);
    font-size: 1rem;
}
.contact-info-item strong {
    display: block;
    margin-bottom: 0.3rem;
}
.contact-info-item span,
.contact-info-item a {
    display: block;
    color: var(--on-surface-variant);
    line-height: 1.7;
    font-size: 0.94rem;
}

/* ourproducts.php */
.products-overview {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.products-grid-wrap {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.8rem;
    padding: 1.35rem;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.products-category-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.35rem;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.05);
    overflow: hidden;
    display: block;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.products-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.10);
    border-color: rgba(200, 16, 46, 0.16);
}
.products-category-media {
    position: relative;
    overflow: hidden;
    height: 17.5rem;
    padding: 0.8rem;
    box-sizing: border-box;
}
.products-category-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 1.1rem;
    transition: transform 0.6s ease;
    background: #f4f5f7;
}
.products-category-card:hover .products-category-media img {
    transform: scale(1.02);
}
.products-category-media::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    top: 0.8rem;
    bottom: 0.8rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(17,17,17,0.05) 0%, rgba(17,17,17,0.12) 100%);
    pointer-events: none;
}
.products-category-copy {
    padding: 1.15rem 1rem 1.25rem;
    text-align: center;
    position: relative;
}
.products-category-copy::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(200,16,46,0.18) 0%, rgba(200,16,46,0.95) 100%);
    margin: 0 auto 0.95rem;
}
.products-category-copy h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin: 0;
}
.products-empty {
    padding: 2rem;
    text-align: center;
    color: var(--on-surface-variant);
}

/* power-switching.php and sibling product detail pages */
.product-detail-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.product-detail-grid {
    display: grid;
    gap: 1.5rem;
}
.product-detail-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 1.5rem;
    align-items: center;
}
.product-detail-media,
.product-detail-copy,
.product-detail-cta {
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.75rem;
    box-shadow: 0 20px 42px rgba(17,17,17,0.06);
}
.product-detail-media {
    padding: 0.9rem;
    overflow: hidden;
}
.product-detail-media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
}
.product-detail-copy,
.product-detail-cta {
    padding: 2rem;
}
.product-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.product-detail-tag::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: var(--primary);
}
.product-detail-copy p,
.product-detail-copy li,
.product-detail-cta p {
    color: var(--on-surface-variant);
    line-height: 1.78;
}
.product-detail-copy ul {
    margin: 1.5rem 0 0;
    padding-left: 1.1rem;
}
.product-detail-copy li + li {
    margin-top: 0.65rem;
}
.product-detail-cta {
    background: linear-gradient(135deg,var(--primary) 0%,#e33850 100%);
    position: relative;
    overflow: hidden;
}
.product-detail-cta::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
}
.product-detail-cta * {
    position: relative;
    z-index: 1;
}
.product-detail-cta h3,
.product-detail-cta p {
    color: #ffffff !important;
}

/* protection-devices.php */
.protection-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.protection-grid {
    display: grid;
    gap: 1.5rem;
}
.protection-row {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.75rem;
    box-shadow: 0 20px 42px rgba(17, 17, 17, 0.06);
    padding: 1.1rem;
    max-width: 100%;
    overflow: hidden;
}
.protection-row.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}
.protection-media {
    background: #fafbfc;
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 1.35rem;
    padding: 0.85rem;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}
.protection-media img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    border-radius: 1rem;
    display: block;
    background: #ffffff;
}
.protection-copy {
    padding: 1rem 1.1rem;
}
.protection-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.protection-tag::before {
    content: "";
    width: 1.8rem;
    height: 1px;
    background: var(--primary);
}
.protection-copy p,
.protection-copy li,
.protection-description p,
.protection-description li {
    color: var(--on-surface-variant);
    line-height: 1.82;
}
.protection-description ul,
.protection-copy ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}
.protection-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    border: 0;
    background: var(--primary);
    color: #ffffff;
    border-radius: 0.95rem;
    padding: 0.95rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}
.protection-btn:hover {
    background: var(--primary-container);
    transform: translateY(-2px);
}
.protection-modal .modal-content {
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 1.5rem;
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.16);
}
.protection-modal .modal-header,
.protection-modal .modal-body {
    padding: 1.5rem;
}
.protection-modal .modal-header {
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.protection-modal .btn-close {
    box-shadow: none;
}
.protection-modal label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--on-surface-variant);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.protection-modal input,
.protection-modal textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fafbfc;
    border-radius: 0.95rem;
    padding: 0.95rem 1rem;
}
.protection-modal input:focus,
.protection-modal textarea:focus {
    outline: none;
    border-color: rgba(200, 16, 46, 0.35);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}
.protection-modal-submit {
    border: 0;
    background: var(--primary);
    color: #ffffff;
    border-radius: 0.95rem;
    padding: 0.95rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.protection-modal-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}
.product-inquiry-feedback {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.product-inquiry-feedback:empty {
    display: none;
}
.product-inquiry-feedback.is-success {
    color: #198754;
}
.product-inquiry-feedback.is-error {
    color: #dc3545;
}

/* home.php */
.hero {
    position: relative;
    min-height: clamp(420px, 72vh, 760px);
    background: #0f1115;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide picture,
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide img {
    object-fit: cover;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,17,21,0.12) 0%, rgba(15,17,21,0.46) 100%),
        radial-gradient(circle at top right, rgba(200,16,46,0.26), transparent 30%);
    pointer-events: none;
}
.hero-nav,
.hero-carousel-dots {
    position: absolute;
    z-index: 2;
}
.hero-nav {
    right: 2rem;
    bottom: 2rem;
    display: flex;
    gap: 0.75rem;
}
.hero-nav-btn,
.hero-dot,
.cat-nav-btn,
.test-nav-btn {
    border: 0;
    cursor: pointer;
}
.hero-nav-btn,
.cat-nav-btn,
.test-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.94);
    color: #111111;
    box-shadow: 0 18px 36px rgba(17,17,17,0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}
.hero-nav-btn:hover,
.cat-nav-btn:hover,
.test-nav-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
}
.hero-carousel-dots {
    left: 2rem;
    bottom: 2rem;
    display: flex;
    gap: 0.55rem;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.45);
}
.hero-dot.is-active {
    background: #ffffff;
    transform: scale(1.12);
}
.trust,
.categories,
.industries,
.testimonials,
.faq {
    padding: 5rem 1.5rem;
}
.trust {
    background: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.trust-grid,
.about-inner,
.categories-inner,
.cta-banner-inner,
.ind-inner,
.test-inner,
.faq-inner,
.final-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.trust-item {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.4rem;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: 0 16px 34px rgba(17,17,17,0.05);
}
.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(200,16,46,0.10);
}
.trust-title {
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.trust-desc {
    color: var(--on-surface-variant);
    line-height: 1.65;
    font-size: 0.94rem;
}
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    padding: 5rem 1.5rem;
}
.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrap {
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.8rem;
    padding: 1rem;
    box-shadow: 0 22px 46px rgba(17,17,17,0.08);
}
.about-img-placeholder {
    display: block;
    border-radius: 1.2rem;
}
.about-stat-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: rgba(17,17,17,0.9);
    color: #ffffff;
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
    min-width: 150px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.about-stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}
.about-stat-text {
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.s-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.s-label::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: var(--primary);
}
.s-h2 {
    margin: 1rem 0 1rem;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
}
.s-h2 em {
    color: var(--primary);
    font-style: normal;
}
.s-body,
.cat-intro,
.ind-intro,
.test-text,
.faq-a,
.final-cta-sub,
.cta-banner-sub,
.cta-banner-panel-copy {
    color: var(--on-surface-variant);
    line-height: 1.8;
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}
.feat-item {
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.3rem;
    padding: 1.2rem;
    box-shadow: 0 14px 28px rgba(17,17,17,0.05);
}
.feat-item-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.feat-item-desc {
    color: var(--on-surface-variant);
    font-size: 0.95rem;
    line-height: 1.7;
}
.categories {
    background: #fff;
}
.cat-header,
.ind-head,
.test-head,
.faq-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}
.cat-header,
.ind-head,
.test-head {
    margin-bottom: 2rem;
}
.btn-ghost,
.btn-primary,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.btn-ghost {
    border: 1px solid rgba(17,17,17,0.1);
    color: #111;
    background: #fff;
}
.btn-primary {
    background: var(--primary);
}
.btn-white {
    background: #ffffff;
    color: #111111;
}
.cat-grid,
.test-grid {
    padding-bottom: 1rem;
}
.cat-card {
    border-radius: 1.6rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 18px 38px rgba(17,17,17,0.07);
    cursor: pointer;
    height: 100%;
}
.cat-card-featured {
    border-color: rgba(200,16,46,0.16);
}
.cat-card-img {
    background: #f4f5f7;
    padding: 1rem;
    height: 250px;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.cat-card-body {
    padding: 1.2rem;
}
.cat-card-tag {
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.cat-card-name {
    margin-top: 0.65rem;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;
}
.cat-card-link {
    margin-top: 1rem;
    color: var(--on-surface-variant);
    font-weight: 700;
}
.cat-nav,
.test-nav {
    display: flex;
    gap: 0.75rem;
}
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #101317 0%, #1a1d22 100%);
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(200,16,46,0.28), transparent 32%);
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 1.5rem;
    align-items: center;
}
.cta-banner-kicker,
.cta-banner-panel-title {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.cta-banner-h,
.final-cta-h {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
    margin: 0.9rem 0 1rem;
    text-transform: uppercase;
}
.cta-banner-sub,
.final-cta-sub {
    color: rgba(255,255,255,0.78);
}
.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}
.cta-banner-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.8rem;
    padding: 1.5rem;
    backdrop-filter: blur(14px);
}
.cta-banner-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.cta-banner-panel-copy {
    color: rgba(255,255,255,0.72);
    margin-top: 0.5rem;
}
.cta-banner-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,16,46,0.24);
    color: #fff;
}
.cta-banner-nums {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}
.cta-num {
    background: rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}
.cta-num-val {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}
.cta-num-label {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.industries {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.ind-item {
    background: #fff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.5rem;
    box-shadow: 0 18px 34px rgba(17,17,17,0.05);
    overflow: hidden;
}
.ind-body {
    padding: 1.5rem 1.25rem;
}
.ind-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,16,46,0.10);
    color: var(--primary);
    margin-bottom: 1rem;
}
.ind-name {
    font-size: 1.05rem;
    font-weight: 900;
}
.ind-line {
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    margin: 1rem 0 0.9rem;
}
.ind-desc {
    color: var(--on-surface-variant);
    line-height: 1.75;
}
.testimonials {
    background: #ffffff;
}
.test-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 18px 34px rgba(17,17,17,0.05);
    height: 100%;
}
.test-accent {
    border-top: 4px solid var(--primary);
}
.test-text {
    font-size: 1rem;
}
.test-author {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.25rem;
}
.test-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,16,46,0.10);
    color: var(--primary);
    font-size: 1.45rem;
}
.test-name {
    font-weight: 900;
}
.test-role {
    color: var(--on-surface-variant);
    margin-top: 0.25rem;
}
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.faq-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}
.faq-items {
    display: grid;
    gap: 1rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(17,17,17,0.04);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.25rem;
    font-weight: 800;
    cursor: pointer;
}
.faq-chevron {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    transition: transform 0.2s ease;
}
.faq-a {
    display: none;
    padding: 0 1.25rem 1.2rem;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c8102e 0%, #8b0a1e 100%);
    padding: 5rem 1.5rem;
}
.final-cta-bg,
.final-cta-grid-bg {
    position: absolute;
    inset: 0;
}
.final-cta-bg {
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%);
}
.final-cta-grid-bg {
    background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.28;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.final-cta-sub {
    max-width: 720px;
    margin: 1rem auto 0;
}

@media (max-width: 991.98px) {
    .about-stats-strip,
    .about-process-grid,
    .about-impact-grid,
    .trust-grid,
    .ind-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-story-grid,
    .about-quality-grid,
    .about-cta .wrap,
    .contact-grid,
    .products-grid,
    .product-detail-row,
    .protection-row,
    .protection-row.reverse,
    .about-inner,
    .cta-banner-inner,
    .faq-inner {
        grid-template-columns: 1fr;
    }
    .about-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .about-stats-strip,
    .about-dual-grid,
    .about-cert-grid,
    .about-impact-grid,
    .trust-grid,
    .feat-grid,
    .cta-banner-nums,
    .ind-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .hero-nav {
        right: 1rem;
        bottom: 1rem;
    }
    .hero-carousel-dots {
        left: 1rem;
        bottom: 1.2rem;
    }
    .hero-nav-btn,
    .cat-nav-btn,
    .test-nav-btn {
        width: 46px;
        height: 46px;
    }
    .cat-header,
    .ind-head,
    .test-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .faq-q {
        font-size: 0.95rem;
    }
    .about-quality-visual img {
        min-height: 360px;
    }
}
