/* ================================================
   STYLE.CSS — Componente comune pentru toate paginile
   ================================================ */

/* --- Reset & bază --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  color: #4b5a7e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: #0a6ff7; color: #fff; }
input, textarea, select, button, a { font-family: inherit; }
img { max-width: 100%; display: block; }

/* --- Animații --- */
@keyframes mu-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
@keyframes mu-float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(11px); }
}

/* --- Scroll reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.16,.84,.44,1),
              transform 0.8s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--light { background: #f5f8fc; }
.section--navy { background: #092355; }

/* Placeholder inainte de injectarea componentei header */
[data-component="header"] {
  min-height: 88px;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 30px -20px rgba(9, 35, 85, .55);
  border-bottom-color: #eaeff7;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
}
.footer-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Nav desktop */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #5a6987;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fc9d05;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-link:hover { background: #f1f5fb; }
.nav-link.active { color: #092355; font-weight: 700; }
.nav-link.active::after { opacity: 1; }

/* Acțiuni header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-text-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #092355;
  padding: 10px 8px;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #092355;
  border-radius: 2px;
}

/* Meniu mobil */
.mobile-menu {
  display: none;
  border-top: 1px solid #eef2f8;
  background: #fff;
  padding: 14px clamp(20px, 5vw, 40px) 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  color: #092355;
  padding: 13px 6px;
  border-radius: 10px;
}
.mobile-divider { height: 1px; background: #eef2f8; margin: 10px 0; }
.mobile-auth {
  border: 1px solid #dce4f0 !important;
  padding: 13px !important;
  border-radius: 12px !important;
  text-align: center !important;
  display: block !important;
  font-weight: 600;
  font-size: 16px;
  color: #092355 !important;
  background: #fff !important;
}
.mobile-cta {
  margin-top: 8px;
  background: #0a6ff7 !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 12px !important;
  text-align: center !important;
  display: block !important;
  font-weight: 600;
  font-size: 16px;
  color: #fff !important;
}

/* ================================================
   BUTOANE
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease,
              border-color .2s ease, color .2s ease;
}
.btn-primary {
  background: #0a6ff7;
  color: #fff;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -10px rgba(10, 111, 247, .7);
}
.btn-primary:hover {
  background: #0961db;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(10, 111, 247, .8);
}
.btn-primary--lg {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 13px;
  box-shadow: 0 14px 30px -12px rgba(10, 111, 247, .75);
}
.btn-primary--lg:hover {
  box-shadow: 0 20px 38px -14px rgba(10, 111, 247, .8);
}
.btn-ghost {
  background: #fff;
  color: #092355;
  border: 1px solid #dce4f0;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
}
.btn-ghost:hover {
  border-color: #0a6ff7;
  color: #0a6ff7;
  background: #f7faff;
}
.btn-ghost--lg {
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 13px;
}
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 13px;
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #0a6ff7;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 13px;
}
.btn-white:hover { transform: translateY(-2px); color: #0a6ff7; }
.btn-accent {
  background: #fc9d05;
  color: #092355;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
}
.btn-accent:hover {
  background: #ffae2b;
  transform: translateY(-2px);
  color: #092355;
}
.btn-full { width: 100%; }

/* ================================================
   EYEBROW (etichetă secțiune)
   ================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #fc9d05;
  flex-shrink: 0;
}
.eyebrow-label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #0a6ff7;
}
.eyebrow-label--accent { color: #fc9d05; }
.eyebrow--center { justify-content: center; }

/* ================================================
   TIPOGRAFIE
   ================================================ */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: #092355;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #092355;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(25px, 3.2vw, 34px);
  line-height: 1.12;
  color: #092355;
}
.section-intro {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #5a6987;
  margin-top: 18px;
}
.section-header { max-width: 640px; }
.section-header--center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   HERO (comun între pagini)
   ================================================ */
.page-hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(36px, 5vw, 64px);
  overflow: hidden;
}
.page-hero .deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

/* ================================================
   CTA BAND (secțiunea albastră de jos)
   ================================================ */
.cta-band-wrapper {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
}
.cta-band {
  max-width: 1080px;
  margin: 0 auto;
  background: #0a6ff7;
  border-radius: 30px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band .deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  margin: 0;
}
.cta-band p {
  position: relative;
  margin: 18px auto 0;
  max-width: 520px;
  font-family: 'PT Serif', serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}
.cta-band-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #08203f;
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 56px);
}
.footer-brand { flex: 1 1 280px; min-width: 240px; }
.footer-tagline {
  margin-top: 18px;
  font-family: 'PT Serif', serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
  max-width: 300px;
}
.footer-store-badges { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
  border-radius: 11px;
  padding: 8px 14px;
  transition: background .2s ease;
  font-weight: 700;
  font-size: 13px;
}
.footer-badge:hover { background: rgba(255, 255, 255, .14); }
.footer-badge-icon--diamond {
  display: inline-block;
  width: 10px; height: 10px;
  border: 2px solid #fc9d05;
  border-radius: 3px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.footer-badge-icon--play {
  display: inline-block;
  width: 0; height: 0;
  border-left: 9px solid #fc9d05;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex-shrink: 0;
}
.footer-links {
  flex: 2 1 440px;
  min-width: 260px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 28px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px;
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding: 22px clamp(20px, 5vw, 40px) clamp(28px, 4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13.5px; color: rgba(255, 255, 255, .5); }
.footer-anpc {
  display: inline-flex;
  flex: 0 1 auto;
  max-width: min(280px, 100%);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-anpc:hover {
  opacity: .92;
  transform: translateY(-1px);
}
.footer-anpc:focus-visible {
  outline: 2px solid #fc9d05;
  outline-offset: 3px;
}
.footer-anpc-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.social-icon--sq {
  width: 11px; height: 11px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 3px;
}
.social-icon--circ {
  width: 11px; height: 11px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
}
.social-icon--play {
  width: 0; height: 0;
  border-left: 8px solid rgba(255, 255, 255, .6);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ================================================
   HERO ACASĂ
   ================================================ */
.hero-home {
  position: relative;
  padding: clamp(44px, 6vw, 92px) 0 clamp(56px, 8vw, 118px);
  overflow: hidden;
}
.hero-home-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.hero-text { flex: 1 1 440px; min-width: 290px; }
.hero-text h1 { margin: 0; }
.hero-text > p {
  margin: 24px 0 0;
  font-family: 'PT Serif', serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #4b5a7e;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-store { margin-top: 36px; }
.store-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #90a0bd;
  margin-bottom: 13px;
}
.store-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.badge-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #092355;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 13px;
  padding: 9px 17px;
  transition: transform .2s ease;
}
.badge-store:hover { transform: translateY(-2px); }
.badge-icon--diamond-sm {
  display: inline-block;
  width: 11px; height: 11px;
  border: 2px solid #fc9d05;
  border-radius: 3px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.badge-icon--play-sm {
  display: inline-block;
  width: 0; height: 0;
  border-left: 9px solid #fc9d05;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex-shrink: 0;
}
.badge-icon--circle-sm {
  display: inline-block;
  width: 13px; height: 13px;
  border: 2px solid #fc9d05;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.badge-sub { font-size: 10px; font-weight: 500; opacity: .7; letter-spacing: .04em; }
.badge-main { font-size: 15px; font-weight: 700; }

/* Mockup telefon */
.hero-phone { flex: 1 1 360px; min-width: 280px; display: flex; justify-content: center; }
.phone-wrapper {
  position: relative;
  width: min(330px, 82vw);
}
.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 13px 16px;
  box-shadow: 0 22px 44px -22px rgba(9, 35, 85, .4);
  display: flex;
  align-items: center;
  gap: 11px;
}
.float-card--rating {
  top: 46px;
  left: -26px;
  animation: mu-float 6.5s ease-in-out infinite;
}
.float-card--lesson {
  bottom: 96px;
  right: -22px;
  animation: mu-float2 7.5s ease-in-out infinite;
}
.float-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon--accent {
  background: #fff4e2;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  color: #fc9d05;
}
.float-icon--primary { background: #eaf2ff; }
.float-icon-sq {
  width: 14px; height: 14px;
  border: 2px solid #0a6ff7;
  border-radius: 4px;
}
.float-title { font-weight: 700; font-size: 17px; color: #092355; line-height: 1.2; }
.float-sub { font-size: 11px; color: #8a99b8; }
.float-card--lesson .float-title { font-size: 14px; }

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 19;
  background: #092355;
  border-radius: 42px;
  padding: 11px;
  box-shadow: 0 50px 90px -34px rgba(9,35,85,.55), 0 12px 32px -18px rgba(9,35,85,.45);
  animation: mu-float 9s ease-in-out infinite;
}
.phone-notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 118px; height: 22px;
  background: #092355;
  border-radius: 0 0 15px 15px;
  z-index: 4;
}
.phone-screen {
  height: 100%;
  background: #f5f8fc;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 16px 12px;
}
.app-user { display: flex; align-items: center; gap: 10px; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: #dbe5f5; flex-shrink: 0; }
.app-greeting { font-weight: 700; font-size: 13px; color: #092355; line-height: 1.25; }
.app-greeting-sub { font-size: 10px; color: #8a99b8; }
.app-notif {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -6px rgba(9,35,85,.3);
}
.app-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: #fc9d05; }
.app-lesson-card {
  margin: 4px 14px 0;
  background: #0a6ff7;
  border-radius: 18px;
  padding: 15px 16px;
  color: #fff;
}
.app-lesson-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  opacity: .78;
}
.app-lesson-time {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 21px;
  margin-top: 5px;
}
.app-lesson-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}
.app-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.16);
  padding: 5px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.app-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fc9d05; }
.app-join-btn {
  background: #fff; color: #0a6ff7;
  font-weight: 700; font-size: 12px;
  padding: 7px 14px; border-radius: 11px;
}
.app-section-title { padding: 16px 14px 8px; font-weight: 700; font-size: 12px; color: #092355; }
.app-tutors { display: flex; flex-direction: column; gap: 8px; padding: 0 14px; }
.app-tutor-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px;
  padding: 9px 11px;
  box-shadow: 0 6px 16px -12px rgba(9,35,85,.3);
}
.app-tutor-avatar { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; }
.app-tutor-avatar--warm { background: #fff4e2; }
.app-tutor-avatar--cool { background: #e4ecfb; }
.app-tutor-info { flex: 1; line-height: 1.25; }
.app-tutor-name { font-weight: 700; font-size: 12px; color: #092355; }
.app-tutor-sub { font-size: 10px; color: #8a99b8; }
.app-tutor-rating { font-weight: 700; font-size: 11px; color: #092355; }
.app-tab-bar {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 13px 18px;
  background: #fff;
  border-top: 1px solid #eef2f8;
}
.app-tab { width: 18px; height: 18px; border-radius: 6px; border: 2px solid #c5d2e6; }
.app-tab--active { background: #0a6ff7; border-color: #0a6ff7; }

/* Cercuri decorative hero */
.deco-circle--tr {
  position: absolute;
  top: -160px; right: -180px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: #eaf2ff;
  z-index: 0;
}
.deco-circle--bl {
  position: absolute;
  bottom: -200px; left: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: #fff7ea;
  z-index: 0;
}

/* ================================================
   CUM FUNCȚIONEAZĂ
   ================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(40px, 5vw, 64px);
}
.step-bar { display: block; width: 34px; height: 3px; background: #fc9d05; margin-bottom: 18px; }
.step-number { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; color: #0a6ff7; }
.step-title { margin-top: 10px; font-weight: 700; font-size: 20px; color: #092355; }
.step-desc { margin: 10px 0 0; font-family: 'PT Serif', serif; font-size: 16px; line-height: 1.65; color: #5a6987; }

/* ================================================
   FUNCȚIONALITĂȚI
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: clamp(40px, 5vw, 60px);
}
.feature-card {
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 2px rgba(9, 35, 85, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -24px rgba(9, 35, 85, .28);
  border-color: #dde7f5;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon--primary { background: #eaf2ff; }
.feature-icon--accent  { background: #fff4e2; }
.feature-title { font-weight: 700; font-size: 19px; color: #092355; }
.feature-desc { margin: 9px 0 0; font-size: 15px; line-height: 1.6; color: #5a6987; }

/* Icoane feature (CSS pur) */
.icon-play-circle {
  width: 30px; height: 30px;
  border: 2px solid #0a6ff7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-play-triangle {
  width: 0; height: 0;
  border-left: 9px solid #0a6ff7;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.icon-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.icon-grid-sq { width: 9px; height: 9px; border-radius: 2px; background: #fc9d05; }
.icon-chat {
  position: relative;
}
.icon-chat-bubble {
  width: 30px; height: 21px;
  border-radius: 9px;
  background: #0a6ff7;
}
.icon-chat-tail {
  position: absolute;
  bottom: -3px; left: 6px;
  width: 8px; height: 8px;
  background: #0a6ff7;
  transform: rotate(45deg);
}
.icon-diamond {
  width: 24px; height: 24px;
  background: #fc9d05;
  border-radius: 6px;
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
}
.icon-diamond-inner { width: 7px; height: 7px; background: #fff4e2; border-radius: 50%; transform: rotate(-45deg); }
.icon-bars {
  display: flex; align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding-bottom: 4px;
  height: 30px;
}
.icon-bar { width: 6px; border-radius: 3px; background: #0a6ff7; }
.icon-bar--s { height: 12px; }
.icon-bar--l { height: 22px; }
.icon-bar--m { height: 16px; }
.icon-books { position: relative; width: 30px; height: 26px; }
.icon-book-back {
  position: absolute;
  top: 0; right: 0;
  width: 24px; height: 18px;
  background: #fc9d05;
  border-radius: 5px;
}
.icon-book-front {
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 18px;
  border: 2px solid #fc9d05;
  border-radius: 5px;
  background: #fff4e2;
}

/* ================================================
   BANDĂ DISPONIBIL PE (navy)
   ================================================ */
.store-band {
  background: #092355;
  padding: clamp(56px, 8vw, 104px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.store-band-deco1 {
  position: absolute;
  top: -140px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}
.store-band-deco2 {
  position: absolute;
  bottom: -180px; left: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}
.store-band-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.store-band h2 { color: #fff; }
.store-band > .store-band-inner > p {
  margin: 20px auto 0;
  max-width: 580px;
  font-family: 'PT Serif', serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}
.store-band-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 38px;
}
.badge-store-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #092355;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 13px 22px;
  transition: transform .2s ease;
  text-decoration: none;
}
.badge-store-light:hover { transform: translateY(-2px); }
.badge-store-light .badge-icon--diamond-sm { border-color: #0a6ff7; }
.badge-store-light .badge-icon--play-sm { border-left-color: #0a6ff7; }
.badge-store-light .badge-icon--circle-sm {
  border: 2px solid #0a6ff7;
  width: 15px; height: 15px;
}
.badge-store-light .badge-sub { color: #8a99b8; opacity: 1; }
.badge-store-light .badge-main { font-size: 16px; }

/* ================================================
   PENTRU ELEVI / PROFESORI
   ================================================ */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3vw, 32px);
}
.audience-card {
  flex: 1 1 380px;
  min-width: 280px;
  border-radius: 26px;
  padding: clamp(28px, 4vw, 44px);
}
.audience-card--students { background: #eaf2ff; }
.audience-card--tutors   { background: #092355; }
.audience-eyebrow {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.audience-card--students .audience-eyebrow { color: #0a6ff7; }
.audience-card--tutors   .audience-eyebrow { color: #fc9d05; }
.audience-card--tutors h3 { color: #fff; }
.audience-benefits {
  list-style: none;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefit-item { display: flex; gap: 13px; align-items: flex-start; }
.benefit-marker {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.benefit-marker--primary { background: #0a6ff7; }
.benefit-marker--accent  { background: #fc9d05; }
.benefit-check {
  display: block;
  width: 6px; height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(43deg);
  margin-top: -2px;
}
.benefit-check--dark {
  border-right-color: #092355;
  border-bottom-color: #092355;
}
.benefit-text { font-size: 15.5px; line-height: 1.5; }
.audience-card--students .benefit-text { color: #3a4a6d; }
.audience-card--tutors   .benefit-text { color: rgba(255,255,255,.84); }

/* ================================================
   PREȚURI
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: clamp(40px, 5vw, 60px);
}
.pricing-card {
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border: 2px solid #0a6ff7;
  box-shadow: 0 30px 60px -28px rgba(10,111,247,.5);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #fc9d05;
  color: #092355;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a6ff7;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 14px;
}
.pricing-price-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 46px;
  color: #092355;
  line-height: 1;
}
.pricing-price-per {
  font-weight: 600;
  font-size: 15px;
  color: #8a99b8;
  margin-bottom: 7px;
}
.pricing-desc { margin: 12px 0 0; font-size: 14px; color: #5a6987; }
.pricing-divider { height: 1px; background: #eef2f8; margin: 24px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.pricing-feature { display: flex; gap: 11px; align-items: flex-start; }
.pricing-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pricing-check--primary { background: #eaf2ff; }
.pricing-check--accent  { background: #fff4e2; }
.pricing-check-mark {
  display: block;
  width: 5px; height: 9px;
  transform: rotate(43deg);
  margin-top: -1px;
}
.pricing-check--primary .pricing-check-mark {
  border-right: 2px solid #0a6ff7;
  border-bottom: 2px solid #0a6ff7;
}
.pricing-check--accent .pricing-check-mark {
  border-right: 2px solid #fc9d05;
  border-bottom: 2px solid #fc9d05;
}
.pricing-feature-text { font-size: 14.5px; color: #3a4a6d; }

/* ================================================
   DESPRE NOI
   ================================================ */
.despre-hero-circle {
  position: absolute;
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: #eaf2ff;
  z-index: 0;
}
.despre-intro {
  margin: 24px 0 0;
  font-family: 'PT Serif', serif;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: #4b5a7e;
  max-width: 640px;
}
.poveste-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.poveste-text { flex: 1 1 360px; min-width: 280px; }
.poveste-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.12;
}
.poveste-text p {
  margin-top: 20px;
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4b5a7e;
}
.poveste-text p + p { margin-top: 16px; }
.poveste-image { flex: 1 1 360px; min-width: 280px; }
.image-placeholder {
  border-radius: 24px;
  border: 1px dashed #c3d0e4;
  background: #eef2f8;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #90a0bd;
  letter-spacing: .04em;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.valori-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: clamp(36px, 5vw, 56px);
}
.valoare-card {
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(9,35,85,.04);
}
.valoare-bar { display: block; width: 36px; height: 3px; background: #fc9d05; margin-bottom: 20px; }
.valoare-title { font-weight: 700; font-size: 20px; color: #092355; }
.valoare-desc { margin: 10px 0 0; font-family: 'PT Serif', serif; font-size: 16px; line-height: 1.65; color: #5a6987; }
.echipa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: clamp(36px, 5vw, 56px);
}
.echipa-member { text-align: center; }
.echipa-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #dbe5f5;
  margin: 0 auto;
  border: 1px dashed #c3d0e4;
  display: flex; align-items: center; justify-content: center;
}
.echipa-photo span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: #90a0bd;
}
.echipa-name { margin-top: 18px; font-weight: 700; font-size: 18px; color: #092355; }
.echipa-role { margin-top: 4px; font-size: 14px; color: #0a6ff7; }

/* ================================================
   CONTACT
   ================================================ */
.contact-hero-circle {
  position: absolute;
  top: -180px; left: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: #fff7ea;
  z-index: 0;
}
.contact-hero-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.contact-hero-text h1 { margin: 0; }
.contact-hero-text p {
  margin: 22px 0 0;
  font-family: 'PT Serif', serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #4b5a7e;
  max-width: 560px;
}
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 48px);
  align-items: flex-start;
}
.contact-form-card {
  flex: 1 1 460px;
  min-width: 290px;
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 30px 60px -40px rgba(9,35,85,.4);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
}
.form-group--full { flex: 1 1 100%; }
.form-label {
  font-weight: 600;
  font-size: 14px;
  color: #092355;
}
.form-input,
.form-select,
.form-textarea {
  font-size: 15px;
  color: #092355;
  padding: 13px 15px;
  border: 1px solid #dce4f0;
  border-radius: 12px;
  outline: none;
  background: #fbfcfe;
  transition: border-color .2s ease;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: #0a6ff7; }
.form-select { appearance: none; }
.form-textarea { resize: vertical; line-height: 1.55; min-height: 120px; }
.form-disclaimer {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: #90a0bd;
  text-align: center;
}
.form-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fde8e8;
  color: #b42318;
  font-size: 14px;
  line-height: 1.4;
}
.contact-success { text-align: center; padding: 30px 10px; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #eaf2ff;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.success-check {
  display: block;
  width: 14px; height: 24px;
  border-right: 3px solid #0a6ff7;
  border-bottom: 3px solid #0a6ff7;
  transform: rotate(43deg);
  margin-top: -4px;
}
.success-title {
  margin: 24px 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 26px;
  color: #092355;
}
.success-text {
  margin: 12px auto 0;
  max-width: 360px;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6987;
}
.contact-aside {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-card {
  background: #092355;
  border-radius: 22px;
  padding: 30px;
  color: #fff;
}
.contact-info-title { font-weight: 700; font-size: 18px; }
.contact-info-list { margin-top: 20px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; gap: 13px; align-items: flex-start; }
.contact-info-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.ci-email { width: 14px; height: 11px; border: 2px solid #fc9d05; border-radius: 3px; }
.ci-phone { width: 13px; height: 13px; border: 2px solid #fc9d05; border-radius: 50%; }
.ci-pin { width: 12px; height: 12px; background: #fc9d05; border-radius: 3px; transform: rotate(45deg); }
.contact-info-type { font-size: 12px; color: rgba(255,255,255,.6); }
.contact-info-value { font-weight: 600; font-size: 15px; color: #fff; }
.schedule-card {
  background: #f5f8fc;
  border: 1px solid #eef2f8;
  border-radius: 22px;
  padding: 26px;
}
.schedule-title { font-weight: 700; font-size: 16px; color: #092355; }
.schedule-list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
}
.schedule-day { color: #5a6987; }
.schedule-hours { color: #092355; font-weight: 600; }
.schedule-hours--closed { color: #8a99b8; }
.map-placeholder {
  border-radius: 24px;
  border: 1px dashed #c3d0e4;
  background: #eef2f8;
  height: clamp(200px, 28vw, 300px);
  display: flex; align-items: center; justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}
.map-placeholder span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #90a0bd;
  letter-spacing: .04em;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 880px) {
  .desktop-nav  { display: none !important; }
  .header-actions { display: none !important; }
  .hamburger { display: flex; }
  .logo-img { height: 60px; max-width: min(170px, 50vw); }
  .header-inner { height: 76px; }
}
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-anpc {
    max-width: min(260px, 100%);
  }
  .float-card--rating { left: -10px; }
  .float-card--lesson { right: -10px; }
  .logo-img { height: 52px; max-width: min(148px, 54vw); }
  .header-inner { height: 68px; gap: 12px; }
  .footer-logo { padding: 8px 10px; border-radius: 12px; }
  .footer-logo-img { height: 52px; max-width: 140px; }
}

/* ================================================
   CONȚINUT LEGAL (Termeni, Confidențialitate, Cookie-uri)
   ================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-updated {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a99b8;
}
.legal-intro {
  margin-top: 14px;
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4b5a7e;
}
.legal-toc {
  margin-top: clamp(28px, 4vw, 40px);
  background: #f5f8fc;
  border: 1px solid #eef2f8;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
}
.legal-toc-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a6ff7;
  margin-bottom: 16px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: legal-toc-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
}
.legal-toc li {
  counter-increment: legal-toc-counter;
  font-size: 14.5px;
}
.legal-toc li::before {
  content: counter(legal-toc-counter) '. ';
  font-weight: 700;
  color: #092355;
}
.legal-toc a {
  color: #4b5a7e;
  text-decoration: none;
  transition: color .2s ease;
}
.legal-toc a:hover { color: #0a6ff7; }

.legal-section {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid #eef2f8;
  scroll-margin-top: 104px;
}
.legal-section:first-of-type {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 0;
  border-top: none;
}
.legal-section h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.legal-section-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0a6ff7;
}
.legal-section h3 {
  margin-top: 26px;
  font-size: 19px;
}
.legal-section p,
.legal-section li {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5a7e;
}
.legal-section p { margin-top: 14px; }
.legal-section ul,
.legal-section ol {
  margin-top: 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section a { color: #0a6ff7; }
.legal-section strong { color: #092355; }
.legal-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #eef2f8;
}
.legal-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: 'Quicksand', sans-serif;
  font-size: 14.5px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid #eef2f8;
  color: #4b5a7e;
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table th {
  background: #f5f8fc;
  color: #092355;
  font-weight: 700;
}
.legal-callout {
  margin-top: 22px;
  background: #eaf2ff;
  border-radius: 16px;
  padding: 20px 22px;
  font-family: 'PT Serif', serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #204373;
}
.legal-callout strong { color: #092355; }

/* ================================================
   BANNER COOKIE-URI
   ================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #092355;
  color: #fff;
  padding: 18px clamp(20px, 5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -14px 34px -16px rgba(9, 35, 85, .5);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.16,.84,.44,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 640px;
}
.cookie-banner-text a { color: #fc9d05; text-decoration: underline; }
.cookie-banner-btn {
  flex-shrink: 0;
  background: #0a6ff7;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 11px;
  font-family: 'Quicksand', sans-serif;
  transition: background .2s ease, transform .2s ease;
}
.cookie-banner-btn:hover { background: #0961db; transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-btn { width: 100%; }
}
