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

:root {
    --primary: #FF385C;
    --primary-dark: #E31C5F;
    --primary-light: #FF5A7D;
    --secondary: #00A699;
    --accent: #FFB400;
    --dark: #0A0E27;
    --dark-secondary: #1A1F3A;
    --dark-card: #252B49;
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --text-dark: #0A0E27;
    --text-light: #6B7280;
    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
    --gradient-secondary: linear-gradient(135deg, #00A699 0%, #008F84 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    --gradient-mesh: radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.15) 0px, transparent 0%),
                     radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 52% 99%, hsla(354, 98%, 61%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 10% 29%, hsla(256, 96%, 67%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 97% 96%, hsla(38, 60%, 74%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 33% 50%, hsla(222, 67%, 73%, 0.15) 0px, transparent 50%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.topbar {
    background: #dc2626;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.topbar-contact, .topbar-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .topbar-content {
        justify-content: space-between;
        gap: 8px;
    }
    
    .topbar-contact {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .topbar-contact a {
        font-size: 11px;
    }
    
    .topbar-contact a span {
        font-size: 10px;
    }
    
    .topbar-actions {
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .topbar-actions a {
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }
}


.header {
    background: #000000;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: #000000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .navbar-menu a {
    color: white;
}

.header.scrolled .navbar-toggle span {
    background: white;
}

.header.scrolled .logo-icon {
    filter: grayscale(0);
}

.header.scrolled .logo-name {
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.navbar-brand .logo-text {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.navbar-brand .logo-text:hover {
    transform: scale(1.05);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.4));
    transition: all 0.3s ease;
    animation: truck-drive 2s ease-in-out infinite;
}

.logo-icon path {
    stroke: white;
    transition: stroke 0.3s ease;
}

.header.scrolled .logo-icon path {
    stroke: white;
}

@keyframes truck-drive {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.logo-link:hover .logo-icon {
    animation-play-state: paused;
    transform: scale(1.1);
}

.logo-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.4));
    transition: all 0.3s ease;
}

.footer-logo-icon path {
    stroke: white;
}

.footer-logo-name {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
}

.navbar-toggle:hover {
    background: var(--gray-100);
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.navbar-menu a:not(.btn-primary):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-menu a:not(.btn-primary):hover:after {
    width: 100%;
}

.navbar-menu a:hover {
    color: #00bcd4;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 4px 14px 0 rgba(255, 56, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.5);
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.hero-fullwidth {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-carousel-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(30, 58, 138, 0.40) 50%, rgba(79, 70, 229, 0.35) 100%);
    z-index: 2;
}

.hero-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    opacity: 0.4;
}

.hero-content-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 90%;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-slider {
    position: relative;
    min-height: 280px;
    margin-bottom: 40px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    animation: slideTextIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideTextIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content-centered h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 28px;
    color: white;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-content-centered .lead {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-search-container {
    margin-top: 50px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-search-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-search-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    font-size: 1.2rem;
    pointer-events: none;
}

.hero-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 16px 16px 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-search {
    background: white;
    color: #1e3a8a;
    padding: 16px 40px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-hero-search:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: #1e3a8a;
    padding: 18px 50px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.35);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-search-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-quick-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hero-quick-link:hover {
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* New Hero Styles */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.hero-badge-new:hover {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.hero-badge-icon {
    color: #dc2626;
    filter: drop-shadow(0 2px 6px rgba(220, 38, 38, 0.4));
}

.hero-badge-new span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero-subtitle-new {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.hero-cta-section {
    margin: 48px 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta-buttons-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 20px;
}

@media (max-width: 640px) {
    .hero-cta-buttons-new {
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .btn-hero-primary-new {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .btn-hero-secondary-new {
        padding: 14px 18px;
        font-size: 0.85rem;
    }
}

.btn-hero-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #dc2626;
    color: white;
    padding: 18px 42px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary-new:hover {
    background: #b91c1c;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary-new svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary-new:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary-new:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-trust-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-align: center;
}

.hero-stats-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 64px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stat-new {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat-new:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.stat-number-new {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-carousel-track {
    display: flex;
    height: 100%;
    animation: slideCarousel 24s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-carousel-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

@keyframes slideCarousel {
    0%, 22% { transform: translateX(0); }
    25%, 47% { transform: translateX(-100%); }
    50%, 72% { transform: translateX(-200%); }
    75%, 97% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

.page-hero {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero .lead {
    position: relative;
    z-index: 2;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.steps-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.steps-slider {
    overflow: hidden;
    border-radius: 24px;
}

.steps-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .step-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .step-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

.step-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 56, 92, 0.3);
    transition: all 0.3s ease;
}

.step-slide:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-number {
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.step-slide h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.step-slide p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: fadeInUp 0.6s ease-out backwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover:before {
    opacity: 0.06;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover h3 {
    color: #1e40af;
    transform: scale(1.05);
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.92)), url('/assets/images/hero/warehouse.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.2;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 24px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

.testimonial-slide:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    margin-bottom: 24px;
    text-align: center;
}

.star {
    color: var(--accent);
    font-size: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    opacity: 0.95;
    text-align: center;
    max-width: 500px;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    text-align: center;
}

.author-company {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: center;
}

.app-coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

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

.app-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.app-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.app-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.app-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-check {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.app-stores {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.app-store-badge img {
    height: 48px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.app-store-badge img:hover {
    transform: scale(1.05);
}

.app-notify {
    font-size: 1rem;
    color: var(--text-light);
}

.notify-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.notify-link:hover {
    opacity: 0.8;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 16px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9 / 19;
}

.app-screenshot {
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
    height: 100%;
    padding: 24px 20px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mock-logo {
    font-weight: 900;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mock-menu {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mock-search {
    margin-bottom: 24px;
}

.search-bar {
    background: white;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.mock-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-box {
    background: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

.mock-map {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 48px 20px;
    border-radius: 16px;
    text-align: center;
}

.map-placeholder {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-strip {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 18px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.privacy-note {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 24px;
}

.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.social-links i {
    font-size: 20px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-badges span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header.scrolled .navbar-menu {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-fullwidth {
        min-height: 65vh;
    }
    
    .hero-content-centered {
        padding: 30px 0;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 24px;
    }
    
    .hero-text-slider {
        min-height: 240px;
        margin-bottom: 24px;
    }
    
    .hero-content-centered h1 {
        white-space: normal;
        line-height: 1.15;
    }
    
    .hero-search-box {
        flex-direction: column;
        padding: 16px;
    }
    
    .btn-hero-search {
        width: 100%;
        padding: 18px;
    }
    
    .hero-stats {
        gap: 24px;
        margin-top: 40px;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 16px;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .footer-badges {
        gap: 12px;
    }
    
    .footer-badges span {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .steps-slider-wrapper,
    .testimonials-slider-wrapper {
        padding: 0 20px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .app-features-list {
        grid-template-columns: 1fr;
    }
    
    .app-preview {
        order: -1;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card, .load-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover, .load-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #111827;
    text-align: center;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 500px;
}

.service-features {
    color: #6b7280;
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
}

.service-features li:before {
    content: "✓";
    color: #dc2626;
    font-weight: bold;
    margin-right: 8px;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list strong {
    color: white;
    font-weight: 700;
}

.contact-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.contact-list-inline .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list-inline a.contact-item:hover {
    color: white;
    transform: translateY(-2px);
}

.contact-list-inline .contact-item i {
    font-size: 18px;
    color: #dc2626;
    min-width: 20px;
}

@media (max-width: 768px) {
    .contact-list-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
