/* ============================================================
   EAGLE ACADEMY — Premium Design (Romain Bouvet Layout)
   Couleurs Eagle Academy : Bleu Nuit + Blanc + Or + Cyan
   ============================================================ */

:root {
  --pr-bg: #1A1842;
  --pr-bg-deep: #12102E;
  --pr-bg-card: rgba(42, 40, 90, 0.6);
  --pr-bg-card-hover: rgba(54, 52, 112, 0.7);
  --pr-border: rgba(0, 181, 228, 0.12);
  --pr-border-hover: rgba(0, 181, 228, 0.3);
  --pr-accent: #00B5E4;
  --pr-accent-light: #33CCFF;
  --pr-gold: #D4AF37;
  --pr-gold-light: #F0D060;
  --pr-text: #FFFFFF;
  --pr-text-secondary: rgba(255, 255, 255, 0.75);
  --pr-text-muted: rgba(255, 255, 255, 0.45);
  --pr-success: #2DD4BF;
  --pr-font: 'Outfit', 'Inter', system-ui, sans-serif;
  --pr-radius: 16px;
  --pr-max-w: 1100px;
}

/* ===== RESET & BASE ===== */
.premium-page {
  background: var(--pr-bg);
  background-image: linear-gradient(180deg, #12102E 0%, #1A1842 30%, #2A285A 70%, #1A1842 100%);
  color: var(--pr-text);
  font-family: var(--pr-font);
  min-height: 100vh;
}
.premium-page *, .premium-page *::before, .premium-page *::after { box-sizing: border-box; }
.premium-page section { padding: 100px 0; position: relative; }
.pr-container { max-width: var(--pr-max-w); margin: 0 auto; padding: 0 32px; }

/* ===== GLOW EFFECTS ===== */
.pr-glow { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.12; pointer-events: none; z-index: 0; }
.pr-glow--cyan { background: var(--pr-accent); width: 500px; height: 500px; }
.pr-glow--gold { background: var(--pr-gold); width: 400px; height: 400px; }

/* ===== NAV ===== */
.pr-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s; }
.pr-nav.scrolled { background: rgba(18, 16, 46, 0.9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid var(--pr-border); }
.pr-nav__inner { max-width: var(--pr-max-w); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.pr-nav__logo { font-weight: 800; font-size: 1.1rem; color: var(--pr-text); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.pr-nav__logo img { height: 40px; width: auto; }
.pr-nav__links { display: flex; align-items: center; gap: 28px; }
.pr-nav__link { color: var(--pr-text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.pr-nav__link:hover { color: var(--pr-text); }
.pr-nav__cta {
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-light));
  color: #1A1842;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pr-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4); }

.pr-nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.pr-nav__burger span { width: 24px; height: 2px; background: var(--pr-text); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.pr-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 120px; overflow: hidden; }
.pr-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--pr-gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pr-gold);
  margin-bottom: 40px;
  background: rgba(212, 175, 55, 0.08);
}
.pr-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.pr-hero__title em {
  font-style: italic;
  color: var(--pr-accent-light);
}
.pr-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--pr-text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.pr-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.pr-hero__scroll { font-size: 0.8rem; color: var(--pr-text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 40px; }
.pr-hero__scroll::after { content: ''; display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--pr-text-muted), transparent); margin: 12px auto 0; }

/* ===== BUTTONS ===== */
.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.pr-btn--primary {
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-light));
  color: #1A1842;
}
.pr-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35); }
.pr-btn--outline { background: transparent; color: var(--pr-text); border: 1px solid var(--pr-border-hover); }
.pr-btn--outline:hover { border-color: var(--pr-accent); color: var(--pr-accent-light); }
.pr-btn--cyan { background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-light)); color: #1A1842; }
.pr-btn--cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 181, 228, 0.35); }

@keyframes pr-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.pr-btn--pulse {
  animation: pr-pulse 2s infinite;
}

/* ===== SECTION LABEL ===== */
.pr-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--pr-gold); margin-bottom: 20px; display: block; }
.pr-section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.pr-section-title em { font-style: italic; color: var(--pr-accent-light); }
.pr-section-subtitle { font-size: 1.05rem; color: var(--pr-text-secondary); max-width: 700px; line-height: 1.7; margin-bottom: 48px; }
.pr-divider { width: 100%; height: 1px; background: var(--pr-border); margin: 48px 0; }

/* ===== ALTERNATING BLUE/WHITE SECTIONS (Romain Bouvet Neuroscience Pattern) ===== */
/* White section base */
.pr-section--white {
  background: linear-gradient(180deg, #EEF0F6 0%, #F4F5FA 50%, #EEF0F6 100%) !important;
  color: #1a1a2e;
  position: relative;
  z-index: 1;
}
.pr-section--white .pr-label {
  color: #0059A0;
  font-weight: 800;
}
.pr-section--white .pr-section-title {
  color: #111133;
}
.pr-section--white .pr-section-title em {
  color: #0059A0;
}
.pr-section--white .pr-section-subtitle {
  color: #3a3a5a;
}
.pr-section--white .pr-problem-card,
.pr-section--white .pr-bento-card,
.pr-section--white .pr-audience-card,
.pr-section--white .pr-formation-card {
  background: #FFFFFF;
  border: 1px solid #d0d4e4;
  border-left: 4px solid #0059A0;
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.pr-section--white .pr-problem-card:hover,
.pr-section--white .pr-bento-card:hover,
.pr-section--white .pr-audience-card:hover,
.pr-section--white .pr-formation-card:hover {
  border-color: #0059A0;
  border-left-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(0, 89, 160, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.pr-section--white .pr-problem-card__title,
.pr-section--white .pr-bento-card__title,
.pr-section--white .pr-audience-card__title,
.pr-section--white .pr-formation-card__title {
  color: #111133;
  font-weight: 800;
}
.pr-section--white .pr-problem-card__text,
.pr-section--white .pr-bento-card__text,
.pr-section--white .pr-audience-card__text,
.pr-section--white .pr-formation-card__desc {
  color: #444466;
}
.pr-section--white .pr-formation-card__feature {
  color: #444466;
}
.pr-section--white .pr-formation-card__feature::before {
  color: #0059A0;
}
/* Testimonials in white section */
.pr-section--white .pr-testimonial {
  background: #FFFFFF;
  border: 1px solid #d0d4e4;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.pr-section--white .pr-testimonial__text {
  color: #333355;
}
.pr-section--white .pr-testimonial__author {
  color: #111133;
}
.pr-section--white .pr-testimonial__role {
  color: #666;
}
/* Blue accent section */
.pr-section--blue {
  background: linear-gradient(180deg, #0B1937 0%, #0D2147 50%, #0B1937 100%);
}
.pr-section--blue .pr-label {
  color: #33CCFF;
}
.pr-section--blue .pr-section-title em {
  color: #33CCFF;
}

/* ===== PROBLEM CARDS ===== */
.pr-problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.pr-problem-card {
  padding: 32px;
  background: var(--pr-bg-card);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pr-problem-card:hover { border-color: var(--pr-border-hover); background: var(--pr-bg-card-hover); }
.pr-problem-card__icon { font-size: 1.3rem; margin-bottom: 16px; }
.pr-problem-card__title { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--pr-text); }
.pr-problem-card__text { font-size: 0.88rem; color: var(--pr-text-secondary); line-height: 1.6; }

/* ===== NUMBERED STEPS ===== */
.pr-steps { margin-top: 48px; }
.pr-step { padding: 40px 0; border-bottom: 1px solid var(--pr-border); display: flex; gap: 40px; align-items: flex-start; }
.pr-step:last-child { border-bottom: none; }
.pr-step__number { font-size: 2rem; font-weight: 800; color: var(--pr-accent); min-width: 48px; line-height: 1; }
.pr-step__content { flex: 1; }
.pr-step__title { font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; }
.pr-step__text { font-size: 0.9rem; color: var(--pr-text-secondary); line-height: 1.7; }
.pr-step__badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  border: 1px solid var(--pr-gold);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(212, 175, 55, 0.06);
}

/* ===== BENTO CARDS ===== */
.pr-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pr-bento-card {
  padding: 32px;
  background: var(--pr-bg-card);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pr-bento-card:hover { border-color: var(--pr-accent); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 181, 228, 0.08); }
.pr-bento-card__icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff4444, #ff6666);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.pr-bento-card__title { font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.pr-bento-card__text { font-size: 0.88rem; color: var(--pr-text-secondary); line-height: 1.6; }

/* ===== AUDIENCE ===== */
.pr-audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.pr-audience-card { padding: 32px; border-radius: var(--pr-radius); background: var(--pr-bg-card); border: 1px solid var(--pr-border); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.pr-audience-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.pr-audience-card__text { font-size: 0.88rem; color: var(--pr-text-secondary); line-height: 1.6; }

/* ===== STATS BAR ===== */
.pr-stats { display: flex; justify-content: center; gap: 64px; padding: 48px 0; flex-wrap: wrap; }
.pr-stat { text-align: center; }
.pr-stat__value { font-size: 2.5rem; font-weight: 800; color: var(--pr-accent-light); display: block; }
.pr-stat__label { font-size: 0.8rem; color: var(--pr-text-muted); margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.pr-testimonials-grid { display: grid; gap: 20px; margin-top: 48px; }
.pr-testimonial { padding: 32px; background: var(--pr-bg-card); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.pr-testimonial__text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; color: var(--pr-text-secondary); }
.pr-testimonial__author { font-weight: 700; font-size: 0.9rem; }
.pr-testimonial__role { font-size: 0.8rem; color: var(--pr-text-muted); }

/* ===== CTA FINAL ===== */
.pr-cta { text-align: center; padding: 120px 0; }
.pr-cta__note { font-size: 0.85rem; color: var(--pr-text-muted); margin-top: 16px; }

/* ===== FOOTER ===== */
.pr-footer { padding: 48px 0; border-top: 1px solid var(--pr-border); }
.pr-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.pr-footer__links { display: flex; gap: 24px; }
.pr-footer__link { color: var(--pr-text-muted); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.pr-footer__link:hover { color: var(--pr-text); }
.pr-footer__copy { font-size: 0.8rem; color: var(--pr-text-muted); }

/* ===== FORMATION CARDS ===== */
.pr-formation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 48px; }
.pr-formation-card {
  padding: 32px;
  background: var(--pr-bg-card);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  transition: all 0.3s;
  position: relative;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pr-formation-card:hover { border-color: var(--pr-accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 181, 228, 0.1); }
.pr-formation-card--featured { border-color: rgba(212, 175, 55, 0.3); }
.pr-formation-card__free { position: absolute; top: 16px; right: 16px; background: var(--pr-success); color: #1A1842; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.pr-formation-card__icon { font-size: 2rem; margin-bottom: 16px; }
.pr-formation-card__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.pr-formation-card__desc { font-size: 0.85rem; color: var(--pr-text-secondary); line-height: 1.6; margin-bottom: 16px; }
.pr-formation-card__features { margin-bottom: 20px; }
.pr-formation-card__feature { font-size: 0.82rem; color: var(--pr-text-secondary); padding: 4px 0; padding-left: 16px; position: relative; }
.pr-formation-card__feature::before { content: '→'; position: absolute; left: 0; color: var(--pr-accent-light); }
.pr-formation-card__cta--gold {
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-light)) !important;
  color: #1A1842 !important;
  border-color: var(--pr-gold) !important;
}
.pr-formation-card__cta--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

/* ===== AUTHORITY BAR (Social Proof) ===== */
.pr-authority-bar {
  background: #0d0b24;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0;
  position: relative;
  z-index: 20;
}
.pr-authority-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 181, 228, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.pr-authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.pr-authority-item {
  padding: 0 16px;
  position: relative;
}
.pr-authority-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.pr-authority-value {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--pr-gold);
  margin-bottom: 8px;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}
.pr-authority-value--white {
  color: var(--pr-text);
  text-shadow: none;
}
.pr-authority-value .pr-authority-suffix {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.85;
  margin-left: 2px;
}
.pr-authority-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pr-text-muted);
  line-height: 1.5;
}
.pr-authority-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pr-authority-logos__title {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.3);
}
.pr-authority-logos__row {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(1);
}
.pr-authority-logos__row span {
  font-family: 'Outfit', serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--pr-text);
  letter-spacing: 1px;
}

/* Authority bar count-up animation */
@keyframes pr-countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pr-authority-item.pr-visible .pr-authority-value {
  animation: pr-countUp 0.8s ease-out forwards;
}
.pr-authority-item.pr-visible:nth-child(2) .pr-authority-value { animation-delay: 0.15s; }
.pr-authority-item.pr-visible:nth-child(3) .pr-authority-value { animation-delay: 0.3s; }
.pr-authority-item.pr-visible:nth-child(4) .pr-authority-value { animation-delay: 0.45s; }

/* ===== SPLASH SCREEN ===== */
.pr-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0825;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.pr-splash.pr-splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pr-splash__logo {
  width: 240px;
  height: auto;
  opacity: 0;
  transform: scale(0.5);
  animation: pr-splashLogoIn 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pr-splash__tagline {
  color: var(--pr-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  opacity: 0;
  margin-top: 28px;
  animation: pr-splashFadeUp 0.8s 1s ease forwards;
}
.pr-splash__line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pr-gold), transparent);
  margin-top: 20px;
  animation: pr-splashLine 1.2s 0.8s ease forwards;
}
@keyframes pr-splashLogoIn {
  0%   { opacity: 0; transform: scale(0.5); filter: brightness(0.5); }
  60%  { opacity: 1; transform: scale(1.08); filter: brightness(1.3) drop-shadow(0 0 40px rgba(212,175,55,0.5)); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1) drop-shadow(0 0 20px rgba(212,175,55,0.2)); }
}
@keyframes pr-splashFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pr-splashLine {
  from { width: 0; opacity: 0; }
  to   { width: 180px; opacity: 1; }
}
body.pr-splash-active { overflow: hidden; }

/* ===== FOUNDER SECTION ===== */
.pr-founder {
  padding: 120px 0;
  position: relative;
  background: #08071e;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pr-founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.pr-founder__grid {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
/* Photo side */
.pr-founder__photo-wrap {
  flex: 0 0 42%;
  position: relative;
}
.pr-founder__photo {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 50px rgba(212,175,55,0.04);
  position: relative;
  z-index: 2;
}
.pr-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}
.pr-founder__photo:hover img {
  filter: grayscale(0);
}
.pr-founder__photo-frame {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  z-index: 0;
  transform: translate(16px, 16px);
}
.pr-founder__photo-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--pr-bg-deep);
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 10;
}
.pr-founder__photo-badge-value {
  color: var(--pr-gold);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.pr-founder__photo-badge-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pr-text-muted);
}
/* Text side */
.pr-founder__content {
  flex: 1;
}
.pr-founder__manifesto {
  border-left: 2px solid rgba(212,175,55,0.4);
  padding-left: 28px;
  margin-bottom: 40px;
}
.pr-founder__manifesto p {
  color: var(--pr-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.pr-founder__manifesto p:last-child {
  margin-bottom: 0;
}
.pr-founder__signature {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pr-founder__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pr-text);
  margin-bottom: 4px;
}
.pr-founder__role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pr-text-muted);
}
.pr-founder__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--pr-text);
}
.pr-founder__title-accent {
  background: linear-gradient(135deg, var(--pr-gold), #AA8022);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
.pr-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.pr-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .pr-container { padding: 0 24px; }
  .premium-page section { padding: 80px 0; }
  .pr-hero { min-height: 80vh; padding-top: 120px; padding-bottom: 80px; }
  .pr-hero__title { font-size: clamp(2rem, 5vw, 3.2rem); }
  .pr-bento-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pr-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-formation-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-founder__grid { gap: 40px; }
  .pr-founder__photo-wrap { flex: 0 0 38%; }
  .pr-section-title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
  .pr-nav__links { gap: 16px; }
  .pr-nav__link { font-size: 0.8rem; }
  .pr-authority-grid { gap: 20px; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .pr-nav__links { display: none; }
  .pr-nav__burger { display: flex; }
  .pr-hero { padding-top: 100px; }
  .pr-hero__title { font-size: 2rem; }
  .pr-bento-grid { grid-template-columns: 1fr; }
  .pr-step { flex-direction: column; gap: 12px; }
  .pr-stats { gap: 32px; }
  .pr-formation-grid { grid-template-columns: 1fr; }
  .pr-footer__inner { flex-direction: column; text-align: center; }
  .pr-authority-bar { padding: 40px 0; }
  .pr-authority-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .pr-authority-item:not(:last-child)::after { display: none; }
  .pr-authority-value { font-size: 2rem; }
  /* Splash mobile */
  .pr-splash__logo { width: 160px; }
  .pr-splash__tagline { font-size: 0.55rem; letter-spacing: 4px; }
  /* Founder mobile */
  .pr-founder { padding: 80px 0; }
  .pr-founder__grid { flex-direction: column; gap: 48px; }
  .pr-founder__photo-wrap { flex: none; width: 80%; max-width: 360px; margin: 0 auto; }
  .pr-founder__photo-frame { inset: -10px; transform: translate(10px, 10px); }
  .pr-founder__photo-badge { bottom: -16px; right: -12px; padding: 14px 18px; }
  .pr-founder__photo-badge-value { font-size: 1.4rem; }
  .pr-founder__manifesto { padding-left: 20px; }
  .pr-founder__manifesto p { font-size: 0.95rem; }
  .pr-founder__title { font-size: 1.6rem; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.pr-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.pr-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
  background-color: #22c35e;
  color: white;
}

.pr-whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .pr-whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px;
  }
  .pr-whatsapp-float span {
    display: none;
  }
}

/* ===== MOBILE PWA APP BAR ===== */
.pr-mobile-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; background: rgba(13, 17, 23, 0.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.05); z-index: 9999; justify-content: space-around; align-items: center; padding-bottom: env(safe-area-inset-bottom); }
.pr-mobile-nav__item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--pr-text-muted); text-decoration: none; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; gap: 6px; flex: 1; height: 100%; transition: color 0.3s; }
.pr-mobile-nav__item i { font-size: 1.4rem; margin-bottom: 2px; }
.pr-mobile-nav__item.active { color: var(--pr-gold); }
.pr-mobile-nav__item:hover { color: #fff; }

@media (max-width: 768px) {
  .pr-mobile-nav { display: flex; }
  body { padding-bottom: 70px; }
  .pr-whatsapp-float { bottom: 90px; } /* Lift whatsapp above nav */
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .pr-container { padding: 0 16px; }
  .premium-page section { padding: 60px 0; }
  .pr-hero { padding-top: 90px; padding-bottom: 60px; }
  .pr-hero__title { font-size: 1.6rem; line-height: 1.15; }
  .pr-hero__subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .pr-hero__actions { flex-direction: column; align-items: center; }
  .pr-btn { width: 100%; justify-content: center; font-size: 0.8rem; padding: 12px 24px; }
  .pr-section-title { font-size: 1.4rem; }
  .pr-section-subtitle { font-size: 0.9rem; }
  .pr-label { font-size: 0.65rem; }
  .pr-problem-grid { grid-template-columns: 1fr; }
  .pr-audience-grid { grid-template-columns: 1fr; }
  .pr-bento-grid { grid-template-columns: 1fr; }
  .pr-authority-grid { grid-template-columns: 1fr; gap: 24px; }
  .pr-authority-value { font-size: 1.8rem; }
  .pr-founder { padding: 60px 0; }
  .pr-founder__title { font-size: 1.3rem; }
  .pr-founder__manifesto p { font-size: 0.88rem; }
  .pr-founder__photo-wrap { width: 90%; }
}