        :root {
            --wb-green: #1C897F;
            --wb-green-dark: #166d65;
            --wb-teal: #0d4d47;
            --wb-accent: #2ab0a4;
        }

        * {
            box-sizing: border-box;
        }

        body {
            background: #f0f2f5;
            font-family: 'Segoe UI', system-ui, sans-serif;
            overflow-x: hidden;
        }

        .navbar-wb {
            background: white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .09);
            padding: 14px 0;
            position: relative;
            z-index: 1100;
            border-top: 6px solid var(--wb-green);
        }

        .navbar-inner {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* Logo centrado en navbar */
        .navbar-logo {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .navbar-logo img {
            width: 128px;
            height: auto;
            max-width: 44vw;
        }

        /* Menú desplegable (desktop + móvil) */
        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
            border-top: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            gap: 0;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transform: translateY(-6px);
            pointer-events: none;
            padding: 0;
            z-index: 1200;
            transition: max-height .28s ease, opacity .18s ease, transform .18s ease, padding .22s ease;
        }

        .nav-links.open {
            max-height: 260px;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            padding: 10px 0;
        }

        .nav-link-wb {
            color: #333;
            font-weight: 600;
            padding: 12px 24px;
            text-decoration: none;
            transition: color .25s, background .2s;
            white-space: nowrap;
        }

        .nav-link-wb:hover {
            color: var(--wb-accent);
        }

        .btn-login {
            background: var(--wb-accent);
            color: white;
            padding: 8px 22px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-login:hover {
            background: #cc0000;
            color: white;
        }

        /* Hamburguesa (siempre visible) */
        .hamburger-btn {
            display: block;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--wb-green);
            cursor: pointer;
            padding: 8px;
            transition: color .2s ease, transform .18s ease;
        }

        .hamburger-btn:hover {
            transform: scale(1.05);
        }

        .hamburger-btn.active {
            color: #6b7280;
        }

        /* Top header (solo steps) */
        .top-header {
            max-width: 1200px;
            margin-top: 26px;
            margin-bottom: 10px;
        }

        .top-brand-progress {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            flex-wrap: nowrap;
        }

        .progress-wrap {
            flex: 1;
            min-width: 0;
            display: flex;
            justify-content: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .progress-wrap .step-indicator {
            margin-bottom: 0;
        }

        /* STEP INDICATOR */
        .step-indicator {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 0 0 auto;
        }

        .step-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #e9ecef;
            border: 3px solid #dee2e6;
            color: #6c757d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .95rem;
            transition: all .35s;
        }

        .step-circle.active {
            background: var(--wb-green);
            border-color: var(--wb-green);
            color: white;
        }

        .step-circle.done {
            background: #22c55e;
            border-color: #22c55e;
            color: white;
        }

        .step-label {
            font-size: .72rem;
            font-weight: 600;
            color: #6c757d;
            margin-top: 5px;
            text-align: center;
        }

        .step-label.active {
            color: var(--wb-green);
        }

        .step-label.done {
            color: #22c55e;
        }

        .step-connector {
            width: 80px;
            height: 3px;
            background: #dee2e6;
            margin-top: 20px;
            transition: background .35s;
            flex-shrink: 0;
        }

        .step-connector.done {
            background: #22c55e;
        }

        /* CARD */
        .form-card {
            background: white;
            border-radius: 14px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
        }

        .slide-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--wb-teal);
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f0f0;
        }

        .slide-title i {
            color: var(--wb-green);
            margin-right: 10px;
        }

        /* BOTONES */
        .btn-wb {
            background: var(--wb-green);
            color: white;
            border: none;
            padding: 9px 20px;
            font-weight: 700;
            font-size: .95rem;
            line-height: 1.2;
            border-radius: 8px;
            transition: all .22s;
        }

        .btn-wb:hover {
            background: var(--wb-green-dark);
            color: white;
        }

        .btn-prev {
            background: white;
            color: #495057;
            border: 2px solid #ced4da;
            padding: 10px 22px;
            font-weight: 600;
            border-radius: 8px;
            transition: all .2s;
        }

        .btn-prev:hover {
            background: #f8f9fa;
            border-color: #adb5bd;
        }

        /* Filas de navegación (Anterior/Siguiente/Privacidad) */
        .form-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 1.25rem;
        }

        .form-nav .btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 9px 16px;
            font-size: .92rem;
            line-height: 1.2;
            border-radius: 8px;
            min-width: 0;
            min-height: 40px;
        }

        .form-nav .btn i {
            font-size: .95em;
        }

        .btn-privacy {
            white-space: normal;
            line-height: 1.15;
        }

        /* LOCATION MAP */
        #locationMapContainer {
            height: 300px;
            width: 100%;
            border-radius: 10px;
            border: 2px solid #dee2e6;
            z-index: 0;
        }

        .radius-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 84, 35, .1);
            color: var(--wb-green);
            border-radius: 20px;
            padding: 4px 12px;
            font-weight: 700;
            font-size: .85rem;
        }

        /* SUMMARY */
        .summary-card {
            background: #f7f9ff;
            border: 1.5px solid #dce7ff;
            border-radius: 10px;
            padding: 16px;
            height: 100%;
        }

        .sum-row {
            margin-bottom: 10px;
        }

        .sum-label {
            font-size: .68rem;
            color: #9ca3af;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            display: block;
        }

        .sum-value {
            font-size: .9rem;
            color: #1e293b;
            font-weight: 600;
        }

        .sum-value.empty {
            color: #cbd5e1;
            font-style: italic;
            font-weight: 400;
            font-size: .82rem;
        }

        /* ZONES MAP */
        .map-section {
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .map-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--wb-teal);
            margin-bottom: 3px;
        }

        .map-section-subtitle {
            font-size: .8rem;
            color: #6c757d;
            margin-bottom: 12px;
        }

        /* MAPA Y HERRAMIENTAS - Nueva Barra Lateral */
        .map-wrapper {
            position: relative;
            display: flex;
            gap: 15px;
        }

        #mapContainer {
            height: 480px;
            width: 100%;
            border-radius: 10px;
            border: 2px solid #dee2e6;
            background: #fff;
            z-index: 0;
            position: relative;
            flex: 1;
        }

        /* Cursores personalizados según modo */
        #mapContainer.cursor-coverage {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%2322c55e" opacity="0.3" stroke="%2316a34a" stroke-width="2"/><text x="12" y="16" text-anchor="middle" fill="%23fff" font-size="12" font-weight="bold">+</text></svg>') 12 12, crosshair !important;
        }

        #mapContainer.cursor-coverage * {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%2322c55e" opacity="0.3" stroke="%2316a34a" stroke-width="2"/><text x="12" y="16" text-anchor="middle" fill="%23fff" font-size="12" font-weight="bold">+</text></svg>') 12 12, crosshair !important;
        }

        #mapContainer.cursor-exception {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23ef4444" opacity="0.3" stroke="%23dc2626" stroke-width="2"/><text x="12" y="16" text-anchor="middle" fill="%23fff" font-size="14" font-weight="bold">×</text></svg>') 12 12, crosshair !important;
        }

        #mapContainer.cursor-exception * {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23ef4444" opacity="0.3" stroke="%23dc2626" stroke-width="2"/><text x="12" y="16" text-anchor="middle" fill="%23fff" font-size="14" font-weight="bold">×</text></svg>') 12 12, crosshair !important;
        }

        #mapContainer.cursor-freehand {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M15 2L2 15L5 18L18 5z" fill="%237c3aed" stroke="%23fff" stroke-width="1.5"/></svg>') 2 18, crosshair !important;
        }

        #mapContainer.cursor-freehand * {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M15 2L2 15L5 18L18 5z" fill="%237c3aed" stroke="%23fff" stroke-width="1.5"/></svg>') 2 18, crosshair !important;
        }

        /* Barra lateral de herramientas */
        .map-toolbar-sidebar {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            padding: 12px 10px;
            z-index: 2000;
            position: relative;
            width: 185px;
            max-height: 480px;
            overflow-y: auto;
            flex-shrink: 0;
            pointer-events: auto;
        }

        .map-toolbar-sidebar * {
            pointer-events: auto;
        }

        .toolbar-section {
            margin-bottom: 14px;
        }

        .toolbar-section:last-child {
            margin-bottom: 0;
        }

        .toolbar-section-title {
            font-size: .65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: #64748b;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 2px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .toolbar-btn {
            width: 100%;
            padding: 8px 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: .78rem;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all .2s;
            border: 2px solid transparent;
            margin-bottom: 6px;
            cursor: pointer;
            justify-content: flex-start;
            background: transparent;
        }

        .toolbar-btn:last-child {
            margin-bottom: 0;
        }

        .toolbar-btn i {
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* Selector de Intención */
        .intent-btn {
            background: #e5e7eb !important;
            color: #6b7280 !important;
            border: 2px solid #d1d5db !important;
            transition: all .2s !important;
        }

        .intent-btn:hover {
            background: #d1d5db !important;
            border-color: #9ca3af !important;
            transform: translateX(3px);
        }

        .intent-btn i {
            transition: all .2s;
        }

        #btnIntentCover.active {
            background: #22c55e !important;
            color: #ffffff !important;
            border-color: #16a34a !important;
            box-shadow: 0 4px 14px rgba(34, 197, 94, .4) !important;
            font-weight: 700 !important;
        }

        #btnIntentCover.active i {
            color: #ffffff !important;
        }

        #btnIntentExcept.active {
            background: #ef4444 !important;
            color: #ffffff !important;
            border-color: #dc2626 !important;
            box-shadow: 0 4px 14px rgba(239, 68, 68, .4) !important;
            font-weight: 700 !important;
        }

        #btnIntentExcept.active i {
            color: #ffffff !important;
        }

        /* Herramientas de dibujo */
        .tool-btn {
            background: #fafafa;
            color: #64748b;
            border-color: #e5e7eb;
        }

        .tool-btn:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
            transform: translateX(3px);
        }

        .tool-btn.active {
            background: #7c3aed;
            color: white;
            border-color: #6d28d9;
            box-shadow: 0 4px 12px rgba(124, 58, 237, .4);
        }

        .tool-btn.disabled {
            opacity: .4;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Acciones de control */
        .control-btn {
            background: #fafafa;
            color: #64748b;
            border-color: #e5e7eb;
            font-size: .78rem;
            padding: 8px 10px;
        }

        .control-btn:hover {
            background: #fee2e2;
            color: #dc2626;
            border-color: #fecaca;
            transform: translateX(3px);
        }

        .control-btn:active {
            background: #dc2626;
            color: white;
        }

        /* Indicador de modo actual */
        .mode-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: .7rem;
            font-weight: 700;
            margin-top: 6px;
        }

        .mode-badge.coverage {
            background: rgba(34, 197, 94, .15);
            color: #16a34a;
            border: 2px solid #22c55e;
        }

        .mode-badge.exception {
            background: rgba(239, 68, 68, .15);
            color: #dc2626;
            border: 2px solid #ef4444;
        }

        .mode-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        /* Tabla de zonas interactiva */
        .zones-table-wrapper {
            background: white;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            padding: 16px;
            margin-top: 16px;
        }

        .zones-table-wrapper h6 {
            font-size: .85rem;
            font-weight: 700;
            color: #475569;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .zones-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .zone-column {
            min-height: 100px;
        }

        .zone-column-title {
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            padding: 8px 12px;
            border-radius: 6px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .zone-column-title.coverage {
            background: rgba(34, 197, 94, .1);
            color: #16a34a;
        }

        .zone-column-title.exception {
            background: rgba(239, 68, 68, .1);
            color: #dc2626;
        }

        .zone-item {
            padding: 10px 12px;
            border-radius: 6px;
            margin-bottom: 6px;
            font-size: .8rem;
            cursor: pointer;
            transition: all .2s;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .zone-item:hover {
            transform: translateX(4px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
        }

        .zone-item.coverage {
            background: rgba(34, 197, 94, .05);
            border-color: rgba(34, 197, 94, .2);
        }

        .zone-item.coverage:hover {
            background: rgba(34, 197, 94, .15);
            border-color: #22c55e;
        }

        .zone-item.coverage.highlighted {
            background: rgba(34, 197, 94, .3);
            border-color: #16a34a;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
        }

        .zone-item.exception {
            background: rgba(239, 68, 68, .05);
            border-color: rgba(239, 68, 68, .2);
        }

        .zone-item.exception:hover {
            background: rgba(239, 68, 68, .15);
            border-color: #ef4444;
        }

        .zone-item.exception.highlighted {
            background: rgba(239, 68, 68, .3);
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, .2);
        }

        .zone-item i {
            font-size: .65rem;
        }

        .zone-empty {
            text-align: center;
            padding: 20px;
            color: #94a3b8;
            font-size: .8rem;
            font-style: italic;
        }

        #freehandHint {
            display: none;
        }

        .canvas-stats {
            display: flex;
            gap: 18px;
            margin-top: 12px;
            font-size: .82rem;
            color: #6c757d;
            font-weight: 600;
            padding: 10px 14px;
            background: #f8fafc;
            border-radius: 8px;
        }

        .canvas-legend {
            display: none;
        }

        .legend-swatch {
            width: 24px;
            height: 12px;
            border-radius: 3px;
            display: inline-block;
        }

        /* Mensaje de validación */
        .validation-alert {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
            z-index: 2000;
            display: none;
            border: 3px solid #ef4444;
        }

        .validation-alert.show {
            display: block;
            animation: shake .5s;
        }

        @keyframes shake {

            0%,
            100% {
                transform: translate(-50%, -50%);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: translate(-52%, -50%);
            }

            20%,
            40%,
            60%,
            80% {
                transform: translate(-48%, -50%);
            }
        }

        /* METHOD */
        .method-btn {
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            border: 2px solid #dee2e6;
            background: white;
            transition: all .22s;
        }

        .method-btn:hover {
            border-color: var(--wb-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
        }

        .method-btn i {
            font-size: 1.6rem;
            margin-bottom: 6px;
            display: block;
        }

        /* CP */
        .cp-spinner {
            display: none;
        }

        .cp-spinner.active {
            display: inline-block;
        }

        /* AVISO + JSON */
        .aviso-privacidad {
            background: white;
            padding: 24px;
            border-radius: 10px;
            margin-top: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
            display: none;
        }

        .json-panel {
            background: white;
            padding: 24px;
            border-radius: 10px;
            margin-top: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
            display: none;
        }

        .json-output {
            background: #1e293b;
            color: #e2e8f0;
            border-radius: 8px;
            padding: 18px;
            font-family: 'Courier New', monospace;
            font-size: .76rem;
            line-height: 1.7;
            max-height: 480px;
            overflow: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* FOOTER */
        .footer-wb {
            background: #1a1a3e;
            color: white;
            padding: 56px 0 28px;
            margin-top: 80px;
        }

        .footer-logo {
            width: 210px;
            margin-bottom: 28px;
        }

        .footer-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 22px;
            text-transform: uppercase;
        }

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

        .footer-contact-item i {
            color: var(--wb-accent);
            margin-right: 13px;
            font-size: 1.05rem;
            min-width: 20px;
            margin-top: 2px;
        }

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

        .footer-contact-item a:hover {
            color: var(--wb-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 16px;
            margin-top: 32px;
            text-align: center;
            font-size: .85rem;
        }

        .scroll-top-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: var(--wb-accent);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
            transition: all .3s;
            z-index: 1050;
            border: none;
        }

        .scroll-top-btn:hover {
            background: #cc0000;
            transform: translateY(-4px);
        }

        /* === TABLET (max-width: 991px) === */
        @media(max-width:991.98px) {
            .map-wrapper {
                flex-direction: column;
            }

            .map-toolbar-sidebar {
                width: 100%;
                max-height: none;
                overflow-y: visible;
                margin-bottom: 15px;
            }

            #mapContainer {
                height: 350px;
            }

            .canvas-legend {
                flex-direction: column;
                gap: 8px;
            }

            .form-card {
                padding: 20px 16px;
            }

            #locationMapContainer {
                height: 240px;
            }

            .step-connector {
                width: 44px;
            }

            .zones-split {
                grid-template-columns: 1fr;
            }

            .top-header {
                max-width: 680px;
            }
        }

        /* === MOBILE (max-width: 767px) === */
        @media(max-width:767.98px) {

            /* Navbar */
            .navbar-logo img {
                width: 112px;
            }

            .nav-link-wb {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .navbar-inner {
                flex-wrap: wrap;
            }

            .btn-login {
                padding: 6px 16px;
                font-size: .85rem;
            }

            /* Top header */
            .top-header {
                margin-top: 18px;
            }

            .progress-wrap {
                justify-content: center;
                width: 100%;
            }

            .progress-wrap .step-indicator {
                justify-content: center;
            }

            /* Steps */
            .step-circle {
                width: 36px;
                height: 36px;
                font-size: .85rem;
            }

            .step-connector {
                width: 36px;
            }

            .step-label {
                font-size: .65rem;
            }

            /* Form card */
            .form-card {
                padding: 18px 14px;
                border-radius: 10px;
            }

            .slide-title {
                font-size: 1.05rem;
                margin-bottom: 16px;
                padding-bottom: 10px;
            }

            .slide-title i {
                margin-right: 6px;
            }

            /* Botones */
            .btn-wb {
                padding: 10px 20px;
                font-size: .88rem;
            }

            .btn-prev {
                padding: 10px 16px;
                font-size: .88rem;
            }

            .d-flex.justify-content-end {
                padding-top: 4px;
            }

            .form-nav {
                gap: 10px;
                justify-content: space-between;
            }

            .form-nav .btn {
                flex: 1;
            }

            /* Ubicación */
            #locationMapContainer {
                height: 220px;
            }

            /* Summary */
            .summary-card {
                padding: 14px 12px;
            }

            .sum-label {
                font-size: .62rem;
            }

            .sum-value {
                font-size: .82rem;
            }

            /* Aviso + JSON */
            .aviso-privacidad {
                padding: 16px;
            }

            .json-output {
                font-size: .68rem;
                padding: 12px;
            }

            /* Footer */
            .footer-wb {
                padding: 36px 0 20px;
                margin-top: 50px;
            }

            .footer-logo {
                width: 160px;
            }

            .footer-title {
                font-size: .95rem;
            }

            .footer-contact-item {
                font-size: .82rem;
            }

            .footer-contact-item a {
                word-break: break-all;
            }

            .footer-bottom {
                font-size: .75rem;
            }

            /* Scroll top btn */
            .scroll-top-btn {
                width: 38px;
                height: 38px;
                bottom: 16px;
                right: 16px;
            }

            /* Container max-width override */
            .container {
                padding-left: 12px;
                padding-right: 12px;
            }
        }

        /* === SMALL MOBILE (max-width: 575px) === */
        @media(max-width:575.98px) {
            .step-circle {
                width: 32px;
                height: 32px;
                font-size: .78rem;
                border-width: 2px;
            }

            .step-connector {
                width: 28px;
                height: 2px;
                margin-top: 16px;
            }

            .step-label {
                font-size: .6rem;
            }

            .form-card {
                padding: 16px 12px;
                border-radius: 8px;
                margin: 0 -4px;
            }

            .slide-title {
                font-size: .95rem;
                margin-bottom: 14px;
            }

            .form-label {
                font-size: .82rem;
            }

            .form-control {
                font-size: .85rem;
                padding: 8px 10px;
            }

            .btn-wb {
                padding: 9px 16px;
                font-size: .82rem;
                justify-content: center;
            }

            .btn-prev {
                padding: 9px 16px;
                font-size: .82rem;
                width: auto;
            }

            .d-flex.justify-content-between.mt-4 {
                flex-wrap: wrap;
                gap: 10px;
            }

            .d-flex.justify-content-end .btn-wb {
                width: 100%;
                text-align: center;
            }

            .form-nav {
                gap: 10px;
            }

            .form-nav .btn {
                flex: 1;
                padding: 9px 12px;
                font-size: .82rem;
            }

            .method-btn {
                padding: 12px;
            }

            .method-btn i {
                font-size: 1.2rem;
            }

            #locationMapContainer {
                height: 200px;
            }

            .summary-card {
                padding: 12px 10px;
            }

            .sum-label {
                font-size: .58rem;
            }

            .sum-value {
                font-size: .78rem;
            }

            .alert {
                font-size: .8rem;
                padding: 12px;
            }

            .btn-dark.btn-lg {
                font-size: .82rem;
                padding: 10px 16px;
            }

            .radius-badge {
                font-size: .75rem;
                padding: 3px 8px;
            }

            .footer-contact-item {
                flex-direction: column;
                gap: 4px;
            }

            .footer-contact-item i {
                margin-right: 0;
                margin-bottom: 2px;
            }
        }
