/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #EA580C;
    --primary-dark: #C2410C;
    --secondary-color: #1E293B;
    --accent-color: #F97316;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --text-dark: #F1F5F9;
    --text-light: #94A3B8;
    --bg-light: #1E293B;
    --bg-white: #0F172A;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Default to dark theme */
body {
    background-color: #0F172A;
    color: #F1F5F9;
}

body[data-theme="light"] {
    background-color: #FFFFFF;
    color: #0F172A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(8, 13, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: background 300ms ease, border-color 300ms ease;
}

.navbar.scrolled {
    background: rgba(8, 13, 24, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

body[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nav logo (unchanged - prush-logo-wrap lives in nav) */
.navbar .prush-icon { width: 40px; height: 40px; }
.navbar .prush-name { font-size: 16px; }
.navbar .prush-sub { font-size: 8px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    position: relative;
    transition: color 200ms ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    transform: scaleX(1);
}

body[data-theme="light"] .nav-link {
    color: rgba(15, 23, 42, 0.6);
}

body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active {
    color: var(--text-dark);
}

.nav-cta {
    display: inline-block;
    background: #EA580C;
    color: #fff !important;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 150ms ease, filter 150ms ease;
}

.nav-cta:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
}

/* Theme Toggle - pill switch */
.theme-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle-track {
    display: block;
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="light"] .theme-toggle-track {
    background: rgba(226, 232, 240, 0.9);
    border-color: rgba(15, 23, 42, 0.1);
}

.theme-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #64748b;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="light"] .theme-toggle-thumb {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
}

body[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(18px);
    background: #f1f5f9;
}

.theme-toggle .theme-icon {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    pointer-events: none;
}
.theme-toggle .sun-icon { left: 5px; }
.theme-toggle .moon-icon { right: 5px; }
body[data-theme="light"] .theme-toggle .moon-icon { opacity: 0; }
body[data-theme="dark"] .theme-toggle .sun-icon { opacity: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

body[data-theme="light"] .hamburger span {
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(234, 88, 12, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding-top: 88px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

body[data-theme="light"] .hero {
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.hero-text-wrapper {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #EA580C, #ff6b2b);
    border-radius: 2px;
    margin: 1.25rem auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-trust-line {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    animation: heroTrustFade 1.5s ease-out 0.5s both;
}

body[data-theme="light"] .hero-trust-line {
    color: rgba(15, 23, 42, 0.55);
}

@keyframes heroTrustFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5), 0 0 0 0 rgba(234, 88, 12, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.6), 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(234, 88, 12, 0.2);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-fleet-image {
    width: 100%;
    max-width: min(900px, 100%);
    height: auto;
    margin: 2.5rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(234, 88, 12, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    opacity: 1;
    filter: none;
    position: relative;
    z-index: 3;
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

.hero-fleet-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(234, 88, 12, 0.15);
    animation-play-state: paused;
}

@keyframes heroImageZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
}

.hero-fleet-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(234, 88, 12, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(234, 88, 12, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(234, 88, 12, 0.4) 50%, 
        transparent 100%);
    opacity: 0.6;
}

.stat-item {
    text-align: center;
    padding: 1.75rem 2rem;
    background: rgba(234, 88, 12, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    min-width: 160px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(234, 88, 12, 0.1) 0%, 
        rgba(234, 88, 12, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: rgba(234, 88, 12, 0.12);
    border-color: rgba(234, 88, 12, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25),
                0 0 0 1px rgba(234, 88, 12, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 30px rgba(234, 88, 12, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    overflow-x: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform, filter;
}

/* Sections below viewport - blurred and zoomed out */
section:not(.in-view):not(#home) {
    opacity: 0.4;
    transform: translateY(40px) scale(0.96);
    filter: blur(3px);
}

/* Sections entering viewport - smooth zoom and fade in */
section.scroll-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

/* Hero section always visible */
#home {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Section */
.services {
    background: #1E293B;
    transition: background-color 0.3s ease;
    padding: 6rem 0;
}

body[data-theme="light"] .services {
    background: var(--bg-light);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Modern Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.services-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
}

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

.service-card-modern {
    background: #0F172A;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(234, 88, 12, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body[data-theme="light"] .service-card-modern {
    background: white;
    border-color: rgba(234, 88, 12, 0.1);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.35);
    border-left: 3px solid var(--primary-color);
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(234, 88, 12, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

.service-icon-modern svg {
    width: 32px;
    height: 32px;
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description-modern {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Operational Standards, Industries Served, Why Choose Us */
.operational-standards,
.industries-served,
.why-choose-us {
    padding: 5rem 0;
    transition: background-color 0.3s ease;
}

.operational-standards {
    background: var(--bg-white);
}

body[data-theme="dark"] .operational-standards {
    background: #0F172A;
}

.industries-served {
    background: var(--bg-light);
}

body[data-theme="dark"] .industries-served {
    background: #1E293B;
}

.why-choose-us {
    background: var(--bg-white);
}

body[data-theme="dark"] .why-choose-us {
    background: #0F172A;
}

/* Fleet Section */
.fleet-section {
    padding: 5rem 0;
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

body[data-theme="dark"] .fleet-section {
    background: #1E293B;
}

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

@media (max-width: 700px) {
    .fleet-grid { grid-template-columns: 1fr; }
}

.fleet-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(234, 88, 12, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body[data-theme="dark"] .fleet-card {
    background: #0F172A;
    border-color: rgba(234, 88, 12, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(234, 88, 12, 0.2), 0 0 0 1px rgba(234, 88, 12, 0.15);
}

body[data-theme="dark"] .fleet-card:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(234, 88, 12, 0.25);
}

.fleet-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1E293B;
    position: relative;
}

.fleet-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    pointer-events: none;
}

.fleet-card:hover .fleet-card-image::after {
    border-color: rgba(234, 88, 12, 0.5);
    box-shadow: inset 0 0 20px rgba(234, 88, 12, 0.15);
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.06);
}

.fleet-card-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    margin: 0;
}

/* Coverage Area Section */
.coverage-section {
    padding: 4rem 0;
    position: relative;
    background: #1E293B;
    overflow: hidden;
}

body[data-theme="light"] .coverage-section {
    background: var(--bg-light);
}

.coverage-map-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpath fill='none' stroke='%23EA580C' stroke-width='0.5' d='M80 150 Q120 100 200 120 T320 140'/%3E%3Cpath fill='none' stroke='%23EA580C' stroke-width='0.5' d='M100 180 Q180 160 260 170'/%3E%3Ccircle cx='200' cy='150' r='8' fill='%23EA580C' opacity='0.6'/%3E%3Ccircle cx='120' cy='120' r='4' fill='%23EA580C'/%3E%3Ccircle cx='280' cy='180' r='4' fill='%23EA580C'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.coverage-section .section-header {
    position: relative;
    z-index: 1;
}

.coverage-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.coverage-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coverage-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.15);
}

.coverage-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.coverage-block-icon svg {
    width: 20px;
    height: 20px;
}

/* Automotive Logistics Specialists */
.logistics-specialists-section {
    padding: 5rem 0;
    background: var(--bg-white);
    transition: background-color 0.3s ease;
}

body[data-theme="dark"] .logistics-specialists-section {
    background: #0F172A;
}

.logistics-specialists-section .section-subtitle {
    max-width: 720px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.specialist-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(234, 88, 12, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body[data-theme="dark"] .specialist-card {
    background: #1E293B;
    border-color: rgba(234, 88, 12, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.specialist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.12);
}

.specialist-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(234, 88, 12, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.specialist-icon svg {
    width: 24px;
    height: 24px;
}

.specialist-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.specialist-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Why Automotive Businesses Trust */
.why-trust-section {
    padding: 5rem 0;
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

body[data-theme="dark"] .why-trust-section {
    background: #1E293B;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1000px) {
    .why-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .why-trust-grid { grid-template-columns: 1fr; }
}

.why-trust-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(234, 88, 12, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body[data-theme="dark"] .why-trust-card {
    background: #0F172A;
    border-color: rgba(234, 88, 12, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.why-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.1);
}

.why-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(234, 88, 12, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-trust-icon svg {
    width: 24px;
    height: 24px;
}

.why-trust-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-trust-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Mid-page CTA Strip */
.cta-strip {
    position: relative;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0b1220 100%);
    overflow: hidden;
}

.cta-strip-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(234, 88, 12, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-strip .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-strip-heading {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.cta-strip-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem;
}

.cta-strip-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-strip-buttons .btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-strip-buttons .btn-primary:hover {
    box-shadow: 0 8px 28px rgba(234, 88, 12, 0.45);
}

/* Partners Strip */
.partners-strip {
    padding: 2.5rem 0;
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

body[data-theme="dark"] .partners-strip {
    background: rgba(30, 41, 59, 0.5);
}

.partners-strip-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 1.5rem;
}

.partners-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.partners-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--bg-white);
    border: 1px solid rgba(234, 88, 12, 0.1);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="dark"] .partners-block {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(234, 88, 12, 0.15);
}

.partners-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.1);
}

.partners-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.partners-block-icon svg {
    width: 18px;
    height: 18px;
}

/* Contact reassurance */
.contact-reassurance {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* Footer description */
.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    max-width: 320px;
}

body[data-theme="light"] .footer-description {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-trust-line {
        font-size: 0.8125rem;
        margin-top: 1.25rem;
        padding: 0 0.5rem;
    }
    .logistics-specialists-section .section-subtitle,
    .coverage-section .section-subtitle {
        padding: 0 0.5rem;
    }
    .cta-strip {
        padding: 2.5rem 1rem;
    }
    .cta-strip-buttons .btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
    }
    .partners-strip-grid {
        gap: 0.75rem;
    }
    .partners-block {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

.standards-content {
    max-width: 720px;
    margin: 0 auto;
}

.standards-list,
.industries-list,
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standards-list li,
.industries-list li,
.why-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.standards-list li::before,
.industries-list li::before,
.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.why-list li::before {
    background: var(--primary-color);
}

.standards-closing {
    margin-top: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.industries-list,
.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.industries-list li,
.why-list li {
    margin-bottom: 0.75rem;
}

.service-features-modern li {
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.service-feature {
    background: #0F172A;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body[data-theme="light"] .service-feature {
    background: white;
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature:hover::before {
    transform: scaleX(1);
}

.service-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(234, 88, 12, 0.3);
}

.service-feature.large {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #0F172A;
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: 16px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.service-feature.large:hover {
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
    transform: translateY(-2px);
}

body[data-theme="light"] .service-feature.large {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-number {
    position: absolute;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(234, 88, 12, 0.06);
    line-height: 1;
    z-index: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-large {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid rgba(234, 88, 12, 0.2);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-feature:hover .service-icon-wrapper {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

.service-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-feature.large .service-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.25rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.service-feature.large .service-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features-list li {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.service-feature {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.ceo-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.ceo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.ceo-title {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.about-features .feature-item:first-child {
    grid-column: 1 / -1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-fleet-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-fleet-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    background: #1E293B;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-color);
    color: var(--text-light);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body[data-theme="light"] .image-placeholder {
    background: var(--bg-light);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.placeholder-note {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-top: 0.5rem;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: #1E293B;
    transition: background-color 0.3s ease;
}

body[data-theme="light"] .pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #0F172A;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

body[data-theme="light"] .pricing-card {
    background: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: #0F172A;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .pricing-note {
    background: white;
}

/* Testimonials Section */
.testimonials {
    background: #1E293B;
    padding: 5rem 0;
    transition: background-color 0.3s ease;
}

body[data-theme="light"] .testimonials {
    background: var(--bg-light);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 2rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.testimonial-card-inner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="light"] .testimonial-card-inner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-color: rgba(234, 88, 12, 0.15);
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.4);
}

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

body[data-theme="light"] .testimonial-card {
    background: white;
}

.testimonial-quote-large {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote-large svg {
    width: 64px;
    height: 64px;
    opacity: 0.2;
    filter: drop-shadow(0 4px 8px rgba(234, 88, 12, 0.3));
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: rgba(234, 88, 12, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Simplified Pricing Section */
.pricing-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-item {
    text-align: center;
    padding: 2rem;
    background: #0F172A;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    min-width: 280px;
}

body[data-theme="light"] .pricing-item {
    background: white;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-value .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-value .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-divider {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-note-simple {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Transitions */
/* Duplicate removed - using blur/zoom scroll animations above */

/* Removed transition prevention - using smooth scroll only */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed all slide transition styles - using smooth scroll only */

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: #1E293B;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .contact-form-wrapper {
    background: var(--bg-light);
    border: none;
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #0F172A;
    color: #F1F5F9;
}

body[data-theme="light"] .form-group input,
body[data-theme="light"] .form-group select,
body[data-theme="light"] .form-group textarea {
    background: white;
    color: var(--text-dark);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(234, 88, 12, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    max-height: 120px;
}

.contact-form .btn {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    background: #080d18;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    border-top: 1px solid rgba(234, 88, 12, 0.2);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

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

@media (max-width: 500px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.footer-col-brand .prush-logo-wrap {
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    max-width: 260px;
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.footer-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: #fff;
}

body[data-theme="light"] .footer {
    background: #0a0f18;
    border-top-color: rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .footer-tagline {
    color: rgba(255, 255, 255, 0.55);
}

body[data-theme="light"] .footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .footer-links a:hover {
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0 2rem;
    font-size: 0.8125rem;
}

.footer-bottom-left {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-center {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 150ms ease;
}

.footer-bottom-right a:hover {
    color: #fff;
}

.footer-bottom-meta {
    font-size: 0.75rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
    .footer-bottom-right {
        align-items: center;
    }
}

/* Legacy footer classes (e.g. for logo img) */
.footer-logo-img { height: 90px; width: auto; max-width: 450px; object-fit: contain; }
.footer-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-bottom { display: none; }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    overflow: hidden;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.scroll-to-top:hover::before {
    width: 100%;
    height: 100%;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.6);
    background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.scroll-to-top:active {
    transform: translateY(-4px) scale(1.02);
}

/* Nav: hamburger and slide-in panel from right below 1024px */
@media (max-width: 1023px) {
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    body.nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        background: rgba(8, 13, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 5rem 1.5rem 2rem;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        align-items: stretch;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { transform: translateX(0); }
    body[data-theme="light"] .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        border-left-color: rgba(0, 0, 0, 0.08);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.1);
    }
    .nav-menu li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .nav-menu li:last-child { border-bottom: none; }
    body[data-theme="light"] .nav-menu li { border-bottom-color: rgba(0, 0, 0, 0.06); }
    .nav-menu .nav-link { display: block; padding: 0.875rem 0.5rem; }
    .nav-menu .nav-link::after { left: 0.5rem; right: 0.5rem; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .logo-img,
    .prush-logo-img {
        height: 70px;
        max-width: 380px;
    }
    .logo-img {
        filter: brightness(1.15) contrast(1.25) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    }

    .prush-logo-wrap {
        gap: 8px;
        min-width: 0;
    }
    .prush-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    .prush-name {
        font-size: 14px !important;
        letter-spacing: 1.5px !important;
    }
    .prush-sub {
        font-size: 7px !important;
        letter-spacing: 1.5px !important;
    }
    .prush-logo-wrap.footer-variant .prush-icon {
        width: 32px;
        height: 32px;
    }
    .prush-logo-wrap.footer-variant .prush-name {
        font-size: 13px !important;
    }
    .prush-logo-wrap.footer-variant .prush-sub {
        font-size: 6px !important;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1.25rem 1rem;
        max-width: 100%;
    }

    .hero-text-wrapper {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
        padding: 0 0.25rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 2rem;
        padding: 0;
    }

    .btn {
        flex: 1;
        min-width: 0;
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        max-width: 160px;
    }

    .btn-primary {
        box-shadow: 0 4px 16px rgba(234, 88, 12, 0.4);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: none;
    }

    .hero-fleet-image {
        max-width: 100%;
        margin: 2rem auto;
        border-radius: 16px;
    }

    .hero-stats {
        gap: 0.75rem;
        padding: 1rem 0.5rem;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .stat-item,
    body.premium .stat-item {
        padding: 1rem 0.5rem;
        min-width: 0 !important;
        width: 100%;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-feature.large {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .service-visual {
        min-height: 200px;
    }

    .service-number {
        font-size: 8rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .service-icon-large svg {
        width: 50px;
        height: 50px;
    }

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .footer-logo-img {
        height: 75px;
        max-width: 380px;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .footer-ceo-info {
        text-align: center;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a,
    .footer-links li {
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
        max-width: 100%;
    }

    .hero {
        padding-top: 95px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem 0.75rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        max-width: 145px;
        min-width: 0;
    }

    .hero-fleet-image {
        margin: 1.5rem auto;
        border-radius: 12px;
        max-width: 100%;
        height: auto;
    }

    .hero-stats {
        padding: 1rem 0.5rem;
        gap: 0.75rem;
        margin-top: 1.5rem;
        background: rgba(15, 23, 42, 0.2);
        backdrop-filter: blur(12px);
        display: grid;
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .stat-item,
    body.premium .stat-item {
        padding: 0.875rem 0.5rem;
        min-width: 0 !important;
        width: 100%;
    }

    .stat-number {
        font-size: 1.875rem;
        margin-bottom: 0.375rem;
    }

    .stat-label {
        font-size: 0.625rem;
        letter-spacing: 0.1em;
        line-height: 1.3;
    }

    .footer-logo-img {
        height: 70px;
        max-width: 350px;
    }

    .footer-description {
        font-size: 0.8125rem;
    }

    .footer-links {
        gap: 0.875rem 1.25rem;
    }

    .footer-links a,
    .footer-links li {
        font-size: 0.8125rem;
    }

    .service-card,
    .pricing-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        gap: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        gap: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
}

/* ============================================
   Premium UI (inlined from premium.css)
   ============================================ */
body.premium{font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;line-height:1.65;-webkit-font-smoothing:antialiased}
body.premium .section-title,body.premium .hero-title,body.premium .service-title-modern,body.premium .industry-title,body.premium .author-name,body.premium .ceo-name,body.premium .footer-title{font-family:'Inter Tight','Inter',sans-serif;font-weight:700;letter-spacing:-0.02em}
body.premium .hero-title{font-size:clamp(2.25rem,6vw,4.5rem);line-height:1.1;font-weight:800;word-wrap:break-word;overflow-wrap:break-word}
@media (max-width:480px){body.premium .hero-title{font-size:clamp(1.5rem,6vw,2.25rem)}}
@media (min-width:768px){body.premium .hero-title{font-size:clamp(3rem,5vw,4.5rem)}}
@media (min-width:1024px){body.premium .hero-title{font-size:72px}}
body.premium .hero-subtitle{font-size:clamp(1rem,1.5vw,1.125rem);line-height:1.75;letter-spacing:0.01em}
.hero-fleetpulse-line{font-size:0.8rem;color:rgba(255,255,255,0.5);margin-top:0.75rem;margin-bottom:0}
.hero-fleetpulse-line a{color:rgba(234,88,12,0.9);text-decoration:none;font-weight:500;transition:color 0.2s ease}
.hero-fleetpulse-line a:hover{color:var(--primary-color);text-decoration:underline}
body.premium[data-theme="light"] .hero-fleetpulse-line{color:rgba(15,23,42,0.5)}
body.premium[data-theme="light"] .hero-fleetpulse-line a{color:var(--primary-color)}
body.premium{background:radial-gradient(ellipse at 20% 20%,#18233a 0%,#0b1424 50%,#070d18 100%);background-attachment:fixed}
body.premium[data-theme="light"]{background:#f8fafc;background-image:radial-gradient(ellipse at 20% 0%,rgba(234,88,12,0.04) 0%,transparent 50%)}
body.premium[data-theme="light"] .hero-gradient{background:linear-gradient(180deg,#1e293b 0%,#0f172a 100%);opacity:0.97}
body.premium[data-theme="light"] .hero-content{color:#fff}
body.premium[data-theme="light"] .hero-title,body.premium[data-theme="light"] .hero-subtitle,body.premium[data-theme="light"] .stat-label{color:inherit}
body.premium[data-theme="light"] .stat-number{background:linear-gradient(135deg,var(--primary-color),var(--accent-color));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
/* Premium navbar: glass, scroll glow, active underline, logo, CTA */
body.premium .navbar{background:rgba(8,13,24,0.85);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,0.06);transition:background 300ms ease,border-color 300ms ease}
body.premium .navbar.scrolled{background:rgba(8,13,24,0.97);border-bottom-color:rgba(255,255,255,0.1)}
body.premium .nav-link::after{transform:scaleX(0);transform-origin:left;transition:transform 200ms ease}
body.premium .nav-link:hover::after,body.premium .nav-link.active::after{transform:scaleX(1)}
body.premium .logo:hover{transform:scale(1.05);opacity:1}
body.premium .logo:hover .logo-img{filter:brightness(1.2) contrast(1.25) drop-shadow(0 2px 8px rgba(0,0,0,0.3)) drop-shadow(0 0 20px rgba(234,88,12,0.25))}
body.premium .btn-primary{background:linear-gradient(135deg,#ff6a00,#ff8c24);box-shadow:0 8px 30px rgba(255,120,40,0.25)}
body.premium .btn-primary:hover{transform:scale(1.03) translateY(-2px);box-shadow:0 10px 35px rgba(255,120,40,0.3),0 0 28px rgba(255,120,40,0.15);transition:transform 0.25s ease,box-shadow 0.25s ease}
body.premium[data-theme="light"] .navbar{background:rgba(255,255,255,0.72);border-bottom-color:rgba(15,23,42,0.08)}
body.premium[data-theme="light"] .navbar.scrolled{background:rgba(255,255,255,0.9);box-shadow:0 1px 0 rgba(234,88,12,0.15),0 0 20px rgba(0,0,0,0.04)}
body.premium[data-theme="light"] .nav-link:hover{color:var(--primary-color)}
body.premium .hero{background:transparent;position:relative}
body.premium .hero::before,body.premium .hero::after{display:none}
body.premium .hero-bg{position:absolute;inset:0;overflow:hidden;z-index:0}
body.premium .hero-gradient{position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,#18233a 0%,#0b1424 60%);animation:premiumGlow 15s ease-in-out infinite alternate}
@keyframes premiumGlow{0%{opacity:1}100%{opacity:0.92}}
body.premium .hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);background-size:60px 60px;mask-image:radial-gradient(ellipse 80% 60% at 50% 50%,black 20%,transparent 70%);-webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 50%,black 20%,transparent 70%);animation:heroGridPulse 8s ease-in-out infinite}
@keyframes heroGridPulse{0%,100%{opacity:0.6}50%{opacity:1}}
body.premium .hero-noise{position:absolute;inset:0;opacity:0.03;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");pointer-events:none}
body.premium .hero-glow-cta{position:absolute;width:400px;height:300px;top:30%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(234,88,12,0.2) 0%,transparent 70%);pointer-events:none;filter:blur(40px)}
body.premium .hero-glow-image{position:absolute;width:500px;height:400px;bottom:5%;left:50%;transform:translateX(-50%);background:radial-gradient(circle,rgba(234,88,12,0.15) 0%,transparent 65%);pointer-events:none;filter:blur(50px)}
body.premium .hero-overlay{opacity:0.5}
body.premium .hero-text-wrapper{position:relative}
body.premium .hero-headline-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:140%;height:120%;max-width:100vw;background:radial-gradient(ellipse at center,rgba(255,110,30,0.15) 0%,transparent 60%);pointer-events:none;z-index:0}
body.premium .hero-title{position:relative;z-index:1}
body.premium .hero-subtitle{position:relative;z-index:1}
body.premium .hero-buttons{position:relative;z-index:1}
body.premium .hero-stats .stat-item:not(:has(.stat-number)) .stat-label{font-size:0.9rem;line-height:1.35;margin:0}
body.premium .hero-stats .stat-item:not(:has(.stat-number)) .stat-icon{margin-bottom:0.5rem}
/* Trust section */
body.premium .trust-section{padding:3.5rem 0;background:rgba(11,20,36,0.4);border-top:1px solid rgba(255,255,255,0.04)}
body.premium .trust-title{text-align:center;font-family:'Inter Tight','Inter',sans-serif;font-size:clamp(1.35rem,2.5vw,1.6rem);font-weight:700;color:var(--text-dark);margin:0 0 2rem;letter-spacing:-0.02em}
body.premium .trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem 2rem;max-width:1000px;margin:0 auto}
@media (max-width:900px){body.premium .trust-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:500px){body.premium .trust-grid{grid-template-columns:1fr}}
body.premium .trust-item{display:flex;align-items:center;gap:0.75rem;padding:0.5rem 0;opacity:0;transform:translateY(10px);transition:opacity 0.3s ease,transform 0.3s ease}
body.premium .trust-item.reveal-in{opacity:1;transform:translateY(0)}
body.premium .trust-check{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:rgba(234,88,12,0.15);border:1px solid rgba(234,88,12,0.3);display:flex;align-items:center;justify-content:center;color:var(--primary-color);transition:transform 0.25s ease,box-shadow 0.25s ease}
body.premium .trust-check svg{width:12px;height:12px}
body.premium .trust-item:hover .trust-check{transform:scale(1.1);box-shadow:0 0 12px rgba(234,88,12,0.2)}
body.premium[data-theme="light"] .trust-section{background:rgba(248,250,252,0.8);border-top-color:rgba(15,23,42,0.06)}
/* Services: featured + 3 small */
body.premium .services-layout{display:flex;flex-direction:column;gap:1.5rem}
body.premium .service-card-featured{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:20px;padding:2.5rem 3rem;position:relative;transition:transform 0.25s ease,border-color 0.25s ease,box-shadow 0.25s ease}
@media (max-width:768px){body.premium .service-card-featured{padding:1.5rem 1.25rem}body.premium .service-card-featured .service-card-arrow{top:1rem;right:1rem}}
body.premium .service-card-featured:hover{transform:translateY(-6px);border-color:rgba(234,88,12,0.3);box-shadow:0 20px 48px rgba(0,0,0,0.25),0 0 0 1px rgba(234,88,12,0.15),0 0 40px rgba(234,88,12,0.2)}
body.premium .service-card-featured .service-icon-modern{width:56px;height:56px}
body.premium .service-card-featured .service-icon-modern svg{width:30px;height:30px}
body.premium .service-card-featured .service-title-modern{font-size:1.5rem}
body.premium .services-grid-secondary{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
@media (max-width:768px){body.premium .services-grid-secondary{grid-template-columns:1fr}}
body.premium .service-card-small{padding:1.75rem}
body.premium .service-card-small .service-title-modern{font-size:1.1rem}
body.premium .service-card-small .service-description-modern{font-size:0.9rem}
body.premium .service-card-small{transition:transform 0.25s ease,border-color 0.25s ease,box-shadow 0.25s ease}
body.premium .service-card-small:hover{transform:translateY(-6px);border-color:rgba(234,88,12,0.25);box-shadow:0 16px 40px rgba(0,0,0,0.2),0 0 0 1px rgba(234,88,12,0.1)}
body.premium .service-card-small:hover .service-icon-modern{transform:scale(1.05) rotate(3deg)}
body.premium .service-card-featured:hover .service-icon-modern{transform:scale(1.05) rotate(3deg)}
body.premium .service-card-featured .service-card-arrow{top:2rem;right:2rem}
/* Why Choose Us: vertical list */
body.premium .why-list-vertical{list-style:none;padding:0;margin:0;max-width:640px;margin:0 auto}
body.premium .why-list-item{display:flex;align-items:center;gap:1.25rem;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,0.05);opacity:0;transform:translateX(-12px);transition:opacity 0.3s ease,transform 0.3s ease,border-color 0.3s ease}
body.premium .why-list-item:last-child{border-bottom:none}
body.premium .why-list-item.reveal-in{opacity:1;transform:translateX(0)}
body.premium .why-list-icon{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:rgba(234,88,12,0.12);border:1px solid rgba(234,88,12,0.25);display:flex;align-items:center;justify-content:center;color:var(--primary-color);transition:transform 0.25s ease}
body.premium .why-list-icon svg{width:16px;height:16px}
body.premium .why-list-item:hover .why-list-icon{transform:scale(1.08)}
body.premium[data-theme="light"] .why-list-item{border-bottom-color:rgba(15,23,42,0.08)}
/* Experience section highlight */
body.premium .experience-section{position:relative}
body.premium .experience-headline-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;max-width:800px;height:80%;background:radial-gradient(ellipse at center,rgba(255,110,30,0.08) 0%,transparent 70%);pointer-events:none;z-index:0}
body.premium .experience-section .container{position:relative;z-index:1}
body.premium .experience-headline{position:relative}
body.premium .hero-title-underline{position:relative;display:inline-block}
body.premium .hero-title-underline::after{content:'';position:absolute;left:0;bottom:-4px;width:0;height:4px;background:linear-gradient(90deg,var(--primary-color),var(--accent-color));border-radius:2px;animation:heroUnderline 1.2s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;box-shadow:0 0 20px rgba(234,88,12,0.5)}
@keyframes heroUnderline{to{width:100%}}
body.premium .hero-fleet-image{opacity:1}
body.premium .hero-fleet-image:hover{transform:translateY(-6px) scale(1.02);box-shadow:0 24px 48px rgba(0,0,0,0.4),0 0 60px rgba(234,88,12,0.15)}
body.premium .btn-secondary:hover{transform:scale(1.03) translateY(-2px);border-color:rgba(234,88,12,0.4);box-shadow:0 8px 32px rgba(0,0,0,0.3),0 0 24px rgba(234,88,12,0.1)}
body.premium .hero-stats{background:transparent;backdrop-filter:none;border:none;box-shadow:none;padding:0;gap:1.25rem}
body.premium .hero-stats::before,body.premium .stat-item::before{display:none}
body.premium .stat-item{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.05);border-radius:16px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);padding:1.5rem 1.75rem;min-width:140px}
body.premium .stat-item:hover{transform:translateY(-6px);border-color:rgba(234,88,12,0.2);box-shadow:0 12px 32px rgba(0,0,0,0.3),0 0 0 1px rgba(234,88,12,0.1)}
body.premium .stat-icon{width:40px;height:40px;margin:0 auto 0.75rem;display:flex;align-items:center;justify-content:center;color:var(--primary-color);border-bottom:1px solid rgba(234,88,12,0.15);padding-bottom:0.75rem;margin-bottom:0.75rem}
body.premium .stat-icon svg{width:24px;height:24px}
body.premium .stat-item:hover .stat-icon{color:var(--accent-color)}
body.premium .services{background:rgba(11,20,36,0.6)}
body.premium[data-theme="light"] .services{background:linear-gradient(180deg,#f1f5f9 0%,#e2e8f0 100%)}
body.premium .service-card-modern{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:20px;padding:2.25rem;position:relative;overflow:visible;transition:transform 0.25s ease,border-color 0.25s ease,box-shadow 0.25s ease}
body.premium .service-card-modern:hover{transform:translateY(-6px);border-color:rgba(234,88,12,0.25);box-shadow:0 20px 40px rgba(0,0,0,0.2),0 0 0 1px rgba(234,88,12,0.1)}
body.premium .service-card-modern::before{height:2px;border-radius:0 0 2px 2px}
body.premium .service-card-arrow{position:absolute;top:1.5rem;right:1.5rem;width:32px;height:32px;color:var(--primary-color);opacity:0.6;transition:transform 0.25s ease,opacity 0.25s ease}
body.premium .service-card-arrow svg{width:100%;height:100%}
body.premium .service-card-modern:hover .service-card-arrow{transform:translateX(6px);opacity:1}
body.premium .service-icon-modern{transition:transform 0.25s ease}
body.premium .service-card-modern:hover .service-icon-modern{transform:scale(1.05) rotate(3deg)}
body.premium[data-theme="light"] .service-card-modern{background:rgba(255,255,255,0.9);border-color:rgba(15,23,42,0.06);box-shadow:0 4px 20px rgba(0,0,0,0.04)}
body.premium[data-theme="light"] .service-card-modern:hover{box-shadow:0 20px 40px rgba(0,0,0,0.08),0 0 0 1px rgba(234,88,12,0.15)}
body.premium .operational-standards{border-top:1px solid rgba(255,255,255,0.06);position:relative;background:rgba(11,20,36,0.35)}
body.premium[data-theme="light"] .operational-standards{background:#fff;border-top-color:rgba(15,23,42,0.08)}
body.premium .operational-standards::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:120px;height:3px;background:linear-gradient(90deg,transparent,var(--primary-color),transparent);border-radius:2px;opacity:0.6}
body.premium[data-theme="light"] .operational-standards::before{background:linear-gradient(90deg,transparent,var(--primary-color),transparent)}
body.premium .standard-item{display:flex;align-items:center;gap:1rem;padding:0.75rem 0;opacity:0;transform:translateY(12px);transition:opacity 0.5s ease,transform 0.5s ease}
body.premium .standard-item.reveal{opacity:1;transform:translateY(0)}
body.premium .standard-icon{flex-shrink:0;width:10px;height:10px;border-radius:50%;background:var(--primary-color);box-shadow:0 0 12px rgba(234,88,12,0.4)}
body.premium .standards-list{list-style:none;padding:0;margin:0}
body.premium .standards-list li::before{display:none}
/* Section wave dividers (Hero→Services, before Industries) */
body.premium .section-wave{display:block;width:100%;height:60px;line-height:0;color:#0f1a30;margin-top:-1px}
body.premium .section-wave svg{width:100%;height:100%;display:block}
body.premium .section-wave--before-industries{color:#0a1425}
body.premium[data-theme="light"] .section-wave{color:#e2e8f0}
body.premium[data-theme="light"] .section-wave--before-industries{color:#f1f5f9}

/* Industries: 2x2 grid, feature panels, depth */
body.premium .industries-served{background:transparent;position:relative}
body.premium .industries-bg-glow{position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at center,rgba(255,110,30,0.08),transparent 70%);z-index:0}
body.premium .industries-served .container{position:relative;z-index:1}
body.premium[data-theme="light"] .industries-served{background:linear-gradient(180deg,#f8fafc 0%,#f1f5f9 100%)}
body.premium[data-theme="light"] .industries-bg-glow{background:radial-gradient(circle at center,rgba(255,110,30,0.06),transparent 70%)}
body.premium .industries-grid.industries-grid-2x2{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:1.5rem;max-width:900px;margin:0 auto}
@media (max-width:768px){body.premium .industries-grid.industries-grid-2x2{grid-template-columns:1fr}}
body.premium .industry-card{background:linear-gradient(145deg,#0f1a30,#0a1425);border:1px solid rgba(255,255,255,0.06);border-radius:16px;padding:40px;text-align:center;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);transition:transform 0.3s ease,border-color 0.3s ease,box-shadow 0.3s ease}
body.premium .industry-card:hover{transform:translateY(-6px);border-color:rgba(255,120,40,0.4);box-shadow:0 20px 40px rgba(255,120,40,0.18)}
body.premium .industry-card:hover .industry-icon{transform:scale(1.1);color:#ff8c24}
body.premium .industry-card .industry-description{max-height:0;opacity:0;overflow:hidden;margin:0;transition:max-height 0.3s ease,opacity 0.25s ease}
body.premium .industry-card:hover .industry-description{max-height:6em;opacity:1}
body.premium .industry-icon{transition:transform 0.25s ease,color 0.25s ease}
body.premium .industry-icon{width:64px;height:64px;margin:0 auto 1.25rem;display:flex;align-items:center;justify-content:center;color:#EA580C}
body.premium .industry-icon svg{width:36px;height:36px}
body.premium .industry-title{font-size:1.2rem;font-weight:700;color:var(--text-dark);margin:0 0 0.5rem;line-height:1.3}
body.premium .industry-description{font-size:0.9375rem;color:var(--text-light);line-height:1.55;margin:0}
body.premium[data-theme="light"] .industry-card{background:linear-gradient(145deg,rgba(255,255,255,0.95),rgba(248,250,252,0.98));border-color:rgba(15,23,42,0.08)}
body.premium[data-theme="light"] .industry-card:hover{border-color:rgba(234,88,12,0.25);box-shadow:0 15px 40px rgba(234,88,12,0.12)}
body.premium .why-choose-us{background:rgba(11,20,36,0.4)}
body.premium[data-theme="light"] .why-choose-us{background:#fff}
body.premium .why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem;max-width:1000px;margin:0 auto}
body.premium .why-card{display:flex;align-items:flex-start;gap:1rem;padding:1.5rem 1.75rem;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.05);border-radius:16px;transition:transform 0.35s ease,border-color 0.35s ease,box-shadow 0.35s ease}
body.premium .why-card:hover{border-color:rgba(234,88,12,0.2);box-shadow:0 8px 24px rgba(0,0,0,0.15)}
body.premium .why-check{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:rgba(234,88,12,0.15);border:1px solid rgba(234,88,12,0.3);display:flex;align-items:center;justify-content:center;color:var(--primary-color)}
body.premium .why-check svg{width:14px;height:14px}
body.premium .why-card:hover .why-check{background:rgba(234,88,12,0.25);box-shadow:0 0 16px rgba(234,88,12,0.3)}
body.premium[data-theme="light"] .why-card{background:rgba(255,255,255,0.7);border-color:rgba(15,23,42,0.08)}
body.premium .about{background:linear-gradient(180deg,rgba(11,20,36,0.4) 0%,rgba(7,13,24,0.6) 100%)}
body.premium[data-theme="light"] .about{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)}
body.premium .ceo-info{border-top:2px solid rgba(234,88,12,0.3);padding-top:1.5rem;margin-top:1.5rem}
body.premium .about-fleet-image{border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,0.35);transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94)}
body.premium .about-image:hover .about-fleet-image{transform:scale(1.02)}
body.premium .testimonials{background:rgba(11,20,36,0.5)}
body.premium[data-theme="light"] .testimonials{background:linear-gradient(180deg,#e2e8f0 0%,#f1f5f9 100%)}
body.premium .testimonial-card-inner{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:20px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);padding:2.5rem;box-shadow:0 8px 32px rgba(0,0,0,0.2);transition:border-color 0.3s ease,box-shadow 0.3s ease}
body.premium .testimonial-card-inner:hover{border-color:rgba(234,88,12,0.15);box-shadow:0 16px 48px rgba(0,0,0,0.25),0 0 0 1px rgba(234,88,12,0.08)}
body.premium .testimonial-stars{display:flex;gap:4px;margin-bottom:1rem}
body.premium .testimonial-stars span{width:18px;height:18px;background:linear-gradient(135deg,var(--primary-color),var(--accent-color));-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat}
body.premium .author-name{font-weight:700;font-size:1.05rem}
body.premium .author-role{font-size:0.875rem;color:var(--text-light)}
body.premium[data-theme="light"] .testimonial-card-inner{background:rgba(255,255,255,0.85);border-color:rgba(15,23,42,0.08)}
body.premium .contact-form-glass{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:24px;padding:2.5rem;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);box-shadow:0 8px 32px rgba(0,0,0,0.15)}
body.premium .contact-form-glass .btn-primary{transition:box-shadow 0.35s ease,transform 0.35s ease}
body.premium .contact-form-glass .btn-primary:hover{box-shadow:0 8px 32px rgba(234,88,12,0.45),0 0 32px rgba(234,88,12,0.2)}
body.premium[data-theme="light"] .contact-form-glass{background:rgba(255,255,255,0.9);border-color:rgba(15,23,42,0.08);box-shadow:0 4px 24px rgba(0,0,0,0.06)}

/* FleetPulse: Powered By Our Own Technology */
body.premium .fleetpulse-section{padding:4rem 0;background:linear-gradient(135deg,#312e81 0%,#1e3a5f 40%,#1e293b 100%)}
body.premium[data-theme="light"] .fleetpulse-section{background:linear-gradient(135deg,rgba(79,70,229,0.12) 0%,rgba(59,130,246,0.1) 50%,rgba(99,102,241,0.08) 100%)}
body.premium .fleetpulse-card{position:relative;background:linear-gradient(145deg,#0f1a30,#0a1425);border:1px solid rgba(234,88,12,0.15);border-left:3px solid #6d28d9;border-radius:24px;padding:3rem;max-width:900px;margin:0 auto;box-shadow:0 20px 60px rgba(0,0,0,0.3),0 0 0 1px rgba(255,255,255,0.03);overflow:hidden}
body.premium .fleetpulse-card::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(ellipse at top left,rgba(109,40,217,0.12) 0%,transparent 60%);pointer-events:none}
body.premium .fleetpulse-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#6d28d9,#3b82f6,#6d28d9);background-size:200% 100%;animation:fleetpulseTopBorder 4s ease-in-out infinite}
@keyframes fleetpulseTopBorder{0%{background-position:0% 50%}100%{background-position:200% 50%}}
body.premium[data-theme="light"] .fleetpulse-card{background:linear-gradient(145deg,rgba(255,255,255,0.95),rgba(248,250,252,0.98));border-color:rgba(234,88,12,0.2);border-left-color:#6d28d9;box-shadow:0 20px 60px rgba(0,0,0,0.06)}
body.premium .fleetpulse-label{display:block;font-family:'Inter Tight','Inter',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:var(--primary-color);margin-bottom:0.5rem;position:relative;z-index:1}
body.premium .fleetpulse-name{font-family:'Inter Tight','Inter',sans-serif;font-size:clamp(2rem,4vw,2.75rem);font-weight:800;letter-spacing:-0.02em;color:#fff;margin:0 0 0.25rem;line-height:1.1;position:relative;z-index:1}
body.premium[data-theme="light"] .fleetpulse-name{color:var(--text-dark)}
body.premium .fleetpulse-tagline{font-size:1rem;font-weight:600;color:rgba(255,255,255,0.7);margin:0 0 1.25rem;letter-spacing:0.02em;position:relative;z-index:1}
body.premium[data-theme="light"] .fleetpulse-tagline{color:var(--text-light)}
body.premium .fleetpulse-description{font-size:1rem;line-height:1.7;color:rgba(255,255,255,0.85);margin:0 0 2rem;max-width:640px;position:relative;z-index:1}
body.premium[data-theme="light"] .fleetpulse-description{color:var(--text-dark);opacity:0.9}
body.premium .fleetpulse-features{list-style:none;padding:0;margin:0 0 2rem;display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem 1.5rem;position:relative;z-index:1}
@media (max-width:768px){body.premium .fleetpulse-features{grid-template-columns:repeat(2,1fr)}}
@media (max-width:400px){body.premium .fleetpulse-features{grid-template-columns:1fr}}
body.premium .fleetpulse-feature{display:flex;align-items:center;gap:0.75rem;font-size:0.9rem;color:rgba(255,255,255,0.9);padding:0.5rem 0}
body.premium[data-theme="light"] .fleetpulse-feature{color:var(--text-dark)}
body.premium .fleetpulse-feature-icon{flex-shrink:0;width:28px;height:28px;border-radius:8px;background:rgba(234,88,12,0.12);border:1px solid rgba(234,88,12,0.25);display:flex;align-items:center;justify-content:center;color:var(--primary-color);transition:background 200ms ease,border-color 200ms ease}
body.premium .fleetpulse-feature:hover .fleetpulse-feature-icon{background:rgba(234,88,12,0.2);border-color:rgba(234,88,12,0.45)}
body.premium .fleetpulse-feature-icon svg{width:14px;height:14px}
body.premium .fleetpulse-cta{display:inline-block;background:linear-gradient(135deg,#6d28d9,#3b82f6)!important;border:none;color:#fff!important;transition:filter 150ms ease,transform 150ms ease,box-shadow 150ms ease}
body.premium .fleetpulse-cta:hover{filter:brightness(1.1);transform:scale(1.02);box-shadow:0 8px 24px rgba(109,40,217,0.35)}
body.premium .fleetpulse-cta{position:relative;z-index:1}
body.premium .footer{border-top:1px solid rgba(234,88,12,0.2)}
body.premium .footer-top-border{height:1px;background:linear-gradient(90deg,transparent,rgba(234,88,12,0.4),transparent);opacity:0.8}
body.premium .footer-logo-wrap{display:inline-block;transition:filter 0.4s ease}
body.premium .footer-logo-wrap:hover{filter:drop-shadow(0 0 20px rgba(234,88,12,0.35))}
body.premium[data-theme="light"] .footer{border-top-color:rgba(15,23,42,0.08)}
body.premium .footer-social{display:flex;gap:0.75rem;margin-top:1rem}
body.premium .footer-social-link{width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;color:var(--text-light);transition:color 0.3s ease,background 0.3s ease,border-color 0.3s ease}
body.premium .footer-social-link:hover{color:var(--primary-color);background:rgba(234,88,12,0.1);border-color:rgba(234,88,12,0.2);box-shadow:0 0 20px rgba(234,88,12,0.25)}
body.premium section.reveal-in{opacity:1!important;transform:translateY(0) scale(1)!important;filter:blur(0)!important}
body.premium .why-card,body.premium .industry-card{opacity:0;transform:translateY(20px);transition:opacity 0.5s ease,transform 0.5s ease,border-color 0.35s ease,box-shadow 0.35s ease}
body.premium .why-card.reveal-in,body.premium .industry-card.reveal-in{opacity:1;transform:translateY(0)}

/* ========== PRUSH LOGISTICS — ANIMATED LOGO COMPONENT (v2) ========== */
:root{--logo-primary:#EA580C;--logo-primary-glow:#ff7a30;--logo-text-light:#f0f4ff;--logo-text-muted:#8090b0}
.prush-logo-wrap{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;cursor:pointer;user-select:none}
.prush-logo-wrap:hover{opacity:0.95}
.prush-logo-wrap:focus{outline:2px solid var(--primary-color);outline-offset:4px}
.prush-icon{position:relative;width:46px;height:46px;flex-shrink:0}
.prush-icon img{width:100%;height:100%;object-fit:contain;border-radius:10px;display:block;position:relative;z-index:2;animation:iconBreathe 3.5s ease-in-out infinite}
.prush-icon::before{content:'';position:absolute;inset:-5px;border-radius:15px;background:radial-gradient(circle,rgba(234,88,12,0.28) 0%,transparent 72%);animation:haloBreathe 3.5s ease-in-out infinite;z-index:1}
.prush-wordmark{display:flex;flex-direction:column;gap:3px;line-height:1}
.prush-name{font-family:'Inter Tight','Inter',sans-serif;font-size:19px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase;color:var(--logo-text-light);display:flex}
.prush-name span{display:inline-block;animation:letterIn 0.55s cubic-bezier(0.22,1,0.36,1) both}
.prush-name span:nth-child(1){animation-delay:0.04s}
.prush-name span:nth-child(2){animation-delay:0.09s}
.prush-name span:nth-child(3){animation-delay:0.14s}
.prush-name span:nth-child(4){animation-delay:0.19s}
.prush-name span:nth-child(5){animation-delay:0.24s}
.prush-name .letter-h{color:var(--logo-primary);animation:letterIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.24s both,arrowGlow 3.5s ease-in-out 1.2s infinite}
.prush-sub{font-family:'Inter',sans-serif;font-size:9px;font-weight:500;letter-spacing:2.8px;text-transform:uppercase;color:var(--logo-text-muted);opacity:0;animation:subFadeIn 0.7s ease 0.55s forwards;position:relative;overflow:hidden}
.prush-sub::after{content:'';position:absolute;top:0;left:0;width:80%;height:100%;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.05) 20%,rgba(255,180,80,0.25) 40%,rgba(255,255,255,0.45) 50%,rgba(255,180,80,0.25) 60%,rgba(255,255,255,0.05) 80%,transparent 100%);animation:prushSubShimmer 3.5s ease-in-out infinite;pointer-events:none}
@keyframes prushSubShimmer{0%{transform:translateX(-100%)}100%{transform:translateX(200%)}}
.prush-llc{font-size:7px;letter-spacing:1.5px;color:rgba(128,144,176,0.55);margin-left:3px}
.prush-logo-wrap.footer-variant .prush-icon{width:38px;height:38px}
.prush-logo-wrap.footer-variant .prush-name{font-size:16px;letter-spacing:2px}
.prush-logo-wrap.footer-variant .prush-sub{font-size:8px}
.prush-logo-wrap:hover .prush-icon img{transform:scale(1.06);filter:brightness(1.12);transition:transform 0.3s ease,filter 0.3s ease}
.prush-logo-wrap:hover .prush-icon::before{background:radial-gradient(circle,rgba(234,88,12,0.5) 0%,transparent 70%)}
.prush-logo-wrap:hover .prush-name{color:#fff}
@keyframes letterIn{from{opacity:0;transform:translateY(9px)}to{opacity:1;transform:translateY(0)}}
@keyframes subFadeIn{from{opacity:0;transform:translateX(-5px)}to{opacity:1;transform:translateX(0)}}
@keyframes iconBreathe{0%,100%{transform:scale(1);filter:brightness(1)}50%{transform:scale(1.04);filter:brightness(1.07)}}
@keyframes haloBreathe{0%,100%{opacity:0.7;transform:scale(1)}50%{opacity:1;transform:scale(1.18)}}
@keyframes arrowGlow{0%,80%,100%{color:var(--logo-primary);text-shadow:none}90%{color:var(--logo-primary-glow);text-shadow:0 0 14px rgba(234,88,12,0.55)}}
body[data-theme="light"] .prush-name{color:#0F172A}
body[data-theme="light"] .prush-sub{color:rgba(15,23,42,0.7)}
body[data-theme="light"] .prush-logo-wrap:hover .prush-name{color:#0F172A}

/* Mobile: prevent overflow and scale sections */
@media (max-width:768px){
    body.premium .trust-section{padding:2rem 0}
    body.premium .trust-title{padding:0 1rem;font-size:1.2rem}
    body.premium .trust-grid{gap:1rem;padding:0 0.5rem}
    body.premium .why-list-vertical{padding:0 0.5rem}
    body.premium .why-list-item{padding:0.75rem 0}
    body.premium .section-header .section-subtitle{max-width:100%;padding:0 0.25rem}
    body.premium .experience-headline{font-size:clamp(1.25rem,4vw,1.75rem);padding:0 0.5rem;text-align:center}
    body.premium .contact-form-glass{padding:1.5rem 1.25rem}
}
@media (max-width:480px){
    body.premium .trust-section{padding:1.5rem 0}
    body.premium .trust-title{font-size:1.1rem}
    body.premium .service-card-small{padding:1.25rem 1rem}
    body.premium .industry-card{padding:1.5rem 1rem}
}
