:root {
    --primary: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --accent-orange: #f97316;
    --bg-main: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Readex Pro', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Lighting Effect */
.bg-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
}

.blur-1 {
    background: #4f46e5;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.blur-2 {
    background: #f97316;
    top: 400px;
    left: -100px;
    opacity: 0.15;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navbar Style */
.navbar {
    padding: 20px 0;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.6);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo span { color: var(--accent-orange); }

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover { color: white; }

.btn {
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #818cf8, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 35px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.store-btn i { font-size: 24px; }
.store-btn span { font-size: 11px; color: var(--text-muted); display: block; }
.store-btn strong { font-size: 15px; }

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-ratings {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars { display: flex; }
.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #334155;
    border: 2px solid var(--bg-main);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Mockup Design */
.phone-frame {
    width: 300px;
    height: 580px;
    background: #020617;
    border: 10px solid #1e293b;
    border-radius: 45px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 20px;
    background: #1e293b;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    padding: 40px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-header span { display: block; font-weight: 700; }
.app-header small { color: var(--text-muted); font-size: 12px; }

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-preview {
    flex: 1;
    background: #1e293b;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin {
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.2);
}

/* Stats Section */
.stats {
    padding: 50px 0;
    border-y: 1px solid var(--glass-border);
    background: rgba(30, 41, 59, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 36px;
    color: var(--accent-orange);
}

.stat-item p { color: var(--text-muted); font-size: 14px; }

/* Features */
.features { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 32px; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
}

.card-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.card-icon.blue { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.card-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.card-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.glass-card h3 { font-size: 20px; margin-bottom: 12px; }
.glass-card p { color: var(--text-muted); font-size: 14px; }

/* Footer */
footer {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-group, .hero-ratings { justify-content: center; }
    nav { display: none; }
}