:root {
    --primary: #0b1f3a;
    --primary-dark: #08162d;
    --primary-hover: #122a4b;
    --primary-light: #1e88e5;
    --secondary: #1e88e5;
    --accent: #e53935;
    --success: #2e7d32;
    --paper-bg: #f8fafc;
    --paper-lines: #d7e0ea;
    --paper-red: #c8d6e5;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: rgba(11, 31, 58, 0.16);
    --shadow: rgba(11, 31, 58, 0.2);
    --surface-bg: #ffffff;
    --surface-soft: #eef3f9;
    --signal: #ffc107;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --spacing-unit: 1rem;
    --border-radius: 16px;
    --shadow-sm: 2px 2px 0 var(--text-primary);
    --shadow-md: 3px 3px 0 var(--text-primary);
    --shadow-lg: 4px 4px 0 var(--text-primary);
}

/* Fallback for browsers without CSS Variables support (IE11 and older) */
@supports not (--css: variables) {
    /* These will be used as fallback values */
    /* Most modern browsers support CSS variables, so this is mainly for very old browsers */
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

*,
*::before,
*::after {
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
}

/* Fallback for browsers without smooth scroll support */
@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--paper-bg);
    background-image: 
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            var(--paper-lines) 31px,
            var(--paper-lines) 32px
        ),
        linear-gradient(
            to right,
            transparent 0px,
            transparent 40px,
            var(--paper-red) 40px,
            var(--paper-red) 41px,
            transparent 41px
        );
    background-size: 100% 32px, 100% 100%;
    background-attachment: fixed;
    background-position: 0 0, 0 0;
    color: var(--text-primary);
    line-height: 32px;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(0, 170, 102, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite, pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
    position: relative;
    box-sizing: border-box;
    background: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffeb3b;
    border-bottom: 4px solid #000;
    z-index: 10000;
    box-shadow: 0 4px 0 #ff5722, 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    /* backdrop-filter with fallback for older browsers */
    background: rgba(255, 235, 59, 0.95); /* Fallback for browsers without backdrop-filter */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    width: 100%;
}

.navbar.scrolled {
    box-shadow: 0 4px 0 #ff5722, 0 2px 10px rgba(0, 0, 0, 0.2);
    background: #ffeb3b;
}

/* Ensure navbar is always visible */
.navbar {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.comic-action-lines {
    display: none;
}

.comic-pow {
    display: none;
}

/* Comic Book Question Marks */
.comic-question-mark {
    position: absolute;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(4px, 1.2vw, 8px) var(--text-primary);
    -webkit-text-fill-color: var(--paper-bg);
    text-stroke: clamp(4px, 1.2vw, 8px) var(--text-primary);
    text-fill-color: var(--paper-bg);
    text-shadow: 
        clamp(6px, 1.5vw, 10px) clamp(6px, 1.5vw, 10px) 0 var(--text-primary),
        clamp(8px, 2vw, 12px) clamp(8px, 2vw, 12px) 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    animation: comicFloat 1.5s ease-in-out infinite;
    transform: rotate(-5deg);
}

.comic-question-mark::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--text-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: comicPulse 0.8s ease-in-out infinite;
}

.comic-question-mark::after {
    content: '?';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8em;
    opacity: 0.5;
    transform: translate(2px, 2px);
    z-index: -1;
}

@keyframes comicFloat {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-15px);
    }
}

@keyframes comicPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Question marks in various sections */
section::before {
    content: '?';
    position: absolute;
    top: 10%;
    right: 5%;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    -webkit-text-fill-color: transparent;
    text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    text-fill-color: transparent;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
    animation: comicFloat 2s ease-in-out infinite;
}

section:nth-child(even)::before {
    left: 5%;
    right: auto;
    transform: rotate(-15deg);
}

.hero::before {
    content: '?';
    position: absolute;
    top: 20%;
    left: 10%;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(5px, 1.5vw, 10px) var(--text-primary);
    -webkit-text-fill-color: transparent;
    text-stroke: clamp(5px, 1.5vw, 10px) var(--text-primary);
    text-fill-color: transparent;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-10deg);
    animation: comicFloat 2.5s ease-in-out infinite;
}

.hero::after {
    content: '?';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(4px, 1.2vw, 8px) var(--text-primary);
    -webkit-text-fill-color: transparent;
    text-stroke: clamp(4px, 1.2vw, 8px) var(--text-primary);
    text-fill-color: transparent;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transform: rotate(10deg);
    animation: comicFloat 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Question marks in cards */
.service-card::before,
.info-card::before {
    content: '?';
    position: absolute;
    top: -15px;
    right: -15px;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(2px, 0.8vw, 4px) var(--text-primary);
    -webkit-text-fill-color: var(--paper-bg);
    text-stroke: clamp(2px, 0.8vw, 4px) var(--text-primary);
    text-fill-color: var(--paper-bg);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transform: rotate(20deg);
    animation: comicFloat 1.2s ease-in-out infinite;
}

/* Footer question marks */
.footer::before {
    content: '?';
    position: absolute;
    top: 20%;
    left: 5%;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    -webkit-text-fill-color: transparent;
    text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    text-fill-color: transparent;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-20deg);
    animation: comicFloat 2s ease-in-out infinite;
}

.footer::after {
    content: '?';
    position: absolute;
    top: 50%;
    right: 5%;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    -webkit-text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    -webkit-text-fill-color: transparent;
    text-stroke: clamp(3px, 1vw, 6px) var(--text-primary);
    text-fill-color: transparent;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    transform: rotate(20deg);
    animation: comicFloat 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 65px;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 #000;
    background: #fff;
    padding: 0.4rem 0.7rem;
    border: 3px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #ff5722;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 #ff5722;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: #ff1744;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(1px 1px 0 #000);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    color: #ff1744;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 1.05rem;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-accent {
    color: white !important;
    -webkit-text-stroke: 1px #000;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 2px #000;
    background: transparent;
    -webkit-text-fill-color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    margin: 0 0.5rem;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: #fff;
    padding: 0.4rem 0.65rem;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #ff5722;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: #ff1744;
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #ff5722;
}

.nav-signin {
    background: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    box-shadow: 2px 2px 0 #ff5722 !important;
}

.nav-signin:hover {
    background: #cccc00 !important;
    color: #000 !important;
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #ff5722 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: #ff1744;
    border: 3px solid #000;
    color: #fff;
    padding: 0.45rem 1rem;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 0 #000;
    box-shadow: 3px 3px 0 #ff5722;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    min-width: 44px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-cta:hover {
    background: #ff5722;
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 #ff5722;
}

/* Header: call + book/quote (always tappable on mobile) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.nav-cta-call {
    background: #fff;
    border: 3px solid #000;
    color: #000;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    box-sizing: border-box;
    box-shadow: 3px 3px 0 #000;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-cta-call:hover {
    background: #ffff00;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #000;
}

.nav-cta-call:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (min-width: 769px) {
    .nav-menu > li.mobile-menu-cta {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 3px solid #000;
    cursor: pointer;
    padding: 0.4rem;
    box-shadow: 3px 3px 0 #000;
    position: relative;
    z-index: 10001;
    flex-shrink: 0;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #000;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 0 #ff5722;
    border-radius: 2px;
    display: block;
    position: relative;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Homepage mobile bottom bar — hidden until small screens (see @768) */
.mobile-sticky-cta {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: transparent;
    text-align: left;
    padding-left: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    display: none; /* Remove animated grid for simplicity */
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    display: none; /* Remove floating orbs for simplicity */
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 58, 237, 0.4), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.3), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.hero-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
}

.hero-truck-feature {
    margin: 2rem 0;
    max-width: 980px;
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--text-primary);
    position: relative;
}

.hero-truck-feature img {
    width: 100%;
    height: clamp(220px, 40vw, 360px);
    object-fit: cover;
    display: block;
}

.hero-truck-overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: rgba(12, 18, 28, 0.82);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.8rem;
}

.hero-truck-overlay strong {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-truck-overlay span {
    font-size: 0.85rem;
    opacity: 0.95;
}

.hero-truck-overlay-actions {
    margin-left: auto;
    display: flex;
    gap: 0.45rem;
}

.hero-truck-overlay-actions a {
    text-decoration: none;
    color: #0d1b2a;
    background: #fff;
    border: 2px solid #0d1b2a;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.38rem 0.6rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-block {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        8px 8px 0 var(--text-primary),
        16px 16px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: visible;
    pointer-events: auto !important;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero-block:hover {
    transform: translate(4px, 4px) scale(1.01);
    box-shadow: 
        4px 4px 0 var(--text-primary),
        8px 8px 0 rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.cube-red,
.cube-yellow,
.cube-green {
    cursor: pointer !important;
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
}

.cube-red .stop-sign,
.cube-yellow .caution-sign,
.cube-green .go-sign {
    pointer-events: auto !important;
    z-index: 100 !important;
    position: relative;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-top: none;
    transform: skewX(-45deg);
    transform-origin: top left;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.hero-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 16px;
    height: 100%;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-right: none;
    transform: skewY(-45deg);
    transform-origin: top right;
    box-shadow: -8px 8px 0 rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.hero-block:hover {
    transform: translate(4px, 4px) scale(1.01);
    box-shadow: 
        4px 4px 0 var(--text-primary),
        8px 8px 0 rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.cube-red {
    background: #ff0000;
}

.cube-red::before {
    background: #cc0000;
}

.cube-red::after {
    background: #cc0000;
}

.cube-yellow {
    background: #ffff00;
}

.cube-yellow::before {
    background: #cccc00;
}

.cube-yellow::after {
    background: #cccc00;
}

.cube-green {
    background: #00ff00;
}

.cube-green::before {
    background: #00cc00;
}

.cube-green::after {
    background: #00cc00;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 150px;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 1;
}

.map-container iframe {
    pointer-events: none !important;
    box-sizing: border-box;
    z-index: 1;
}

.map-container .go-sign {
    z-index: 100 !important;
    pointer-events: auto !important;
}

.hidden-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    opacity: 0;
    pointer-events: none !important;
    z-index: 1;
    box-sizing: border-box;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.go-sign,
.stop-sign,
.caution-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 12vw, 8rem) !important;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 100 !important;
    -webkit-text-stroke: clamp(5px, 1.5vw, 8px) #000;
    /* Fallback for browsers without text-stroke */
    text-shadow: 
        -6px -6px 0 #000,
        6px -6px 0 #000,
        -6px 6px 0 #000,
        6px 6px 0 #000,
        0 0 6px #000;
    text-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    width: 100%;
    text-align: center;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer !important;
    transition: transform 0.2s ease;
    pointer-events: auto !important;
    user-select: none;
    overflow: visible;
}

/* Make STOP sign fit better - slightly smaller and tighter spacing */
.stop-sign {
    font-size: clamp(4.5rem, 11vw, 7rem) !important;
    letter-spacing: 0.02em;
    padding: 0.75rem 0.25rem;
    max-width: 95%;
}

.stop-sign:hover,
.go-sign:hover,
.caution-sign:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Make signs even bigger on larger screens */
@media (min-width: 768px) {
    .go-sign,
    .caution-sign {
        font-size: clamp(6rem, 15vw, 10rem) !important;
    }
    
    .stop-sign {
        font-size: clamp(5.5rem, 14vw, 8.5rem) !important;
    }
}


.stop-portal-modal {
    max-width: 900px;
    max-height: 85vh;
}

.map-portal-container {
    margin: 2rem 0;
    position: relative;
    min-height: 400px;
    max-height: 500px;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    box-shadow: 3px 3px 0 var(--text-primary);
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-bg);
    color: var(--text-secondary);
    font-weight: 600;
    box-sizing: border-box;
    padding: 1rem;
}

.map-portal-container iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-height: 400px;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.job-search-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    box-shadow: 3px 3px 0 var(--text-primary);
}

.job-search-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.job-search-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.job-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--paper-bg);
    color: var(--text-primary);
    box-shadow: 2px 2px 0 var(--text-primary);
}

.job-search-input:focus {
    outline: none;
    box-shadow: 3px 3px 0 var(--text-primary);
    transform: translate(-1px, -1px);
}

.job-search-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-search-btn:hover {
    background: var(--primary-dark);
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.job-results {
    margin-top: 1.5rem;
}

.job-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.job-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
}

.job-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.job-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-info-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.job-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.job-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.job-action-btn {
    padding: 0.5rem 1rem;
    background: var(--paper-bg);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0 var(--text-primary);
}

.job-action-btn:hover {
    background: var(--text-primary);
    color: var(--paper-bg);
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--text-primary);
}

.terms-content {
    margin: 2rem 0;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.terms-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.terms-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.terms-acknowledge {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    box-shadow: 2px 2px 0 var(--text-primary);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.terms-checkbox input[type="checkbox"]:checked {
    accent-color: var(--primary);
}

#acceptTerms:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#acceptTerms:not(:disabled):hover {
    background: var(--primary-dark);
}

.block-icon {
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 2px 2px 0 var(--text-primary);
}

.block-icon svg {
    width: 28px;
    height: 28px;
    color: var(--paper-bg);
    stroke-width: 2.5;
}

.hero-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.hero-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 
            0 8px 32px rgba(0, 102, 204, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% { 
        box-shadow: 
            0 8px 40px rgba(0, 102, 204, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
    max-width: 900px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 2rem;
}

.hero-quick-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    padding: 0;
    max-width: 980px;
}

.hero-quick-points li {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.hero-helper {
    margin-top: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 760px;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    position: relative;
}

.title-line.highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.75rem 1rem;
    margin-bottom: 3rem;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary,
.hero-cta .btn-hero-call {
    min-height: 48px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-hero-call {
    text-decoration: none;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--paper-bg);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.btn-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95); /* Fallback */
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}


.stat-item {
    padding: 1.5rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}


/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    scroll-margin-top: 80px;
    overflow-x: hidden;
    background: transparent !important;
}

section:first-of-type {
    padding-top: 8rem;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 2px 2px 0 var(--text-primary);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Services Section */
.services {
    background: transparent;
    position: relative;
    border-top: 2px solid var(--text-primary);
    margin-top: 2rem;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* Fallback for browsers without CSS Grid support */
@supports not (display: grid) {
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .services-grid .service-card {
        flex: 1 1 280px;
        min-width: 280px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.service-card {
    padding: 1.5rem;
    background: var(--paper-bg);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translate(3px, 3px) scale(1.01);
    box-shadow: 0 0 0 var(--text-primary);
    border-color: var(--primary);
    transition: var(--transition-smooth);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--paper-bg);
    box-shadow: 2px 2px 0 var(--text-primary);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.portal-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 var(--text-primary);
    width: 100%;
}

.portal-btn:hover {
    background: var(--primary-dark);
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

/* Real work gallery */
.work-gallery {
    padding: 4rem 0;
}

.work-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.work-gallery-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--text-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-gallery-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.work-gallery-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--text-primary);
}

.work-gallery-content {
    padding: 1rem 1rem 1.25rem;
}

.work-category {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    margin-bottom: 0.5rem;
    border: 2px solid var(--text-primary);
    border-radius: 999px;
    background: #fff8c2;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.work-gallery-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-gallery-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.92rem;
}

.work-gallery-cta {
    margin-top: 1.75rem;
    text-align: center;
}

.work-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.work-proof-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--text-primary);
    position: relative;
}

.work-proof-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 2px solid var(--text-primary);
}

.work-proof-content {
    padding: 1rem 1rem 1.25rem;
}

.work-proof-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-proof-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.92rem;
}

.truck-brand-overlay {
    position: absolute;
    left: 0.85rem;
    top: 0.85rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(11, 99, 206, 0.9);
    color: #fff;
    border: 2px solid #0d1b2a;
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    box-shadow: 3px 3px 0 #0d1b2a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    max-width: calc(100% - 1.7rem);
}

.truck-brand-overlay strong {
    font-size: 0.8rem;
    line-height: 1.1;
}

.truck-brand-overlay span {
    font-size: 0.62rem;
    line-height: 1.2;
    opacity: 0.95;
}

/* Quick steps */
.quick-steps {
    padding: 3rem 0 4rem;
}

.quick-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.quick-step-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 1.25rem 1.1rem;
    box-shadow: 4px 4px 0 var(--text-primary);
}

.quick-step-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    background: #ffff00;
    margin-bottom: 0.75rem;
}

.quick-step-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-step-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.92rem;
}

/* Portal Modal */
.portal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Fallback */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portal-overlay.active {
    display: flex;
    opacity: 1;
}

.portal-modal {
    background: var(--paper-bg);
    border: 3px solid var(--text-primary);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 8px 8px 0 var(--text-primary);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.portal-overlay.active .portal-modal {
    transform: scale(1);
}

.portal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-primary);
    color: var(--paper-bg);
    border: 2px solid var(--text-primary);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.portal-close:hover {
    background: var(--primary);
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.portal-content {
    padding: 3rem 2rem 2rem;
}

.portal-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--text-primary);
    padding-bottom: 0.75rem;
}

.portal-content .portal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.portal-content .portal-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portal-content .portal-features li {
    padding: 1rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    box-shadow: 3px 3px 0 var(--text-primary);
    position: relative;
    padding-left: 2.5rem;
}

.portal-content .portal-features li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
}

.portal-content .portal-cta {
    margin-top: 2rem;
    text-align: center;
}

.portal-content .portal-cta .btn-primary {
    display: inline-block;
}

/* Technology Section */
.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.tech-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tech-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tech-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 3px 3px 0 var(--text-primary);
    position: relative;
    margin-bottom: 2rem;
}

.tech-map-container {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    height: 450px;
    box-shadow: 3px 3px 0 var(--text-primary);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.tech-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 15s linear infinite;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28ca42; }

.card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tech-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.metric-value.safe {
    color: #28ca42;
}

.dashboard-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Pricing Section */
.pricing {
    background: transparent;
    position: relative;
    border-top: 2px solid var(--text-primary);
    margin-top: 2rem;
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Fallback for browsers without CSS Grid support */
@supports not (display: grid) {
    .pricing-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.75rem;
    }
    .pricing-grid .pricing-card {
        flex: 1 1 260px;
        min-width: 260px;
        max-width: 100%;
    }
}

.pricing-card {
    background: var(--paper-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
    background: #fafafa;
    transition: var(--transition-smooth);
}

.pricing-icon {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1;
    opacity: 0.8;
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0 1rem;
    gap: 0.15rem;
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: baseline;
}

.pricing-amount .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.01em;
}

.pricing-amount .period {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.15rem;
}

.pricing-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 2.2rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    padding: 0;
}

.pricing-features li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-note {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: normal;
    line-height: 1.4;
    opacity: 0.8;
}

.pricing-footer {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 2px solid var(--text-primary);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info {
    margin-bottom: 3rem;
}

.pricing-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.5rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    gap: 1rem;
}

.service-item:hover {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--text-primary);
    border-color: var(--primary);
}

.service-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.pricing-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2.5rem 2rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta .btn-primary {
    display: inline-block;
    min-width: 200px;
}

/* Legal Pages (Privacy Policy, Terms of Service, FAQ) */
.legal-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--paper-bg);
    padding: 3rem;
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--text-primary);
    padding-bottom: 1rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 3px 3px 0 var(--text-primary);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-stat {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    box-shadow: 3px 3px 0 var(--text-primary);
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0 var(--text-primary);
    flex-shrink: 0;
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--paper-bg);
    stroke-width: 2.5;
}

.about-stat:hover .stat-icon-wrapper {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.stat-value .stat-fraction {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.stat-label {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.stat-subtitle {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.25rem;
    font-style: italic;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.about-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.point-check {
    width: 28px;
    height: 28px;
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper-bg);
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 2px 2px 0 var(--text-primary);
}

.about-point h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-point p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0 var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--text-primary);
    background: var(--paper-bg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    padding: 2rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
    border-color: var(--primary);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-card p a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}

.info-card p a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration-thickness: 3px;
}

/* Footer */
.footer {
    background: transparent;
    border-top: 2px solid var(--text-primary);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer-music-art {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.music-note {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    animation: floatNote 8s ease-in-out infinite;
}

.note-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.note-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    font-size: 1.8rem;
}

.note-3 {
    top: 50%;
    left: 8%;
    animation-delay: 2s;
    font-size: 2.2rem;
}

.note-4 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 1.6rem;
}

.note-5 {
    top: 80%;
    left: 12%;
    animation-delay: 0.5s;
    font-size: 1.9rem;
}

.note-6 {
    top: 30%;
    right: 5%;
    animation-delay: 2.5s;
    font-size: 2.1rem;
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.25;
    }
}

.sound-wave {
    position: absolute;
    width: 120px;
    height: 30px;
    color: var(--secondary);
    opacity: 0.2;
    animation: waveMove 6s ease-in-out infinite;
}

.wave-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.wave-2 {
    top: 45%;
    right: 25%;
    animation-delay: 1s;
    width: 100px;
}

.wave-3 {
    top: 75%;
    left: 30%;
    animation-delay: 2s;
    width: 140px;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateX(10px) scale(1.1);
        opacity: 0.3;
    }
}

.guitar-icon,
.piano-icon,
.drum-icon,
.microphone-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: bounceIcon 4s ease-in-out infinite;
    opacity: 0.2;
}

.guitar-icon {
    top: 25%;
    right: 20%;
    animation-delay: 0s;
}

.piano-icon {
    top: 55%;
    left: 15%;
    animation-delay: 1s;
    font-size: 2.2rem;
}

.drum-icon {
    top: 35%;
    left: 25%;
    animation-delay: 1.5s;
    font-size: 2rem;
}

.microphone-icon {
    top: 70%;
    right: 10%;
    animation-delay: 0.5s;
    font-size: 2.3rem;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Premium Cursor Effects */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-width 0.3s;
    mix-blend-mode: difference;
    display: none;
}

@media (min-width: 769px) {
    .custom-cursor {
        display: block;
    }
}

.custom-cursor.cursor-hover {
    width: 50px;
    height: 50px;
    border-width: 1px;
    background: rgba(0, 212, 255, 0.1);
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: difference;
    display: none;
}

@media (min-width: 769px) {
    .cursor-follower {
        display: block;
    }
}

.cursor-follower.cursor-follower-hover {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
}

/* Text Reveal Animation */
.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealWord 0.6s ease forwards;
}

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

/* Enhanced Animations */
@keyframes animateIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.animate-in {
    animation: animateIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Simple, clean animations only */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Simple hover effects only */
.service-card,
.tech-card,
.about-card,
.info-card,
.stat-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.tech-card:hover,
.about-card:hover,
.info-card:hover,
.stat-item:hover {
    transform: translateY(-5px);
}

.btn-primary,
.btn-secondary,
.nav-cta {
    transition: all 0.3s ease;
}

/* Premium Glow Effects */
.service-card,
.tech-card,
.about-card,
.info-card {
    position: relative;
}

.service-card::before,
.tech-card::before,
.about-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    /* Advanced mask effect - optional enhancement */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before,
.tech-card:hover::before,
.about-card:hover::before {
    opacity: 0.6;
    animation: borderGlow 2s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Additional responsive adjustments for navigation */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        margin: 0 0.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
    
    .nav-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }
    
    .logo-container {
        font-size: 1rem;
        padding: 0.35rem 0.65rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.55rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
        margin: 0 0.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.55rem;
    }
    
    .nav-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }
    
    .logo-container {
        font-size: 0.95rem;
        padding: 0.35rem 0.6rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .work-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-proof-grid {
        grid-template-columns: 1fr;
    }

    .hero-quick-points {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .quick-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-truck-overlay {
        gap: 0.35rem 0.6rem;
    }

    .hero-truck-overlay-actions {
        margin-left: 0;
    }
    
    .tech-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        overflow: visible;
    }

    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 60px;
        gap: 0.5rem;
        position: relative;
        overflow: visible;
    }
    
    .logo-container {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
        gap: 0.4rem;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
        bottom: auto;
        background: rgba(255, 255, 255, 0.98); /* Fallback */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.9rem 1rem 1.1rem;
        transform: translateY(-10px);
        transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
        border-top: 3px solid var(--text-primary);
        border-left: none;
        border-right: none;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
        gap: 0.5rem;
        align-items: stretch;
        max-width: 100vw;
        width: 100vw;
        max-height: calc(100dvh - 86px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 10020;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Smooth scroll for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--text-primary);
        border-radius: 3px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        box-sizing: border-box;
        border-radius: 8px;
        margin-bottom: 0.25rem;
        display: block;
        transition: all 0.2s ease;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.35;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(0, 102, 204, 0.1);
        transform: translateX(4px);
    }
    
    .nav-menu > li.mobile-menu-cta {
        display: list-item;
    }

    .nav-menu .nav-link-cta-call {
        background: #ffff00;
        color: #000 !important;
        font-weight: 900;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        min-height: 48px;
        border-width: 3px;
    }

    .nav-menu .nav-link-cta-book {
        background: #ff1744;
        color: #fff !important;
        font-weight: 900;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        min-height: 52px;
        border-width: 3px;
        text-shadow: 1px 1px 0 #000;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        position: relative;
        z-index: 10030 !important;
        pointer-events: auto;
        margin-left: 0.15rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        margin-left: auto;
        margin-right: 0.35rem;
        max-width: 58%;
        position: relative;
        z-index: 10010;
    }

    .nav-cta {
        display: inline-flex;
        font-size: 0.62rem;
        padding: 0.4rem 0.5rem;
        letter-spacing: 0;
    }

    .nav-cta-call {
        font-size: 0.65rem;
        padding: 0.4rem 0.45rem;
        min-height: 44px;
        min-width: 44px;
    }

    /* Sticky bottom CTAs — homepage */
    body.page-home .mobile-sticky-cta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9990;
        gap: 0;
        padding: 0.5rem;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.97);
        border-top: 3px solid #000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
        justify-content: stretch;
        align-items: stretch;
    }

    body.page-home .mobile-sticky-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        text-decoration: none;
        border: 3px solid #000;
        border-radius: 12px;
        margin: 0 0.25rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    body.page-home .sticky-cta-call {
        background: #ffff00;
        color: #000;
        box-shadow: 3px 3px 0 #000;
    }

    body.page-home .sticky-cta-book {
        background: #ff1744;
        color: #fff;
        text-shadow: 1px 1px 0 #000;
        box-shadow: 3px 3px 0 #ff5722;
    }

    body.page-home {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }
    
    /* Ensure mobile menu is above everything */
    .nav-menu {
        z-index: 10000 !important;
    }
    
    .mobile-menu-toggle {
        z-index: 10030 !important;
        pointer-events: auto;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero-truck-overlay {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        padding: 0.55rem 0.6rem;
    }

    .hero-truck-overlay strong {
        font-size: 0.82rem;
    }

    .hero-truck-overlay span {
        font-size: 0.76rem;
    }

    .hero-truck-overlay-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-truck-overlay-actions a {
        font-size: 0.7rem;
        min-height: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-gallery {
        padding: 3rem 0;
    }

    .work-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .work-gallery-card img {
        height: 210px;
    }

    .work-proof-card img {
        height: 210px;
    }

    .quick-steps {
        padding: 2.5rem 0 3rem;
    }
    
    .service-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2rem;
    }

    .pricing-icon {
        font-size: 1.1rem;
    }

    .pricing-card h3 {
        font-size: 1rem;
    }

    .additional-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-footer {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .pricing-cta {
        padding: 2rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Professional Blending - Consistent Styling */
.service-card,
.info-card,
.tech-card,
.about-card,
.hero-block {
    transition: var(--transition);
}

.service-card h3,
.info-card h4,
.hero-block h3 {
    transition: var(--transition);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Consistent focus states */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Professional spacing consistency */
section + section {
    margin-top: 0;
}

/* Consistent card heights */
.services-grid .service-card {
    min-height: 100%;
}

/* Professional hover states */
a, button {
    transition: var(--transition);
}

/* Consistent border radius */
button,
input,
select,
textarea,
.service-card,
.info-card,
.hero-block {
    border-radius: var(--border-radius);
}

/* Professional typography consistency */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Consistent color usage */
a {
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Professional shadow consistency */
.service-card,
.info-card,
.hero-block,
.btn-primary {
    box-shadow: var(--shadow-md);
}

.service-card:hover,
.info-card:hover,
.hero-block:hover,
.btn-primary:hover {
    box-shadow: 0 0 0 var(--text-primary);
}

/* Standardize all inline sizing across all pages */
section.hero {
    padding-top: clamp(6rem, 10vw, 8rem) !important;
    padding-bottom: clamp(3rem, 6vw, 4rem) !important;
}

section.services {
    padding: clamp(3rem, 6vw, 4rem) 0 !important;
}

section.contact {
    padding: clamp(4rem, 8vw, 5rem) 0 !important;
}

/* Standardize hero titles */
.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem) !important;
    margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
    line-height: 1.3 !important;
}

/* Standardize section descriptions */
.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    max-width: 100% !important;
    margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Standardize all cards */
.service-card,
.info-card {
    padding: clamp(1.25rem, 3vw, 2rem) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Standardize step numbers and badges */
[style*="width: 80px"],
[style*="height: 80px"] {
    width: clamp(60px, 8vw, 80px) !important;
    height: clamp(60px, 8vw, 80px) !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Standardize h2 headings */
h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
    margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
}

/* Standardize all containers */
.container {
    max-width: 1200px !important;
    padding: 0 clamp(1rem, 4vw, 2rem) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Standardize section headers */
.section-header {
    max-width: 100% !important;
    padding: 0 clamp(1rem, 4vw, 2rem) !important;
    margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

/* Standardize buttons */
.btn-primary,
.btn-secondary,
.nav-cta {
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem) !important;
    font-size: clamp(0.85rem, 2vw, 1rem) !important;
}

.nav-actions .nav-cta,
.nav-actions .nav-cta-call {
    padding: 0.4rem 0.55rem !important;
}

/* Standardize gaps in grids */
.services-grid,
[style*="grid-template-columns"] {
    gap: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Standardize max-widths */
[style*="max-width: 1000px"],
[style*="max-width: 900px"],
[style*="max-width: 800px"] {
    max-width: min(100%, 1000px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Standardize text sizes in inline styles */
[style*="font-size: 1.25rem"] {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
}

[style*="font-size: 1.75rem"] {
    font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
}

[style*="font-size: 2rem"] {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

[style*="font-size: 3rem"] {
    font-size: clamp(2rem, 4vw, 3rem) !important;
}

/* Standardize padding in inline styles */
[style*="padding: 4rem"],
[style*="padding-top: 8rem"],
[style*="padding-bottom: 4rem"] {
    padding: clamp(3rem, 6vw, 4rem) 0 !important;
    padding-top: clamp(6rem, 10vw, 8rem) !important;
    padding-bottom: clamp(3rem, 6vw, 4rem) !important;
}

/* Standardize margins */
[style*="margin-top: 3rem"],
[style*="margin-bottom: 1.5rem"] {
    margin-top: clamp(2rem, 4vw, 3rem) !important;
    margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
}

/* Ensure all images and media fit */
img,
iframe,
video {
    max-width: 100% !important;
    height: auto !important;
}

/* Standardize list items */
li {
    padding: clamp(0.25rem, 1vw, 0.5rem) 0 !important;
}

/* Responsive font scaling for all text */
p, span, div, li {
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
}

/* Ensure flex containers don't overflow */
[style*="display: flex"] {
    flex-wrap: wrap !important;
    max-width: 100% !important;
}

/* Standardize icon sizes */
[style*="font-size: 3rem"],
[style*="font-size: 4rem"] {
    font-size: clamp(2rem, 4vw, 3rem) !important;
}

/* Mobile-specific sizing */
@media (max-width: 768px) {
    section {
        padding: clamp(2rem, 4vw, 3rem) 0 !important;
    }
    
    section.hero {
        padding-top: clamp(5rem, 8vw, 6rem) !important;
        padding-bottom: clamp(2rem, 4vw, 3rem) !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
    }
    
    h2 {
        font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
    }
    
    .service-card,
    .info-card {
        padding: clamp(1rem, 3vw, 1.5rem) !important;
    }
    
    [style*="width: 80px"],
    [style*="height: 80px"] {
        width: clamp(50px, 10vw, 70px) !important;
        height: clamp(50px, 10vw, 70px) !important;
        font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .section-header {
        padding: 0 1rem !important;
        margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
    }
}

/* Tablet sizing */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 clamp(1.25rem, 3vw, 1.5rem) !important;
    }
    
    .service-card,
    .info-card {
        padding: clamp(1.5rem, 2.5vw, 1.75rem) !important;
    }
}

/* Universal page blending - ensures all pages look consistent */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    background: var(--paper-bg) !important;
    background-image: 
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            var(--paper-lines) 31px,
            var(--paper-lines) 32px
        ),
        linear-gradient(
            to right,
            transparent 0px,
            transparent 40px,
            var(--paper-red) 40px,
            var(--paper-red) 41px,
            transparent 41px
        ) !important;
    background-size: 100% 32px, 100% 100% !important;
    background-attachment: fixed !important;
    background-position: 0 0, 0 0 !important;
    background-repeat: repeat-y, no-repeat !important;
    color: var(--text-primary) !important;
    line-height: 32px !important;
}

/* Ensure all navigation is consistent */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Standardize all logo containers */
.logo-container {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    color: inherit !important;
}

.logo-container a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Ensure all sections have consistent spacing */
section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    background: transparent !important;
}

/* Standardize all containers */
.container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding-left: clamp(1rem, 4vw, 2rem) !important;
    padding-right: clamp(1rem, 4vw, 2rem) !important;
}

/* Ensure all grids are responsive */
.services-grid,
[class*="grid"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Standardize all cards */
.service-card,
.info-card,
.tech-card,
.about-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

/* Ensure all text fits */
h1, h2, h3, h4, h5, h6, p, span, div, li, a {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
}

/* Standardize footer across all pages */
.footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
}

.footer-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.footer-links {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure all images and media fit */
img, iframe, video, svg {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* Standardize forms */
form, input, textarea, select, button {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Prevent any horizontal overflow */
* {
    max-width: 100% !important;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Chat page quick action buttons */
.quick-action-btn {
    padding: 0.625rem 1rem;
    background: var(--paper-bg);
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 var(--text-primary);
    white-space: nowrap;
}

.quick-action-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--text-primary);
    background: var(--primary);
    color: white;
}

.quick-action-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--text-primary);
}

/* Homepage animated story */
.brand-story {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.story-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.story-copy .section-description {
    margin-bottom: 1rem;
}

.story-points {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.story-points li {
    padding: 0.65rem 0.85rem;
    border: 2px solid #000;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 2px 0 #ff5722;
    font-weight: 700;
}

.cartoon-video-card {
    border: 3px solid #000;
    border-radius: 16px;
    background: #fff;
    box-shadow: 4px 4px 0 #ff5722;
    padding: 0.75rem;
}

.story-video-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.6rem 0.65rem;
    border: 2px solid #000;
    border-radius: 10px;
    background: #f6f6f6;
    margin-bottom: 0.6rem;
}

.story-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff1744;
    border: 2px solid #000;
    animation: pulseLiveDot 1.2s ease-in-out infinite;
}

.story-video-header strong {
    font-size: 0.88rem;
    letter-spacing: 0.2px;
}

.story-live-label {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 800;
    background: #e9f7ff;
    border: 2px solid #000;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
}

.cartoon-stage {
    position: relative;
    height: 270px;
    border: 3px solid #000;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.showreel-screen {
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

.showreel-map {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showreel-map .leaflet-container {
    width: 100%;
    height: 100%;
    background: #0b1f3a;
    filter: saturate(1.05) contrast(1.03);
}

.showreel-screen.scene-dispatch {
    background-image: url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1400&q=80");
}

.showreel-screen.scene-transit {
    background-image: url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1400&q=80");
}

.showreel-screen.scene-delivery {
    background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1400&q=80");
}

.showreel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 15, 35, 0.46) 0%, rgba(5, 9, 22, 0.72) 100%);
}

.showreel-hud {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.showreel-hud span {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.showreel-metrics {
    position: absolute;
    top: 48px;
    left: 10px;
    right: 10px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.showreel-metrics article {
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    padding: 0.42rem 0.5rem;
    backdrop-filter: blur(2px);
}

.showreel-metrics small {
    display: block;
    font-size: 0.62rem;
    opacity: 0.9;
}

.showreel-metrics strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.86rem;
    letter-spacing: 0.2px;
}

.showreel-route {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 72px;
    height: 34px;
    z-index: 2;
}

.route-line,
.route-line-progress {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 15px;
    height: 5px;
    border-radius: 999px;
}

.route-line {
    background: rgba(255, 255, 255, 0.35);
}

.route-line-progress {
    width: 0;
    right: auto;
    background: #4cd9ff;
    transition: width 0.45s ease;
}

.route-node {
    position: absolute;
    top: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.4);
}

.route-node.start { left: 0; }
.route-node.mid { left: calc(50% - 8px); }
.route-node.end { right: 0; }

.route-truck {
    position: absolute;
    left: 0;
    top: 2px;
    width: 30px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #ff1744;
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.5);
    transition: left 0.45s ease;
}

.route-truck::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -7px;
    height: 4px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
}

.showreel-copy {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5rem 0.6rem;
}

.showreel-copy h4 {
    margin: 0;
    font-size: 0.84rem;
    letter-spacing: 0.25px;
}

.showreel-copy p {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    line-height: 1.35;
}

.story-progress {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.story-step {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    border: 2px solid #000;
    border-radius: 999px;
    padding: 0.25rem 0.4rem;
    background: #fff;
    color: #222;
}

.story-step.is-active {
    background: #ff1744;
    color: #fff;
}

.story-progress-bar {
    grid-column: 1 / -1;
    height: 8px;
    border: 2px solid #000;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.story-progress-bar #storyProgressFill {
    display: block;
    height: 100%;
    width: 34%;
    background: #ff1744;
    transition: width 0.35s ease;
}

.story-caption {
    margin: 0.7rem 0 0;
    padding: 0.65rem 0.7rem;
    border: 2px solid #000;
    border-radius: 10px;
    background: #f8f8f8;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes pulseLiveDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.65; }
}

/* Professional testimonials */
.home-testimonials {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.testimonial-card {
    border: 3px solid #000;
    border-radius: 14px;
    background: #fff;
    box-shadow: 3px 3px 0 #ff5722;
    padding: 1.1rem;
}

.testimonial-stars {
    color: #ffb800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.testimonial-quote {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border: 2px solid #000;
    border-radius: 50%;
    background: #ff1744;
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-meta strong {
    display: block;
}

.testimonial-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-cta .btn-secondary {
    text-decoration: none;
}

@media (max-width: 900px) {
    .story-layout {
        grid-template-columns: 1fr;
    }

    .cartoon-stage {
        height: 280px;
    }
}

/* Brand palette refresh (professional dark navy + electric blue + signal red) */
.navbar {
    background: rgba(11, 31, 58, 0.94) !important;
    border-bottom: 3px solid var(--signal) !important;
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.35) !important;
}

.nav-link {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(11, 31, 58, 0.22) !important;
    color: var(--primary) !important;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

.nav-cta,
.nav-link-cta-book,
.sticky-cta-book,
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #c62828) !important;
    border-color: #7f1d1d !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(197, 41, 38, 0.32) !important;
}

.nav-cta:hover,
.nav-link-cta-book:hover,
.sticky-cta-book:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #f44336, var(--accent)) !important;
}

.nav-cta-call,
.nav-link-cta-call,
.btn-secondary,
.portal-btn {
    background: linear-gradient(135deg, var(--secondary), #1565c0) !important;
    border-color: #0d47a1 !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(30, 136, 229, 0.28) !important;
}

.nav-cta-call:hover,
.nav-link-cta-call:hover,
.btn-secondary:hover,
.portal-btn:hover {
    background: linear-gradient(135deg, #42a5f5, var(--secondary)) !important;
}

.section-badge {
    background: var(--signal) !important;
    border-color: #d39e00 !important;
    color: var(--primary) !important;
}

.service-card,
.work-card,
.testimonial-card,
.quick-step-card,
.card,
.faq-card,
.pricing-card {
    background: var(--surface-bg) !important;
    border-color: rgba(11, 31, 58, 0.18) !important;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.12) !important;
}

.service-card h3,
.work-card h3,
.testimonial-card h3,
.testimonial-meta strong {
    color: var(--primary) !important;
}

.story-live-dot {
    background: #43a047 !important;
}

.showreel-hud span,
.showreel-metrics article,
.showreel-copy {
    background: rgba(11, 31, 58, 0.84) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.showreel-copy h4 {
    color: #fff !important;
}

.story-step.is-active {
    background: var(--signal) !important;
    color: var(--primary) !important;
}

#storyProgressFill,
.route-line-progress {
    background: linear-gradient(90deg, var(--signal), var(--accent)) !important;
}
