/*
 * EduFuture 2026 — Custom Design System
 * Site: Cursuri Copii București
 * Version: 1.0.0
 * ============================================
 */

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

/* ============================================
   A. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  --color-primary: #6C63FF;
  --color-secondary: #FF6B9D;
  --color-accent: #00D4FF;
  --color-dark: #0A0A1B;
  --color-dark-2: #1A1A2E;
  --color-light: #F8F7FF;
  --color-text: #1A1A2E;
  --color-text-light: #6B7280;
  --gradient-main: linear-gradient(135deg, #6C63FF 0%, #FF6B9D 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A1B 0%, #1A1A2E 100%);
  --gradient-accent: linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
  --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.1);
  --shadow-md: 0 8px 30px rgba(108, 99, 255, 0.15);
  --shadow-lg: 0 20px 60px rgba(108, 99, 255, 0.2);
  --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 72px;
}

/* ============================================
   B. RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text) !important;
  background-color: var(--color-light) !important;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  list-style: none;
}

/* ============================================
   B. TYPOGRAPHY — Fluid Sizing
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw + 1rem, 4rem) !important;
  font-weight: 800 !important;
}

h2 {
  font-size: clamp(1.6rem, 3vw + 0.8rem, 2.75rem) !important;
  font-weight: 700 !important;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem) !important;
  font-weight: 700 !important;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1rem, 1vw + 0.3rem, 1.25rem);
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-light);
}

/* Gradient text — H1 și H2 pe secțiuni dark */
.gradient-text,
.section-dark h1,
.section-dark h2,
.hero-section h1 {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   C. HEADER — UNIFIED SINGLE BAR
   Branding (#masthead) + Navigation (.main-navigation)
   are merged visually into one 64px fixed strip.
   ============================================ */

/* Shared bar background — masthead provides it */
.site-header,
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9001;
  height: var(--header-height);
  background: rgba(10, 10, 27, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(108, 99, 255, 0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled,
#masthead.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  background: rgba(8, 8, 20, 0.99);
}

/* Branding inside masthead */
.site-header .inside-header,
#masthead .inside-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Site title */
.main-title a,
.site-branding .main-title a,
p.main-title a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.site-description {
  display: none;
}

/* Logo */
.site-logo img,
.site-branding .custom-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ── Nav: overlay the masthead bar, sit on right side ── */
@media (min-width: 769px) {
  .main-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--header-height) !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    z-index: 9002 !important;
    overflow: visible !important;
    pointer-events: none;
  }

  .inside-navigation.grid-container {
    max-width: var(--max-width) !important;
    margin: 0 auto !important;
    padding: 0 28px !important;
    height: var(--header-height) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    pointer-events: none;
  }

  /* Allow interaction on the actual nav */
  .main-nav,
  .main-navigation ul,
  .main-navigation li,
  .main-navigation a {
    pointer-events: auto;
  }

  /* Hide mobile menu toggle on desktop */
  .main-navigation .menu-toggle,
  button.menu-toggle {
    display: none !important;
  }

  /* Flex row for top-level items */
  .main-nav > ul.menu,
  ul#menu-meniu-principal {
    display: flex !important;
    align-items: center !important;
    height: var(--header-height) !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    float: none !important;
  }

  .main-nav > ul > li,
  ul#menu-meniu-principal > li {
    display: flex !important;
    align-items: center !important;
    height: var(--header-height) !important;
    float: none !important;
    position: relative;
  }

  /* Nav link — compact, vertically centered */
  .main-navigation ul li a,
  .main-navigation .main-nav ul li a,
  nav.main-navigation a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 6px 14px !important;
    line-height: 1.4 !important;
    height: auto !important;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    pointer-events: auto;
  }

  .main-navigation ul li a::after,
  nav.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
  }

  .main-navigation ul li a:hover,
  nav.main-navigation a:hover {
    color: white !important;
  }

  .main-navigation ul li a:hover::after,
  nav.main-navigation a:hover::after {
    transform: scaleX(1);
  }
}

/* Nav dropdown */
.main-navigation ul ul {
  background: rgba(8, 8, 20, 0.98);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  min-width: 220px;
  pointer-events: auto;
  /* Force dropdown BELOW the nav bar */
  top: 100% !important;
  bottom: auto !important;
  margin-top: 4px;
}

.main-navigation ul ul li a {
  padding: 9px 14px !important;
  border-radius: var(--radius-sm);
  display: block;
  line-height: 1.4 !important;
  height: auto !important;
}

.main-navigation ul ul li a:hover {
  background: rgba(108, 99, 255, 0.15);
}

/* CTA Button în nav */
.nav-cta,
.menu-item-cta > a,
.main-navigation .nav-cta-btn > a {
  background: var(--gradient-main) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.35);
  transition: all 0.2s ease !important;
  white-space: nowrap;
}

.nav-cta:hover,
.menu-item-cta > a:hover,
.main-navigation .nav-cta-btn > a:hover {
  box-shadow: 0 6px 24px rgba(108, 99, 255, 0.55) !important;
  opacity: 0.95 !important;
}

.nav-cta::after,
.menu-item-cta > a::after {
  display: none !important;
}

/* Page content offset — only header height needed now */
.site-content,
#content {
  margin-top: var(--header-height) !important;
}

/* Hamburger menu */
.menu-toggle,
button.menu-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--transition-fast);
}

.menu-toggle:hover {
  border-color: var(--color-primary);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile nav slide-in */
@media (max-width: 768px) {
  .main-navigation {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 27, 0.99);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(108, 99, 255, 0.2);
    padding: 24px;
    transition: right var(--transition-slow);
    overflow-y: auto;
    z-index: 8999;
  }

  .main-navigation.toggled {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-navigation ul li a {
    display: block;
    padding: 14px 16px !important;
    border-radius: var(--radius-sm);
    font-size: 1rem !important;
  }

  .main-navigation ul li a:hover {
    background: rgba(108, 99, 255, 0.15);
  }

  .main-navigation ul li a::after {
    display: none;
  }
}

/* ============================================
   D. HERO SECTION
   ============================================ */
.hero-section,
.site-main > .wp-block-cover:first-child,
section.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 80px 24px;
}

/* Mesh pattern SVG subtil */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Mesh grid overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 99, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Blob shapes animate */
.hero-blob,
.blob-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-move 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: rgba(108, 99, 255, 0.12);
  top: -10%;
  right: -5%;
  animation-duration: 10s;
}

.hero-blob-2 {
  width: clamp(200px, 25vw, 400px);
  height: clamp(200px, 25vw, 400px);
  background: rgba(255, 107, 157, 0.08);
  bottom: 5%;
  left: -5%;
  animation-duration: 14s;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: clamp(150px, 18vw, 280px);
  height: clamp(150px, 18vw, 280px);
  background: rgba(0, 212, 255, 0.08);
  top: 30%;
  left: 45%;
  animation-duration: 12s;
  animation-delay: -2s;
}

/* Hero text content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-section h1 {
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-section .hero-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

@media (max-width: 1024px) {
  .hero-cta-group {
    justify-content: center;
  }

  .hero-section .hero-subtitle {
    margin: 0 auto 40px;
  }
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(108, 99, 255, 0.2),
    0 20px 80px rgba(108, 99, 255, 0.3),
    0 0 60px rgba(255, 107, 157, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-main);
  z-index: -1;
  opacity: 0.6;
}

/* Stats bar */
.hero-stats,
.stats-bar {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-top: 48px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

@media (max-width: 1024px) {
  .hero-stats,
  .stats-bar {
    justify-content: center;
    text-align: center;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .stat-item {
    align-items: center;
  }
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* ============================================
   E. CARDS CURSURI — Glassmorphism
   ============================================ */
.card-curs,
.course-card,
.wp-block-group.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-curs::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.card-curs:hover,
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108, 99, 255, 0.3);
}

.card-curs .card-icon,
.course-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.card-curs h3,
.card-curs h4,
.course-card h3,
.course-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card-curs p,
.course-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-curs .card-meta,
.course-card .card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  padding-top: 16px;
  border-top: 1px solid rgba(108, 99, 255, 0.1);
}

.card-curs .card-meta span,
.course-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Grilă cursuri */
.courses-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

/* ============================================
   F. SECȚIUNI SPECIALE
   ============================================ */

/* Section base */
section,
.wp-block-group.section {
  padding: clamp(60px, 8vw, 120px) 24px;
  position: relative;
}

.section-inner,
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(108, 99, 255, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(108, 99, 255, 0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
}

/* .section-dark */
.section-dark {
  background: var(--gradient-dark);
  color: white;
  overflow: hidden;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: white;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-tag {
  background: rgba(108, 99, 255, 0.2);
  color: var(--color-accent);
  border-color: rgba(0, 212, 255, 0.3);
}

/* Blob decorativ pentru section-dark */
.section-dark .section-blob {
  position: absolute;
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(108, 99, 255, 0.1);
  animation: blob-move 12s ease-in-out infinite;
  pointer-events: none;
}

.section-dark .section-blob-1 {
  top: -10%;
  right: -8%;
}

.section-dark .section-blob-2 {
  bottom: -10%;
  left: -8%;
  animation-duration: 16s;
  animation-delay: -5s;
  background: rgba(255, 107, 157, 0.07);
}

/* .section-light */
.section-light {
  background: var(--color-light);
}

/* .section-gradient */
.section-gradient {
  background:
    linear-gradient(135deg, rgba(108, 99, 255, 0.04) 0%, rgba(255, 107, 157, 0.04) 100%),
    var(--color-light);
}

/* Wave separators */
.wave-top,
.wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   G. BUTOANE
   ============================================ */
.btn-primary,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-main);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
}

.btn-primary:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

/* Outline button */
.btn-outline,
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
}

.btn-outline:hover,
.btn-secondary-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

/* Outline alb (pe fundal dark) */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Pulse button */
.btn-pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Button sizes */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.0625rem;
}

/* ============================================
   H. COOKIE CONSENT BANNER
   ============================================ */
#cursuricopii-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 27, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(108, 99, 255, 0.3);
  padding: 24px 40px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cursuricopii-cookie-banner.visible {
  transform: translateY(0);
}

#cursuricopii-cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 15px;
}

.cookie-text {
  flex: 1;
  max-width: 700px;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: white;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.btn-cookie-accept {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.4);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.btn-cookie-decline:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  #cursuricopii-cookie-banner {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .cookie-text {
    max-width: 100%;
  }

  .cookie-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================
   I. FORMULARE CONTACT FORM 7
   ============================================ */
.wpcf7 {
  max-width: 680px;
}

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

.wpcf7 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
  background: white;
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.wpcf7 input[type="submit"] {
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  padding: 16px 40px;
  font-size: 16px;
  width: auto;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  letter-spacing: 0.01em;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

.wpcf7 .wpcf7-acceptance label {
  font-size: 13px;
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
}

.wpcf7 .wpcf7-response-output {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-top: 20px;
  border: 2px solid;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #065f46;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #7f1d1d;
}

/* ============================================
   J. FOOTER
   ============================================ */
.site-footer,
#colophon {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

/* Gradient line top */
.site-footer::before,
#colophon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }
}

.footer-brand .footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
  transform: translateY(-3px);
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(253, 29, 29, 0.4);
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.social-icon.tiktok:hover {
  background: #010101;
  border-color: #69c9d0;
  box-shadow: 0 0 20px rgba(105, 201, 208, 0.4);
}

/* Footer columns */
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(4px);
}

/* Footer contact */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: white;
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* Footer background blob */
.site-footer .footer-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(108, 99, 255, 0.04);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
  animation: blob-move 20s ease-in-out infinite;
}

/* ============================================
   K. PAGINA DE CURS (template)
   ============================================ */

/* Course hero */
.course-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.course-hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.course-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 27, 0.95) 0%,
    rgba(10, 10, 27, 0.6) 50%,
    rgba(10, 10, 27, 0.3) 100%
  );
}

.course-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 48px;
  width: 100%;
}

.course-hero-content h1 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.course-hero-content .course-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* Breadcrumb */
.breadcrumb,
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: white;
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.25);
}

/* Course layout */
.course-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .course-layout {
    grid-template-columns: 1fr;
  }
}

/* Course content well-spaced */
.course-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 16px;
  color: var(--color-text);
}

.course-content h3 {
  font-size: 1.375rem;
  margin: 32px 0 12px;
  color: var(--color-text);
}

.course-content p {
  margin-bottom: 20px;
}

.course-content ul,
.course-content ol {
  margin: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-content ul li,
.course-content ol li {
  padding-left: 24px;
  position: relative;
  color: var(--color-text-light);
}

.course-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
}

/* FAQ Accordion */
.faq-section {
  margin-top: 48px;
}

.faq-item {
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color var(--transition-fast);
}

.faq-item:has(.faq-answer:not([hidden])) {
  border-color: rgba(108, 99, 255, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--gradient-main);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden !important;
  max-height: 0 !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-answer.open {
  max-height: 600px !important;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA Sidebar (sticky) */
.course-sidebar-cta {
  background: white;
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-cta-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sidebar-cta-body {
  padding: 28px;
}

.sidebar-cta-body .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.sidebar-cta-body .price span {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.sidebar-cta-body .price-note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.sidebar-cta-body .btn-primary {
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}

.sidebar-cta-features {
  margin-top: 20px;
  border-top: 1px solid rgba(108, 99, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.sidebar-cta-features .check-icon {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   L. ANIMAȚII CSS (fara JS)
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(108, 99, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(108, 99, 255, 0.6), 0 0 80px rgba(108, 99, 255, 0.2); }
}

@keyframes blob-move {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 50% 30% 70% / 40% 70% 50% 60%; }
  75% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility animation classes */
.animate-fade-in { animation: fadeInUp 0.6s ease both; }
.animate-fade-in-delay-1 { animation: fadeInUp 0.6s ease 0.1s both; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.6s ease 0.2s both; }
.animate-fade-in-delay-3 { animation: fadeInUp 0.6s ease 0.3s both; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-blob { animation: blob-move 10s ease-in-out infinite; }

/* ============================================
   M. RESPONSIVE — Mobile First Breakpoints
   ============================================ */

/* 375px — small phones */
@media (min-width: 375px) {
  .hero-cta-group {
    gap: 12px;
  }
}

/* 640px — large phones */
@media (min-width: 640px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px — tablets */
@media (min-width: 768px) {
  .hero-stats,
  .stats-bar {
    flex-wrap: nowrap;
  }

  .footer-bottom {
    flex-wrap: nowrap;
  }
}

/* 1024px — small laptops */
@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* 1280px — laptops */
@media (min-width: 1280px) {
  :root {
    --max-width: 1200px;
  }
}

/* 1440px — large screens */
@media (min-width: 1440px) {
  :root {
    --max-width: 1280px;
  }

  .hero-section {
    min-height: 95vh;
  }
}

/* ============================================
   UTILITARE EXTRA
   ============================================ */

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge .badge-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* Info pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pill-primary {
  background: rgba(108, 99, 255, 0.12);
  color: var(--color-primary);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.pill-secondary {
  background: rgba(255, 107, 157, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(255, 107, 157, 0.2);
}

.pill-accent {
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Divider */
.divider {
  height: 1px;
  background: rgba(108, 99, 255, 0.1);
  margin: 40px 0;
}

.divider-gradient {
  height: 1px;
  background: var(--gradient-main);
  opacity: 0.3;
  margin: 40px 0;
}

/* Highlighted text */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-white { color: white; }
.text-muted { color: var(--color-text-light); }

/* Background utilities */
.bg-primary { background-color: var(--color-primary); }
.bg-dark { background: var(--color-dark); }
.bg-light { background: var(--color-light); }
.bg-gradient { background: var(--gradient-main); }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 40px; }

/* Spacing utilities */
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 60px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 60px; }

/* Hover card generic */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Shimmer loading */
.shimmer {
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Notification badge */
.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--color-secondary);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Testimonial card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient-main);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* Number highlight in content */
.highlight-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

/* Process steps */
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

/* WordPress overrides */
.entry-content p:last-child {
  margin-bottom: 0;
}

.wp-block-separator {
  border: none;
  height: 1px;
  background: rgba(108, 99, 255, 0.12);
  margin: 40px 0;
}

.wp-block-image figcaption {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 8px;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HOMEPAGE — Clase suplimentare
   ============================================ */

/* home-hero = alias pentru hero-section */
.home-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 80px 24px;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(108,99,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,157,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,212,255,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.home-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.home-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.home-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.15s both;
}
.home-hero .hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.25s both;
}
.home-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  animation: fadeInUp 0.6s ease 0.35s both;
}
.home-hero .hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.home-hero .hero-stats .stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.home-hero .hero-stats .stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Home sections */
.home-categories,
.home-why,
.home-faq,
.home-contact {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.home-categories h2,
.home-why h2,
.home-faq h2,
.home-contact h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 12px;
}
.home-categories > p,
.home-why > p,
.home-contact > p {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* course-icon inside course-card on homepage */
.courses-grid .course-card .course-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(108,99,255,0.3);
}
.courses-grid a.course-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.course-age {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(108,99,255,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
}
.course-card-all {
  background: var(--gradient-main) !important;
  color: #fff !important;
}
.course-card-all h3, .course-card-all p { color: #fff !important; }
.course-card-all .course-icon { background: rgba(255,255,255,0.2) !important; }
.course-card-all .course-age { background: rgba(255,255,255,0.2); color: #fff; }

/* Why us grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(108,99,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* home-faq uses same .faq-list styles — just section wrapper */
.home-faq .faq-list { max-width: 760px; margin: 40px auto 0; }

/* home-contact CTA section */
.home-contact {
  background: rgba(108,99,255,0.04);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(108,99,255,0.1);
  text-align: center;
  max-width: 860px;
}

/* Course page — benefit/feature lists */
.course-benefits ul,
.course-curriculum ul,
.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.course-benefits li,
.course-curriculum li,
.benefits-list li {
  background: rgba(108,99,255,0.05);
  border: 1px solid rgba(108,99,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  position: relative;
  padding-left: 44px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}
.course-benefits li::before,
.course-curriculum li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
}

/* Platform pricing (Inscrie centrul) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 48px 0;
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  #cursuricopii-cookie-banner,
  .scroll-to-top {
    display: none !important;
  }

  .site-content {
    margin-top: 0;
  }
}

/* ============================================
   DESIGN FIX v1.3.0 — CF7, Course Hero, CTA
   ============================================ */

/* CF7 row containers — remove paragraph gap */
.cf7-row { margin-bottom: 14px; }
.cf7-row > p { margin-bottom: 0 !important; }
.cf7-row .wpcf7-form-control-wrap { display: block; width: 100%; }
.cf7-hidden-fields { display: none !important; }

/* CF7 GDPR checkbox */
.cf7-gdpr { margin: 18px 0 4px; }
.cf7-gdpr .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
}
.cf7-gdpr .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

/* CF7 submit row */
.cf7-submit { margin-top: 8px; }
.cf7-submit > p { margin-bottom: 0 !important; }
.cf7-submit input[type="submit"],
.wpcf7 input[type="submit"] {
  width: 100%;
  font-size: 1rem;
  padding: 16px 32px;
  letter-spacing: 0.02em;
}

/* Wpcf7 form full width */
.wpcf7 { max-width: 100%; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea { display: block; }

/* ── Course CTA dark section ── */
.course-cta {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}
.course-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(108,99,255,0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(255,107,157,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.course-cta > * { position: relative; z-index: 1; }
.course-cta h2 { color: #fff !important; margin-bottom: 12px; }
.course-cta > p,
.course-cta .lead { color: rgba(255,255,255,0.8) !important; margin-bottom: 28px; }

/* CF7 form inside dark .course-cta */
.course-cta .wpcf7 input[type="text"],
.course-cta .wpcf7 input[type="email"],
.course-cta .wpcf7 input[type="tel"],
.course-cta .wpcf7 select,
.course-cta .wpcf7 textarea {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.course-cta .wpcf7 input::placeholder,
.course-cta .wpcf7 textarea::placeholder { color: rgba(255,255,255,0.45) !important; }
.course-cta .wpcf7 select { color: rgba(255,255,255,0.9) !important; }
.course-cta .wpcf7 select option { background: #1A1A2E; color: #fff; }
.course-cta .wpcf7 input:focus,
.course-cta .wpcf7 select:focus,
.course-cta .wpcf7 textarea:focus {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--color-primary) !important;
}
.course-cta .cf7-gdpr .wpcf7-acceptance label { color: rgba(255,255,255,0.75); }
.course-cta .cf7-gdpr .wpcf7-acceptance a { color: var(--color-accent); }

/* ── Course Hero — gradient fallback + image overlay ── */
.course-hero {
  background: var(--gradient-dark) !important;
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(108,99,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,157,0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.course-hero .course-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.course-hero .course-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,27,0.92) 0%,
    rgba(10,10,27,0.55) 45%,
    rgba(10,10,27,0.25) 100%
  );
  z-index: 1;
}
.course-hero > h1,
.course-hero > p,
.course-hero > .lead,
.course-hero > .course-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.course-hero h1 { color: #fff !important; }
.course-hero p, .course-hero .lead { color: rgba(255,255,255,0.82) !important; }

/* When no .course-hero-content wrapper, apply to direct children */
.course-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ── Full-width layout for course pages ── */
.page-template-default .entry-content > .course-hero,
.page-template-default .entry-content > .course-cta {
  margin-left: calc(-1 * var(--section-padding, 40px));
  margin-right: calc(-1 * var(--section-padding, 40px));
  border-radius: 0;
}

/* ── Course card thumbnail image ── */
/* Cards with photos use a no-padding wrapper so the image can fill the top */
.courses-grid a.course-card:has(.course-card-img),
.courses-grid .course-card:has(.course-card-img) {
  padding: 0 !important;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
}
.courses-grid a.course-card:has(.course-card-img) .course-icon,
.courses-grid a.course-card:has(.course-card-img) h3,
.courses-grid a.course-card:has(.course-card-img) p,
.courses-grid a.course-card:has(.course-card-img) .course-age {
  padding-left: 20px;
  padding-right: 20px;
}
.courses-grid a.course-card:has(.course-card-img) h3 {
  padding-top: 14px;
}
.courses-grid a.course-card:has(.course-card-img) .course-age {
  padding-bottom: 16px;
  margin-top: 8px;
  display: block;
}
.course-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
  margin: 0;
}
/* Top gradient bar still appears via ::before */
.courses-grid a.course-card:has(.course-card-img)::before {
  z-index: 1;
}

/* ── Hub page — category section headers ── */
.cursuri-category {
  margin-bottom: 48px;
}
.cursuri-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(108,99,255,0.12);
}
.cursuri-category-header h2 {
  font-size: 1.5rem !important;
  margin: 0 !important;
}
.cursuri-category-icon {
  font-size: 1.5rem;
}

/* ── Footer widgets enhancement ── */
.footer-widgets .widget {
  padding: 0 !important;
}
.footer-widgets .widget-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 16px !important;
}
.footer-widgets p { font-size: 0.9rem !important; line-height: 1.65 !important; }
.footer-widgets ul li { margin-bottom: 8px !important; }
.footer-widgets ul li a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}
.footer-widgets ul li a:hover { color: var(--color-primary) !important; }

/* ── Parteneri / Partner cards ── */
.partner-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(108,99,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-base);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.partner-card .partner-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.partner-tag {
  font-size: 0.75rem; font-weight: 600;
  background: rgba(108,99,255,0.08); color: var(--color-primary);
  border-radius: 20px; padding: 3px 10px;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-block { margin-bottom: 24px; }
.contact-info-block strong { display: block; font-size: 0.8125rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-block a { color: var(--color-text); font-weight: 500; }
.contact-info-block a:hover { color: var(--color-primary); }

/* ── Navigation active state ── */
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current-page-item > a,
.main-navigation .main-nav ul li[class*="current-menu"] > a {
  color: white !important;
  background: transparent !important;
}
.main-navigation .main-nav ul li.current-menu-item > a::after,
.main-navigation .main-nav ul li.current-page-item > a::after {
  transform: scaleX(1) !important;
}

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .course-cta { padding: 36px 24px; border-radius: var(--radius-lg); margin: 40px 0; }
  .home-hero { padding: 60px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .cf7-submit input[type="submit"] { font-size: 0.95rem; }
}

/* ============================================================
   PLATFORMA CENTRE EDUCATIONALE — Design System Distinct
   v1.0.0 — 2026-04-04
   Paleta: Sky Blue #0EA5E9 | Emerald #00C48C | Indigo #6366F1
   ============================================================ */

:root {
  --plat-primary:    #0EA5E9;
  --plat-secondary:  #00C48C;
  --plat-accent:     #6366F1;
  --plat-dark:       #0F172A;
  --plat-dark-2:     #1E293B;
  --plat-light:      #F0F9FF;
  --plat-border:     rgba(14, 165, 233, 0.15);
  --plat-gradient:   linear-gradient(135deg, #0EA5E9 0%, #00C48C 100%);
  --plat-gradient-2: linear-gradient(135deg, #6366F1 0%, #0EA5E9 100%);
  --plat-shadow:     0 8px 30px rgba(14, 165, 233, 0.15);
  --plat-shadow-lg:  0 20px 60px rgba(14, 165, 233, 0.2);
  --plat-radius:     16px;
  --plat-radius-sm:  8px;
  --plat-radius-xl:  32px;
}

/* ── Buton navigație dedicat platformei ────────────────────── */
li.platform-nav-btn {
  padding: 0 !important;
  margin-top: 21px !important;
  vertical-align: middle !important;
}
.platform-nav-btn > a,
.menu-item.platform-nav-btn > a,
a.btn-platform-nav {
  background: linear-gradient(135deg, #0EA5E9 0%, #00C48C 100%) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.4) !important;
  transition: box-shadow 0.3s ease, opacity 0.2s !important;
  margin-left: 12px !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  display: inline-block !important;
}
.platform-nav-btn > a:hover,
a.btn-platform-nav:hover {
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.6) !important;
  color: #fff !important;
  opacity: 0.92 !important;
}
@keyframes platform-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(14,165,233,0.4); }
  50%       { box-shadow: 0 4px 24px rgba(0,196,140,0.6); }
}

/* ── Platform Hero ─────────────────────────────────────────── */
.platform-hero {
  background: linear-gradient(135deg, var(--plat-dark) 0%, var(--plat-dark-2) 100%);
  padding: clamp(60px, 8vw, 100px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(14,165,233,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0,196,140,0.12) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(99,102,241,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.platform-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.platform-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.35);
  color: var(--plat-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.platform-hero h1 {
  color: #fff !important;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  margin-bottom: 20px;
}
.platform-hero h1 span {
  background: var(--plat-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-hero p {
  color: rgba(255,255,255,0.75) !important;
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.platform-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.platform-hero-stats .pstat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--plat-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.platform-hero-stats .pstat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

/* ── Butoane platformă ─────────────────────────────────────── */
.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plat-gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4);
  text-decoration: none;
}
.btn-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.55);
  color: #fff;
}
.btn-platform-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--plat-primary);
  border: 2px solid var(--plat-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-platform-outline:hover {
  background: var(--plat-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-platform-white {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-platform-white:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Director filtre + grid ────────────────────────────────── */
.platform-directory-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.platform-filters-bar {
  background: #fff;
  border: 1px solid var(--plat-border);
  border-radius: var(--plat-radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 2px 12px rgba(14,165,233,0.08);
}
.platform-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 160px;
}
.platform-filter-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--plat-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.platform-filter-group select,
.platform-filter-group input[type="text"] {
  border: 1.5px solid rgba(14,165,233,0.2);
  border-radius: var(--plat-radius-sm);
  padding: 9px 12px;
  font-size: 0.9rem;
  color: #334155;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.platform-filter-group select:focus,
.platform-filter-group input:focus {
  border-color: var(--plat-primary);
  background: #fff;
}
.platform-filter-submit {
  background: var(--plat-gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(14,165,233,0.35);
  align-self: flex-end;
}
.platform-filter-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,165,233,0.5); }

.platform-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.platform-results-count {
  font-size: 0.9375rem;
  color: #64748b;
}
.platform-results-count strong { color: var(--plat-primary); }

/* ── Grid centre ───────────────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Card centru ───────────────────────────────────────────── */
.platform-card {
  background: #fff;
  border: 1px solid var(--plat-border);
  border-radius: var(--plat-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(14,165,233,0.06);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--plat-shadow-lg);
  border-color: rgba(14,165,233,0.3);
  color: inherit;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--plat-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.platform-card:hover::before { transform: scaleX(1); }

.platform-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #0F172A, #1E293B);
}
.platform-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--plat-dark) 0%, var(--plat-dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.platform-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.platform-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.platform-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.3;
}
.platform-card-cursuri {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.platform-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  flex: 1;
}
.platform-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #475569;
}
.platform-card-meta-item .meta-icon { font-size: 1rem; flex-shrink: 0; }
.platform-card-footer {
  border-top: 1px solid rgba(14,165,233,0.1);
  padding-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.platform-card-cta {
  flex: 1;
  background: var(--plat-gradient);
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.platform-card-cta:hover { opacity: 0.9; color: #fff; transform: scale(1.02); }
.platform-card-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14,165,233,0.1);
  color: var(--plat-primary);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.platform-card-tel:hover { background: var(--plat-primary); color: #fff; }

/* ── Badge-uri sistem ──────────────────────────────────────── */
.badge-verificat {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,196,140,0.1); color: #00875A;
  border: 1px solid rgba(0,196,140,0.3);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-premium {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(251,191,36,0.15); color: #B45309;
  border: 1px solid rgba(251,191,36,0.4);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-standard {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(14,165,233,0.1); color: var(--plat-primary);
  border: 1px solid rgba(14,165,233,0.3);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-gratuit {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(100,116,139,0.08); color: #64748B;
  border: 1px solid rgba(100,116,139,0.2);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-sedinta-gratuita {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,196,140,0.08); color: #00875A;
  border: 1px solid rgba(0,196,140,0.25);
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px;
  border-radius: 50px;
}
.tag-curs {
  display: inline-block;
  background: rgba(14,165,233,0.08);
  color: var(--plat-primary);
  border: 1px solid rgba(14,165,233,0.2);
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}

/* ── Single centru — pagina profil ────────────────────────── */
.platform-profile-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--plat-dark);
}
.platform-profile-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.platform-profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.5) 60%, transparent 100%);
}
.platform-profile-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.platform-profile-hero-content h1 { color: #fff !important; margin-bottom: 16px; }
.platform-profile-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

.platform-profile-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) { .platform-profile-body { grid-template-columns: 1fr; } }

.platform-info-card {
  background: #fff;
  border: 1px solid var(--plat-border);
  border-radius: var(--plat-radius);
  padding: 28px;
  box-shadow: var(--plat-shadow);
  position: sticky;
  top: 80px;
}
.platform-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--plat-gradient);
  border-image: var(--plat-gradient) 1;
}
.platform-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(14,165,233,0.08);
  font-size: 0.9rem;
}
.platform-info-row:last-child { border-bottom: none; }
.platform-info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.platform-info-label { font-weight: 600; color: #334155; min-width: 90px; }
.platform-info-value { color: #475569; flex: 1; }
.platform-info-value a { color: var(--plat-primary); }
.platform-info-value a:hover { color: var(--plat-secondary); }

.platform-contact-cta {
  background: var(--plat-gradient);
  border-radius: var(--plat-radius);
  padding: 24px;
  margin-top: 20px;
  text-align: center;
}
.platform-contact-cta p { color: rgba(255,255,255,0.85) !important; font-size: 0.875rem !important; margin-bottom: 16px !important; }
.platform-contact-cta a { background: rgba(255,255,255,0.2); color: #fff; display: block; padding: 12px; border-radius: 50px; font-weight: 700; text-decoration: none; margin-bottom: 8px; transition: background 0.2s; }
.platform-contact-cta a:hover { background: rgba(255,255,255,0.3); }

/* ── Pagina Archive / Director ─────────────────────────────── */
.platform-archive-header {
  background: linear-gradient(135deg, var(--plat-dark) 0%, var(--plat-dark-2) 60%);
  padding: clamp(50px, 7vw, 90px) 24px clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-archive-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(14,165,233,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(0,196,140,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.platform-archive-header h1 { color: #fff !important; position: relative; z-index: 1; margin-bottom: 12px; }
.platform-archive-header p  { color: rgba(255,255,255,0.7) !important; position: relative; z-index: 1; font-size: 1.1rem !important; }

/* ── Secțiuni descriptive platformă ───────────────────────── */
.platform-benefits {
  background: var(--plat-light);
  padding: clamp(60px, 8vw, 100px) 24px;
}
.platform-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.platform-benefits h2 {
  text-align: center;
  margin-bottom: 12px;
}
.platform-benefits > .platform-benefits-inner > p {
  text-align: center;
  color: #64748b;
  margin-bottom: 48px;
}
.platform-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.platform-benefit-card {
  background: #fff;
  border: 1px solid var(--plat-border);
  border-radius: var(--plat-radius);
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.platform-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--plat-gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.platform-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--plat-shadow); }
.platform-benefit-card:hover::before { transform: scaleX(1); }
.platform-benefit-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.platform-benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #0F172A; }
.platform-benefit-card p  { font-size: 0.9rem; color: #64748b; line-height: 1.65; }

/* ── Prețuri platformă ─────────────────────────────────────── */
.platform-pricing {
  padding: clamp(60px, 8vw, 100px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.platform-pricing h2 { text-align: center; margin-bottom: 12px; }
.platform-pricing > p { text-align: center; color: #64748b; margin-bottom: 48px; }
.platform-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .platform-pricing-grid { grid-template-columns: 1fr; } }

.platform-plan {
  background: #fff;
  border: 2px solid rgba(14,165,233,0.15);
  border-radius: var(--plat-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.platform-plan:hover { transform: translateY(-6px); box-shadow: var(--plat-shadow-lg); }
.platform-plan.featured {
  background: var(--plat-dark);
  border-color: var(--plat-primary);
  transform: scale(1.04);
  box-shadow: var(--plat-shadow-lg);
}
.platform-plan.featured:hover { transform: scale(1.04) translateY(-6px); }
.platform-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plat-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.platform-plan-name { font-size: 1rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.platform-plan.featured .platform-plan-name { color: rgba(255,255,255,0.6); }
.platform-plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; color: #0F172A; line-height: 1; margin-bottom: 4px; }
.platform-plan.featured .platform-plan-price { background: var(--plat-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.platform-plan-period { font-size: 0.875rem; color: #94a3b8; margin-bottom: 28px; }
.platform-plan.featured .platform-plan-period { color: rgba(255,255,255,0.5); }
.platform-plan-features { list-style: none; padding: 0; margin-bottom: 28px; text-align: left; }
.platform-plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: #475569; padding: 7px 0;
  border-bottom: 1px solid rgba(14,165,233,0.08);
}
.platform-plan-features li:last-child { border-bottom: none; }
.platform-plan.featured .platform-plan-features li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.08); }
.platform-plan-features li::before { content: '✓'; color: var(--plat-secondary); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── Admin stats dashboard ─────────────────────────────────── */
.platform-admin-wrap { max-width: 900px; }
.platform-admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.platform-admin-stat {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 20px; text-align: center;
}
.platform-admin-stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: #0EA5E9; font-family: 'Plus Jakarta Sans', sans-serif; }
.platform-admin-stat span { font-size: 0.875rem; color: #64748b; }

/* ── Empty state ───────────────────────────────────────────── */
.platform-empty {
  text-align: center;
  padding: 60px 24px;
  color: #64748b;
}
.platform-empty-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.platform-empty h3 { color: #334155; margin-bottom: 8px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .platform-filters-bar { flex-direction: column; }
  .platform-filter-group { min-width: 100%; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-pricing-grid { grid-template-columns: 1fr; }
  .platform-plan.featured { transform: none; }
  .platform-profile-body { grid-template-columns: 1fr; }
  .platform-info-card { position: static; }
  .platform-admin-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-hero-stats { gap: 24px; }
}

/* ── Platform Directory Card Grid (v1.4.0 plugin class names) ────────────── */
.platform-directory { max-width: 1200px; margin: 0 auto; padding: 0 24px 64px; }

.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.platform-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  border-top: 4px solid var(--plat-primary, #0EA5E9);
}
.platform-card-nivel-premium { border-top-color: var(--plat-accent, #6366F1); }
.platform-card-nivel-gratuit { border-top-color: #22c55e; }
.platform-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }

.platform-card-inner { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }

.platform-card-thumb { width: 100%; height: 180px; object-fit: cover; display: block; }
.platform-card-thumb-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #0EA5E9 0%, #00C48C 100%);
  display: flex; align-items: center; justify-content: center;
}
.platform-card-thumb-placeholder .dashicons { font-size: 64px; width: 64px; height: 64px; color: rgba(255,255,255,0.7); }

.platform-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.platform-card-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.platform-badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.03em; }
.platform-badge-verificat { background: #dbeafe; color: #1e40af; }
.platform-badge-gratuit { background: #dcfce7; color: #166534; }
.platform-badge-premium { background: linear-gradient(135deg, #6366F1, #8b5cf6); color: #fff; }
.platform-badge-standard { background: #f3f4f6; color: #374151; }

.platform-card-title { font-size: 1.15rem; font-weight: 700; color: #1A1A2E; margin: 0; line-height: 1.3; }
.platform-card-sector { font-size: 0.85rem; color: #6B7280; font-weight: 500; }

.platform-card-cursuri { display: flex; flex-wrap: wrap; gap: 6px; }
.platform-tag { background: #EEF2FF; color: #4F46E5; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

.platform-card-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: #374151; }
.platform-meta-item { display: flex; align-items: center; gap: 4px; }

.platform-card-actions { margin-top: auto; padding-top: 12px; border-top: 1px solid #F3F4F6; display: flex; flex-wrap: wrap; gap: 8px; }
.platform-contact-item {
  font-size: 0.8rem; color: var(--plat-primary, #0EA5E9); font-weight: 600;
  padding: 6px 12px; background: #EFF6FF; border-radius: 8px;
  cursor: pointer; transition: background 0.2s;
}
.platform-contact-item:hover { background: #DBEAFE; }

.results-count { color: #6B7280; font-size: 0.9rem; margin-bottom: 0; }
.results-count strong { color: #1A1A2E; }

@media (max-width: 640px) {
  .platform-cards-grid { grid-template-columns: 1fr; }
}

/* ── Platform Single Center Page ────────────────────────────── */
.platform-single-centru { max-width: 1100px; margin: 0 auto; padding: 0 24px 64px; }

.platform-single-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: clamp(50px, 7vw, 80px) 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.platform-single-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(14,165,233,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.platform-single-hero-content { position: relative; z-index: 1; }
.platform-single-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.platform-single-title { color: #fff !important; font-size: clamp(1.8rem, 3vw, 2.5rem) !important; margin-bottom: 8px; }
.platform-single-sector { color: rgba(255,255,255,0.7) !important; font-size: 1rem !important; }

.platform-single-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.platform-info-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.platform-info-item .info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.platform-info-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #9CA3AF; margin-bottom: 2px; }
.platform-info-item p { margin: 0; font-size: 0.9rem; color: #1A1A2E; }
.platform-info-item a { color: var(--plat-primary, #0EA5E9); text-decoration: none; }
.platform-info-item a:hover { text-decoration: underline; }

.platform-single-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.platform-single-section h2 { font-size: 1.3rem !important; color: #1A1A2E !important; margin-bottom: 16px !important; border-bottom: 2px solid #F3F4F6; padding-bottom: 12px; }
.platform-single-content p { color: #374151; line-height: 1.7; }

.platform-tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-tag-large { font-size: 0.9rem !important; padding: 6px 16px !important; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.platform-tag-large:hover { background: #C7D2FE !important; }

.platform-cert-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.platform-cert-list li { padding: 10px 16px; background: #F0FDF4; border-radius: 8px; color: #166534; font-size: 0.9rem; border-left: 3px solid #22c55e; }

.btn-maps {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--plat-gradient, linear-gradient(135deg, #0EA5E9, #00C48C));
  color: #fff; text-decoration: none; font-weight: 700;
  padding: 12px 24px; border-radius: 50px; font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-maps:hover { opacity: 0.9; transform: scale(1.02); color: #fff; }

.platform-contact-form-section .wpcf7-form { margin-top: 8px; }

@media (max-width: 640px) {
  .platform-single-info-grid { grid-template-columns: 1fr; }
  .platform-single-section { padding: 20px; }
  .platform-single-hero { padding: 40px 20px; }
}
