/* ====================================================================
   PALETA DE CULORI PREMIUM & CONFIGURĂRI GLOBALE (Stil Apple / Google)
   ==================================================================== */
:root {
    --primary-slate: #1e293b;   /* Slate 800 - Corp de text profesional */
    --primary-dark: #0f172a;    /* Slate 900 - Titluri masive și fundaluri */
    --accent-blue: #2563eb;     /* Albastru Apple / Google modern */
    --accent-blue-hover: #1d4ed8;
    
    /* Accente din b.css folosite unitar */
    --color-emerald: #10b981;
    --color-amber: #f59e0b;
    --color-violet: #8b5cf6;
    --color-sky: #0ea5e9;
    
    --bg-light: #f8fafc;        /* Slate 50 - Fundal curat */
    --bg-card: #ffffff;
    --border-subtle: #e2e8f0;   /* Slate 200 */
    --text-muted: #64748b;      /* Slate 500 */
    
    --shadow-premium-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
    --shadow-premium-md: 0 12px 25px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -4px rgba(15, 23, 42, 0.04);
    --shadow-premium-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -10px rgba(15, 23, 42, 0.06);
    
    --radius-standard: 12px;
    --radius-large: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-slate);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utilitare */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--color-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ====================================================================
   BARA DE NAVIGAȚIE INTELIGENTĂ (Glassmorphism Effect)
   ==================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10000;
    transition: all 0.3s ease;
}

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

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.brand-badge {
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--color-sky));
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-slate);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Buton Premium Stil Apple */
.btn-premium {
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-hover));
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-standard);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium-sm);
}

.btn-premium:hover {
    background-color: var(--accent-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-premium:hover .icon-arrow {
    transform: translateX(3px);
}

.icon-arrow {
    transition: transform 0.2s ease;
}

/* ====================================================================
   SECȚIUNEA HERO (Aspect de Prezentare de Produs Spectaculos)
   ==================================================================== */
.hero {
    padding: 160px 24px 80px 24px;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.03) 0%, rgba(248, 250, 252, 0) 70%);
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-container {
    margin-bottom: 24px;
}

.hero-mini-badge {
    background-color: rgba(37, 99, 235, 0.06);
    color: var(--accent-blue);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-hero-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-hover));
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-standard);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    filter: brightness(1.05);
}

.btn-hero-secondary {
    text-decoration: none;
    background-color: var(--bg-card);
    color: var(--primary-dark);
    border: 1px solid var(--border-subtle);
    padding: 16px 36px;
    border-radius: var(--radius-standard);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-premium-sm);
}

.btn-hero-secondary:hover {
    background-color: var(--bg-light);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Cadru de Prevualizare Aplicație (Mac-Style Workspace Frame) */
.hero-mockup-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
    margin-top: 175px;
}

.hero-mockup-frame {
    background: var(--bg-card);
    border-radius: var(--radius-standard);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-premium-lg);
    overflow: hidden;
}

.mockup-header {
    background-color: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.mockup-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 4px 40px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    font-weight: 500;
}

/* Caseta explicită unde utilizatorul va pune captura de ecran */
.mockup-image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px;
    transition: background 0.3s ease;
    position: relative;
}

.placeholder-overlay {
    text-align: center;
    max-width: 500px;
}

.placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.placeholder-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.placeholder-overlay p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ====================================================================
   BARA DE STATISTICI / COMPACT REASSURANCE
   ==================================================================== */
.stats-bar {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 24px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ====================================================================
   SECȚIUNEA FEATURES SPLIT (Asymmetric Layouts - Apple Style)
   ==================================================================== */
.features-split-section {
    padding: 100px 24px;
    background-color: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.split-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.split-row:last-child {
    margin-bottom: 0;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-info {
    flex: 1;
}

.split-visual {
    flex: 1;
    width: 100%;
    display: flex; /* Adăugat */
    justify-content: center; /* Adăugat */
    align-items: center; /* Adăugat */
}

.feature-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.text-blue { color: var(--accent-blue); }
.text-purple { color: var(--color-violet); }
.text-emerald { color: var(--color-emerald); }

.split-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-info p {
    font-size: 1.05rem;
    color: var(--primary-slate);
    margin-bottom: 24px;
}

.feature-checklist {
    list-style: none;
}

.feature-checklist li {
    font-size: 0.95rem;
    color: var(--primary-slate);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-checklist li::before {
    content: "\2713";
    color: var(--color-emerald);
    font-weight: 800;
    background-color: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Casete destinate pozelor din secțiunile split */
.box-image-placeholder {
    width: 100%;
    height: 340px;
    background-color: var(--bg-light);
    border-radius: var(--radius-large);
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium-sm);
}

.box-image-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium-md);
    background-color: #f1f5f9;
}

.box-image-placeholder.border-blue { border-color: rgba(37, 99, 235, 0.3); }
.box-image-placeholder.border-purple { border-color: rgba(139, 92, 246, 0.3); }
.box-image-placeholder.border-emerald { border-color: rgba(16, 185, 129, 0.3); }

.box-image-placeholder .placeholder-overlay h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.box-image-placeholder .placeholder-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====================================================================
   SECȚIUNEA BENTO GRID (Stil Google / Samsung / Premium SaaS UI)
   ==================================================================== */
.bento-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header-center h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium-sm);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium-md);
}

.bento-item.border-sky { border-top: 4px solid var(--color-sky); }
.bento-item.border-amber { border-top: 4px solid var(--color-amber); }
.bento-item.border-violet { border-top: 4px solid var(--color-violet); }
.bento-item.border-emerald { border-top: 4px solid var(--color-emerald); }

.bento-lg { grid-column: span 2; }
.bento-sm { grid-column: span 1; }

.bento-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.bento-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.bento-content p {
    font-size: 0.95rem;
    color: var(--primary-slate);
}

.bento-visual {
    margin-top: 24px;
    border-radius: var(--radius-standard);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Spațiu de respirație în jurul pozei */
    overflow: hidden; /* Forțează elementele să rămână în cutie */
}

.mini-placeholder {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ====================================================================
   SECȚIUNEA TIMELINE - ACTUALIZĂRI (Stil AMD / Product Roadmap)
   ==================================================================== */
.updates-section {
    padding: 100px 24px;
    background-color: white;
    border-bottom: 1px solid var(--border-subtle);
}

.section-tag-amber {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--color-amber);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    bottom: 0;
    width: 2px;
    background-color: var(--border-subtle);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid var(--accent-blue);
    z-index: 2;
}

.timeline-item:last-child::before {
    border-color: var(--color-amber);
}

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.update-version {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.update-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--primary-slate);
    margin-bottom: 12px;
}

.update-bullets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-bullet {
    font-size: 0.75rem;
    background-color: #f1f5f9;
    color: var(--primary-slate);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* ====================================================================
   SECȚIUNEA FINALĂ CTA (Call to Action)
   ==================================================================== */
.cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-final p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

.btn-cta-white {
    text-decoration: none;
    background-color: white;
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: var(--radius-standard);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--bg-light);
}

/* ====================================================================
   SUBSOL (Landing Page Premium Footer)
   ==================================================================== */
.landing-footer {
    background-color: #0b0f19;
    color: #64748b;
    padding: 60px 24px 30px 24px;
    border-top: 1px solid #1e293b;
    text-align: center; /* ACEASTA ESTE LINIA NOUĂ */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    font-size: 0.8rem;
}

/* ====================================================================
   RESPONSIVITATE COMPLETĂ (Ajustări fluide Mobile & Tabletă)
   ==================================================================== */

/* ====================================================================
   CLASE PENTRU IMAGINI RESPONSIVE
   ==================================================================== */
.responsive-split-image {
    max-width: 100%;
    height: auto;
    max-height: 450px; /* Aici oprim poza să nu se facă uriașă pe înălțime */
    object-fit: contain; /* Păstrează proporțiile perfect, fără să taie din ea */
    display: block;
    margin: 0 auto; /* Centrează poza automat */
}

.responsive-bento-image {
    max-width: 100%;
    height: auto;
    max-height: 220px; /* Limităm înălțimea fix pentru cutiile Bento */
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

/* --- TABLETĂ (Ecrane medii: max 1024px) --- */
@media (max-width: 1024px) {
    .hero { padding: 140px 24px 60px 24px; }
    .hero-title { font-size: 3rem; }
    
    /* Aici e magia: forțează poza să treacă SUB text pe telefoane și tablete */
    .split-row, .split-row.reverse { 
        flex-direction: column !important; 
        gap: 40px; 
    }
    
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-lg { grid-column: span 2; }
    
    .features-split-section, .bento-section, .updates-section, .cta-final { 
        padding: 80px 24px; 
    }
}

/* --- TELEFON (Ecrane mici: max 768px) --- */
@media (max-width: 768px) {

    /* Subțiem bara de sus (header-ul) - poza principala */
    .mockup-header {
        padding: 5px 10px !important;
        min-height: 20px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Bulinele mai mici și grupate strâns */
    .mockup-dots {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .mockup-dots .dot {
        width: 6px !important;
        height: 6px !important;
        margin: 0 !important;
    }

    /* Reparația principală: Căsuța de URL pe un singur rând */
    .mockup-url {
        font-size: 0.6rem !important; 
        padding: 3px 8px !important;
        width: 55% !important; /* Îi dăm mai mult spațiu pe lățime */
        max-width: none !important;
        white-space: nowrap !important; /* Interzice spargerea pe 2 rânduri */
        overflow: hidden !important; /* Ascunde ce dă pe dinafară */
        text-overflow: ellipsis !important; /* Pune "..." dacă ecranul e super mic */
        margin: 0 auto !important; 
    }

    /* Rama mai fină */
    .hero-mockup-frame {
        border-radius: 6px !important;
        border-width: 1px !important;
    }


    
    /* Stil special pentru butonul din navbar pe mobil */
    .nav-container a.btn-premium { /* Sau orice clasă are butonul tău albastru de sus */
        padding: 6px 10px;
        font-size: 0.8rem;
        white-space: nowrap; /* Îl forțează să stea pe o linie */
        border-radius: 8px; /* Îi dă un aspect mai compact */
    }
    
    /* Micșorăm și emblema PRO ca să facem loc */
    .brand-badge {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    /* Navbar mai compact */
    .navbar { height: 65px; }
    .nav-container { padding: 0 16px; }
    .navbar-brand { font-size: 0.95rem; white-space: nowrap; }  
    
    /* Ascundem meniul pe telefon ca să lăsăm loc butonului principal */
    .nav-links { display: none; }
    
    /* Butonul de conectare de sus mai micut */
    .btn-premium { padding: 8px 14px; font-size: 0.85rem; }
    
    /* Hero Section - Redimensionare Titluri si Padding */
    .hero { padding: 110px 16px 40px 16px; }
    .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 32px; }
    
    /* FIX: Butoanele mari de pe telefon (pe latime completa) */
    .hero-actions { 
        flex-direction: column; /* Așază butoanele unul sub altul */
        gap: 12px; 
        margin-bottom: 50px; 
        padding: 0 10px;
    }
    
    .btn-hero-primary, .btn-hero-secondary { 
        width: 100%; /* Le face cât ecranul */
        padding: 14px 20px; /* Reduce înălțimea butonului */
        font-size: 1rem; 
    }
    
    .hero-mockup-image-placeholder { height: 250px; padding: 20px; }
    .placeholder-icon { font-size: 2rem; }
    .placeholder-overlay h3 { font-size: 1.1rem; }
    
    /* Statistici asezate vertical */
    .stats-bar { padding: 30px 16px; }
    .stats-container { flex-direction: column; gap: 24px; }
    .stat-number { font-size: 1.8rem; }
    
    /* Ajustare goluri (padding-uri) generale pt telefon */
    .features-split-section, .bento-section, .updates-section, .cta-final { 
        padding: 60px 16px; 
    }
    
    /* Sectiunile cu Text + Poza devin una sub alta */
    .split-row, .split-row.reverse { 
        flex-direction: column !important; 
        gap: 32px; 
        margin-bottom: 60px; 
    }
    .split-info h2 { font-size: 1.8rem; }
    .split-info p, .feature-checklist li { font-size: 0.95rem; }
    .box-image-placeholder { height: 250px; padding: 20px; }
    
    /* Titluri Sectiuni */
    .section-header-center h2 { font-size: 1.8rem; }
    .section-header-center p { font-size: 1rem; }
    
    /* Bento Grid (Casutele trec pe 1 coloana) */
    .bento-grid { grid-template-columns: 1fr; gap: 16px; }
    .bento-lg, .bento-sm { grid-column: span 1; }
    .bento-item { padding: 24px; }
    
    /* Ajustari Linie Actualizari (Timeline) */
    .timeline { padding-left: 20px; }
    .timeline::before { left: 4px; }
    .timeline-item::before { left: -25px; width: 14px; height: 14px; }
    
    /* FIX: Sectiunea Finala si Butonul CTA */
    .cta-final h2 { font-size: 1.8rem; }
    .cta-final p { font-size: 1rem; margin-bottom: 24px; }
    .cta-buttons { display: flex; flex-direction: column; padding: 0 10px; }
    .btn-cta-white { width: 100%; padding: 14px 20px; font-size: 1rem; }
    
    /* Footer */
    .landing-footer { padding: 40px 16px 20px 16px; }
}

/* ====================================================================
   STILURI EXTRASE DIN STRUCTURA INLINE (CURĂȚENIE HTML)
   ==================================================================== */

/* Imagine Hero Mockup */
.mockup-main-img {
    width: 100%;
    display: block;
}

/* Elemente Subsol (Footer) */
.landing-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.landing-footer .legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

.landing-footer .legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer .legal-links a:hover {
    color: #ffffff;
}

.landing-footer .footer-separator {
    color: #475569;
}

.landing-footer .footer-copyright {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
}

/* Banner GDPR Modern */
#gdpr-banner {
    display: none; /* Va deveni 'flex' din JavaScript dacă e nevoie */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 16px;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.gdpr-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.gdpr-text a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-gdpr {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn-gdpr:hover {
    background: #1d4ed8;
}

/* Stiluri pentru Modalul de Update-uri */
.modal-overlay {
    display: none;
    position: fixed;
    top: 30px; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(241, 245, 249, 0.75); 
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 0); 
    background-size: 1px 1px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    /* --- ACCELERARE DIRECTĂ PE PLACA VIDEO --- */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;    
    /* Folosește animația optimizată de fade */
    animation: softFade 0.2s ease-out forwards;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: #64748b;
}
/* Butonul secundar */
.btn-vezi-tot {
    margin-top: 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
    transition: 0.3s;
}
.btn-vezi-tot:hover {
    background: #e2e8f0;
}

/* LĂSĂM DOAR ACEST BLOC (O SINGURĂ DATĂ ÎN TOT FIȘIERUL): */
@keyframes softFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes softSlide {
    from { 
        opacity: 0;
        transform: scale(0.97) translateY(15px) translateZ(0); 
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0) translateZ(0); 
    }
}

/* ====================================================================
   STILURI EXTRASE DIN HTML (PENTRU SECURITATE CSP)
   ==================================================================== */
.sesiune-banner {
    position: fixed; top: 0; left: 0; width: 100%;
    background: #ef4444; color: white; text-align: center;
    padding: 14px; font-weight: bold; z-index: 999999;
    font-family: sans-serif; display: flex; align-items: center;
    justify-content: center; gap: 15px; flex-wrap: wrap;
}
.btn-sesiune-close {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: white; cursor: pointer; padding: 5px 16px;
    border-radius: 20px; font-weight: bold;
}
.btn-vezi-tot-container {
    text-align: center; margin-top: 20px;
}
.modal-title {
    margin-bottom: 25px;
}
/* Clase pentru elementele din fereastra modală cu istoric */
.history-item { margin-bottom: 25px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
.history-meta { font-size: 0.8rem; color: #64748b; margin-bottom: 5px; }
.history-title { margin: 0 0 10px 0; font-size: 1.1rem; }
.history-desc { color: #475569; font-size: 0.95rem; line-height: 1.5; }
.history-tags-container { margin-top: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.history-tag { background: #eff6ff; color: #2563eb; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; }