/* ═══════════════════════════════════════════════════════
   Academia De la Pasiune la Profit · Global Styles
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:       #0F2A44;
  --navy-mid:   #1B4268;
  --navy-lite:  #243B55;
  --orange:     #F47B20;
  --orange-dk:  #D9660F;
  --orange-lt:  #FEF3EA;
  --white:      #FFFFFF;
  --off:        #FAFAF8;
  --gray:       #4A4A4A;
  --gray-lt:    #8A8A8A;
  --gray-xlt:   #F4F4F2;
  --border:     #E6E2D8;
  --shadow:     0 2px 12px rgba(15,42,68,.07), 0 1px 3px rgba(15,42,68,.05);
  --shadow-md:  0 4px 24px rgba(15,42,68,.10), 0 1px 6px rgba(15,42,68,.06);
  --shadow-lg:  0 8px 40px rgba(15,42,68,.13), 0 2px 8px rgba(15,42,68,.07);
  --radius:     4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy); line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p { line-height: 1.75; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 6%; }
.container-sm { max-width: 740px;  margin: 0 auto; padding: 0 6%; }
.section      { padding: 88px 0; }
.section-sm   { padding: 60px 0; }

/* ── LOGO ────────────────────────────────────────────── */
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-sub  {
  font-family: 'Inter', sans-serif; font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 2px;
}
.logo-main {
  font-family: 'Playfair Display', serif; font-size: .92rem;
  font-weight: 700; color: var(--navy); letter-spacing: .03em;
  text-transform: uppercase; line-height: 1;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); height: 64px;
  display: flex; align-items: center; padding: 0 6%;
  justify-content: space-between; transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(15,42,68,.08); }
.nav-links { display: flex; gap: 2px; align-items: center; list-style: none; }
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gray);
  text-decoration: none; padding: 6px 10px; border-radius: var(--radius);
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off); }
.nav-links a.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 8px 16px !important; border-radius: var(--radius) !important;
}
.nav-links a.nav-cta:hover { background: var(--orange-dk) !important; }
.nav-mobile-btn {
  display: none; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--navy); padding: 4px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: .82rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 26px; border: none; cursor: pointer;
  border-radius: var(--radius); transition: transform .2s, background .2s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-dk); box-shadow: 0 6px 20px rgba(244,123,32,.3); }
.btn-navy   { background: var(--navy);   color: white; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost  { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.07); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-sm { padding: 9px 18px; font-size: .75rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABEL ───────────────────────────────────── */
.section-label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-lt); font-size: 1rem; }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── FORM ────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .8rem; font-weight: 600; color: var(--navy);
  letter-spacing: .04em; text-transform: uppercase;
}
.form-input {
  width: 100%; padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: .9rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; color: var(--navy); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,42,68,.07); }
.form-input::placeholder { color: var(--gray-lt); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; }
.form-hint  { font-size: .75rem; color: var(--gray-lt); }
.form-error { font-size: .75rem; color: #c0392b; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: #091d30; padding: 48px 6% 32px; text-align: center; }
.footer p { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.8; }
.footer strong { color: rgba(255,255,255,.7); }
.f-sep { margin: 0 12px; opacity: .3; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-firma { margin-top: 14px; font-size: .72rem; color: rgba(255,255,255,.2); line-height: 1.9; }
.footer-firma a { color: rgba(255,255,255,.3); }
.footer-firma a:hover { color: var(--orange); }

/* ── TOAST ───────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--navy); color: white; padding: 14px 20px;
  border-radius: var(--radius-md); font-size: .875rem; font-weight: 500;
  box-shadow: var(--shadow-lg); max-width: 320px;
  transform: translateY(80px); opacity: 0; transition: all .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #1a5c38; }
.toast.error   { background: #c0392b; }

/* ── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif; font-size: .68rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--orange-lt); color: var(--orange-dk);
  border: 1px solid rgba(244,123,32,.2);
}

/* ── AUTH PAGES ──────────────────────────────────────── */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  background: linear-gradient(155deg, var(--navy) 0%, #1a3f60 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px; color: white; position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.auth-left-inner { position: relative; z-index: 1; }
.auth-brand {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 48px;
}
.auth-left h2 { color: white; font-size: 2rem; margin-bottom: 14px; }
.auth-left-desc { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.75; margin-bottom: 40px; }
.auth-quote {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 22px;
}
.auth-quote-text { font-size: .875rem; color: rgba(255,255,255,.75); font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.auth-quote-author { font-size: .75rem; color: rgba(255,255,255,.4); }
.auth-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px; background: white;
}
.auth-form-wrap { max-width: 380px; width: 100%; margin: 0 auto; }
.auth-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 4px; }
.auth-subtitle { font-size: .82rem; color: var(--gray-lt); margin-bottom: 32px; }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-error {
  background: #fff1f0; color: #c0392b; padding: 12px 14px;
  border-radius: var(--radius); font-size: .82rem;
  border: 1px solid #fcc; display: none;
}
.auth-footer-link { margin-top: 22px; text-align: center; font-size: .82rem; color: var(--gray-lt); }
.auth-footer-link a { color: var(--orange); font-weight: 600; }
.auth-back { margin-top: 16px; text-align: center; }
.auth-back a { font-size: .78rem; color: var(--gray-lt); }

/* ── DASHBOARD ───────────────────────────────────────── */
.db-layout { display: flex; min-height: 100vh; }
.db-sidebar {
  width: 250px; background: var(--navy); color: white;
  display: flex; flex-direction: column;
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 50;
  transition: transform .3s;
}
.db-sidebar-logo { padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.db-logo-main {
  font-family: 'Playfair Display', serif; font-size: .9rem;
  color: white; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.db-logo-sub { font-size: .58rem; color: rgba(255,255,255,.32); letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }
.db-nav { flex: 1; padding: 18px 8px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.db-nav-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  padding: 12px 12px 4px;
}
.db-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius); cursor: pointer;
  color: rgba(255,255,255,.55); font-size: .82rem; font-weight: 500;
  text-decoration: none; transition: all .2s;
}
.db-nav-item:hover { background: rgba(255,255,255,.07); color: white; }
.db-nav-item.active { background: var(--orange); color: white; }
.db-nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.db-sidebar-footer { padding: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.db-user { display: flex; align-items: center; gap: 10px; }
.db-user-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; flex-shrink: 0;
}
.db-user-name  { font-size: .8rem; font-weight: 600; color: white; }
.db-user-email { font-size: .68rem; color: rgba(255,255,255,.38); word-break: break-all; }
.db-main { margin-left: 250px; flex: 1; background: var(--off); min-height: 100vh; }
.db-topbar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 56px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 40;
}
.db-topbar-title { font-size: .9rem; font-weight: 600; color: var(--navy); }
.db-content { padding: 32px; }
.db-section-title {
  font-size: .75rem; font-weight: 700; color: var(--navy);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.db-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
}
.db-product-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 10px; box-shadow: var(--shadow);
}
.db-product-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--orange-lt); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.db-product-name  { font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.db-product-meta  { font-size: .75rem; color: var(--gray-lt); }
.db-product-actions { margin-left: auto; display: flex; gap: 8px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0; background: white;
    border-bottom: 1px solid var(--border); padding: 12px 6%; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open a { padding: 10px 6px; width: 100%; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-mobile-btn { display: block; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .db-sidebar { transform: translateX(-100%); }
  .db-sidebar.open { transform: translateX(0); }
  .db-main { margin-left: 0; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .auth-right { padding: 40px 24px; }
  .db-content { padding: 20px 16px; }
  .db-topbar { padding: 0 16px; }
}

/* Scroll reveal — visible by default, enhanced if JS works */
.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.reveal.animate-ready { opacity: 0; transform: translateY(20px); }
.reveal.animate-ready.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

<ul class="nav-links" id="nav-links">
  <li><a href="/">Home</a></li>
  <li><a href="/academia">Academia</a></li>
  <li><a href="/metoda-3c">Metoda 3C</a></li>
  <li><a href="/manuale">Manuale</a></li>
  <li><a href="/ina">INA</a></li>

  <!-- 🔥 BUTON INA PRO -->
  <li>
    <a href="/ina-pro" class="nav-cta ina-pro-btn">
      INA Pro
    </a>
  </li>

  <li><a href="/mentorat">Mentorat</a></li>
  <li><a href="/digital-studio-3c">Digital Studio 3C</a></li>
  <li><a href="/comunitate">Comunitate</a></li>
  <li><a href="/resurse">Resurse</a></li>

  <!-- buton existent -->
  <li><a href="/aplica" class="nav-cta">Aplică</a></li>
</ul>
