:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1d4ed8;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-text: #0f172a;
    --light-text: #475569;
    --accent-gold: #f59e0b;
    --white: #ffffff;
    --border-light: #e2e8f0;
    
    /* Glass Morphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-dark: rgba(255, 255, 255, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--dark-text);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { transform: translateX(-2%) translateY(-2%) scale(1.02); }
    100% { transform: translateX(2%) translateY(2%) scale(1.05); }
}

/* Navigation - Glass Morphism */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 60px;
    border: var(--glass-border);
    padding: 12px 25px;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: var(--glass-shadow);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-text) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.btn-primary-clean {
    background: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary-clean:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Professional Device Mockups */
.device-showcase {
    position: relative;
    padding: 40px 20px;
}

.laptop-container {
    position: relative;
    transform: perspective(1200px) rotateY(-12deg) rotateX(8deg);
    transition: all 0.4s ease;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

.laptop-container:hover {
    transform: perspective(1200px) rotateY(-8deg) rotateX(5deg) scale(1.03);
}

/* Realistic Laptop Base */
.laptop-base {
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    margin-top: -2px;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #666, transparent);
    border-radius: 0 0 8px 8px;
}

/* Professional Laptop Screen */
.laptop-screen-container {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px 20px 4px 4px;
    padding: 20px 20px 0 20px;
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.laptop-screen {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    border: 2px solid #222;
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255,255,255,0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.dashboard-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dashboard-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.laptop-container:hover .dashboard-content img {
    transform: scale(1.02);
}

/* Hero Dashboard Image */
.hero-dashboard-container {
    position: relative;
    transition: all 0.4s ease;
    max-width: 120%;
    width: 120%;
    margin-top: -60px;
    margin-left: -80px;
}

.hero-dashboard-container:hover {
    transform: scale(1.08);
}

.hero-dashboard-wrapper {
    position: relative;
}

.hero-dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    transform: scale(1.2);
}

.hero-dashboard-container:hover .hero-dashboard-image {
    transform: scale(1.3);
}

/* Professional Mobile App Showcase */
.mobile-showcase {
    position: absolute;
    bottom: -40px;
    right: -60px;
    z-index: 10;
}

.mobile-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 25px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.mobile-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mobile-device {
    width: 160px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 5px;
    box-shadow: 
        0 0 0 1px #333,
        0 15px 35px rgba(0,0,0,0.4);
    position: relative;
}

/* iPhone Side Buttons */
/* Volume buttons (left side) */
.mobile-device::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 60px;
    width: 3px;
    height: 25px;
    background: linear-gradient(90deg, #111, #2a2a2a);
    border-radius: 0 2px 2px 0;
}

.mobile-device::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 90px;
    width: 3px;
    height: 25px;
    background: linear-gradient(90deg, #111, #2a2a2a);
    border-radius: 0 2px 2px 0;
}

/* Power button (right side) */
.mobile-container::before {
    content: '';
    position: absolute;
    right: 19px;
    top: 70px;
    width: 3px;
    height: 45px;
    background: linear-gradient(270deg, #111, #2a2a2a);
    border-radius: 2px 0 0 2px;
}

/* Camera Control button (right side - iPhone 16 new feature) */
.mobile-container::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 130px;
    width: 3px;
    height: 40px;
    background: linear-gradient(270deg, #111, #2a2a2a);
    border-radius: 2px 0 0 2px;
}

.mobile-screen-frame {
    background: #000;
    border-radius: 30px;
    aspect-ratio: 9/19.5;
    position: relative;
    overflow: hidden;
}

/* iPhone 16 Pro Max Dynamic Island - Floating */
.mobile-screen-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Remove the second pseudo-element since we only need one for Dynamic Island */
.mobile-screen-frame::after {
    display: none;
}

.mobile-app-content {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    text-align: center;
}

.mobile-app-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.app-coming-soon {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Glass Effect Floating Elements */
.floating-stats {
    position: absolute;
    z-index: 5;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--glass-shadow);
    animation: float 6s ease-in-out infinite;
}

.glass-card:nth-child(2) {
    animation-delay: -3s;
}

.glass-card:nth-child(3) {
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Make floating stat cards match the mobile app microcopy sizes */
.floating-stats .h5,
.floating-stats .fw-bold {
    font-size: 0.9rem; /* match mobile app heading */
    font-weight: 700;
    line-height: 1.1;
}

.floating-stats .text-muted.small,
.floating-stats p {
    font-size: 0.7rem; /* match mobile app text */
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 576px) {
    .floating-stats .h5,
    .floating-stats .fw-bold { font-size: 0.85rem; }
    .floating-stats .text-muted.small,
    .floating-stats p { font-size: 0.65rem; }
    .glass-card { padding: 12px; border-radius: 12px; }
}

.btn-hero-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Trust indicators */
.trust-indicators {
    margin-top: 3rem;
    padding-top: 2rem;
}

.trust-badge {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(248, 250, 252, 0.8) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1.5" fill="rgba(37,99,235,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.stat-card {
    text-align: center;
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(226, 232, 240, 0.6) 50%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(37, 99, 235, 0.02) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(37, 99, 235, 0.02) 75%),
    linear-gradient(-45deg, 
        rgba(29, 78, 216, 0.02) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(29, 78, 216, 0.02) 75%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: left;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}        .section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 80px 0;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(37, 99, 235, 0.15);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(226, 232, 240, 0.7) 100%);
    backdrop-filter: blur(15px);
    padding: 80px 0;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Footer */
.footer {
    position: relative;
    background: url("../images/truck.png") center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 92%) 0%, rgba(51, 65, 85, 0.88) 50%, rgb(4 22 67 / 95%) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .glass-accent {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.footer .glass-accent:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer .hover-link {
    transition: all 0.3s ease;
    position: relative;
}

.footer .hover-link:hover {
    color: #fff !important;
    padding-left: 8px;
}

.footer .hover-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer .hover-link:hover::before {
    width: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .price {
        font-size: 2.2rem;
    }
}

/* Clean minimal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Blog Card Hover Effects - Professional */
.blog-section .bg-white:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
