/* ========================================
   OZYXO - DESIGN SYSTEM ULTIMATE v2
   Culori: Mov, Albastru, Verde, Roz, Auriu
   Efecte: Float, Glow, Glassmorphism
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* PALETĂ COMPLETĂ DE CULORI */
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #c4b5fd;
  --primary-glow: rgba(139, 92, 246, 0.4);
  
  --secondary: #06b6d4;
  --secondary-dark: #0891b2;
  --secondary-glow: rgba(6, 182, 212, 0.4);
  
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.4);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.4);
  
  --pink: #ec489a;
  --pink-glow: rgba(236, 72, 153, 0.4);
  
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.4);
  
  /* Fundaluri */
  --bg-main: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #fee2e2 100%);
  --bg-card: rgba(255, 255, 255, 0.95);
  --glass: rgba(255, 255, 255, 0.85);
  
  /* Text */
  --text-dark: #0f172a;
  --text-muted: #475569;
  
  /* Umbri */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
  
  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  
  /* Tranziții */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ========================================
   ELEMENTE PLUTITOARE
   ======================================== */
.floating-google {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  animation: floatAround 20s ease-in-out infinite;
  opacity: 0.3;
}

.floating-google i {
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
  font-size: 32px;
}

.floating-google-1 { top: 10%; left: 5%; animation-duration: 18s; }
.floating-google-2 { top: 70%; left: 8%; animation-duration: 22s; animation-delay: 1s; }
.floating-google-3 { top: 15%; right: 5%; animation-duration: 20s; animation-delay: 2s; }
.floating-google-4 { bottom: 15%; right: 10%; animation-duration: 25s; animation-delay: 0.5s; }
.floating-google-5 { top: 45%; left: 15%; animation-duration: 28s; animation-delay: 1.5s; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -15px) rotate(5deg); }
  50% { transform: translate(-10px, 25px) rotate(-3deg); }
  75% { transform: translate(15px, -10px) rotate(2deg); }
}

/* BULOANE COLORATE */
.color-bubble {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: bubblePulse 10s ease-in-out infinite;
}

@keyframes bubblePulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.35; }
}

.bubble-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}
.bubble-2 {
  width: 500px;
  height: 500px;
  background: var(--pink);
  bottom: -150px;
  right: -150px;
  animation-delay: 2s;
}
.bubble-3 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}
.bubble-4 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}
.bubble-5 {
  width: 250px;
  height: 250px;
  background: var(--purple);
  top: 60%;
  right: 35%;
  animation-delay: 3s;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ========================================
   NAVBAR - VERSIUNE CU DROPDOWN
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo i {
  font-size: 24px;
  color: var(--primary);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* Buton hamburger */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--primary);
  padding: 8px;
  transition: var(--transition);
}

.navbar-toggler:hover {
  transform: scale(1.05);
}

/* Meniu navigare */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ========== DROPDOWN STYLES ========== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(139, 92, 246, 0.1);
}

.nav-link i {
  font-size: 12px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  padding: 8px 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary);
  padding-left: 28px;
}

/* Butoane navigare */
.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 8px;
}

/* ========================================
   BUTOANE MODERNE - VERSIUNE COMPACTĂ
   ======================================== */
.btn {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE NAVBAR - MOBILE
   ======================================== */
@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 24px 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(139, 92, 246, 0.05);
    margin-top: 8px;
    display: none;
    padding: 0;
    border-radius: var(--radius-sm);
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 12px 16px 12px 32px;
    font-size: 14px;
  }
  
  .dropdown-menu a:hover {
    padding-left: 40px;
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-left: 0;
    margin-top: 8px;
  }
  
  .nav-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 245, 255, 0.95) 20%, rgba(250, 245, 255, 0.5) 50%, transparent 80%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stars {
  color: var(--accent);
  font-size: 14px;
}

/* ========================================
   BADGES
   ======================================== */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.badge-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  box-shadow: var(--shadow-glow);
}

.badge-success {
  background: linear-gradient(135deg, var(--success), #0d9668);
  color: white;
}

/* ========================================
   CARDS MODERNE
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--pink));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, white 0%, #faf5ff 100%);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

/* ========================================
   INDUSTRY CARDS
   ======================================== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.industry-card {
  background: white;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #faf5ff, white);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.industry-card i {
  font-size: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.industry-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.industry-card small {
  font-size: 10px;
  color: #94a3b8;
}

/* ========================================
   BENEFIT CARDS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.benefit-card i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

/* ========================================
   FORM
   ======================================== */
.form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}

.form-col {
  flex: 1;
  min-width: 200px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* ========================================
   FAQ
   ======================================== */
.faq-item {
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: white;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: linear-gradient(135deg, #faf5ff, white);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer.show {
  display: block;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  transition: var(--transition-bounce);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.5);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========================================
   FOOTER COMPACT
   ======================================== */
.footer-compact {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: 16px 0;
  margin-top: 40px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.footer-compact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links-row a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links-row a:hover {
  color: white;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 12px;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.bg-light {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 20px;
}

.mt-4 {
  margin-top: 20px;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
}

/* ========================================
   RESPONSIVE COMPLET
   ======================================== */

/* Tabletă și mai jos */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-gradient {
    background: linear-gradient(180deg, rgba(250, 245, 255, 0.95) 0%, rgba(250, 245, 255, 0.9) 100%);
  }
  
  .hero-card {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .floating-google {
    opacity: 0.15;
    transform: scale(0.7);
  }
  
  .color-bubble {
    opacity: 0.1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    gap: 12px;
  }
  
  .industry-card {
    padding: 10px 18px;
  }
  
  .industry-card h4 {
    font-size: 12px;
  }
  
  .industry-card small {
    display: none;
  }
}

/* Mobil mare */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo i {
    font-size: 22px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding-top: 80px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-card {
    padding: 24px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .card {
    padding: 24px;
  }
  
  .card-icon {
    width: 52px;
    height: 52px;
  }
  
  .card-icon i {
    font-size: 24px;
  }
  
  .benefit-card {
    padding: 20px;
    gap: 14px;
  }
  
  .benefit-card i {
    font-size: 28px;
  }
  
  .form-container {
    padding: 28px 20px;
  }
  
  .form-col {
    min-width: 100%;
  }
  
  .faq-question {
    padding: 14px 18px;
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 13px;
  }
  
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 14px;
  }
  
  .footer-compact {
    padding: 12px 0;
    margin-top: 30px;
  }
  
  .footer-compact-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-links-row {
    justify-content: center;
    gap: 14px;
  }
  
  .footer-links-row a {
    font-size: 11px;
  }
  
  .footer-copyright {
    font-size: 10px;
  }
}

/* Mobil mic */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 13px;
  }
  
  .badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .card h3 {
    font-size: 18px !important;
  }
  
  .card ul li {
    font-size: 13px;
  }
  
  .recommended-badge {
    font-size: 10px;
    padding: 3px 12px;
    top: -8px;
    right: 12px;
  }
  
  .industry-card {
    padding: 8px 14px;
  }
  
  .industry-card i {
    font-size: 14px;
  }
  
  .industry-card h4 {
    font-size: 11px;
  }
  
  .benefit-card h4 {
    font-size: 16px;
  }
  
  .benefit-card p {
    font-size: 13px;
  }
  
  .form-group label {
    font-size: 11px;
  }
  
  .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .btn-primary, .btn-outline {
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* Reparare overflow */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Alert messages */
.alert {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  position: relative;
  background: white;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.alert-success {
  border-left-color: var(--success);
}

.alert-danger {
  border-left-color: #ef4444;
}

/* Force center on mobile */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-content .btn {
    justify-content: center;
  }
  
  .stars {
    justify-content: center;
  }
  
  .hero-card {
    width: 100%;
  }
}

/* Card featured styles - fixed positioning */
.card-featured {
  position: relative;
  overflow: visible;
  margin-top: 20px;
}

.recommended-badge-wrapper {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.recommended-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
  white-space: nowrap;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .recommended-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
  
  .card-featured {
    margin-top: 24px;
  }
  
  .recommended-badge-wrapper {
    top: -14px;
  }
}

/* ========================================
   FOOTER MODERN - VERSIUNE COMPLETĂ
   ======================================== */
.footer-modern {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  margin-top: 60px;
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--pink), var(--purple));
}

.footer-modern .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.footer-logo i {
  font-size: 28px;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--primary);
}

.footer-description {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links-list a:hover i {
  transform: translateX(3px);
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item i {
  font-size: 18px;
  color: var(--primary);
  width: 24px;
}

.footer-contact-item:hover {
  color: white;
  transform: translateX(5px);
}

.footer-social-grid {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #94a3b8;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  color: #64748b;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-modern {
    padding: 40px 0 20px;
    margin-top: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list {
    text-align: center;
  }
  
  .footer-links-list a {
    justify-content: center;
  }
  
  .footer-links-list a:hover {
    transform: translateX(0);
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-social-grid {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-legal {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-modern {
    padding: 32px 0 16px;
  }
  
  .footer-logo {
    font-size: 20px;
  }
  
  .footer-title {
    font-size: 16px;
  }
  
  .footer-links-list a,
  .footer-contact-item,
  .footer-copyright,
  .footer-legal a {
    font-size: 12px;
  }
  
  .footer-social-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
/* ========================================
   COOKIE BANNER - STILURI CORECTE
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.2);
  z-index: 10000;
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-content {
  padding: 20px;
}

.cookie-banner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.cookie-banner h3 i {
  color: #8b5cf6;
  font-size: 1.3rem;
}

.cookie-banner p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
  opacity: 0.85;
  color: #cbd5e1;
}

.cookie-options {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px;
  margin: 12px 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.cookie-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #8b5cf6;
}

.cookie-badge {
  font-size: 0.65rem;
  background: rgba(139, 92, 246, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
  color: #c4b5fd;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cookie-btn-outline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #8b5cf6;
  color: white;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    border-radius: 20px;
  }
  
  .cookie-banner-content {
    padding: 16px;
  }
  
  .cookie-buttons {
    gap: 8px;
  }
  
  .cookie-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  
  .cookie-option label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  
  .cookie-banner-content {
    padding: 14px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
