        :root {
            --primary: #3968b2;
            --primary-dark: #2a508b;
            --primary-light: #eff4fb;
            --secondary: #1e293b;
            --text-main: #334155;
            --text-light: #64748b;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        button,
        .btn {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

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

        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--secondary);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.125rem;
        }

        .grid {
            display: grid;
            gap: 30px;
        }

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

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 6px rgba(57, 104, 178, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(57, 104, 178, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
        }

        .btn-white {
            background-color: white;
            color: var(--primary);
        }

        .btn-white:hover {
            background-color: var(--bg-light);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo svg {
            width: 32px;
            height: 32px;
            fill: var(--primary);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-main);
            transition: color 0.2s;
        }

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

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        /* Hero */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
        }

        .hero-visual {
            flex: 1;
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CSS Illustration for Hero */
        .phone-mockup {
            width: 240px;
            height: 480px;
            background: var(--secondary);
            border-radius: 40px;
            padding: 10px;
            position: relative;
            box-shadow: var(--shadow-lg);
            border: 4px solid #333;
            transform: rotate(-5deg);
        }

        .phone-screen {
            background: white;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .app-header {
            background: var(--primary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .app-body {
            padding: 20px;
            flex: 1;
        }

        .app-card {
            background: var(--bg-light);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .app-card-icon {
            width: 30px;
            height: 30px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .app-card-line {
            height: 8px;
            background: #cbd5e1;
            border-radius: 4px;
            width: 80%;
        }

        .msg-bubble {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            top: 50%;
            right: -40px;
            width: 200px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .msg-bubble-title {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .msg-bubble-text {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
        }

        /* Features */
        .features {
            background-color: var(--bg-white);
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: currentColor;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            background-color: var(--bg-light);
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            gap: 20px;
        }

        .step-card {
            flex: 1;
            text-align: center;
            background: white;
            padding: 30px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 20px;
            font-size: 1.1rem;
        }

        .step-card h3 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Benefits */
        .benefits {
            background-color: var(--bg-white);
        }

        .benefit-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .check-icon {
            min-width: 24px;
            height: 24px;
            background: #dcfce7;
            color: #166534;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-icon svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* Pricing */
        .pricing {
            background-color: var(--bg-light);
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            border: 1px solid var(--border);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .pricing-card.recommended {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: scale(1.05);
            z-index: 10;
        }

        .recommend-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 20px 0 10px;
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .pricing-features {
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 12px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li svg {
            width: 16px;
            height: 16px;
            fill: var(--primary);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta-section p {
            margin-bottom: 30px;
            opacity: 0.9;
            font-size: 1.1rem;
        }

        /* Contact */
        .contact {
            background-color: var(--bg-white);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

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

        .footer-links a {
            transition: color 0.2s;
        }

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

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-btns {
                justify-content: center;
            }

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

            .steps-container {
                flex-direction: column;
            }

            .grid-3 {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

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

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }

        /* Parking Locations */
        .locations {
            background-color: var(--bg-white);
        }

        .location-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: var(--transition);
        }

        .location-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .location-icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid currentColor;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-icon-wrapper svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
        
        .location-info h4 {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .location-info h3 {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 2px;
            line-height: 1.2;
        }
        
        .location-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .locations-header {
            text-align: left;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        .locations-header h2 {
            margin-bottom: 15px;
        }
        
        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 900px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .grid-4 {
                grid-template-columns: 1fr;
            }
        }
