/**
 * GeoStatus Feature & Landing Pages Design System
 * File: /css/features.css
 *
 * Reusable stylesheet for feature landing pages.
 * Includes:
 * - Hero section, Device Mockups (Laptop & Smartphone with Dynamic Island)
 * - Interactive feature widgets (Attachments/Sweeper, Fuel, Multitracking, Geofences, Analytics)
 * - Telemetry HUD, live status badges, filter buttons, legend components
 * - Mobile responsive adaptations (max-width: 768px)
 */

html,
        body {
            overflow-x: hidden;
        }

        @media screen and (max-width: 768px) {
            .columns {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        @media screen and (max-width: 768px) {
            .column.is-9,
            .column.is-7,
            .column.is-6,
            .column.is-4,
            .column.is-3 {
                width: 100% !important;
            }

            .hero-section {
                margin-top: 0 !important;
            }
        }

        /* Mobile Menu Refinement */
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                background-color: #106ebe !important;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
                padding: 1rem 1.5rem !important;
                position: absolute;
                width: 100%;
                left: 0;
                z-index: 100;
            }

            .navbar-item,
            .navbar-link {
                color: white !important;
                font-size: 1.1rem;
                text-align: left !important;
                justify-content: flex-start !important;
                padding: 0.75rem 1rem !important;
            }

            .navbar-link:not(.is-arrowless)::after {
                border-color: white !important;
            }

            .navbar-dropdown {
                background-color: rgba(255, 255, 255, 0.1) !important;
                border: none !important;
                margin: 0.5rem 0 1rem 0 !important;
                border-radius: 8px !important;
                padding: 0.5rem !important;
            }

            .navbar-dropdown .navbar-item {
                color: white !important;
                background-color: transparent !important;
                padding: 0.5rem 1rem !important;
                border-radius: 4px;
            }

            .navbar-dropdown .navbar-item[href="/ru/"] {
                background-color: rgba(255, 255, 255, 0.2) !important;
                font-weight: bold;
            }

            .lang-switcher-container .navbar-link {
                display: none !important;
            }

            .lang-switcher-container .navbar-dropdown {
                display: flex !important;
                flex-direction: row;
                justify-content: center;
                background-color: transparent !important;
                padding: 0 !important;
                margin: 1rem 0 0 0 !important;
            }

            .lang-switcher-container .navbar-dropdown .navbar-item {
                flex: 0 0 auto;
                margin: 0 0.25rem;
                border: 1px solid rgba(255, 255, 255, 0.3) !important;
            }

            .lang-switcher-container .navbar-dropdown .navbar-item[href="/ru/features/monitoring_tehniki/"] {
                background-color: white !important;
                color: #106ebe !important;
            }

            .navbar-burger span {
                background-color: white !important;
            }
        }

        /* Shimmer Button & Brand CTA */
        .geo-button-shimmer {
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }

        .geo-button-shimmer:hover {
            transform: translateY(-2px) scale(1.03) !important;
            box-shadow: 0 8px 20px rgba(16, 110, 190, 0.3) !important;
        }

        .geo-button-shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.3) 50%,
                    rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            animation: shimmerEffect 4s infinite;
        }

        @keyframes shimmerEffect {
            0% {
                left: -150%;
            }

            30% {
                left: 150%;
            }

            100% {
                left: 150%;
            }
        }

        .geo-cta-gradient {
            background: linear-gradient(135deg, #0a5ba8 0%, #106ebe 50%, #1e88e5 100%) !important;
            position: relative;
            overflow: hidden;
        }

        .geo-cta-decor-1 {
            position: absolute;
            top: -10%;
            left: -5%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .geo-cta-decor-2 {
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Feature Sections */
        .feature-section {
            padding: 6rem 1.5rem;
        }

        .feature-section:nth-of-type(even) {
            background-color: #f8f9fa;
        }

        .feature-section:nth-of-type(odd) {
            background-color: #ffffff;
        }

        .feature-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(16, 110, 190, 0.08);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .feature-image-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(16, 110, 190, 0.15);
        }

        .feature-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .feature-content {
            padding: 2rem 0;
        }

        @media screen and (min-width: 1024px) {
            .feature-content.pad-left {
                padding-left: 3rem;
            }

            .feature-content.pad-right {
                padding-right: 3rem;
            }
        }

        .feature-title {
            font-weight: 900;
            font-size: 2.2rem;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, #0a5ba8 0%, #106ebe 50%, #1e88e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            line-height: 1.2;
        }

        .feature-subtitle {
            font-size: 1.2rem;
            color: #4a4a4a;
            margin-bottom: 2rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .feature-list {
            margin-top: 1.5rem;
        }

        .feature-list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }

        .feature-list-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(16, 110, 190, 0.1);
            color: #106ebe;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            margin-top: 3px;
            font-size: 0.9rem;
        }

        .feature-list-text {
            font-size: 1.05rem;
            color: #363636;
            line-height: 1.55;
        }

        .feature-list-text strong {
            color: #106ebe;
            font-weight: 700;
        }

        /* Sensor Tag Chips */
        .sensor-tag-item {
            display: inline-flex;
            align-items: center;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 4px 10px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #334155;
            margin: 3px 4px 3px 0;
            transition: all 0.2s ease;
        }

        .sensor-tag-item:hover {
            border-color: #106ebe;
            background: #ffffff;
            transform: translateY(-1px);
        }

        .sensor-tag-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
            flex-shrink: 0;
        }

        /* ============================================================
           FEATURE SECTION 1: АТТАЧМЕНТЫ И ЦВЕТНЫЕ ТРЕКИ
           ============================================================ */
        .attachment-section {
            padding: 4.5rem 1.5rem 5rem 1.5rem;
            background: #ffffff;
            position: relative;
        }

        .attachment-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 110, 190, 0.08);
            color: #106ebe;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 0.85rem;
            border: 1px solid rgba(16, 110, 190, 0.18);
        }

        /* Feature Section Typography Spacing Fix */
        .feature-section .title:not(:last-child) {
            margin-bottom: 1rem;
        }

        .feature-section .subtitle,
        .feature-section .title + .subtitle,
        .attachment-main-subtitle,
        .fuel-main-subtitle,
        .multitrack-main-subtitle,
        .geofence-main-subtitle,
        .analytics-main-subtitle,
        .onprem-main-subtitle {
            margin-top: 0 !important;
        }

        .attachment-col-header {
            margin-bottom: 1.5rem;
        }

        .attachment-col-header .attachment-badge {
            margin-bottom: 0.75rem;
        }

        .attachment-main-title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 0.65rem !important;
            text-align: left;
            text-wrap: balance;
        }

        .attachment-main-subtitle {
            font-size: 0.98rem;
            color: #475569;
            line-height: 1.55;
            margin-bottom: 0 !important;
            text-align: left;
            text-wrap: pretty;
        }

        /* 3 Semantic Cards */
        .attachment-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1.15rem 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .attachment-card:hover {
            border-color: #106ebe;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.1);
            transform: translateY(-2px);
        }

        .attachment-card.is-active {
            border-color: #106ebe;
            background: #f8fbff;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.12);
        }

        .attachment-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .attachment-card-content {
            flex: 1;
        }

        .attachment-card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.45rem;
            line-height: 1.35;
        }

        .attachment-card-text {
            font-size: 0.94rem;
            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        
        /* Lightweight SVG Icons (replaced FontAwesome all.js) */
        .svg-icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            vertical-align: -0.125em;
            fill: currentColor;
            flex-shrink: 0;
        }
        .svg-icon.font-xs { font-size: 0.75rem; }
        .svg-icon.text-emerald { color: #10b981; }
        .svg-icon.text-blue { color: #0284c7; }
        .svg-icon.mr-1 { margin-right: 0.25rem; }

        /* Right Column Map Widget in Laptop Mockup */
        .attachment-laptop-viewport {
            aspect-ratio: 16 / 10.2 !important;
            display: flex;
            flex-direction: column;
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }

        .attachment-laptop-viewport .attachment-map-container {
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            width: 100% !important;
            height: 100% !important;
            margin: 0 !important;
            display: flex;
            flex-direction: column;
            background: transparent !important;
        }

        .attachment-laptop-viewport .attachment-map-header {
            padding: 0.65rem 1rem !important;
            flex-shrink: 0;
        }

        .attachment-laptop-viewport .attachment-map-viewport {
            flex: 1;
            height: 100% !important;
            min-height: 0;
            position: relative;
            overflow: hidden;
        }

        .attachment-laptop-viewport .attachment-map-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .attachment-laptop-viewport .attachment-map-legend {
            background: rgba(15, 23, 42, 0.95) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
            color: #94a3b8 !important;
            padding: 7px 14px !important;
            font-size: 0.78rem !important;
            flex-shrink: 0;
        }

        .attachment-laptop-viewport .attachment-map-legend strong {
            color: #e2e8f0;
        }

        .attachment-laptop-viewport .attachment-legend-guarantee {
            color: #38bdf8;
        }

        .attachment-map-container {
            background: #ffffff;
            border-radius: 18px;
            border: 1px solid #cbd5e1;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .attachment-map-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            padding: 0.85rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #334155;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .attachment-map-vehicle-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.88rem;
        }

        .attachment-map-filters {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .map-filter-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #cbd5e1;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            outline: none;
        }

        .map-filter-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .map-filter-btn.active {
            background: #106ebe;
            border-color: #38bdf8;
            color: #ffffff;
            box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
        }

        .attachment-map-viewport {
            position: relative;
            width: 100%;
            height: 480px;
            background: #f1f5f9;
            overflow: hidden;
        }

        .attachment-map-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Floating HUD Badge */
        .attachment-status-badge {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(8px);
            color: #ffffff;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
            z-index: 20;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .attachment-status-badge.is-cleaning {
            background: rgba(6, 78, 59, 0.94);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 1.5px #10b981;
        }

        .attachment-status-badge.is-transit {
            background: rgba(15, 23, 42, 0.92);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(148, 163, 184, 0.4);
        }

        .attachment-filter-notice {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(16, 185, 129, 0.95);
            color: #ffffff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            z-index: 25;
            white-space: nowrap;
        }

        /* Bottom Legend Bar inside Map */
        .attachment-map-legend {
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: #64748b;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .legend-line-gray {
            width: 24px;
            height: 5px;
            background: #94a3b8;
            border-radius: 3px;
        }

        .legend-line-green {
            width: 24px;
            height: 5px;
            background: #10b981;
            border-radius: 3px;
            box-shadow: 0 0 6px #10b981;
        }

        .attachment-legend-tracks {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .attachment-legend-guarantee {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: #106ebe;
        }

        /* ============================================================
           FEATURE SECTION 2: FUEL MONITORING SECTION STYLES
           ============================================================ */
        .fuel-section {
            background: #f8fafc;
            padding: 4.5rem 1.5rem 5rem 1.5rem;
            position: relative;
        }

        .fuel-col-header {
            margin-bottom: 1.5rem;
        }

        .fuel-main-title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 0.65rem !important;
            text-align: left;
            text-wrap: balance;
        }

        .fuel-main-subtitle {
            font-size: 0.98rem;
            color: #475569;
            line-height: 1.55;
            margin-bottom: 0 !important;
            text-align: left;
            text-wrap: pretty;
        }

        /* 3 Semantic Fuel Cards */
        .fuel-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1.15rem 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .fuel-card:hover {
            border-color: #106ebe;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.1);
            transform: translateY(-2px);
        }

        .fuel-card.is-active {
            border-color: #106ebe;
            background: #f8fbff;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.12);
        }

        .fuel-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .fuel-card-content {
            flex: 1;
        }

        .fuel-card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.45rem;
            line-height: 1.35;
        }

        .fuel-card-text {
            font-size: 0.94rem;
            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        /* Right Column: Telemetry Fuel Chart Widget in Laptop Mockup */
        .fuel-laptop-viewport {
            aspect-ratio: 16 / 10.2 !important;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .fuel-laptop-viewport .fuel-widget-container {
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            width: 100% !important;
            height: 100% !important;
            margin: 0 !important;
            display: flex;
            flex-direction: column;
            background: transparent !important;
        }

        .fuel-laptop-viewport .fuel-widget-header {
            padding: 0.65rem 1rem !important;
            flex-shrink: 0;
        }

        .fuel-laptop-viewport .fuel-kpi-row {
            padding: 8px 14px !important;
            flex-shrink: 0;
        }

        .fuel-laptop-viewport .fuel-chart-viewport {
            flex: 1;
            height: 100% !important;
            min-height: 0;
            position: relative;
            overflow: hidden;
        }

        .fuel-laptop-viewport .fuel-chart-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .fuel-laptop-viewport .fuel-widget-footer {
            padding: 7px 14px !important;
            font-size: 0.78rem !important;
            flex-shrink: 0;
        }

        .fuel-widget-container {
            background: #ffffff;
            border-radius: 18px;
            border: 1px solid #cbd5e1;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .fuel-widget-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            padding: 0.85rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #334155;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .fuel-widget-vehicle-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.88rem;
        }

        .fuel-widget-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #cbd5e1;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.80rem;
            font-weight: 600;
        }

        .fuel-kpi-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: #ffffff;
            border-bottom: 1px solid #f1f5f9;
            gap: 10px;
        }

        .fuel-kpi-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .fuel-kpi-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .fuel-kpi-value {
            font-size: 1.05rem;
            font-weight: 800;
        }

        .fuel-kpi-sub {
            font-size: 0.78rem;
            font-weight: 600;
            color: #64748b;
        }

        .text-slate { color: #0f172a; }
        .text-emerald { color: #059669; }
        .text-rose { color: #dc2626; }
        .text-blue { color: #106ebe; }
        .font-xs { font-size: 0.75rem; vertical-align: middle; }

        .fuel-chart-viewport {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 680 / 340;
            background: #ffffff;
            overflow: hidden;
        }

        .fuel-chart-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .fuel-widget-footer {
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: #475569;
        }

        .fuel-footer-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ============================================================
           Feature Section 3: Multitracking Section & Laptop Mockup
           ============================================================ */
        .multitrack-section {
            background: #ffffff;
            padding: 4.5rem 1.5rem 5rem 1.5rem;
            position: relative;
        }

        .multitrack-col-header {
            margin-bottom: 1.5rem;
        }

        .multitrack-main-title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 0.65rem !important;
            text-align: left;
            text-wrap: balance;
        }

        .multitrack-main-subtitle {
            font-size: 0.98rem;
            color: #475569;
            line-height: 1.55;
            margin-bottom: 0 !important;
            text-align: left;
            text-wrap: pretty;
        }

        .multitrack-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1.15rem 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .multitrack-card:hover {
            border-color: #106ebe;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.1);
            transform: translateY(-2px);
        }

        .multitrack-card.is-active {
            border-color: #106ebe;
            background: #f8fbff;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.12);
        }

        .multitrack-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .multitrack-card-content {
            flex: 1;
        }

        .multitrack-card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.45rem;
            line-height: 1.35;
        }

        .multitrack-card-text {
            font-size: 0.94rem;
            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        /* Laptop Mockup (Synchronized with Hero Laptop Dimensions & Styling) */
        .laptop-mockup-wrapper {
            position: relative;
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            user-select: none;
        }

        .laptop-screen-case {
            background: #0f172a;
            border-radius: 18px 18px 0 0;
            padding: 12px 12px 0 12px;
            box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.45), inset 0 0 0 1px #334155;
            position: relative;
            border: 1px solid #1e293b;
            border-bottom: none;
        }

        .laptop-camera {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 7px;
            height: 7px;
            background: #1e293b;
            border-radius: 50%;
            box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
            margin: 0;
        }

        .laptop-screen-viewport {
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            position: relative;
            background: #0f172a;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
            aspect-ratio: 16 / 10.2;
        }

        .laptop-screen-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .laptop-mockup-wrapper:hover .laptop-screen-img {
            transform: scale(1.02);
        }

        .laptop-screen-glare {
            display: none !important;
        }

        .laptop-base-case {
            position: relative;
            width: 100%;
        }

        .laptop-hinge {
            display: none;
        }

        .laptop-deck {
            height: 20px;
            background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e1 30%, #94a3b8 70%, #64748b 100%);
            border-radius: 0 0 20px 20px;
            position: relative;
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .laptop-opener-notch {
            width: 90px;
            height: 6px;
            background: #475569;
            border-radius: 0 0 8px 8px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .laptop-mockup-wrapper::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 5%;
            width: 90%;
            height: 35px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .multitrack-floating-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            padding: 0.5rem 1rem;
            font-size: 0.82rem;
            font-weight: 700;
            color: #0f172a;
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 10;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .laptop-mockup-wrapper:hover .multitrack-floating-badge {
            transform: translateY(-2px);
        }

        .badge-top-right {
            top: -14px;
            right: -10px;
        }

        .badge-bottom-left {
            bottom: 6px;
            left: -10px;
        }

        /* ============================================================
           Feature Section 4: Geofence Monitoring Styles
           ============================================================ */
        .geofence-section {
            background: #f8fafc;
            padding: 4.5rem 1.5rem 5rem 1.5rem;
            position: relative;
        }

        .geofence-col-header {
            margin-bottom: 1.5rem;
        }

        .geofence-main-title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 0.65rem !important;
            text-align: left;
            text-wrap: balance;
        }

        .geofence-main-subtitle {
            font-size: 0.98rem;
            color: #475569;
            line-height: 1.55;
            margin-bottom: 0 !important;
            text-align: left;
            text-wrap: pretty;
        }

        .geofence-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1.15rem 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .geofence-card:hover {
            border-color: #106ebe;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.1);
            transform: translateY(-2px);
        }

        .geofence-card.is-active {
            border-color: #106ebe;
            background: #f8fbff;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.12);
        }

        .geofence-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .geofence-card-content {
            flex: 1;
        }

        .geofence-card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.45rem;
            line-height: 1.35;
        }

        .geofence-card-text {
            font-size: 0.94rem;
            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        /* ============================================================
           Feature Section 5: Analytics & Reports Styles
           ============================================================ */
        .analytics-section {
            background: #ffffff;
            padding: 4.5rem 1.5rem 5rem 1.5rem;
            position: relative;
        }

        .analytics-col-header {
            margin-bottom: 1.5rem;
        }

        .analytics-main-title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 0.65rem !important;
            text-align: left;
            text-wrap: balance;
        }

        .analytics-main-subtitle {
            font-size: 0.98rem;
            color: #475569;
            line-height: 1.55;
            margin-bottom: 0 !important;
            text-align: left;
            text-wrap: pretty;
        }

        .analytics-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1.15rem 1.25rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .analytics-card:hover {
            border-color: #106ebe;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.1);
            transform: translateY(-2px);
        }

        .analytics-card.is-active {
            border-color: #106ebe;
            background: #f8fbff;
            box-shadow: 0 10px 24px rgba(16, 110, 190, 0.12);
        }

        .analytics-card-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .analytics-card-content {
            flex: 1;
        }

        .analytics-card-title {
            font-size: 1.12rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.45rem;
            line-height: 1.35;
        }

        .analytics-card-text {
            font-size: 0.94rem;
            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        /* ============================================================
           DE-SLOP OVERRIDE: Clean card design for all 5 sections
           Kills pastel icon squares, removes card shadows/backgrounds
           ============================================================ */
        .attachment-card-icon,
        .fuel-card-icon,
        .multitrack-card-icon,
        .geofence-card-icon,
        .analytics-card-icon,
        .feature-card-icon {
            display: none !important;
        }

        .attachment-card,
        .fuel-card,
        .multitrack-card,
        .geofence-card,
        .analytics-card,
        .feature-card {
            background: transparent;
            border: none;
            border-left: 3px solid transparent;
            border-radius: 0;
            box-shadow: none;
            padding: 1.05rem 0 1.05rem 1.25rem;
            margin-bottom: 0.65rem;
            gap: 0;
        }

        .attachment-card:hover,
        .fuel-card:hover,
        .multitrack-card:hover,
        .geofence-card:hover,
        .analytics-card:hover,
        .feature-card:hover {
            border-color: transparent;
            border-left-color: #cbd5e1;
            box-shadow: none;
            transform: none;
            background: transparent;
        }

        .attachment-card.is-active,
        .fuel-card.is-active,
        .multitrack-card.is-active,
        .geofence-card.is-active,
        .analytics-card.is-active,
        .feature-card.is-active {
            border-color: transparent;
            border-left-color: #106ebe;
            background: transparent;
            box-shadow: none;
        }

        .attachment-card.is-active .attachment-card-title,
        .fuel-card.is-active .fuel-card-title,
        .multitrack-card.is-active .multitrack-card-title,
        .geofence-card.is-active .geofence-card-title,
        .analytics-card.is-active .analytics-card-title,
        .feature-card.is-active .feature-card-title {
            color: #106ebe;
        }

        /* ============================================================
           Feature Section 6: Integration, Custom Dev & On-Premise
           ============================================================ */
        .onprem-section {
            background: #f8fafc;
            padding: 5rem 1.5rem 5.5rem 1.5rem;
            position: relative;
        }

        .onprem-eyebrow {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: #106ebe;
            background: rgba(16, 110, 190, 0.08);
            border: 1px solid rgba(16, 110, 190, 0.2);
            padding: 5px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 1.15rem;
        }

        .onprem-main-title {
            font-size: 2.15rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.025em;
            color: #0f172a;
            max-width: 860px;
            margin-left: auto !important;
            margin-right: auto !important;
            margin-bottom: 0.75rem !important;
            text-wrap: balance;
        }

        .onprem-main-subtitle {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.6;
            margin-top: 0 !important;
            margin-bottom: 2.75rem !important;
            max-width: 680px;
            margin-left: auto !important;
            margin-right: auto !important;
            text-wrap: balance;
        }

        /* 3-Column Grid Cards */
        .onprem-card-grid {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.25rem 1.75rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .onprem-card-grid:hover {
            transform: translateY(-4px);
            border-color: #cbd5e1;
            box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
        }

        .onprem-tag {
            display: inline-block;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 4px 10px;
            border-radius: 6px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            line-height: 1.4;
        }

        .tag-api {
            background: rgba(14, 165, 233, 0.1);
            color: #0284c7;
            border: 1px solid rgba(14, 165, 233, 0.25);
        }

        .tag-dev {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
            border: 1px solid rgba(245, 158, 11, 0.25);
        }

        .tag-onprem {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            border: 1px solid rgba(16, 185, 129, 0.25);
        }

        .onprem-card-grid-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.35;
            letter-spacing: -0.015em;
        }

        .onprem-card-grid-text {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.65;
            margin: 0;
        }

        .onprem-cta-btn {
            background: #106ebe !important;
            color: #ffffff !important;
            font-weight: 600 !important;
            border-radius: 12px !important;
            padding: 1.05rem 2.25rem !important;
            font-size: 1.02rem !important;
            letter-spacing: -0.01em !important;
            box-shadow: 0 8px 22px rgba(16, 110, 190, 0.28) !important;
            transition: all 0.25s ease !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            white-space: normal !important;
            word-break: normal !important;
            overflow-wrap: break-word !important;
            height: auto !important;
            line-height: 1.4 !important;
            text-align: center !important;
            max-width: 100% !important;
        }

        .onprem-cta-btn:hover {
            background: #0b5aa2 !important;
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(16, 110, 190, 0.38) !important;
        }

        /* ============================================================
           SECTION 7: РЕЗУЛЬТАТЫ ВНЕДРЕНИЯ (ROI Stats)
           ============================================================ */
        .roi-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 5.5rem 1.5rem 6rem 1.5rem;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: #ffffff;
            text-align: center;
        }

        .roi-main-title {
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.025em;
            color: #ffffff !important;
            max-width: 860px;
            margin-left: auto !important;
            margin-right: auto !important;
            margin-bottom: 0.75rem !important;
            text-wrap: balance;
        }

        .roi-main-subtitle {
            font-size: 1.05rem;
            font-weight: 400;
            color: #94a3b8 !important;
            line-height: 1.6;
            letter-spacing: -0.01em;
            margin-top: 0 !important;
            margin-bottom: 3.75rem !important;
            max-width: 640px;
            margin-left: auto !important;
            margin-right: auto !important;
            text-wrap: balance;
        }

        .roi-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.5rem 1rem;
        }

        .roi-stat-number {
            font-size: clamp(2.75rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.035em;
            color: #38bdf8;
            margin-bottom: 0.85rem;
            font-variant-numeric: tabular-nums;
        }

        .roi-stat-label {
            font-size: 1.08rem;
            font-weight: 500;
            color: #e2e8f0;
            line-height: 1.5;
            letter-spacing: -0.01em;
            max-width: 260px;
            margin: 0 auto;
            text-wrap: balance;
        }

        /* FAQ Section (Matching index.html) */
        .geo-faq-section {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 6rem 1.5rem;
            position: relative;
        }

        .geo-faq-title {
            color: #106ebe;
            font-size: 2.25rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem !important;
            letter-spacing: -0.5px;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-accordion-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-accordion-item:hover {
            transform: translateY(-2px);
            border-color: rgba(16, 110, 190, 0.3);
        }

        .faq-accordion-item.is-active {
            border-color: rgba(16, 110, 190, 0.5);
        }

        .faq-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 1.75rem;
            cursor: pointer;
            user-select: none;
            background: transparent;
            transition: background-color 0.2s ease;
        }

        .faq-accordion-header:hover {
            background-color: rgba(16, 110, 190, 0.02);
        }

        .faq-question {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d3748;
            line-height: 1.4;
            padding-right: 1.5rem;
            margin: 0 !important;
            transition: color 0.2s ease;
        }

        .faq-accordion-item.is-active .faq-question {
            color: #106ebe;
        }

        .faq-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            color: #94a3b8;
            font-size: 0.95rem;
            flex-shrink: 0;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
        }

        .faq-accordion-item:hover .faq-icon {
            color: #106ebe;
        }

        .faq-accordion-item.is-active .faq-icon {
            color: #106ebe;
            transform: rotate(180deg);
        }

        .faq-accordion-body {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        }

        .faq-accordion-item.is-active .faq-accordion-body {
            opacity: 1;
        }

        .faq-accordion-content {
            padding: 0 1.75rem 1.75rem 1.75rem;
            font-size: 1.05rem;
            color: #4a5568;
            line-height: 1.6;
            border-top: 1px solid rgba(16, 110, 190, 0.04);
            padding-top: 1.25rem;
        }

        @media screen and (max-width: 768px) {
            /* Hero Section */
            .hero.geo-hero-gradient-full {
                height: auto !important;
                min-height: auto !important;
                padding: 5.5rem 1rem 4rem 1rem !important;
            }

            .columns.hero-section {
                margin-top: 0 !important;
            }

            .hero-section .columns.is-vcentered {
                min-height: auto !important;
                height: auto !important;
            }

            .geo-title-m1 {
                font-size: 1.55rem !important;
                line-height: 1.25 !important;
                text-align: center !important;
                margin-bottom: 0.5rem !important;
            }

            .geo-title-l1 {
                font-size: 0.92rem !important;
                line-height: 1.45 !important;
                text-align: center !important;
                margin-top: 10px !important;
            }

            /* Hide Desktop Laptop on Mobile */
            .hero-laptop-wrap {
                display: none !important;
            }

            /* Show Smartphone Mockup on Mobile */
            .hero-phone-wrap {
                display: block !important;
                width: 100% !important;
                max-width: 330px !important;
                margin: 1.25rem auto 0 auto !important;
            }

            /* Global Feature Section Title & Subtitle Mobile Spacing */
            .feature-section .title:not(:last-child) {
                margin-bottom: 0.85rem !important;
            }

            .feature-section .subtitle,
            .feature-section .title + .subtitle,
            .attachment-main-subtitle,
            .fuel-main-subtitle,
            .multitrack-main-subtitle,
            .geofence-main-subtitle,
            .analytics-main-subtitle,
            .onprem-main-subtitle {
                margin-top: 0 !important;
            }

            /* Feature Section 1: Attachment / Sweeper Section Mobile Adaptations */
            .attachment-section {
                padding: 3.5rem 1rem 3.5rem 1rem !important;
            }

            .attachment-col-header {
                margin-bottom: 1.25rem !important;
            }

            .attachment-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: left !important;
            }

            .attachment-main-subtitle {
                font-size: 0.92rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                text-align: left !important;
            }

            /* Smartphone Mockup on Mobile for Attachment Section */
            .attachment-phone-wrap {
                display: block !important;
                width: 100% !important;
                max-width: 330px !important;
                margin: 1.25rem auto 0 auto !important;
            }

            .phone-map-filter-bar {
                display: flex;
                gap: 6px;
                padding: 8px 10px;
                background: #0b1523;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .phone-filter-btn {
                flex: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 6px 4px;
                font-size: 0.72rem;
                font-weight: 600;
                border-radius: 8px;
                border: 1px solid rgba(255, 255, 255, 0.15);
                background: rgba(255, 255, 255, 0.06);
                color: #cbd5e1;
                cursor: pointer;
                transition: all 0.25s ease;
                white-space: nowrap;
            }

            .phone-filter-btn.active {
                background: #106ebe;
                color: #ffffff;
                border-color: #38bdf8;
                box-shadow: 0 2px 8px rgba(16, 110, 190, 0.4);
            }

            .phone-attachment-viewport {
                position: relative;
                width: 100%;
                height: 380px;
                background: #f8fafc;
                overflow: hidden;
            }

            .phone-sweeper-badge {
                position: absolute;
                top: 8px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(15, 23, 42, 0.92);
                backdrop-filter: blur(6px);
                color: #ffffff;
                padding: 4px 11px;
                border-radius: 20px;
                font-size: 9px;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 5px;
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
                z-index: 15;
                white-space: nowrap;
                max-width: 92%;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            .phone-sweeper-badge.is-cleaning {
                background: rgba(6, 78, 59, 0.95);
                box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35), 0 0 0 1px #10b981;
            }

            .phone-sweeper-badge.is-transit {
                background: rgba(15, 23, 42, 0.92);
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(148, 163, 184, 0.3);
            }

            .phone-sweeper-filter-notice {
                position: absolute;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(16, 185, 129, 0.95);
                backdrop-filter: blur(4px);
                color: #ffffff;
                padding: 4px 10px;
                border-radius: 16px;
                font-size: 8.5px;
                font-weight: 700;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
                z-index: 15;
                white-space: nowrap;
                max-width: 92%;
                pointer-events: none;
            }

            .phone-sweeper-legend {
                background: #0b1523;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                padding: 8px 16px 12px 16px;
                color: #94a3b8;
                font-size: 0.72rem;
            }

            .phone-legend-row {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 16px;
                margin-bottom: 5px;
            }

            .phone-legend-item {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 0.68rem;
                white-space: nowrap;
            }

            .phone-legend-item strong {
                color: #e2e8f0;
            }

            .phone-legend-item .legend-line-gray {
                display: inline-block;
                width: 14px;
                height: 3.5px;
                background: #64748b;
                border-radius: 2px;
            }

            .phone-legend-item .legend-line-green {
                display: inline-block;
                width: 14px;
                height: 3.5px;
                background: #10b981;
                border-radius: 2px;
                box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
            }

            .phone-legend-guarantee {
                font-size: 0.68rem;
                color: #38bdf8;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

            /* Feature Section 2: Fuel Section Mobile Adaptations */
            .fuel-section {
                padding: 3.5rem 1rem 3.5rem 1rem !important;
            }

            .fuel-col-header {
                margin-bottom: 1.25rem !important;
            }

            .fuel-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: left !important;
            }

            .fuel-main-subtitle {
                font-size: 0.92rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                text-align: left !important;
            }


            .fuel-widget-container {
                margin-top: 1.25rem !important;
                border-radius: 14px !important;
            }

            .fuel-laptop-viewport {
                aspect-ratio: auto !important;
                min-height: 390px !important;
            }

            .fuel-laptop-viewport .fuel-widget-container {
                border-radius: 0 !important;
                box-shadow: none !important;
                margin: 0 !important;
                border: none !important;
            }

            .fuel-widget-header {
                padding: 0.75rem 0.85rem !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 6px !important;
            }

            .fuel-kpi-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 10px 12px !important;
                padding: 10px 14px !important;
            }

            .fuel-kpi-value {
                font-size: 0.95rem !important;
            }

            .fuel-chart-viewport {
                aspect-ratio: 680 / 340 !important;
                max-height: 280px !important;
            }

            .fuel-widget-footer {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 6px !important;
                padding: 8px 12px !important;
                font-size: 0.74rem !important;
            }

            .multitrack-section {
                padding: 3rem 1rem 3.5rem 1rem !important;
            }

            .multitrack-col-header {
                margin-bottom: 1.25rem !important;
            }

            .multitrack-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: left !important;
            }

            .multitrack-main-subtitle {
                font-size: 0.92rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                text-align: left !important;
            }

            .laptop-base-case {
                width: 100% !important;
                margin-left: 0 !important;
            }

            .multitrack-floating-badge {
                font-size: 0.72rem;
                padding: 0.35rem 0.7rem;
            }

            .badge-top-right {
                top: -8px;
                right: 0;
            }

            .badge-bottom-left {
                bottom: 2px;
                left: 0;
            }

            .geofence-section {
                padding: 3rem 1rem 3.5rem 1rem !important;
            }

            .geofence-section .columns.is-vcentered {
                display: flex !important;
                flex-direction: column-reverse !important;
            }

            .geofence-col-header {
                margin-bottom: 1.25rem !important;
            }

            .geofence-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: left !important;
            }

            .geofence-main-subtitle {
                font-size: 0.92rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                text-align: left !important;
            }

            .analytics-section {
                padding: 3rem 1rem 3.5rem 1rem !important;
            }

            .analytics-col-header {
                margin-bottom: 1.25rem !important;
            }

            .analytics-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: left !important;
            }

            .analytics-main-subtitle {
                font-size: 0.92rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                text-align: left !important;
            }

            .onprem-section {
                padding: 3.5rem 1rem 3.5rem 1rem !important;
            }

            .onprem-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: center !important;
            }

            .onprem-main-subtitle {
                font-size: 0.94rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 2rem !important;
                text-align: center !important;
            }

            .onprem-card-grid {
                padding: 1.5rem 1.25rem !important;
                margin-bottom: 1rem;
            }

            .onprem-card-grid-title {
                font-size: 1.18rem !important;
            }

            .onprem-card-grid-text {
                font-size: 0.9rem !important;
            }

            .onprem-cta-btn {
                width: 100% !important;
                max-width: 100% !important;
                font-size: 0.95rem !important;
                padding: 0.95rem 1.25rem !important;
                white-space: normal !important;
                word-break: normal !important;
                overflow-wrap: break-word !important;
                height: auto !important;
                min-height: 50px !important;
                line-height: 1.35 !important;
                text-align: center !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .roi-section {
                padding: 3.5rem 1rem 3.5rem 1rem !important;
            }

            .roi-main-title {
                font-size: 1.45rem !important;
                line-height: 1.35 !important;
                margin-bottom: 0.65rem !important;
                text-align: center !important;
            }

            .roi-main-subtitle {
                font-size: 0.94rem !important;
                line-height: 1.55 !important;
                margin-top: 0 !important;
                margin-bottom: 2.25rem !important;
                text-align: center !important;
            }

            .roi-stat-item {
                margin-bottom: 2rem;
                padding: 0 !important;
            }

            .roi-stat-item:last-child {
                margin-bottom: 0;
            }

            .roi-stat-number {
                font-size: 2.5rem !important;
                margin-bottom: 0.5rem !important;
            }

            .roi-stat-label {
                font-size: 1rem !important;
                max-width: 100% !important;
            }
        }

        /* Hero Smartphone Mockup (Mobile Only) */
        .hero-phone-wrap {
            display: none;
            width: 100%;
            max-width: 330px;
            margin: 0 auto;
            position: relative;
            user-select: none;
        }

        .attachment-phone-wrap {
            display: none;
        }

        .hero-phone-frame {
            background: #0f172a;
            border-radius: 38px;
            padding: 10px 9px 12px 9px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1.5px #334155, inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .hero-phone-island {
            width: 80px;
            height: 16px;
            background: #000000;
            border-radius: 20px;
            margin: 0 auto 8px auto;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 8px;
        }

        .hero-phone-island-cam {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #1e293b;
            box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.4);
        }

        .hero-phone-display {
            position: relative;
            width: 100%;
            background: #f1f5f9;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.15);
        }

        .phone-app-header {
            height: 34px;
            background: linear-gradient(135deg, #0a5ba8 0%, #106ebe 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 12px;
            color: white;
            font-size: 11px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .phone-app-title {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .phone-app-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 7px;
            border-radius: 10px;
            font-size: 9.5px;
            font-weight: 700;
            color: #fef08a;
        }

        .phone-map-viewport {
            position: relative;
            width: 100%;
            height: 345px;
            overflow: hidden;
            background: #eef2f6;
        }

        .phone-map-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .phone-status-toast {
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 23, 42, 0.92);
            color: white;
            backdrop-filter: blur(6px);
            border-radius: 20px;
            padding: 4px 11px;
            font-size: 9px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
            z-index: 15;
            white-space: nowrap;
            max-width: 92%;
            pointer-events: none;
        }

        .phone-telemetry-hud {
            position: relative;
            margin: 8px 8px 10px 8px;
            background: #ffffff;
            border: 1px solid rgba(16, 110, 190, 0.18);
            border-radius: 14px;
            padding: 9px 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            z-index: 10;
        }

        .phone-hud-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 8px;
        }

        .phone-hud-item {
            display: flex;
            flex-direction: column;
        }

        .phone-hud-label {
            font-size: 8px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .phone-hud-value {
            font-size: 10.5px;
            font-weight: 700;
            color: #0f172a;
            white-space: nowrap;
        }

        .phone-hud-value.active-work { color: #0284c7; }
        .phone-hud-value.active-green { color: #16a34a; }
        .phone-hud-value.active-orange { color: #ea580c; }

        /* Hero Laptop Mockup & Live Route Animation */
        .hero-laptop-wrap {
            width: 100%;
            max-width: 860px;
            position: relative;
            user-select: none;
            margin: 0 auto;
        }

        .hero-laptop-screen {
            background: #0f172a;
            border-radius: 18px 18px 0 0;
            padding: 12px 12px 0 12px;
            box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.45), inset 0 0 0 1px #334155;
            border: 1px solid #1e293b;
            border-bottom: none;
            position: relative;
        }

        .hero-laptop-camera {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 7px;
            height: 7px;
            background: #1e293b;
            border-radius: 50%;
            box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
        }

        .hero-laptop-display {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10.2;
            background: #f8fafc;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
        }

        .hero-laptop-display::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 40%);
            pointer-events: none;
            z-index: 20;
        }

        .hero-laptop-base {
            height: 20px;
            background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e1 30%, #94a3b8 70%, #64748b 100%);
            border-radius: 0 0 20px 20px;
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
        }

        .hero-laptop-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 6px;
            background: #475569;
            border-radius: 0 0 8px 8px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .hero-laptop-shadow {
            position: absolute;
            bottom: -20px;
            left: 5%;
            width: 90%;
            height: 35px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .laptop-app-header {
            height: 36px;
            background: linear-gradient(135deg, #0a5ba8 0%, #106ebe 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            color: white;
            font-size: 11.5px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 10;
        }

        .laptop-app-title {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .pulse-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 rgba(34, 197, 94, 0.5);
            animation: pulseGlow 1.8s infinite;
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .laptop-app-badge {
            background: rgba(255, 255, 255, 0.18);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 10.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .laptop-app-badge .badge-tag {
            font-weight: 700;
            color: #fef08a;
        }

        .laptop-map-viewport {
            position: relative;
            width: 100%;
            height: calc(100% - 36px);
            overflow: hidden;
            background: #eef2f6;
        }

        .laptop-map-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .hero-map-hud {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(16, 110, 190, 0.2);
            border-radius: 10px;
            padding: 9px 14px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
            z-index: 15;
            min-width: 185px;
            pointer-events: none;
        }

        .hud-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10.5px;
            margin-bottom: 5px;
            color: #475569;
        }
        .hud-row:last-child { margin-bottom: 0; }

        .hud-label { font-weight: 500; }
        .hud-value { font-weight: 700; color: #0f172a; }
        .hud-value.active-work { color: #00b4d8; }
        .hud-value.active-green { color: #15803d; }
        .hud-value.active-orange { color: #d97706; }

        .hero-map-toast {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 23, 42, 0.92);
            color: white;
            backdrop-filter: blur(6px);
            border-radius: 8px;
            padding: 6px 14px;
            font-size: 11px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            z-index: 15;
            transition: all 0.3s ease;
            white-space: nowrap;
            pointer-events: none;
        }

        .map-street-label {
            fill: #475569;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            paint-order: stroke fill;
            stroke: #ffffff;
            stroke-width: 3.5px;
            stroke-linecap: round;
            stroke-linejoin: round;
            user-select: none;
            pointer-events: none;
        }
