/* ========================================
   public_layout.css - Standalone page for application/views/shared/v_public_layout.php
   Loaded by application/views/shared/v_public_layout.php
   Does not depend on app.css.
   ======================================== */
        body {
            background: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: #e9ecef;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #667eea;
            margin-bottom: 1rem;
        }
        .pricing-card {
            border-radius: 12px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .pricing-card.featured {
            border: 2px solid #667eea;
        }
        .auth-card {
            max-width: 400px;
            margin: 80px auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        footer {
            background: #212529;
            color: #adb5bd;
            padding: 40px 0;
        }
        footer a {
            color: #adb5bd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
        }

