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

/* Browser Compatibility Fixes */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.08);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Old Header styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo i {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

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

.nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* App Info Section */
.app-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 35px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.info-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
}

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

.info-card h3 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 700;
}

/* Privacy Policy Section */
.privacy-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 6px;
}

.policy-content h3 {
    color: #334155;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-content h4 {
    color: #475569;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.6;
}

.developer-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin: 1rem 0;
}

.developer-info p {
    margin-bottom: 0.5rem;
}

.developer-info strong {
    color: #334155;
}

.contact-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #334155;
}

/* Footer */
.footer {
    background: #667eea; /* Fallback */
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/%3E%3C/svg%3E');
    background-repeat: repeat;
    animation: backgroundScroll 20s linear infinite;
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: white;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '▸';
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: white;
    transform: translateX(5px);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-list i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.legal-company {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.app-badge {
    margin-top: 1.2rem;
}

.app-badge a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-badge img {
    height: 60px;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.app-badge a:hover {
    transform: translateY(-3px);
}

.app-badge img:hover {
    opacity: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        align-items: stretch;
        gap: 8px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 18px;
        border-radius: 10px;
        color: white;
        font-size: 0.95rem;
        margin-bottom: 0;
        transition: var(--transition);
        text-align: left;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: white;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span {
        background: var(--primary-color);
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .download-header h2 {
        font-size: 2.2rem;
    }
    
    .download-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Footer Mobile Improvements */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links,
    .contact-list {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .app-badge {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .stat-item {
        padding: 12px 18px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .badge-item {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefit-card, .feature-card {
        padding: 35px 25px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .download-header i {
        font-size: 3.5rem;
    }
    
    .download-header h2 {
        font-size: 1.8rem;
    }
    
    .download-header p {
        font-size: 1.05rem;
    }
    
    .step {
        padding: 30px 20px;
    }

    /* Mobile Navigation - Extra Small Screens */
    .nav-menu {
        max-width: 260px;
        padding: 25px 18px;
        gap: 6px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .nav-brand i {
        font-size: 1.6rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}

@media print {
    .header,
    .footer {
        display: none;
    }

    .main {
        min-height: auto;
    }

    .privacy-section {
        box-shadow: none;
        padding: 0;
    }

    .policy-content {
        font-size: 12px;
    }
}

/* ==================== HERO SECTIONS ==================== */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: backgroundScroll 20s linear infinite;
}

@keyframes backgroundScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

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

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.btn-download {
    background: white;
    color: var(--primary-color);
    padding: 18px 42px;
    font-size: 1.15rem;
    box-shadow: 0 6px 30px rgba(255,255,255,0.3);
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255,255,255,0.4);
}

/* Phone Mockup Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.phone-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 40px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.1);
}

.phone-screen i {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.connection-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    margin: 40px auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.car-display {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.car-display i {
    font-size: 5rem;
    color: white;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.badge-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Phone Mockup Enhancement */
.mockup-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
}

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

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==================== FEATURE SECTIONS ==================== */
.features, .app-info, .download {
    padding: 100px 20px;
}

.features {
    background: white;
}

/* Feature Cards Enhancement */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: var(--transition);
}

.feature-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover .feature-icon i {
    -webkit-text-fill-color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: backgroundScroll 20s linear infinite;
}

.download-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-header {
    text-align: center;
    margin-bottom: 60px;
}

.download-header i {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 25px;
    display: block;
    opacity: 0.9;
}

.download-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.download-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.step h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 14px;
    font-weight: 700;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

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

.download-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    padding: 18px 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.download-note i {
    font-size: 1.3rem;
    color: white;
}

.download-note p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
}

/* ==================== PRIVACY POLICY PAGE ==================== */

/* Privacy Hero Section */
.privacy-hero {
    margin-top: 70px;
    background: #667eea; /* Fallback for old browsers */
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Chrome 10-25, Safari 5.1-6 */
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Firefox 3.6-15 */
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Opera 11.1-12.0 */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Standard syntax */
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/%3E%3C/svg%3E');
    background-repeat: repeat;
    animation: backgroundScroll 20s linear infinite;
    z-index: 0;
}

.privacy-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.privacy-hero .app-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

.privacy-hero .last-updated {
    font-size: 1.1rem;
    opacity: 0.85;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: inline-block;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Privacy Section */
.privacy-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.policy-intro {
    margin-bottom: 50px;
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.policy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.policy-highlight i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.policy-highlight p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-color);
    font-size: 1.8rem;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
}

.policy-content h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.policy-content h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 15px 0 10px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card a i {
    font-size: 0.85rem;
    margin: 0;
}

/* Security Note */
.security-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
    margin: 30px 0;
}

.security-note i {
    font-size: 2.5rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.security-note strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.security-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Update Note */
.update-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(102, 126, 234, 0.08);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.update-note i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.update-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Contact Box */
.contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

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

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 20px 60px;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero .app-name {
        font-size: 1.2rem;
    }
    
    .privacy-icon {
        font-size: 3.5rem;
    }
    
    .policy-content {
        padding: 40px 30px;
    }
    
    .policy-content h3 {
        font-size: 1.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-hero .app-name {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .policy-highlight,
    .security-note {
        flex-direction: column;
        text-align: center;
    }
}
