     *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --red: #CC2229;
            --red-dark: #A81B21;
            --charcoal: #3D4F5C;
            --charcoal-dark: #2B3940;
            --charcoal-light: #526370;
            --off-white: #F7F7F7;
            --warm-white: #FFFFFF;
            --text-dark: #222;
            --text-mid: #4A4A4A;
            --text-light: #7A7A7A;
            --border: #E0E0E0;
            --wa-green: #25D366;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--warm-white);
            line-height: 1.6;
        }

        /* TOPBAR */
        .topbar {
            background: var(--charcoal-dark);
            color: #ccc;
            font-size: 13px;
            padding: 8px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .topbar a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .topbar a:hover {
            color: var(--red);
        }

        .topbar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* HEADER */
        header {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid var(--red);
            padding: 10px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-wrap img {
            height: 56px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text strong {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--charcoal);
            letter-spacing: 0.5px;
            line-height: 1.1;
        }

        .logo-text span {
            font-size: 10px;
            font-weight: 600;
            color: var(--red);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            transition: color 0.2s;
        }

        nav a:hover {
            color: var(--red);
        }

        .btn-call {
            background: var(--charcoal);
            color: #fff;
            padding: 9px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s;
        }

        .btn-call:hover {
            background: var(--charcoal-dark);
        }

        .btn-wa-header {
            background: var(--wa-green);
            color: #fff;
            padding: 9px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
        }

        /* HERO */
        .hero {
            background-image: url('bg.png');
             opacity: black;
            background-position: center;
            opacity: 1;
            color: #fff;
            padding: 72px 24px 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--red);
        }

        .hero-eyebrow {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 16px;
            background: rgba(204, 34, 41, 0.12);
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid rgba(204, 34, 41, 0.3);
        }

        .hero h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(36px, 6vw, 68px);
            font-weight: 800;
            line-height: 1.05;
            margin: 16px 0 18px;
        }

        .hero h2 em {
            font-style: normal;
            color: var(--red);
        }

        .hero p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.72);
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--red);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-primary:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.35);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        /* TRUST BAR */
        .trust-bar {
            background: var(--off-white);
            border-bottom: 1px solid var(--border);
            padding: 22px 24px;
        }

        .trust-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 16px;
        }

        .trust-item {
            text-align: center;
        }

        .trust-item .num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 30px;
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1;
        }

        .trust-item .num span {
            color: var(--red);
        }

        .trust-item .label {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

        /* SECTIONS */
        section {
            padding: 64px 24px;
        }

        .section-inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .section-tag {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-mid);
            max-width: 580px;
            line-height: 1.7;
            margin-bottom: 44px;
        }

        /* PRODUCTS */
        .products-bg {
            background: #fff;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .product-card {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            transition: box-shadow 0.25s, transform 0.25s;
        }

        .product-card:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
            transform: translateY(-3px);
        }

        .product-img {
            width: 100%;
            height: 180px;
            background: var(--off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 3px solid var(--border);
        }

        .product-img:hover {
            border-bottom-color: var(--red);
        }

        .product-icon {
            font-size: 72px;
            opacity: 0.12;
            position: absolute;
            bottom: -8px;
            right: 8px;
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--red);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .product-img-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--charcoal);
            text-align: center;
            padding: 0 16px;
            position: relative;
            z-index: 1;
        }

        .product-body {
            padding: 20px;
        }

        .product-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .product-desc {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .product-features {
            list-style: none;
            margin-bottom: 18px;
        }

        .product-features li {
            font-size: 12px;
            color: var(--text-mid);
            padding: 3px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-features li::before {
            content: '✓';
            color: var(--red);
            font-weight: 800;
            font-size: 13px;
        }

        .btn-quote {
            display: block;
            background: var(--charcoal);
            color: #fff;
            text-align: center;
            padding: 11px 16px;
            border-radius: 7px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }

        .btn-quote:hover {
            background: var(--red);
        }

        /* WHY US */
        .whyus-bg {
            background: var(--charcoal-dark);
            color: #fff;
        }

        .whyus-bg .section-title {
            color: #fff;
        }

        .whyus-bg .section-sub {
            color: rgba(255, 255, 255, 0.6);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 12px;
            padding: 26px 20px;
            border-top: 3px solid var(--red);
        }

        .why-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .why-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .why-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.60);
            line-height: 1.65;
        }

        /* CONTACT */
        .contact-bg {
            background: var(--off-white);
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 22px;
        }

        .contact-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--red);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-row a {
            color: var(--charcoal);
            font-weight: 600;
            text-decoration: none;
        }

        .contact-row a:hover {
            color: var(--red);
        }

        .wa-block {
            background: var(--wa-green);
            color: #fff;
            padding: 22px;
            border-radius: 12px;
            margin-top: 24px;
            text-align: center;
        }

        .wa-block p {
            font-size: 13px;
            margin-bottom: 12px;
            opacity: 0.9;
        }

        .btn-wa-big {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #128C7E;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .btn-wa-big:hover {
            opacity: 0.9;
        }

        .contact-form {
            background: #fff;
            border-radius: 14px;
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .contact-form h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--charcoal);
            margin-bottom: 22px;
            border-bottom: 2px solid var(--red);
            padding-bottom: 10px;
        }

        .form-row {
            margin-bottom: 16px;
        }

        .form-row label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-mid);
            margin-bottom: 6px;
        }

        .form-row input,
        .form-row select,
        .form-row textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: 7px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
        }

        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            border-color: var(--red);
        }

        .form-row textarea {
            height: 90px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background: var(--red);
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: background 0.2s;
            margin-top: 4px;
        }

        .btn-submit:hover {
            background: var(--red-dark);
        }

        .form-note {
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
            margin-top: 10px;
        }

        #form-success {
            display: none;
            background: #e8f5e9;
            border: 1px solid #a5d6a7;
            color: #2e7d32;
            padding: 14px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            margin-top: 12px;
        }

        /* FLOATING WA */
        .float-wa {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            background: var(--wa-green);
            color: #fff;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
            transition: transform 0.2s;
        }

        .float-wa:hover {
            transform: scale(1.1);
        }

        /* FOOTER */
        footer {
            background: var(--charcoal-dark);
            color: rgba(255, 255, 255, 0.5);
            padding: 32px 24px;
            text-align: center;
            font-size: 13px;
            border-top: 3px solid var(--red);
        }

        footer strong {
            color: #fff;
        }

        footer a {
            color: #fff;
            text-decoration: none;
        }

        footer a:hover {
            color: var(--red);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 14px;
            font-size: 13px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .topbar {
                font-size: 11px;
            }
        }
