* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background:
                radial-gradient(circle at top left, rgba(255, 211, 0, 0.12), transparent 26%),
                linear-gradient(180deg, #f7f8fc 0%, #eef2f8 100%);
            color: var(--site-text);
            font-family: "Manrope", sans-serif;
        }

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

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

        .site-shell {
            width: min(1320px, calc(100% - 2rem));
            margin: 0 auto;
        }

        .site-topbar {
            background:
                linear-gradient(90deg, rgba(7, 17, 45, 0.98), rgba(31, 33, 156, 0.94));
            color: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 -1px 0 rgba(255, 211, 0, 0.18);
        }

        .site-topbar-inner {
            width: min(1440px, calc(100% - 2rem));
            margin: 0 auto;
            padding: 0.7rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem 1.5rem;
            font-size: 0.92rem;
            font-weight: 700;
        }

        .site-topbar-links,
        .site-topbar-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.25rem;
            align-items: center;
        }

        .site-topbar-social {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .site-topbar-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 14px 30px rgba(18, 140, 126, 0.28);
        }

        .site-topbar-whatsapp svg {
            width: 1rem;
            height: 1rem;
            flex: 0 0 auto;
        }

        .site-topbar-social svg {
            width: 1rem;
            height: 1rem;
            flex: 0 0 auto;
        }

        .site-topbar a:hover {
            color: #fff4b2;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            backdrop-filter: blur(18px);
            background:
                linear-gradient(180deg, rgba(9, 18, 47, 0.96), rgba(8, 15, 36, 0.92));
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow:
                0 24px 70px rgba(0, 0, 0, 0.26),
                0 1px 0 rgba(255, 255, 255, 0.08) inset;
        }

        .site-header::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px),
                linear-gradient(90deg, rgba(255, 211, 0, 0.1), transparent 34%, rgba(31, 33, 156, 0.14));
            pointer-events: none;
        }

        .site-header::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--site-gold), var(--site-blue), transparent);
            opacity: 0.9;
        }

        .site-header-inner {
            position: relative;
            z-index: 1;
            width: min(1440px, calc(100% - 2rem));
            margin: 0 auto;
            min-height: 88px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .site-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.95rem;
            min-width: 0;
        }

        .site-brand-mark {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            object-fit: cover;
            background: #fff;
            border: 1px solid rgba(255, 211, 0, 0.22);
            box-shadow:
                0 18px 42px rgba(255, 211, 0, 0.16),
                0 1px 0 rgba(255, 255, 255, 0.42) inset;
        }

        .site-brand-copy {
            min-width: 0;
        }

        .site-brand-name {
            margin: 0;
            color: var(--site-gold);
            font-family: "Oswald", sans-serif;
            font-size: 2rem;
            line-height: 0.95;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .site-brand-tagline {
            margin-top: 0.2rem;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .site-nav-wrap {
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 0;
        }

        .site-nav {
            display: flex;
            align-items: center;
        }

        .site-cta-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .site-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            padding: 0.95rem 1.45rem;
            font-size: 0.95rem;
            font-weight: 800;
            transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
        }

        .site-btn:hover {
            transform: translateY(-1px);
        }

        .site-btn-primary {
            background: linear-gradient(135deg, var(--site-gold), var(--site-gold-strong));
            color: var(--site-blue-deep);
            box-shadow: 0 16px 40px rgba(255, 211, 0, 0.24);
        }

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

        .site-phone-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            padding: 0.95rem 1.35rem;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #fff;
            font-weight: 800;
            white-space: nowrap;
            box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
        }

        .site-burger {
            display: none;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
        }

        .site-mobile-overlay {
            position: fixed;
            inset: 0;
            z-index: 95;
            background: rgba(10, 16, 42, 0.6);
            opacity: 0;
            pointer-events: none;
            transition: opacity 180ms ease;
        }

        .site-mobile-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .site-mobile-panel {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 96;
            width: min(430px, 100%);
            height: 100vh;
            padding: 1.5rem;
            background:
                linear-gradient(180deg, rgba(9, 18, 47, 0.98), rgba(11, 20, 38, 0.98));
            box-shadow: -28px 0 90px rgba(0, 0, 0, 0.36);
            transform: translateX(100%);
            transition: transform 220ms ease;
            overflow-y: auto;
        }

        .site-mobile-panel.is-open {
            transform: translateX(0);
        }

        .site-mobile-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.75rem;
        }

        .site-mobile-close {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
        }

        .site-mobile-actions {
            display: grid;
            gap: 0.9rem;
            margin-top: 2rem;
        }

        .site-mobile-actions .site-btn {
            width: 100%;
        }

        .site-main {
            flex: 1;
        }

        .site-footer {
            margin-top: 4rem;
            padding: 4.2rem 0 2rem;
            background: linear-gradient(180deg, #10172f 0%, #0a1021 100%);
            color: rgba(255, 255, 255, 0.84);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .site-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
            gap: 2rem;
        }

        .site-footer h4 {
            margin: 0 0 1rem;
            color: #fff;
            font-family: "Oswald", sans-serif;
            font-size: 1.15rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.85rem;
        }

        .site-footer a:hover {
            color: #fff1a1;
        }

        .site-footer-brand p,
        .site-footer-copy,
        .site-footer-contact {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.8;
        }

        .site-footer-bottom {
            margin-top: 2.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.75rem 1.5rem;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.92rem;
        }

        .site-whatsapp-float {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 70;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.95rem 1.2rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: #fff;
            box-shadow: 0 20px 45px rgba(22, 163, 74, 0.32);
            font-weight: 800;
        }

        .site-whatsapp-float svg {
            width: 1.15rem;
            height: 1.15rem;
        }

        .allpave-file-upload {
            display: grid;
            grid-template-columns: max-content minmax(0, 1fr);
            gap: 0.75rem;
            align-items: center;
            min-height: 3.75rem;
            padding: 0.55rem;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
            color: #0f172a;
            box-shadow:
                0 18px 42px rgba(10, 16, 42, 0.16),
                0 1px 0 rgba(255, 255, 255, 0.85) inset;
        }

        input[type="file"].allpave-file-input {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .allpave-file-button {
            display: inline-flex;
            min-height: 2.65rem;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            border-radius: 999px;
            padding: 0.72rem 1rem;
            background:
                linear-gradient(135deg, var(--site-gold), var(--site-gold-strong));
            color: var(--site-blue-deep);
            font-size: 0.88rem;
            font-weight: 900;
            letter-spacing: 0.03em;
            cursor: pointer;
            box-shadow:
                0 14px 28px rgba(255, 191, 0, 0.26),
                0 1px 0 rgba(255, 255, 255, 0.38) inset;
            transition: transform 160ms ease, box-shadow 160ms ease;
        }

        .allpave-file-button::before {
            content: "+";
            display: inline-flex;
            width: 1.1rem;
            height: 1.1rem;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(9, 18, 47, 0.12);
            font-size: 1rem;
            line-height: 1;
        }

        .allpave-file-button:hover {
            transform: translateY(-1px);
            box-shadow:
                0 18px 34px rgba(255, 191, 0, 0.32),
                0 1px 0 rgba(255, 255, 255, 0.42) inset;
        }

        input[type="file"].allpave-file-input:focus-visible + .allpave-file-button {
            outline: 3px solid rgba(255, 211, 0, 0.38);
            outline-offset: 3px;
        }

        .allpave-file-name {
            min-width: 0;
            overflow: hidden;
            color: #475569;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.35;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        @media (max-width: 1180px) {
            .site-nav,
            .site-cta-group {
                display: none;
            }

            .site-burger {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

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

        @media (max-width: 720px) {
            .site-topbar-inner,
            .site-header-inner {
                width: min(100%, calc(100% - 1.5rem));
            }

            .site-topbar-meta {
                display: none;
            }

            .site-brand-tagline {
                white-space: normal;
            }

            .site-footer-grid {
                grid-template-columns: 1fr;
            }

            .site-whatsapp-float span {
                display: none;
            }

            .allpave-file-upload {
                grid-template-columns: 1fr;
            }

            .allpave-file-button {
                width: 100%;
            }

            .allpave-file-name {
                padding: 0 0.35rem 0.25rem;
                text-align: center;
            }
        }
