        :root {
            --orange: #EF5A1A;
            --orange-light: #FF7A3B;
            --dark: #F3F6F8;
            --dark2: #FFFFFF;
            --dark3: #E9EEF2;
            --gray: #5F6B76;
            --white: #1E2A34;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--dark);
            color: var(--white);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(30, 42, 52, .12);
            box-shadow: 0 10px 30px rgba(20, 36, 52, .08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 44px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: .5px;
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-cta {
            background: var(--orange);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 4px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background: var(--orange-light) !important;
        }

        /* ── HAMBURGER ── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            z-index: 300;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: transform .35s cubic-bezier(.77, 0, .175, 1), opacity .25s, width .3s;
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            width: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ── MOBILE DRAWER ── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(300px, 82vw);
            background: var(--dark2);
            z-index: 250;
            transform: translateX(110%);
            transition: transform .4s cubic-bezier(.77, 0, .175, 1);
            flex-direction: column;
            padding: 80px 28px 40px;
            border-left: 1px solid rgba(255, 255, 255, .08);
            overflow-y: auto;
            box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
            visibility: hidden;
            pointer-events: none;
        }

        .mobile-menu.open {
            transform: translateX(0);
            visibility: visible;
            pointer-events: auto;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 240;
            background: rgba(0, 0, 0, .65);
            opacity: 0;
            transition: opacity .35s;
            backdrop-filter: blur(3px);
            visibility: hidden;
            pointer-events: none;
        }

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        body.menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .mobile-nav-links li {
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .mobile-nav-links li:first-child {
            border-top: 1px solid rgba(255, 255, 255, .06);
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 18px 4px;
            transition: color .2s, padding-left .25s;
        }

        .mobile-nav-links a:hover {
            color: var(--white);
            padding-left: 8px;
        }

        .mobile-nav-links .arrow {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--orange);
            transition: background .2s, transform .2s;
        }

        .mobile-nav-links a:hover .arrow {
            background: rgba(244, 80, 10, .15);
            transform: translateX(3px);
        }

        .mobile-menu-ctas {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mob-btn-call {
            background: var(--orange);
            color: #fff;
            padding: 16px;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background .2s, transform .15s;
            box-shadow: 0 4px 20px rgba(244, 80, 10, .3);
        }

        .mob-btn-call:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .mob-btn-wa {
            background: rgba(37, 211, 102, .12);
            border: 1px solid rgba(37, 211, 102, .25);
            color: #4ade80;
            padding: 14px;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background .2s, transform .15s;
        }

        .mob-btn-wa:hover {
            background: rgba(37, 211, 102, .2);
            transform: translateY(-2px);
        }

        .mobile-footer-info {
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .06);
        }

        .mobile-footer-info p {
            font-size: 11px;
            color: rgba(255, 255, 255, .35);
            line-height: 1.8;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(244, 80, 10, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 48px;
            min-height: calc(100vh - 180px);
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 580px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 80, 10, 0.15);
            border: 1px solid rgba(244, 80, 10, 0.35);
            color: var(--orange-light);
            padding: 6px 14px;
            border-radius: 99px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .5px;
            margin-bottom: 28px;
            animation: fadeUp .6s ease both;
        }

        .hero-badge::before {
            content: '●';
            font-size: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(56px, 8vw, 96px);
            line-height: .95;
            letter-spacing: 2px;
            margin-bottom: 28px;
            animation: fadeUp .7s ease .1s both;
        }

        h1 span {
            color: var(--orange);
        }

        .hero-desc {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .65);
            max-width: 460px;
            margin-bottom: 40px;
            font-weight: 300;
            animation: fadeUp .7s ease .2s both;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp .7s ease .3s both;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            padding: 16px 32px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: .5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background .2s, transform .15s;
        }

        .btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .btn-secondary {
            border: 1px solid rgba(255, 255, 255, .25);
            color: #fff;
            padding: 16px 32px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: border-color .2s, background .2s, transform .15s;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, .6);
            background: rgba(255, 255, 255, .05);
            transform: translateY(-2px);
        }

        .hero-image {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            animation: fadeIn 1s ease .3s both;
        }

        .hero-image-wrap {
            position: relative;
            width: 90%;
        }

        .hero-slideshow {
            position: relative;
        }

        .hero-image-wrap img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .06);
        }

        .hero-slide {
            display: block;
            opacity: 0;
            animation: heroSlideshow 10s infinite;
        }

        .hero-slide:first-child {
            position: relative;
            opacity: 1;
        }

        .hero-slide:nth-child(2) {
            position: absolute;
            inset: 0;
            animation-delay: 5s;
        }

        @keyframes heroSlideshow {
            0%,
            45% {
                opacity: 1;
            }

            50%,
            95% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .hero-image-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--orange);
            padding: 18px 24px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(244, 80, 10, .4);
        }

        .hero-image-badge .num {
            font-family: 'Bebas Neue';
            font-size: 40px;
            line-height: 1;
        }

        .hero-image-badge .label {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            opacity: .9;
        }

        /* ── STATS ── */
        .stats-strip {
            border-top: 1px solid rgba(255, 255, 255, .08);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            background: var(--dark2);
        }

        .stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat {
            padding: 36px 24px;
            border-right: 1px solid rgba(255, 255, 255, .08);
            transition: background .2s;
        }

        .stat:last-child {
            border-right: none;
        }

        .stat:hover {
            background: rgba(244, 80, 10, .05);
        }

        .stat-num {
            font-family: 'Bebas Neue';
            font-size: 48px;
            color: var(--orange);
            letter-spacing: 2px;
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: var(--gray);
            margin-top: 4px;
        }

        /* ── COMMON ── */
        section {
            padding: 100px 0;
        }

        .section-tag {
            display: inline-block;
            color: var(--orange);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        h2 {
            font-family: 'Bebas Neue';
            font-size: clamp(36px, 5vw, 60px);
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 20px;
        }

        .section-desc {
            color: rgba(255, 255, 255, .6);
            font-size: 16px;
            line-height: 1.7;
            font-weight: 300;
            max-width: 520px;
        }

        /* ── LIFT ── */
        .lift-section {
            background: var(--dark2);
        }

        .lift-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .lift-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: rgba(255, 255, 255, .08);
            border-radius: 8px;
            overflow: hidden;
            margin-top: 40px;
        }

        .spec {
            background: var(--dark2);
            padding: 24px;
            transition: background .2s;
        }

        .spec:hover {
            background: rgba(244, 80, 10, .08);
        }

        .spec-key {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 6px;
        }

        .spec-val {
            font-family: 'Bebas Neue';
            font-size: 28px;
            color: var(--orange);
        }

        .spec-unit {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            margin-top: 2px;
        }

        .lift-visual {
            position: relative;
        }

        .lift-visual img {
            width: 100%;
            border-radius: 10px;
        }

        .lift-label {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(13, 13, 13, .85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(244, 80, 10, .3);
            padding: 12px 18px;
            border-radius: 6px;
            font-size: 13px;
            color: var(--orange-light);
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* ── SERVICES ── */
        .services-section {
            background: var(--dark);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

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

        .card {
            background: var(--dark3);
            border-radius: 10px;
            padding: 36px;
            border: 1px solid rgba(255, 255, 255, .06);
            position: relative;
            overflow: hidden;
            transition: transform .25s, border-color .25s, box-shadow .25s;
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(244, 80, 10, .08) 0%, transparent 60%);
            opacity: 0;
            transition: opacity .3s;
        }

        .card:hover {
            transform: translateY(-6px);
            border-color: rgba(244, 80, 10, .3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            background: rgba(244, 80, 10, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .card h3 {
            font-family: 'Bebas Neue';
            font-size: 24px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.7;
        }

        /* ── SERVICE AREAS ── */
        .areas-section {
            background: var(--dark3);
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 48px;
        }

.area-item {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, background .2s;
}

        .area-item:hover {
            border-color: rgba(244, 80, 10, .3);
            background: rgba(244, 80, 10, .05);
        }

        .area-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .area-name {
            font-weight: 600;
            font-size: 15px;
        }

        .area-sub {
            font-size: 12px;
            color: var(--gray);
            margin-top: 2px;
        }

        /* ── REVIEWS ── */
        .reviews-section {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
        }

        .reviews-header {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 32px;
            align-items: end;
            margin-bottom: 52px;
        }

        .reviews-summary {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            padding: 24px 26px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
        }

        .reviews-score {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 10px;
        }

        .reviews-score strong {
            font-family: 'Bebas Neue';
            font-size: 64px;
            line-height: .9;
            color: var(--orange);
            letter-spacing: 2px;
        }

        .reviews-score span {
            color: rgba(255, 255, 255, .72);
            font-size: 16px;
        }

        .reviews-stars {
            color: #ffb547;
            letter-spacing: 4px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .reviews-summary p {
            color: rgba(255, 255, 255, .68);
            font-size: 14px;
            line-height: 1.7;
        }

        .reviews-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 18px;
        }

        .reviews-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: transform .18s ease, background .18s ease, border-color .18s ease;
        }

        .reviews-link.primary {
            background: var(--orange);
            color: #fff;
        }

        .reviews-link.secondary {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            color: var(--white);
        }

        .reviews-link:hover {
            transform: translateY(-2px);
        }

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

        .review-card {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 18px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 280px;
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            border-color: rgba(244, 80, 10, .24);
            box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
        }

        .review-card.hidden {
            display: none;
        }

        .review-head {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .review-avatar {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
            background: rgba(255, 255, 255, .08);
            flex-shrink: 0;
        }

        .review-author {
            min-width: 0;
        }

        .review-author a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
        }

        .review-author a:hover {
            color: var(--orange-light);
        }

        .review-date {
            color: var(--gray);
            font-size: 12px;
            margin-top: 4px;
        }

        .review-rating {
            color: #ffb547;
            letter-spacing: 3px;
            font-size: 15px;
        }

        .review-text {
            color: rgba(255, 255, 255, .78);
            font-size: 14px;
            line-height: 1.8;
            white-space: pre-line;
            flex: 1;
        }

        .review-text.is-empty {
            color: rgba(255, 255, 255, .48);
            font-style: italic;
        }

        .review-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .review-source {
            color: var(--gray);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .review-read-link {
            color: var(--orange-light);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
        }

        .review-read-link:hover {
            color: #fff;
        }

        .reviews-empty {
            display: none;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 20px 22px;
            color: rgba(255, 255, 255, .68);
        }

        /* ── PROCESS ── */
        .process-section {
            background: var(--dark2);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 60px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 5%;
            right: 5%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent);
            opacity: .35;
        }

        .step {
            text-align: center;
            padding: 0 24px;
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--dark3);
            border: 2px solid var(--orange);
            font-family: 'Bebas Neue';
            font-size: 22px;
            color: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
            transition: background .2s, box-shadow .2s;
        }

        .step:hover .step-num {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 0 24px rgba(244, 80, 10, .5);
        }

        .step h4 {
            font-family: 'Bebas Neue';
            font-size: 20px;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .step p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ── FAQ ── */
        .faq-section {
            background: var(--dark);
        }

        .faq-list {
            max-width: 820px;
            margin: 48px auto 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            gap: 16px;
            transition: background .2s;
            user-select: none;
        }

        .faq-q:hover {
            background: rgba(244, 80, 10, .06);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(244, 80, 10, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            font-size: 18px;
            flex-shrink: 0;
            transition: transform .3s, background .2s;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(244, 80, 10, .25);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .3s;
        }

        .faq-a-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.8;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
        }

        /* ── CTA BAND ── */
        .cta-band {
            background: var(--orange);
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
        }

        .cta-band .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .cta-band h2 {
            margin: 0;
            color: #fff;
        }

        .cta-band p {
            color: rgba(255, 255, 255, .8);
            margin-top: 8px;
            font-size: 15px;
        }

        .btn-white {
            background: #fff;
            color: var(--orange);
            padding: 16px 36px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
            transition: transform .15s, box-shadow .15s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
        }

        /* ── CONTACT ── */
        .contact-section {
            background: var(--dark);
        }

        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: rgba(244, 80, 10, .12);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .contact-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 4px;
        }

        .contact-val {
            font-size: 16px;
            font-weight: 500;
        }

        .contact-val a {
            color: var(--white);
            text-decoration: none;
            transition: color .2s;
        }

        .contact-val a:hover {
            color: var(--orange);
        }

        /* ── FORM ── */
        .form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form input,
        .form textarea,
        .form select {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 6px;
            padding: 14px 16px;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            resize: none;
            width: 100%;
        }

        .form input::placeholder,
        .form textarea::placeholder {
            color: var(--gray);
        }

        .form input:focus,
        .form textarea:focus,
        .form select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(244, 80, 10, .12);
        }

        .form select option {
            background: var(--dark3);
        }

        .form textarea {
            min-height: 120px;
        }

        .form-submit {
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 16px 32px;
            font-family: 'DM Sans';
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .15s;
            align-self: flex-start;
        }

        .form-submit:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .form-submit:disabled {
            opacity: .6;
            cursor: not-allowed;
            transform: none;
        }

        .form-message {
            display: none;
            padding: 14px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
        }

        .form-message.success {
            display: block;
            background: rgba(34, 197, 94, .12);
            border: 1px solid rgba(34, 197, 94, .25);
            color: #4ade80;
        }

        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, .1);
            border: 1px solid rgba(239, 68, 68, .2);
            color: #f87171;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--dark2);
            padding: 64px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, .07);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.35fr .9fr .9fr 1fr;
            gap: 32px;
            padding-bottom: 34px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 14px;
        }

        .footer-brand img {
            height: 40px;
            width: auto;
        }

        .footer-intro {
            color: rgba(255, 255, 255, .66);
            font-size: 14px;
            line-height: 1.8;
            max-width: 390px;
        }

        .footer-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .footer-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 14px;
            border-radius: 7px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: transform .16s ease, background .16s ease, border-color .16s ease;
        }

        .footer-chip.main {
            background: var(--orange);
            color: #fff;
        }

        .footer-chip.alt {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .03);
        }

        .footer-chip:hover {
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-family: 'Bebas Neue';
            font-size: 22px;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--gray);
            font-size: 14px;
            text-decoration: none;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: var(--orange-light);
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact-item {
            color: rgba(255, 255, 255, .74);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact-item span {
            display: block;
            color: var(--gray);
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .footer-contact-item a {
            color: var(--white);
            text-decoration: none;
        }

        .footer-contact-item a:hover {
            color: var(--orange-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-copy {
            color: var(--gray);
            font-size: 12px;
        }

        .footer-legal {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: var(--gray);
            text-decoration: none;
            font-size: 12px;
        }

        .footer-legal a:hover {
            color: var(--white);
        }

        /* ── WHATSAPP ── */
        .wa-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #25D366;
            color: #fff;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
            z-index: 199;
            text-decoration: none;
            transition: transform .2s, box-shadow .2s;
        }

        .wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        /* ── LIGHT BRAND OVERRIDES ── */
        .nav-links a {
            color: rgba(30, 42, 52, .74);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .hamburger span {
            background: var(--white);
        }

        .mobile-menu {
            background: #fff;
            border-left: 1px solid rgba(30, 42, 52, .12);
            box-shadow: -20px 0 60px rgba(17, 34, 51, .14);
        }

        .mobile-nav-links li {
            border-bottom: 1px solid rgba(30, 42, 52, .08);
        }

        .mobile-nav-links li:first-child,
        .mobile-footer-info {
            border-top: 1px solid rgba(30, 42, 52, .08);
        }

        .mobile-nav-links a {
            color: rgba(30, 42, 52, .82);
        }

        .mobile-nav-links .arrow {
            background: rgba(30, 42, 52, .06);
        }

        .mobile-footer-info p {
            color: rgba(30, 42, 52, .45);
        }

        .hero::before {
            background:
                radial-gradient(ellipse 60% 80% at 70% 50%, rgba(239, 90, 26, .14) 0%, transparent 72%),
                radial-gradient(ellipse 55% 70% at 20% 20%, rgba(26, 126, 168, .08) 0%, transparent 68%);
        }

        .hero-desc,
        .section-desc,
        .card p,
        .faq-a-inner,
        .reviews-summary p,
        .reviews-score span,
        .review-text,
        .review-text.is-empty,
        .reviews-empty,
        .footer-intro,
        .footer-contact-item {
            color: rgba(30, 42, 52, .72);
        }

        .btn-secondary {
            border: 1px solid rgba(30, 42, 52, .2);
            color: var(--white);
            background: rgba(255, 255, 255, .7);
        }

        .btn-secondary:hover {
            border-color: rgba(30, 42, 52, .35);
            background: rgba(255, 255, 255, .95);
        }

        .hero-image-wrap img {
            box-shadow: 0 30px 80px rgba(25, 43, 63, .16), 0 0 0 1px rgba(30, 42, 52, .08);
        }

        .stats-strip {
            border-top: 1px solid rgba(30, 42, 52, .12);
            border-bottom: 1px solid rgba(30, 42, 52, .12);
        }

        .stat {
            border-right: 1px solid rgba(30, 42, 52, .1);
        }

        .lift-specs {
            background: rgba(30, 42, 52, .1);
        }

        .spec-unit {
            color: rgba(30, 42, 52, .66);
        }

        .lift-label {
            background: rgba(255, 255, 255, .9);
            border: 1px solid rgba(239, 90, 26, .35);
            box-shadow: 0 8px 24px rgba(30, 42, 52, .12);
        }

        .card,
        .area-item,
        .review-card,
        .faq-item,
        .reviews-summary,
        .reviews-empty,
        .form input,
        .form textarea,
        .form select {
            border: 1px solid rgba(30, 42, 52, .12);
            box-shadow: 0 10px 26px rgba(24, 40, 58, .06);
        }

        .card:hover,
        .review-card:hover {
            box-shadow: 0 20px 45px rgba(24, 40, 58, .12);
        }

        .contact-val a,
        .review-author a,
        .footer-contact-item a {
            color: var(--white);
        }

        .review-read-link:hover {
            color: var(--white);
        }

        .form input::placeholder,
        .form textarea::placeholder {
            color: rgba(30, 42, 52, .45);
        }

        .footer-bottom {
            border-top: 1px solid rgba(30, 42, 52, .12);
        }

        .footer-chip.alt {
            border: 1px solid rgba(30, 42, 52, .14);
            background: rgba(255, 255, 255, .8);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 960px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .nav-inner {
                padding-top: 16px;
                padding-bottom: 16px;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .menu-overlay {
                display: block;
            }

            .hero {
                padding-top: 92px;
                padding-bottom: 44px;
            }

            .hero .container {
                grid-template-columns: 1fr;
                gap: 28px;
                min-height: auto;
            }

            .hero-badge {
                margin-bottom: 18px;
                font-size: 12px;
            }

            h1 {
                margin-bottom: 16px;
            }

            .hero-desc {
                font-size: 16px;
                line-height: 1.65;
                margin-bottom: 24px;
                max-width: 100%;
            }

            .hero-btns {
                width: 100%;
                gap: 10px;
            }

            .btn-primary,
            .btn-secondary {
                min-height: 52px;
                padding: 14px 20px;
            }

            .hero-image {
                justify-content: center;
            }

            .hero-image-wrap {
                width: 100%;
            }

            .hero-image-badge {
                bottom: 12px;
                left: 12px;
                padding: 10px 14px;
                border-radius: 10px;
            }

            .hero-image-badge .num {
                font-size: 28px;
            }

            .stats-inner {
                grid-template-columns: 1fr 1fr;
            }

            .stat {
                padding: 18px 14px;
                border-right: none;
                border-bottom: 1px solid rgba(30, 42, 52, .12);
            }

            .stat:nth-child(odd) {
                border-right: 1px solid rgba(30, 42, 52, .12);
            }

            .stat-num {
                font-size: 36px;
            }

            section {
                padding: 52px 0;
            }

            .lift-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                margin-bottom: 30px;
            }

            .services-header .btn-primary {
                width: 100%;
                justify-content: center;
            }

            .cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .card,
            .review-card {
                padding: 18px;
                min-height: auto;
            }

            .reviews-header {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-bottom: 24px;
            }

            .reviews-summary {
                padding: 18px 16px;
            }

            .reviews-score strong {
                font-size: 46px;
            }

            .reviews-link {
                width: 100%;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }

            .process-steps::before {
                display: none;
            }

            .cta-band {
                padding: 56px 0;
            }

            .cta-band .container {
                flex-direction: column;
                text-align: center;
            }

            .contact-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .contact-item {
                margin-bottom: 18px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .faq-q {
                padding: 16px 16px;
                font-size: 14px;
            }

            .faq-a-inner {
                padding: 0 16px 16px;
            }

            .form input,
            .form textarea,
            .form select {
                min-height: 48px;
            }

            .form-submit {
                width: 100%;
                justify-content: center;
                align-self: stretch;
            }

            footer {
                padding: 32px 0;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .areas-grid {
                grid-template-columns: 1fr 1fr;
            }

            .wa-btn {
                width: 54px;
                height: 54px;
                right: 16px;
                bottom: 16px;
            }
        }

        @media (max-width: 760px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 500px) {
            h1 {
                font-size: 46px;
                line-height: .92;
            }

            .hero-btns {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
                width: 100%;
                font-size: 14px;
            }

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

            .footer-bottom {
                align-items: flex-start;
            }

            .footer-legal {
                gap: 10px;
            }

            .reviews-score strong {
                font-size: 40px;
            }

            .stat-num {
                font-size: 32px;
            }

            .hero-image-badge {
                bottom: 10px;
                left: 10px;
                padding: 8px 12px;
            }

            .hero-image-badge .num {
                font-size: 24px;
            }
        }
