/* CSS File: css/landing.css */
        :root {
            --primary: #E30B17;
            --dark: #1a1a1a;
            --gray-bg: #f8f9fa;
            --text-main: #333;
            --text-light: #666;
            --transition: all 0.3s ease;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

        /* --- Header --- */
        header {
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            border-bottom: 1px solid #eee;
        }
        .logo { font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
        header .logo a { color: inherit; text-decoration: none; }

        /* --- Hero Section --- */
        .hero {
            padding: 100px 5%;
            text-align: center;
            background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
        }
        .hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 25px; }
        .hero h1 span { color: var(--primary); }
        .hero p { font-size: 20px; color: var(--text-light); max-width: 700px; margin: 0 auto 40px; }
        
        .cta-btn {
            background: var(--primary);
            color: #fff;
            padding: 20px 40px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 0 10px 25px rgba(227, 11, 23, 0.3);
            transition: var(--transition);
        }
        .cta-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(227, 11, 23, 0.4); }

        /* --- Benefits --- */
        .benefits { padding: 80px 5%; max-width: 1200px; margin: auto; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 36px; color: var(--dark); }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .benefit-card {
            padding: 40px;
            background: #fff;
            border-radius: 24px;
            border: 1px solid #f0f0f0;
            transition: var(--transition);
        }
        .benefit-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .benefit-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
        .benefit-card h3 { margin-bottom: 15px; font-size: 22px; }

        /* --- How It Works --- */
        .steps { background: var(--dark); color: #fff; padding: 80px 5%; }
        .step-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
        }
        .step-item { text-align: center; position: relative; }
        .step-number {
            width: 50px; height: 50px; background: var(--primary); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; margin: 0 auto 20px; font-size: 20px;
        }

        /* --- Stats --- */
        .stats { padding: 60px 5%; background: var(--gray-bg); display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
        .stat-box { text-align: center; }
        .stat-box div { font-size: 40px; font-weight: 800; color: var(--primary); }
        .stat-box p { color: var(--text-light); font-weight: 600; }

        /* --- Final CTA --- */
        .final-cta { padding: 100px 5%; text-align: center; background: #fff; }
        
        footer { padding: 40px 5%; text-align: center; border-top: 1px solid #eee; font-size: 14px; color: var(--text-light); }

        @media (max-width: 768px) {
            .hero h1 { font-size: 36px; }
            .benefit-grid { grid-template-columns: 1fr; }
        }