/* ═══════════════════════════════════════════════════════════════
   PPFT Téma — People First Team
   Aranyösvény arculat
   Készítette: Hajdú Lajos · www.kreativoldal.hu
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:          #1a2f5e;
  --navy-dark:     #0f1e3d;
  --navy-deep:     #0a1428;
  --gold:          #D4AF7A;
  --gold-light:    #E7DCB7;
  --gold-pale:     #F5EDD6;
  --gold-rich:     #B8924A;
  --cream:         #FBF8F2;
  --ink:           #1a1a2e;
  --ink-soft:      #3d3d55;

  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body:    'Lora', Georgia, serif;
  --sans:          'Montserrat', system-ui, sans-serif;

  --radius:        4px;
  --container:     1120px;
  --transition:    0.25s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1),
              transform 0.75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible          { opacity: 1; transform: none; }
.reveal-delay-1          { transition-delay: 0.1s; }
.reveal-delay-2          { transition-delay: 0.2s; }
.reveal-delay-3          { transition-delay: 0.3s; }
.reveal-delay-4          { transition-delay: 0.45s; }
.reveal-delay-5          { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#main-nav.scrolled {
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,175,122,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* WordPress nav menu */
.nav-menu-wrap { display: flex; align-items: center; gap: 2rem; }
.nav-menu-wrap .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu-wrap .menu a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-menu-wrap .menu a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 75vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #1d3468 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,122,0.12);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,122,0.08);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  position: relative; z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding-bottom: 0.75rem;
  padding-right: 0.75rem;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.06);
  border: 4px solid rgba(212,175,122,0.75);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(212,175,122,0.15), 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-logo-badge {
  position: absolute;
  bottom: -0.75rem; right: -0.75rem;
  width: 110px; height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  z-index: 10;
}
.hero-logo-badge img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(212,175,122,0.3);
}
.btn-primary:hover {
  background: #e0be8a;
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,122,0.4);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-primary-light {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(212,175,122,0.3);
}
.btn-primary-light:hover {
  background: #e0be8a;
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline-light {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 1rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   INTRO BAND
══════════════════════════════════════════════════════════════ */
.intro-band {
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 3rem 2rem;
}
.intro-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-quote {
  font-family: var(--serif-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  max-width: 700px;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════ */
.section          { padding: 7rem 2rem; }
.section-cream    { background: var(--cream); }
.section-white    { background: #fff; }
.section-navy {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
}
.section-gold-pale { background: var(--gold-pale); }

/* ══════════════════════════════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════════════════════════════ */
.who-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.who-text h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.who-text h2 em { font-style: italic; color: var(--gold-rich); }
.who-text p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1rem; }
.who-text p:last-child { margin-bottom: 0; }

.who-visual { position: relative; }
.who-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── Editorial pull-quote ── */
.who-pullquote {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212,175,122,0.06) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
}

.who-pullquote-mark {
  display: block;
  font-family: var(--serif-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 0.75rem;
  font-style: normal;
  user-select: none;
}

.who-pullquote p {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.who-pullquote-sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-rich);
}

.who-pullquote-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--navy-deep);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(212,175,122,0.1);
  border-bottom: 1px solid rgba(212,175,122,0.1);
}
.stats-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-block {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(212,175,122,0.12);
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   WHY PLATFORM
══════════════════════════════════════════════════════════════ */
.why-inner        { max-width: var(--container); margin: 0 auto; }
.why-header       { text-align: center; margin-bottom: 4rem; }
.why-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.why-header h2 em { font-style: italic; color: var(--gold); }
.why-header p {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,122,0.15);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: rgba(212,175,122,0.4);
  background: rgba(255,255,255,0.08);
}
.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--serif-display);
}
.why-card h3 {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.why-card p {
  font-family: var(--serif-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   HOW WE SUPPORT — ACCORDION
══════════════════════════════════════════════════════════════ */
.support-inner { max-width: var(--container); margin: 0 auto; }
.support-header { margin-bottom: 3rem; }
.support-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.support-header h2 em { font-style: italic; color: var(--gold-rich); }
.support-header p {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
}

.accordion        { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item {
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 1rem;
}
.accordion-trigger:hover { background: var(--gold-pale); }
.accordion-trigger-left  { display: flex; align-items: center; gap: 1.25rem; }
.accordion-num {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.accordion-title {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.accordion-subtitle {
  font-family: var(--serif-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 0.15rem;
}
.accordion-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.22,1,.36,1), padding 0.3s;
  padding: 0 2rem;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding-bottom: 2rem;
}
.accordion-body-inner {
  border-top: 1px solid var(--gold-light);
  padding-top: 1.5rem;
}
.accordion-body p {
  font-family: var(--serif-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.accordion-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   WHAT YOU LEARN
══════════════════════════════════════════════════════════════ */
.learn-inner  { max-width: var(--container); margin: 0 auto; }
.learn-header { margin-bottom: 4rem; }
.learn-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.learn-header h2 em { font-style: italic; color: var(--gold-rich); }
.learn-header p {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
}
.topic-item {
  background: var(--cream);
  padding: 2rem 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.topic-item:hover { background: var(--gold-pale); }
.topic-num {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.topic-text h4 {
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.topic-text p {
  font-family: var(--serif-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   MEMBERSHIP LEVELS
══════════════════════════════════════════════════════════════ */
.levels-inner  { max-width: var(--container); margin: 0 auto; }
.levels-header { text-align: center; margin-bottom: 4rem; }
.levels-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.levels-header h2 em { font-style: italic; color: var(--gold-rich); }
.levels-header p {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.level-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.level-card.free { background: #fff; border: 1px solid var(--gold-light); }
.level-card.paid { background: var(--navy); border: 1px solid var(--navy); }

.level-badge {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  align-self: flex-start;
}
.level-card.free .level-badge { background: var(--gold-pale); color: var(--navy); }
.level-card.paid .level-badge { background: rgba(212,175,122,0.2); color: var(--gold); }

.level-name {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.level-card.free .level-name { color: var(--navy); }
.level-card.paid .level-name { color: #fff; }

.level-price {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.level-card.free .level-price { color: var(--navy); }
.level-card.paid .level-price { color: var(--gold); }

.level-price-alt {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.35rem;
}
.level-price-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.55;
  margin-bottom: 1.75rem;
}
.level-divider {
  height: 1px;
  margin-bottom: 1.5rem;
}
.level-card.free .level-divider { background: var(--gold-light); }
.level-card.paid .level-divider { background: rgba(255,255,255,0.1); }

.level-features       { list-style: none; margin-bottom: 2rem; flex: 1; }
.level-features li {
  font-family: var(--serif-body);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.level-card.free .level-features li { color: var(--ink-soft); }
.level-card.paid .level-features li { color: rgba(255,255,255,0.75); }
.level-features li::before {
  content: '◆';
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
  color: var(--gold);
}

.level-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  display: block;
}
.level-card.free .level-cta {
  background: var(--gold-pale);
  color: var(--navy);
  border: 1px solid var(--gold-light);
}
.level-card.free .level-cta:hover { background: var(--gold); }
.level-card.paid .level-cta { background: var(--gold); color: var(--navy-deep); }
.level-card.paid .level-cta:hover { background: #e0be8a; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
══════════════════════════════════════════════════════════════ */
.how-inner        { max-width: var(--container); margin: 0 auto; }
.how-header       { text-align: center; margin-bottom: 4rem; }
.how-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.how-header h2 em { font-style: italic; color: var(--gold); }

.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(212,175,122,0.2), var(--gold));
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--serif-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 8px rgba(212,175,122,0.15);
}
.step h3 {
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step p {
  font-family: var(--serif-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.how-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   LANGUAGE STRIP
══════════════════════════════════════════════════════════════ */
.lang-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 2.5rem 2rem;
}
.lang-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.lang-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}
.lang-flags { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.lang-flag {
  width: 28px; height: 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.45);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-wrap img {
  height: 80px;
  width: auto;
}
.footer-logo-text {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-text span { color: var(--gold); }
.footer-copy {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.7;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  max-width: var(--container);
  margin: 2rem auto 0;
}
.footer-credit {
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-credit a {
  color: rgba(212,175,122,0.45);
  transition: color var(--transition);
}
.footer-credit a:hover {
  color: rgba(212,175,122,0.85);
}

/* ══════════════════════════════════════════════════════════════
   WORDPRESS PAGE / POST CONTENT
══════════════════════════════════════════════════════════════ */
.page-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.page-content-wrap h1,
.page-content-wrap h2,
.page-content-wrap h3 {
  font-family: var(--serif-display);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-content-wrap h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-content-wrap h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.page-content-wrap h3 { font-size: 1.25rem; }
.page-content-wrap p  { margin-bottom: 1.25rem; color: var(--ink-soft); }
.page-content-wrap ul,
.page-content-wrap ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content-wrap li { color: var(--ink-soft); margin-bottom: 0.4rem; }
.page-content-wrap a  { color: var(--navy); border-bottom: 1px solid var(--gold-light); transition: border-color var(--transition); }
.page-content-wrap a:hover { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   404
══════════════════════════════════════════════════════════════ */
.not-found-wrap {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--navy-deep);
}
.not-found-wrap h1 {
  font-family: var(--serif-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-wrap p {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP GOMB
══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(212,175,122,0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s ease, background 0.2s ease,
              border-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,122,0.35);
}
.back-to-top svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right          { display: none; }

  .who-grid            { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid            { grid-template-columns: 1fr; }
  .levels-grid         { grid-template-columns: 1fr; max-width: 480px; }
  .steps               { flex-direction: column; }
  .steps::before       { display: none; }
  .topics-grid         { grid-template-columns: 1fr; }
  .lang-inner          { flex-direction: column; align-items: flex-start; }
  .stats-strip-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-block          { border-right: none; border-bottom: 1px solid rgba(212,175,122,0.12); }
  .stat-block:nth-child(even)  { border-bottom: none; }
  .stat-block:nth-child(3)     { border-bottom: 1px solid rgba(212,175,122,0.12); }
  .nav-menu-wrap .menu { display: none; }
}

@media (max-width: 600px) {
  .section             { padding: 5rem 2rem; }
  .hero                { padding: 7rem 1.5rem 5rem; }
  .stats-strip-inner   { grid-template-columns: 1fr; }
  .stat-block          { border-right: none; border-bottom: 1px solid rgba(212,175,122,0.12); }
  .footer-copy         { text-align: left; }
  .back-to-top         { bottom: 1.25rem; right: 1.25rem; }
}
