/* Pagina: oferta-site-prezentare */
:root {
            --bg-main: #F8FAFC;
            --bg-card: #FFFFFF;
            --bg-section: #F1F5F9;
            --text-main: #0F172A;
            --text-muted: #475569;
            --primary: #2563EB;
            --primary-hover: #1D4ED8;
            --primary-soft: #DBEAFE;
            --accent: #22C55E;
            --accent-soft: #DCFCE7;
            --border: #E2E8F0;
            --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
        }
        
        body {
            background-color: var(--bg-main);
            font-family: 'Inter', sans-serif;
        }
        
        .hero-oferta {
            background: var(--bg-main);
            color: var(--text-main);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-oferta .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-oferta h1,
        .hero-oferta .text-white {
            color: var(--text-main) !important;
        }
        
        .hero-oferta .lead,
        .hero-oferta p {
            color: var(--text-muted) !important;
        }
        
        .hero-oferta .bullet-list li {
            color: var(--text-main) !important;
        }
        
        .section-content {
            padding: 80px 0;
        }
        
        .section-content.bg-light {
            background-color: var(--bg-section);
        }
        
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
            background: var(--primary-soft);
            color: var(--primary);
        }
        
        .price-badge {
            background: var(--accent);
            color: #FFFFFF;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .bullet-list {
            list-style: none;
            padding: 0;
        }
        
        .bullet-list li {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
        }
        
        .bullet-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .bullet-list.negative li::before {
            content: '❌';
            color: #EF4444;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: #FFFFFF;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, #16A34A 100%);
            color: #FFFFFF;
            padding: 60px 0;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .upgrade-card {
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            background: var(--bg-card);
        }
        
        .upgrade-card:hover {
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        .upgrade-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 10px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .navbar {
            background-color: #FFFFFF !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
