/* ============================================================
   CNO.ro – Servicii IT  |  Custom CSS pentru tema Popular FX
   Adaugă în: Appearance > Customize > Additional CSS
   SAU încarcă ca fișier în child theme (style.css)
   ============================================================ */

/* Google Fonts – adaugă în header.php sau Functions > wp_enqueue_scripts */
/* @import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&family=DM+Sans:wght@400;500&display=swap'); */

/* ── Variabile globale ── */
.cno-wrap {
  --blue-50:    #E6F1FB;
  --blue-100:   #B5D4F4;
  --blue-600:   #185FA5;
  --blue-800:   #0C447C;
  --blue-900:   #042C53;
  --teal-50:    #E1F5EE;
  --teal-100:   #9FE1CB;
  --teal-600:   #0F6E56;
  --accent:     #185FA5;
  --text-muted: #5F5E5A;
  --bg:         #ffffff;
  --surface:    #F6F8FC;
  --border:     rgba(0,0,0,0.08);
  --radius:     12px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  color: #1a1a2e;
}

/* ══════════════════════════════════════════
   SECȚIUNEA 1 – SOLUȚII PERSONALIZATE
══════════════════════════════════════════ */

.cno-wrap .section-solutions {
  background: linear-gradient(135deg, #042C53 0%, #185FA5 100%);
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cno-wrap .section-solutions::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cno-wrap .section-solutions::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cno-wrap .solutions-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cno-wrap .solutions-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: #ffffff;
}

.cno-wrap .solutions-text h2 span {
  color: #9FE1CB;
}

.cno-wrap .solutions-text p {
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.75;
  color: #ffffff;
}

.cno-wrap .lang-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  backdrop-filter: blur(6px);
}

.cno-wrap .lang-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 18px;
  color: #ffffff;
}

.cno-wrap .lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cno-wrap .lang-list li {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 6px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: background 0.2s;
}

.cno-wrap .lang-list li:hover {
  background: rgba(255,255,255,0.22);
}

/* ══════════════════════════════════════════
   SECȚIUNEA 2 – MENTENANȚĂ IT
══════════════════════════════════════════ */

.cno-wrap .section-it {
  padding: 80px 40px;
  background: #F6F8FC;
}

.cno-wrap .it-inner {
  max-width: 960px;
  margin: 0 auto;
}

.cno-wrap .section-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #185FA5;
  background: #E6F1FB;
  border: 1px solid #B5D4F4;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 18px;
}

.cno-wrap .it-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #042C53;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.cno-wrap .it-inner > p {
  font-size: 1rem;
  color: #5F5E5A;
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cno-wrap .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.cno-wrap .feature-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cno-wrap .feature-card:hover {
  box-shadow: 0 4px 24px rgba(24,95,165,0.10);
  transform: translateY(-2px);
}

.cno-wrap .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #E6F1FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cno-wrap .feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #185FA5;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cno-wrap .feature-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0C447C;
  margin-bottom: 6px;
}

.cno-wrap .feature-card p {
  font-size: 0.85rem;
  color: #5F5E5A;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   SECȚIUNEA 3 – DESPRE NOI
══════════════════════════════════════════ */

.cno-wrap .section-about {
  padding: 80px 40px;
  background: #ffffff;
}

.cno-wrap .about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cno-wrap .about-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #042C53;
  margin-bottom: 1rem;
}

.cno-wrap .about-inner > div > p {
  color: #5F5E5A;
  font-size: 1rem;
  line-height: 1.8;
}

.cno-wrap .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cno-wrap .stat-card {
  background: #F6F8FC;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.cno-wrap .stat-card .stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #185FA5;
  display: block;
}

.cno-wrap .stat-card .stat-label {
  font-size: 0.82rem;
  color: #5F5E5A;
  margin-top: 4px;
  display: block;
}

.cno-wrap .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #E1F5EE;
  border: 1px solid #9FE1CB;
  color: #0F6E56;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 6px 16px;
}

.cno-wrap .about-badge svg {
  width: 15px;
  height: 15px;
  stroke: #0F6E56;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════════
   RESPONSIVE – mobil (max 720px)
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   LISTA PAȘI METODOLOGIE
══════════════════════════════════════════ */

.cno-wrap .cno-steps ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: none;
}

.cno-wrap .cno-steps ol li {
  list-style: none !important;
  display: flex !important;
  align-items: center;
  gap: 14px;
  background: #F6F8FC;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 12px 16px !important;
  margin: 0 !important;
  transition: background 0.2s, transform 0.2s;
}

.cno-wrap .cno-steps ol li::before,
.cno-wrap .cno-steps ol li::marker {
  content: none !important;
  display: none !important;
}

.cno-wrap .cno-steps ol li:hover {
  background: #E6F1FB;
  transform: translateX(4px);
}

.cno-wrap .cno-steps .step-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #185FA5;
  background: #ffffff;
  border: 1px solid #B5D4F4;
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.cno-wrap .cno-steps .step-text {
  font-size: 0.9rem;
  color: #1a1a2e;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   RESPONSIVE – mobil (max 720px)
══════════════════════════════════════════ */

@media (max-width: 720px) {
  .cno-wrap .solutions-inner,
  .cno-wrap .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cno-wrap .solutions-text h2 {
    font-size: 1.7rem;
  }

  .cno-wrap .section-solutions,
  .cno-wrap .section-it,
  .cno-wrap .section-about {
    padding: 60px 24px;
  }
}

.p-csl6685 .pagelayer-wp_menu-ul>li.current-menu-item>a {
    color: #ffffff;
    background: darkblue;
}