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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-login {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #1d4ed8;
}

.btn-demo {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
}

.mobile-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdf4 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4b5563;
    padding: 16px 32px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-outline {
    background: transparent;
    color: #4b5563;
    padding: 12px 24px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-number.blue { color: #2563eb; }
.stat-number.green { color: #059669; }
.stat-number.orange { color: #ea580c; }

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 24px;
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02);
}

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

.dashboard-header h3 {
    font-weight: 600;
    color: #1f2937;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-area {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    height: 200px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.map-pin {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.route-points {
    position: absolute;
    inset: 0;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: ping 2s infinite;
}

.point.red { background: #ef4444; top: 20px; left: 20px; }
.point.blue { background: #3b82f6; top: 30px; right: 30px; }
.point.green { background: #10b981; bottom: 30px; left: 40px; }
.point.yellow { background: #f59e0b; bottom: 20px; right: 20px; }

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-stat {
    padding: 12px;
    border-radius: 8px;
}

.dash-stat.blue-bg { background: #eff6ff; }
.dash-stat.green-bg { background: #f0fdf4; }

.dash-stat-number {
    font-weight: 600;
    color: #1f2937;
}

.dash-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.floating-stat {
    position: absolute;
    top: -16px;
    right: -16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

/* Sections */
.features, .benefits, .how-it-works, .pricing {
    padding: 80px 0;
}

.features {
    background: #f9fafb;
}

.benefits {
    background: white;
}

.how-it-works {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #eff6ff 100%);
}

.pricing {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.blue-gradient { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.green-gradient { background: linear-gradient(135deg, #10b981, #059669); }
.purple-gradient { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.orange-gradient { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.teal-gradient { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.red-gradient { background: linear-gradient(135deg, #ef4444, #dc2626); }
.indigo-gradient { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.pink-gradient { background: linear-gradient(135deg, #ec4899, #db2777); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #2563eb;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.benefit-card {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #dbeafe;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon.green { background: rgba(16, 185, 129, 0.1); }
.benefit-icon.blue { background: rgba(59, 130, 246, 0.1); }
.benefit-icon.purple { background: rgba(139, 92, 246, 0.1); }
.benefit-icon.orange { background: rgba(245, 158, 11, 0.1); }
.benefit-icon.red { background: rgba(239, 68, 68, 0.1); }
.benefit-icon.teal { background: rgba(20, 184, 166, 0.1); }

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-content h3 {
    color: #2563eb;
}

.benefit-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

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

.metric-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.metric-number.green { color: #059669; }
.metric-number.blue { color: #2563eb; }
.metric-number.purple { color: #7c3aed; }
.metric-number.orange { color: #ea580c; }
.metric-number.red { color: #dc2626; }
.metric-number.teal { color: #0d9488; }

.metric-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.calculator-cta {
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.calculator-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.calculator-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-cta .btn-primary {
    background: white;
    color: #2563eb;
}

.calculator-cta .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.step {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2rem;
    margin: 16px 0;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: #2563eb;
}

.step p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.step-details {
    list-style: none;
}

.step-details li {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
}

.step-details li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

.step-arrow {
    display: none;
    font-size: 1.5rem;
    color: #2563eb;
    align-self: center;
    justify-self: center;
}

.ready-cta {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #f3f4f6;
}

.ready-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.ready-cta p {
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.plan-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 32px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
}

.period {
    color: #6b7280;
    margin-left: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.875rem;
}

.trial-cta {
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.trial-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.trial-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trial-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.trial-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.trial-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.trial-buttons .btn-outline:hover {
    background: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    space-y: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-hours {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-30px,0);
    }
    70% {
        transform: translate3d(0,-15px,0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .cta-buttons,
    .trial-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features,
    .benefits,
    .how-it-works,
    .pricing {
        padding: 60px 0;
    }
}