Converted all website pages to modern professional theme with consistent design system: ### Pages Converted (21 total): **Menu Pages (10):** - desprenoi.html, contact.html, analiza.html, implementare.html - roa-suport-tehnic.html, alteservicii.html, angajari.html - suport.html, referinte.html, politica-confidentialitate.html **ROA Module Pages (11):** - roa-financiar-contabilitate.html (calculator icon) - roa-resurse-umane.html (users icon) - roa-imobilizari.html (building icon) - roa-gestiune.html (package icon) - roa-contracte-furnizori.html (truck icon) - roa-clienti.html (user-check icon) - roa-horeca.html (utensils icon) - roa-analiza.html (bar-chart-3 icon) - roa-aplicatii-specifice.html (settings icon) - roa-service-auto.html, roa-proiecte-devize.html ### Technical Implementation: - Migrated from Bootstrap 5 to Tailwind CSS + Flowbite - Applied professional-theme.css with soft blue color palette - Integrated Lucide icons for modern iconography - Implemented responsive design with mobile-first approach - Added dark/light theme toggle functionality - Enhanced SEO with Romanian meta descriptions - Maintained all original content and functionality ### Design Features: - Consistent professional navbar with gradient background - Hero sections with appropriate module icons - Professional cards with hover effects and animations - Modern typography using Inter, Merriweather fonts - Unified color scheme: #5288c4 (primary), #4a7ba7 (secondary) - Professional footer with company branding All pages now follow the same professional design system established in index.html. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
444 lines
28 KiB
HTML
444 lines
28 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ROA AUTO - Program pentru Service Auto | Romfast Applications</title>
|
|
<meta name="description" content="ROA Service Auto - Soluție completă pentru managementul activității de service auto: comenzi, normative, devize, facturare automată și rapoarte de salarizare.">
|
|
<meta name="keywords" content="program service auto, management contracte, comenzi furnizori clienti, livrari, incasari, politici preturi, analiza activitatii, analize de trend, eficienta centre cost profit, cash-flow, bugete, normative auto, business intelligence">
|
|
|
|
<!-- Tailwind CSS -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<!-- Flowbite -->
|
|
<script src="https://cdn.jsdelivr.net/npm/flowbite@2.0.0/dist/flowbite.min.js"></script>
|
|
<!-- Lucide Icons -->
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<!-- Professional Theme CSS -->
|
|
<link href="../professional-theme.css" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-screen">
|
|
|
|
<!-- Soft Professional Blue Header -->
|
|
<header class="professional-navbar sticky top-0 z-50">
|
|
<nav class="container mx-auto px-4 py-4">
|
|
<div class="flex items-center justify-between">
|
|
<!-- Logo Section -->
|
|
<div class="flex items-center space-x-3">
|
|
<img src="../images/romfast_logo.png" alt="Romfast Logo" class="romfast-logo">
|
|
<div class="hidden md:block">
|
|
<p class="text-white text-sm italic font-light">Aduce informația în mâinile tale</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Centered Navigation -->
|
|
<div class="hidden lg:flex items-center space-x-8">
|
|
<a href="../index.html" class="text-white hover:text-blue-200 transition-colors font-medium nav-link">Prima pagina</a>
|
|
<a href="../menu/desprenoi.html" class="text-white hover:text-blue-200 transition-colors nav-link">Despre noi</a>
|
|
<a href="aplicatii-erp.html" class="text-white hover:text-blue-200 transition-colors nav-link">ROA</a>
|
|
<div class="relative group">
|
|
<button class="text-white hover:text-blue-200 transition-colors flex items-center space-x-1 nav-link">
|
|
<span>Servicii</span>
|
|
<i data-lucide="chevron-down" class="w-4 h-4"></i>
|
|
</button>
|
|
<div class="absolute top-full left-0 mt-2 w-48 bg-white rounded-lg shadow-lg border border-gray-200 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300">
|
|
<a href="../menu/analiza.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800 rounded-t-lg">Analiza</a>
|
|
<a href="../menu/implementare.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800">Implementare</a>
|
|
<a href="../menu/roa-suport-tehnic.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800">Suport tehnic ROA</a>
|
|
<a href="../menu/alteservicii.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800 rounded-b-lg">Alte servicii</a>
|
|
</div>
|
|
</div>
|
|
<a href="../menu/referinte.html" class="text-white hover:text-blue-200 transition-colors nav-link">Referinte</a>
|
|
<a href="../menu/angajari.html" class="text-white hover:text-blue-200 transition-colors nav-link">Angajari</a>
|
|
<a href="../menu/contact.html" class="text-white hover:text-blue-200 transition-colors nav-link">Contact</a>
|
|
</div>
|
|
|
|
<!-- Theme Toggle & Mobile Menu -->
|
|
<div class="flex items-center space-x-4">
|
|
<button id="theme-toggle" class="text-white p-2 rounded-lg hover:bg-white hover:bg-opacity-20 transition-all duration-300">
|
|
<i data-lucide="sun" class="w-5 h-5"></i>
|
|
</button>
|
|
<button class="lg:hidden text-white p-2">
|
|
<i data-lucide="menu" class="w-6 h-6"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Main Content Container -->
|
|
<main class="container mx-auto px-4 py-8 max-w-7xl">
|
|
|
|
<!-- Professional Hero Section for ROA AUTO -->
|
|
<section class="professional-hero text-center">
|
|
<div class="max-w-4xl mx-auto relative z-10">
|
|
<div class="flex items-center justify-center mb-8">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="wrench" class="w-12 h-12 text-white"></i>
|
|
</div>
|
|
</div>
|
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 professional-text-primary">
|
|
ROA AUTO - Service Auto
|
|
</h1>
|
|
<p class="text-xl professional-text-secondary mb-8 leading-relaxed">
|
|
Soluție completă pentru managementul activității de service auto - de la intrarea autovehiculului până la facturarea automată
|
|
</p>
|
|
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<a href="../servicii/acceseazaroaonline.html" target="_blank" class="professional-btn-urgent px-8 py-4 text-lg">
|
|
<span>Testează ROA AUTO acum!</span>
|
|
</a>
|
|
<a href="aplicatii-erp.html" class="professional-btn-secondary px-8 py-4 text-lg">
|
|
<span>Vezi toate aplicațiile ROA</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Urgent Problems Section with Red Accent -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Te confrunți cu aceste probleme urgente?</h2>
|
|
|
|
<div class="professional-card professional-card-featured p-8">
|
|
<h3 class="text-2xl font-semibold mb-8 professional-text-primary text-center">
|
|
<i data-lucide="alert-triangle" class="w-8 h-8 inline-block mr-3" style="color: var(--accent);"></i>
|
|
Probleme zilnice în service-ul tău
|
|
</h3>
|
|
<div class="grid md:grid-cols-2 gap-8">
|
|
<div>
|
|
<ul class="space-y-4 professional-text-secondary">
|
|
<li class="flex items-start space-x-3">
|
|
<span class="red-bullet text-lg">🔧</span>
|
|
<span>Factura, bonul fiscal și înregistrarea în contabilitate durează mai mult de 1 minut?</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="red-bullet text-lg">🔧</span>
|
|
<span>Clienții așteaptă prea mult la recepție pentru un deviz estimativ?</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="red-bullet text-lg">🔧</span>
|
|
<span>Șeful de service pregătește manual rapoartele de manoperă pentru calculul salariilor?</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="red-bullet text-lg">🔧</span>
|
|
<span>Contabilul are dureri de cap în fiecare lună din cauza producției neterminate?</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="text-center">
|
|
<img src="images/roaauto3.jpg" alt="ROA Auto Interface" class="rounded-lg shadow-lg max-w-full h-auto">
|
|
</div>
|
|
</div>
|
|
<div class="text-center mt-8">
|
|
<a href="../servicii/acceseazaroaonline.html" target="_blank" class="professional-btn-urgent px-8 py-4 text-lg">
|
|
<span>Elimină aceste probleme ACUM!</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ROA AUTO Solution Section -->
|
|
<section class="mb-16">
|
|
<div class="professional-card p-8">
|
|
<div class="flex items-center justify-center mb-6">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="check-circle" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
</div>
|
|
<h3 class="text-2xl font-semibold mb-6 professional-text-primary text-center">ROA AUTO - Soluția Completă</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed text-center max-w-4xl mx-auto">
|
|
Aplicația <strong>ROA-AUTO</strong> este realizată pentru managementul activității de service auto și are ca scop urmărirea completă a ciclului de execuție a reparațiilor auto, de la intrarea autovehiculului în service până la emiterea facturii de reparații.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Process Flow Section -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Ciclul complet de execuție</h2>
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
<!-- Step 1 -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-blue-600 text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-4">1</div>
|
|
<h3 class="text-lg font-semibold mb-3 professional-text-primary">Generarea comenzii</h3>
|
|
<p class="professional-text-secondary text-sm leading-relaxed">Documentul care însoțește autovehiculul pe tot parcursul reparației</p>
|
|
</div>
|
|
|
|
<!-- Step 2 -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-blue-600 text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-4">2</div>
|
|
<h3 class="text-lg font-semibold mb-3 professional-text-primary">Normare pe operații</h3>
|
|
<p class="professional-text-secondary text-sm leading-relaxed">Reparațiile ce vor fi efectuate și repartizarea pe mecanici a manoperei aferente</p>
|
|
</div>
|
|
|
|
<!-- Step 3 -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-blue-600 text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-4">3</div>
|
|
<h3 class="text-lg font-semibold mb-3 professional-text-primary">Consum materiale</h3>
|
|
<p class="professional-text-secondary text-sm leading-relaxed">Înregistrarea consumului de materiale pentru reparație (ROA Gestiune generală)</p>
|
|
</div>
|
|
|
|
<!-- Step 4 -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="w-12 h-12 bg-gradient-to-r from-red-500 to-red-600 text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-4">4</div>
|
|
<h3 class="text-lg font-semibold mb-3 professional-text-primary">Verificarea devizului</h3>
|
|
<p class="professional-text-secondary text-sm leading-relaxed">Verificarea și validarea devizului de reparații</p>
|
|
</div>
|
|
|
|
<!-- Step 5 -->
|
|
<div class="professional-card p-6 text-center md:col-span-2 lg:col-span-2">
|
|
<div class="w-12 h-12 bg-gradient-to-r from-green-500 to-green-600 text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-4">5</div>
|
|
<h3 class="text-lg font-semibold mb-3 professional-text-primary">Emiterea devizului și facturarea</h3>
|
|
<p class="professional-text-secondary text-sm leading-relaxed">Se pot emite facturi de avans sau finale; se poate emite o singură factură pentru mai multe comenzi ale aceluiași client</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Process Steps with Images -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Interfețele procesului pas cu pas</h2>
|
|
|
|
<div class="grid md:grid-cols-2 gap-8">
|
|
<!-- Step 1 - Generation -->
|
|
<div class="professional-card overflow-hidden hover:scale-105 transition-transform duration-300">
|
|
<div class="bg-gradient-to-r from-blue-600 to-blue-700 text-white p-4">
|
|
<h3 class="text-xl font-semibold text-center">1. Generarea comenzii</h3>
|
|
</div>
|
|
<div class="p-6 text-center">
|
|
<a href="ROA-SERVICE-AUTO/roaauto_generare.html" target="_blank" class="block hover:opacity-90 transition-opacity">
|
|
<img src="images/auto1p-generare.jpg" alt="ROAAUTO - Generare comanda" class="w-full rounded-lg shadow-lg">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Step 2 - Norming -->
|
|
<div class="professional-card overflow-hidden hover:scale-105 transition-transform duration-300">
|
|
<div class="bg-gradient-to-r from-green-600 to-green-700 text-white p-4">
|
|
<h3 class="text-xl font-semibold text-center">2. Normare pe operații</h3>
|
|
</div>
|
|
<div class="p-6 text-center">
|
|
<a href="ROA-SERVICE-AUTO/roaauto_normare.html" target="_blank" class="block hover:opacity-90 transition-opacity">
|
|
<img src="images/auto2p-normare.jpg" alt="ROAAUTO - Normare comanda" class="w-full rounded-lg shadow-lg">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Step 3 - Validation -->
|
|
<div class="professional-card overflow-hidden hover:scale-105 transition-transform duration-300">
|
|
<div class="bg-gradient-to-r from-yellow-500 to-yellow-600 text-white p-4">
|
|
<h3 class="text-xl font-semibold text-center">3. Verificarea și validarea devizului</h3>
|
|
</div>
|
|
<div class="p-6 text-center">
|
|
<a href="ROA-SERVICE-AUTO/roaauto_validare.html" target="_blank" class="block hover:opacity-90 transition-opacity">
|
|
<img src="images/auto3p-validare.jpg" alt="ROAAUTO - Validare comanda" class="w-full rounded-lg shadow-lg">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Step 4 - Billing -->
|
|
<div class="professional-card overflow-hidden hover:scale-105 transition-transform duration-300">
|
|
<div class="bg-gradient-to-r from-purple-600 to-purple-700 text-white p-4">
|
|
<h3 class="text-xl font-semibold text-center">4. Emiterea devizului și facturarea</h3>
|
|
</div>
|
|
<div class="p-6 text-center">
|
|
<a href="ROA-SERVICE-AUTO/roaauto_facturare.html" target="_blank" class="block hover:opacity-90 transition-opacity">
|
|
<img src="images/auto4p-facturare.jpg" alt="ROAAUTO - Facturare comanda" class="w-full rounded-lg shadow-lg">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Key Features Section -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Avantaje cheie ROA AUTO</h2>
|
|
|
|
<div class="grid lg:grid-cols-3 gap-8">
|
|
<!-- Automatizare -->
|
|
<div class="professional-card p-8 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="zap" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Automatizare</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">Toate etapele se realizează integral cu ajutorul calculatorului. Documentele se emit electronic și apoi pe hârtie. O singură intrare în sistem pentru orice document.</p>
|
|
<ul class="text-left professional-text-secondary space-y-2">
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Înregistrarea datelor urmată de emiterea documentelor</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Devizele se calculează automat</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Facturile se calculează automat pe baza devizelor</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Înregistrarea automată în contabilitate</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Lucru în timp real -->
|
|
<div class="professional-card p-8 text-center service-technology">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="clock" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Lucru în timp real</h3>
|
|
<p class="professional-text-secondary mb-4 leading-relaxed">Programul comunică cu modulele de contabilitate și salarizare în timp real astfel încât datele sunt preluate automat realizându-se balanța contabilă cât și statele de salarii fără alte introduceri de date.</p>
|
|
<p class="professional-text-secondary leading-relaxed">Vizualizarea și listarea de rapoarte, având posibilitatea de a ști în orice moment activitatea efectuată pe perioada de referință, cât și istoricul activității anterioare.</p>
|
|
</div>
|
|
|
|
<!-- Eficiența maximă -->
|
|
<div class="professional-card p-8 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="trending-up" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Eficiența maximă</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed font-semibold">Cât mai puține introduceri, cât mai multe rezultate!</p>
|
|
<ul class="text-left professional-text-secondary space-y-2">
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Documentele sunt operate o singură dată, la sursă</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Introducerea de către gestionar a documentelor de consum materiale</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="check" class="w-4 h-4 mt-1 text-green-500"></i>
|
|
<span>Operatorii pot avea sau nu cunoștințe de contabilitate</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Reports Section -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Rapoarte disponibile</h2>
|
|
|
|
<div class="grid md:grid-cols-2 gap-8">
|
|
<div class="professional-card p-8">
|
|
<h3 class="text-xl font-semibold mb-6 professional-text-primary">
|
|
<i data-lucide="file-text" class="w-6 h-6 inline-block mr-2"></i>
|
|
Rapoarte de activitate
|
|
</h3>
|
|
<ul class="space-y-3 professional-text-secondary">
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Facturi emise în luna aleasă</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Rapoarte de verificare articole</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Rapoarte despre producția realizată și nefacturată</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Rapoarte despre manoperă: totală, detaliată pe comenzi sau operații</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Rapoarte despre orele de manoperă pentru societățile de asigurare</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Rapoarte de salarizare personal direct productiv</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="professional-card p-8">
|
|
<h3 class="text-xl font-semibold mb-6 professional-text-primary">
|
|
<i data-lucide="bar-chart" class="w-6 h-6 inline-block mr-2"></i>
|
|
Rapoarte financiare
|
|
</h3>
|
|
<ul class="space-y-3 professional-text-secondary">
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Raport de verificare venituri din manoperă și materiale</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Facturile emise: pe clienți, asigurători, facturi ITP, spălare, pe secții</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Comenzi validate pe mărci de mașini</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Facturare automată a devizelor</span>
|
|
</li>
|
|
<li class="flex items-start space-x-2">
|
|
<i data-lucide="chevron-right" class="w-4 h-4 mt-1 text-blue-500"></i>
|
|
<span>Centralizatoare de comenzi validate</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Normative Section -->
|
|
<section class="mb-16">
|
|
<div class="professional-card professional-card-featured p-8 text-center">
|
|
<div class="flex items-center justify-center mb-6">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="book-open" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
</div>
|
|
<h3 class="text-2xl font-semibold mb-4 professional-text-primary">Normative de reparații</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed max-w-3xl mx-auto">
|
|
Programul este însoțit de normative de reparații pentru mai multe tipuri de autovehicule, existând posibilitatea ca această bază de date să fie completată și de către utilizator.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="text-center mb-16">
|
|
<div class="professional-hero">
|
|
<h2 class="text-3xl font-bold mb-6 professional-text-primary">Gata să eficientizezi service-ul tău?</h2>
|
|
<p class="text-xl professional-text-secondary mb-8 leading-relaxed max-w-3xl mx-auto">
|
|
Nu mai pierde timp cu procese manuale! ROA AUTO îți automatizează întreaga activitate de service auto.
|
|
</p>
|
|
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<a href="../servicii/acceseazaroaonline.html" target="_blank" class="professional-btn-urgent px-8 py-4 text-lg">
|
|
<span>Începe testul GRATUIT</span>
|
|
</a>
|
|
<a href="../menu/contact.html" class="professional-btn-secondary px-8 py-4 text-lg">
|
|
<span>Contactează-ne pentru detalii</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<!-- Professional Footer -->
|
|
<footer class="bg-gradient-to-r from-slate-900 via-gray-800 to-slate-900 text-white py-12" style="border-radius: 1rem 1rem 0 0;">
|
|
<div class="container mx-auto px-4 text-center">
|
|
<div class="mb-6">
|
|
<img src="../images/romfast_logo.png" alt="Romfast Logo" class="h-12 mx-auto mb-4">
|
|
<p class="text-gray-400 italic">Aduce informația în mâinile tale</p>
|
|
</div>
|
|
<div class="border-t border-gray-700 pt-6" style="border-radius: 0.5rem;">
|
|
<p class="text-sm text-gray-400 mb-2">
|
|
Copyright © 2025 Romfast SRL. Toate drepturile rezervate.
|
|
</p>
|
|
<a href="../politica-confidentialitate.html" class="text-blue-400 hover:text-blue-300 transition-colors text-sm">
|
|
Politica de confidentialitate
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Professional Theme JavaScript -->
|
|
<script src="../professional-theme.js"></script>
|
|
</body>
|
|
</html> |