*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #06101e;
  --navy-2:      #0a1828;
  --navy-3:      #0e1f34;
  --navy-4:      #142540;
  --gold:        #F5B800;
  --gold-2:      #ffc929;
  --gold-pale:   rgba(245,184,0,0.09);
  --gold-border: rgba(245,184,0,0.20);
  --white:       #ffffff;
  --offwhite:    #cdd9ee;
  --muted:       #506070;
  --muted-2:     #748090;
  --border:      rgba(255,255,255,0.065);
  --red:         #d03a43;
  --green:       #00bb74;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ═══════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════ */
.announce-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announce-bar span { opacity: 0.6; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: sticky;
  top: 0; z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  background: rgba(6,16,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--white); }

.nav-l { display: flex; align-items: center; gap: 20px; }
.nav-r { display: flex; align-items: center; gap: 28px; }

.nav-link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--muted-2); text-decoration: none;
  letter-spacing: 0.4px; transition: color .2s;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.5px; padding: 9px 20px;
  border-radius: 5px; text-decoration: none;
  transition: all .2s;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; border-radius: 2px; transition: .25s; }
.nav-mobile { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99; background: var(--navy-2); border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px 18px 18px; }
.nav-mobile a { padding: 13px 6px; color: var(--offwhite); text-decoration: none; font-size: .95rem; border-bottom: 1px solid var(--border); }
.nav-mobile a.nav-mobile-cta { color: var(--gold); font-weight: 700; border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-r .nav-link { display: none; }
  .nav-r .nav-cta { display: none; }
  .nav-l .nav-call { display: none; }
  .nav-burger { display: block; }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: calc(100vh - 96px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Zed_0.jpg');
  background-size: cover; background-position: center 20%;
  filter: brightness(0.18) saturate(0.5);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,16,30,0.98) 42%, rgba(6,16,30,0.65) 68%, rgba(6,16,30,0.25) 100%),
    linear-gradient(0deg, rgba(6,16,30,1) 0%, transparent 35%);
}

/* grid lines */
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,184,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,184,0,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 30%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 48px 80px;
  max-width: 720px;
}

@media (max-width: 640px) { .hero-content { padding: 60px 20px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.09); border: 1px solid var(--gold-border);
  border-radius: 4px; padding: 6px 14px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}

.hero-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.15; }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.93; letter-spacing: 1px;
  margin-bottom: 22px; color: var(--white);
}

h1 .g { color: var(--gold); display: block; }
h1 .o {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  color: transparent; display: block;
}

.hero-p {
  font-size: 1.05rem; font-weight: 300;
  color: var(--offwhite); line-height: 1.72;
  max-width: 500px; margin-bottom: 38px;
}
.hero-p strong { color: var(--white); font-weight: 600; }

.hero-btns {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 54px;
}

.btn-main {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.9rem;
  padding: 15px 34px; border-radius: 5px;
  text-decoration: none; transition: all .25s;
  letter-spacing: 0.3px; display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-main:hover {
  background: var(--gold-2);
  box-shadow: 0 6px 28px rgba(245,184,0,0.32);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--offwhite); font-size: 0.86rem;
  font-weight: 400; padding: 15px 22px;
  border-radius: 5px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); color: var(--white); }

.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.h-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--gold);
  letter-spacing: 1px; display: block; line-height: 1;
}
.h-stat .l {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 500; margin-top: 4px;
}

/* ═══════════════════════════════
   SOCIAL PROOF STRIP
═══════════════════════════════ */
.proof-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ps-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted-2); font-weight: 400;
}
.ps-item .icon { color: var(--gold); font-size: 0.9rem; }
.ps-sep { width: 1px; height: 16px; background: var(--border); }

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
.section { padding: 96px 44px; }
.container { max-width: 1060px; margin: 0 auto; }

@media (max-width: 640px) { .section { padding: 72px 18px; } }

.tag {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.tag::before { content: ''; width: 16px; height: 1px; background: var(--gold); }

.sh {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px; line-height: 1.0;
  margin-bottom: 14px; color: var(--white);
}
.sh .g { color: var(--gold); }

.sp {
  font-size: 0.93rem; font-weight: 300;
  color: var(--muted-2); line-height: 1.76; max-width: 500px;
}

/* ═══════════════════════════════
   PROBLEM
═══════════════════════════════ */
#problem {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}

.problem-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 840px) { .problem-layout { grid-template-columns: 1fr; gap: 44px; } }

.pain-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }

.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  transition: background .2s;
}
.pain-item:hover { background: rgba(255,255,255,0.035); }

.pain-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.pain-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.pain-sub { font-size: 0.78rem; color: var(--muted-2); font-weight: 300; line-height: 1.5; }

/* Problem visual card */
.pv-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}

.pv-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.pv-d { width: 8px; height: 8px; border-radius: 50%; }
.pv-r { background: #c0363e; }
.pv-y { background: var(--gold); }
.pv-g { background: var(--green); }
.pv-title-text { font-size: 0.7rem; color: var(--muted); margin-left: 6px; }

.pv-body { padding: 16px 18px; }

.pv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border); margin-bottom: 7px;
  font-size: 0.81rem;
}
.pv-l { color: var(--muted-2); }
.pv-r-val { font-weight: 600; }
.rv-red { color: var(--red); }
.rv-mu { color: var(--muted-2); }
.rv-go { color: var(--gold); }

.pv-progress { padding: 14px 18px; border-top: 1px solid var(--border); }
.pvp-label {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: var(--muted); margin-bottom: 7px;
}
.pvp-label span { color: var(--red); }
.pvp-bar { height: 4px; background: rgba(255,255,255,0.04); border-radius: 2px; overflow: hidden; }
.pvp-fill { height: 100%; width: 28%; background: var(--red); border-radius: 2px; }

.pv-insight {
  margin: 12px 18px 18px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 6px; padding: 11px 14px;
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}

/* ═══════════════════════════════
   WHO — CRÉDIBILITÉ HUMAINE
═══════════════════════════════ */
#who { background: var(--navy); }

.who-layout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 72px; align-items: center;
}
@media (max-width: 840px) { .who-layout { grid-template-columns: 1fr; gap: 44px; } }

.who-visual {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  position: relative;
}

.who-visual-body { padding: 20px 22px 24px; }

.who-rank-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}

.who-rank-badge {
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 5px; padding: 6px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; color: var(--gold);
}

.who-rank-label { font-size: 0.78rem; color: var(--muted-2); font-weight: 300; }

.who-stats-row {
  display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid var(--border);
}

.ws .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--white);
  letter-spacing: 1px; display: block; line-height: 1;
}
.ws .l { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-top: 3px; }

/* Who right */
.who-content .sh { margin-bottom: 20px; }

.who-p {
  font-size: 0.9rem; font-weight: 300;
  color: var(--muted-2); line-height: 1.75;
  margin-bottom: 28px;
}

.who-p strong { color: var(--offwhite); font-weight: 500; }

.who-features { display: flex; flex-direction: column; gap: 0; }

.who-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.who-feat:first-child { border-top: 1px solid var(--border); }

.wf-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem;
}

.wf-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.wf-text { font-size: 0.8rem; color: var(--muted-2); font-weight: 300; line-height: 1.55; }

/* ═══════════════════════════════
   METHOD
═══════════════════════════════ */
#method {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}


.method-inner { position: relative; z-index: 1; }

.method-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 48px;
}
@media (max-width: 840px) { .method-top { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; } }

.method-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
@media (max-width: 700px) { .method-steps { grid-template-columns: 1fr; } }

.m-step {
  background: var(--navy-3); padding: 28px 24px;
  border-right: 1px solid var(--border);
  position: relative; transition: background .25s;
}
.m-step:last-child { border-right: none; }
.m-step:hover { background: var(--navy-4); }

.m-step::after {
  content: ''; position: absolute;
  bottom: 0; left: 24px; right: 24px; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.m-step:hover::after { transform: scaleX(1); }

.m-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 14px;
}

.m-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}

.m-sub {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 500; margin-bottom: 12px;
}

.m-text {
  font-size: 0.82rem; color: var(--muted-2);
  line-height: 1.65; font-weight: 300; margin-bottom: 16px;
}

.m-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 5px; padding: 6px 11px;
  font-size: 0.73rem; color: var(--gold); font-weight: 500;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
#proof {
  background: var(--navy);
  position: relative; overflow: hidden;
}


.proof-inner { position: relative; z-index: 1; }
.proof-head { margin-bottom: 48px; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 840px) { .testimonials { grid-template-columns: 1fr; } }

.t-card {
  background: rgba(10,24,40,0.9);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 20px; backdrop-filter: blur(4px);
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.t-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }

.t-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 14px; }

.t-text {
  font-size: 0.88rem; color: var(--offwhite);
  line-height: 1.72; font-weight: 300; font-style: italic;
  margin-bottom: 20px; flex: 1;
}

.t-footer {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--border);
}

.t-av {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: var(--gold);
}

.t-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.t-rank { font-size: 0.73rem; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
#pricing {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
}

.pricing-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 28px;
  margin-bottom: 44px; flex-wrap: wrap;
}

.urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.77rem; color: var(--gold); font-weight: 600;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 5px; padding: 8px 16px; letter-spacing: 0.3px;
  align-self: flex-start;
}

.u-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; animation: blink 1.6s ease-in-out infinite; flex-shrink: 0;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }
@media (max-width: 840px) { .cards { grid-template-columns: 1fr; max-width: 400px; } }

.card {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px 26px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); }

.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  border-radius: 12px 12px 0 0;
}

.card-starter::before { background: var(--green); }
.card-starter:hover { box-shadow: 0 12px 36px rgba(0,187,116,0.08); border-color: rgba(0,187,116,0.18); }

.card-mid::before { background: var(--gold); }
.card-mid:hover { box-shadow: 0 12px 36px rgba(245,184,0,0.08); border-color: var(--gold-border); }

.card-premium {
  background: var(--navy-4); border-color: var(--gold-border);
  box-shadow: 0 4px 24px rgba(245,184,0,0.06);
}
.card-premium::before { background: linear-gradient(90deg, var(--red), #e0555d); }
.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(245,184,0,0.15);
  border-color: rgba(245,184,0,0.38);
}

.badge-rec {
  position: absolute; top: -1px; right: 16px;
  background: var(--red); color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 0 0 6px 6px;
}

.c-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.c-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cg { background: var(--green); box-shadow: 0 0 6px rgba(0,187,116,0.5); }
.cgo { background: var(--gold); box-shadow: 0 0 6px rgba(245,184,0,0.5); }
.cr { background: var(--red); box-shadow: 0 0 6px rgba(208,58,67,0.5); }
.c-dur { font-size: 0.67rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }

.c-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.c-line { font-size: 0.79rem; color: var(--muted); font-style: italic; margin-bottom: 18px; line-height: 1.4; }

.c-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.cp-cur { font-size: 0.95rem; color: var(--gold); font-weight: 300; align-self: flex-start; margin-top: 5px; }
.cp-amt { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); letter-spacing: 1px; line-height: 1; }
.cp-sub { font-size: 0.71rem; color: var(--muted); font-weight: 300; margin-bottom: 16px; }

.sessions-box {
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 7px; padding: 9px 13px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.sb-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--gold); line-height: 1; letter-spacing: 1px; }
.sb-lbl strong { display: block; font-size: 0.8rem; color: var(--white); font-weight: 600; margin-bottom: 1px; }
.sb-lbl span { font-size: 0.7rem; color: var(--muted-2); font-weight: 300; }

.c-div { height: 1px; background: var(--border); margin-bottom: 14px; }

.c-feats { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.cf { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; line-height: 1.4; }
.cf .fi { flex-shrink: 0; font-size: 0.68rem; width: 13px; margin-top: 3px; }
.cf.yes { color: var(--offwhite); }
.cf.yes .fi { color: var(--green); }
.cf.no { color: rgba(80,96,112,0.45); }
.cf.no .fi { color: rgba(80,96,112,0.3); }
.cf strong { color: var(--gold); font-weight: 600; }

.btn-c {
  display: block; width: 100%; padding: 13px;
  border-radius: 6px; font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.4px; text-align: center;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s;
}

.btn-c-ghost { background: transparent; border: 1px solid var(--gold-border); color: var(--gold); }
.btn-c-ghost:hover { background: var(--gold-pale); border-color: var(--gold); }

.btn-c-solid { background: var(--gold); color: var(--navy); }
.btn-c-solid:hover {
  background: var(--gold-2);
  box-shadow: 0 4px 18px rgba(245,184,0,0.28);
  transform: translateY(-1px);
}

.pricing-footer {
  display: flex; justify-content: center; align-items: center;
  gap: 18px; margin-top: 24px; flex-wrap: wrap;
}
.pf { display: flex; align-items: center; gap: 5px; font-size: 0.77rem; color: var(--muted); }
.pf .ok { color: var(--green); }
.pf-sep { width: 1px; height: 13px; background: var(--border); }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
#faq { background: var(--navy); }

.faq-layout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 72px; align-items: start;
}
@media (max-width: 840px) { .faq-layout { grid-template-columns: 1fr; gap: 36px; } }

.faq-left { position: sticky; top: 80px; }

.faq-note {
  margin-top: 24px;
  background: var(--navy-2); border: 1px solid var(--border);
  border-left: 2px solid var(--gold); border-radius: 0 8px 8px 0;
  padding: 14px 16px; font-size: 0.82rem;
  color: var(--muted-2); font-weight: 300; line-height: 1.7;
}
.faq-note strong { color: var(--offwhite); font-weight: 500; }

.faq-list { display: flex; flex-direction: column; gap: 3px; }

.faq-item {
  border: 1px solid var(--border); border-radius: 9px;
  overflow: hidden; background: var(--navy-2); transition: border-color .3s;
}
.faq-item:hover { border-color: var(--gold-border); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 16px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; cursor: pointer;
  text-align: left; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  font-weight: 500; transition: color .2s;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px; border: 1px solid var(--border);
  border-radius: 5px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
  font-size: 1rem; line-height: 1; transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-pale); border-color: var(--gold-border); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-body {
  padding: 0 18px 16px; font-size: 0.83rem;
  color: var(--muted-2); line-height: 1.75; font-weight: 300;
  border-top: 1px solid var(--border); padding-top: 13px;
}
.faq-item.open .faq-a { max-height: 260px; }

/* ═══════════════════════════════
   FINAL CTA
═══════════════════════════════ */
#cta {
  position: relative; overflow: hidden;
  text-align: center; padding: 120px 44px;
}

.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Leblanc_0.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.12) saturate(0.4);
}

.cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(6,16,30,0.5) 0%, rgba(6,16,30,0.94) 75%);
}

.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 1px; line-height: 0.95;
  margin-bottom: 18px; color: var(--white);
}
.cta-h .g { color: var(--gold); display: block; }

.cta-p {
  font-size: 0.97rem; font-weight: 300;
  color: var(--offwhite); margin-bottom: 38px;
  line-height: 1.72; max-width: 460px;
  margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--navy); border-top: 1px solid var(--border);
  padding: 26px 44px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 2px;
  color: var(--gold); text-decoration: none;
}
.footer-copy { font-size: 0.73rem; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }



/* ═══ AJOUTS — sections refondues ═══ */

/* Section "Moi" : photo placeholder */
.photo-ph {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--muted-2); position: relative;
}
.photo-ph .pf-ic { font-size: 1.8rem; opacity: .5; }
.photo-ph .pf-t { font-size: 0.78rem; letter-spacing: .5px; }
.sign {
  font-family: 'Bebas Neue', sans-serif; color: var(--gold);
  font-size: 1.5rem; letter-spacing: 2px; margin-top: 22px;
}

/* Deux façons de progresser */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (max-width: 760px){ .ways { grid-template-columns: 1fr; } }
.way {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 26px; position: relative;
  display: flex; flex-direction: column; transition: border-color .3s, transform .3s;
}
.way:hover { transform: translateY(-3px); }
.way-free:hover { border-color: rgba(0,187,116,0.3); }
.way-prem { border-color: var(--gold-border); background: var(--navy-4); }
.way-prem:hover { border-color: rgba(245,184,0,0.4); }
.way-top { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.way-dot { width: 8px; height: 8px; border-radius: 50%; }
.way-dot.g { background: var(--green); box-shadow: 0 0 7px rgba(0,187,116,.5); }
.way-dot.go { background: var(--gold); box-shadow: 0 0 7px rgba(245,184,0,.5); }
.way-kicker { font-size: 0.67rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.way-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 1px; color: var(--white); margin-bottom: 8px; }
.way-desc { font-size: 0.88rem; color: var(--muted-2); font-weight: 300; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.way-price { font-size: 0.95rem; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.way-price span { color: var(--muted); font-weight: 300; font-size: 0.8rem; }

/* Plans IA (gratuit / complet) */
.ia-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
@media (max-width: 700px){ .ia-plans { grid-template-columns: 1fr; max-width: 420px; margin-left:auto; margin-right:auto; } }
.ia-plan { background: var(--navy-3); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; position: relative; }
.ia-plan.feat { border-color: var(--gold-border); background: var(--navy-4); box-shadow: 0 6px 28px rgba(245,184,0,.07); }
.ia-plan-badge { position: absolute; top: -1px; right: 18px; background: var(--gold); color: var(--navy); font-family:'Bebas Neue',sans-serif; font-size:0.7rem; letter-spacing:1.5px; padding:4px 11px; border-radius:0 0 6px 6px; }
.ipl-name { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; letter-spacing:1px; color:var(--white); }
.ipl-price { display:flex; align-items:baseline; gap:3px; margin:6px 0 4px; }
.ipl-amt { font-family:'Bebas Neue',sans-serif; font-size:2.6rem; color:var(--gold); letter-spacing:1px; line-height:1; }
.ipl-per { font-size:0.78rem; color:var(--muted); }
.ipl-sub { font-size:0.74rem; color:var(--muted); margin-bottom:18px; }
.ipl-feats { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:22px; }
.ipl-feats li { display:flex; gap:9px; align-items:flex-start; font-size:0.84rem; color:var(--offwhite); font-weight:300; line-height:1.45; }
.ipl-feats li .fi { color:var(--green); font-size:0.72rem; margin-top:3px; flex-shrink:0; }
.ipl-feats li.off { color: rgba(116,128,144,.5); }
.ipl-feats li.off .fi { color: rgba(116,128,144,.4); }
.ipl-feats li.soon .fi { color: var(--gold); }

/* Avis — galerie screenshots Discord */
.avis-gallery { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:38px; }
@media (max-width: 840px){ .avis-gallery { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; } }
.avis-shot {
  background: #1e2530; border:1px solid var(--border); border-radius:12px;
  overflow:hidden; min-height:180px; display:flex; flex-direction:column;
}
.avis-shot img { width:100%; display:block; }
.avis-ph {
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; padding:34px 18px; color:var(--muted-2); text-align:center;
  border:1px dashed rgba(255,255,255,0.10); border-radius:12px; margin:0;
}
.avis-ph .ic { font-size:1.5rem; opacity:.6; }
.avis-ph .t { font-size:0.78rem; line-height:1.5; }
.avis-note { text-align:center; font-size:0.8rem; color:var(--muted); margin-top:20px; }


/* logo SVG + emblème + titres */
.emblem { vertical-align:middle; margin-right:7px; flex-shrink:0; }
.hl { display:block; color:var(--white); }
.h-stat .n { display:inline-flex; align-items:center; }
.who-rank-badge { display:inline-flex; align-items:center; }

/* palette perf + accents */
:root { --orange:#e8923a; }
/* accents verts : plan gratuit + proof strip */
.ps-item .icon{ color:var(--green); }
.ia-plan.free{ border-top:2px solid var(--green); }
.ia-plan.free .ipl-name, .ia-plan.free .ipl-amt{ color:var(--green); }
.way-free .way-name{ color:#eafff6; }

.skz-logo-img{ width:100%; height:auto; display:block; }
.emblem-img{ height:1.25em; width:auto; vertical-align:middle; margin-right:6px; filter:drop-shadow(0 1px 3px rgba(0,0,0,.35)); }

:root{ --blue:#3fa7f5; }
.perf-top{ color:var(--blue)!important }
.axis-fill.fill-top{ background:linear-gradient(90deg,#2f8fe0,#5bb8ff) }

/* ════════ IMMERSION — effets type client LoL ════════ */

/* halos lumineux animés (aurora) dans le hero */
.hero-fx{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.aurora{ position:absolute; border-radius:50%; filter:blur(70px); pointer-events:none; z-index:1; }
.aurora-1{ width:480px; height:480px; background:radial-gradient(circle, rgba(245,184,0,0.20), transparent 70%); top:-130px; left:-90px; animation:floatA 15s ease-in-out infinite; }
.aurora-2{ width:430px; height:430px; background:radial-gradient(circle, rgba(63,167,245,0.16), transparent 70%); bottom:-150px; right:-70px; animation:floatB 19s ease-in-out infinite; }
@keyframes floatA{ 0%,100%{transform:translate(0,0)} 50%{transform:translate(45px,32px)} }
@keyframes floatB{ 0%,100%{transform:translate(0,0)} 50%{transform:translate(-55px,-28px)} }

/* spotlight qui suit la souris dans le hero */
#hero .spotlight{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(620px circle at var(--mx,50%) var(--my,38%), rgba(245,184,0,0.08), transparent 58%); }

/* zoom lent du splash de fond */
.hero-bg{ animation:slowzoom 26s ease-in-out infinite alternate; }
@keyframes slowzoom{ from{transform:scale(1)} to{transform:scale(1.09)} }

/* reflet doré qui balaie les boutons au survol */
.btn-main, .btn-c-solid, .nav-cta, .btn-analyze{ position:relative; overflow:hidden; }
.btn-main::after, .btn-c-solid::after, .nav-cta::after, .btn-analyze::after{
  content:''; position:absolute; top:0; left:-130%; width:55%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform:skewX(-20deg); pointer-events:none; }
.btn-main:hover::after, .btn-c-solid:hover::after, .nav-cta:hover::after, .btn-analyze:hover::after{ animation:shine .85s ease; }
@keyframes shine{ to{ left:150%; } }

/* lueur magique sur les cartes au survol */
.card:hover, .way:hover, .ia-plan:hover, .t-card:hover{
  box-shadow:0 16px 46px rgba(0,0,0,0.42), 0 0 0 1px var(--gold-border), 0 0 32px rgba(245,184,0,0.10); }

/* coins hextech sur les éléments premium */
.hex{ position:relative; }
.hex::before, .hex::after{ content:''; position:absolute; width:16px; height:16px; pointer-events:none; border:2px solid var(--gold); opacity:0.6; z-index:2; }
.hex::before{ top:6px; left:6px; border-right:none; border-bottom:none; }
.hex::after{ bottom:6px; right:6px; border-left:none; border-top:none; }

/* titres dorés avec léger shimmer */
.sh .g, h1 .g{ color:var(--gold);
  background:linear-gradient(90deg, var(--gold), #fff3c4, var(--gold));
  background-size:200% auto; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; animation:goldshift 7s linear infinite; }
@keyframes goldshift{ to{ background-position:200% center; } }

/* remplissage animé des barres d'axes */
.axis-fill{ transition:width 1.1s cubic-bezier(.2,.85,.25,1); }

/* apparition plus cinématique au scroll */
.reveal{ transition:opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }

/* ════════ HERO CINÉMATIQUE ════════ */
#hero{ min-height:100vh; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; background:transparent; }
.hero-overlay{ background:radial-gradient(ellipse 75% 65% at 50% 48%, rgba(6,16,30,0.62) 0%, rgba(6,16,30,0.80) 70%), linear-gradient(180deg, rgba(6,16,30,0.55) 0%, transparent 35%, rgba(6,16,30,0.95) 100%) !important; z-index:0; }
.hero-content.hero-center{ max-width:880px; margin:0 auto; text-align:center; padding:100px 24px; }
.hero-center .hero-badge{ margin-bottom:30px; }
#hero h1 span{ display:block; }
.hero-center h1{ font-size:clamp(3rem, 7.6vw, 6.4rem); }
.hero-center .hero-btns{ justify-content:center; margin-top:38px; margin-bottom:0; }

/* apparition cinématique du texte */
.anim{ opacity:0; transform:translateY(26px); animation:heroIn 1s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes heroIn{ to{ opacity:1; transform:none; } }
.a1{animation-delay:.10s}.a2{animation-delay:.30s}.a3{animation-delay:.52s}.a4{animation-delay:.74s}.a5{animation-delay:1.0s}.a6{animation-delay:1.35s}

/* indicateur de scroll */
.scroll-cue{ margin-top:50px; display:flex; flex-direction:column; align-items:center; gap:7px;
  color:var(--muted-2); font-size:0.68rem; letter-spacing:2.5px; text-transform:uppercase; }
.scroll-cue .arrow{ font-size:1.25rem; color:var(--gold); animation:bobble 1.8s ease-in-out infinite; }
@keyframes bobble{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* bande détail sous le hero */
.hero-detail{ background:var(--navy); padding:52px 44px 60px; border-bottom:1px solid var(--border); }
.hero-detail-in{ text-align:center; }
.hero-detail .hero-p{ max-width:640px; margin:0 auto 34px; }
.hero-detail .hero-stats{ justify-content:center; border-top:1px solid var(--border); padding-top:28px; max-width:580px; margin:0 auto; }
@media (max-width:640px){ .hero-detail{ padding:40px 18px 48px; } }

/* ──────── RAFFINEMENTS ──────── */
/* contraste : textes secondaires plus lisibles */
:root{ --muted:#697a8e; --muted-2:#93a0b2; }

/* hero plus compact + titre majuscule */
.hero-content.hero-center{ padding:84px 24px; }
.hero-center .hero-badge{ margin-bottom:22px; }
.hero-center h1{ font-size:clamp(2.3rem, 5.5vw, 4.4rem); line-height:1.06; }
#hero h1 .hl{ display:block; margin-top:12px; color:var(--white); }
.hero-center .hero-btns{ margin-top:32px; }

/* logo "Qui je suis" : contenu, ne déborde plus */
.skz-logo-wrap{ width:100%; background:#0a1828; display:flex; align-items:center; justify-content:center; padding:34px 24px; line-height:0; }
.skz-logo-img{ width:auto; max-width:230px; height:auto; display:block; }
.who-rank-row{ flex-wrap:wrap; }


/* RESPONSIVE mobile */
@media (max-width:640px){
  .hero-content.hero-center{ padding:66px 18px; }
  .hero-center h1{ font-size:clamp(1.95rem, 8.4vw, 2.7rem); line-height:1.08; }
  .hero-btns{ flex-direction:column; align-items:stretch; }
  .hero-btns .btn-main, .hero-btns .btn-ghost{ justify-content:center; text-align:center; }
  .chat-bubble{ max-width:86%; }
  .chat-send{ padding:0 15px; }
  .hero-detail .hero-stats{ gap:18px; }
}

/* ──────── CORRECTIFS v2 ──────── */

/* FIX titre hero : apparition + shimmer cumulés (le texte ne disparaît plus) */
#hero h1 .g{ animation: heroIn 1s cubic-bezier(.2,.8,.2,1) .30s both, goldshift 7s linear 1.4s infinite; }

/* Logo "Qui je suis" : remplit tout l'encadré, s'arrête au-dessus du rang */
.skz-logo-wrap{ width:100%; background:#0a1828; padding:0; line-height:0; }
.skz-logo-img{ width:100%; height:auto; display:block; }
.who-visual-body{ border-top:1px solid var(--border); }

/* Hero detail : stats en cartes nettes */
.hero-detail{ background:var(--navy); padding:50px 44px 58px; border-bottom:1px solid var(--border); }
.hero-detail-in{ text-align:center; max-width:920px; margin:0 auto; }
.hero-lead{ font-size:1.06rem; color:var(--offwhite); font-weight:300; line-height:1.7; max-width:620px; margin:0 auto 36px; }
.hero-lead strong{ color:var(--white); font-weight:600; }
.hd-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.hd-stat{ display:flex; align-items:center; gap:14px; justify-content:flex-start; background:var(--navy-2); border:1px solid var(--border); border-radius:12px; padding:18px 22px; transition:border-color .3s, transform .3s; }
.hd-stat:hover{ border-color:var(--gold-border); transform:translateY(-3px); }
.hd-emblem{ height:40px; width:auto; flex-shrink:0; filter:drop-shadow(0 1px 4px rgba(0,0,0,.4)); }
.hd-ic{ font-size:1.6rem; flex-shrink:0; }
.hd-txt{ text-align:left; }
.hd-n{ font-family:'Bebas Neue', sans-serif; font-size:1.55rem; letter-spacing:1px; color:var(--white); line-height:1; }
.hd-l{ font-size:0.7rem; color:var(--muted-2); text-transform:uppercase; letter-spacing:1px; margin-top:4px; }
@media (max-width:760px){ .hd-stats{ grid-template-columns:1fr; max-width:380px; margin:0 auto; } }
@media (max-width:640px){ .hero-detail{ padding:38px 18px 46px; } }

/* ──────── RAFFINEMENTS v3 ──────── */
/* contraste textes secondaires renforcé (lisible même écran peu lumineux) */
:root{ --muted:#8896a8; --muted-2:#a6b2c4; }

/* hero : accroche 1 ligne + sous-titre élégant */
.hero-center h1{ font-size:clamp(2.3rem, 5.4vw, 4rem); line-height:1.1; }
#hero h1 .hl{ display:block; margin-top:16px; font-family:'Outfit', sans-serif; font-weight:300;
  font-size:clamp(1.05rem, 2.3vw, 1.55rem); color:var(--offwhite); letter-spacing:0.2px; }
@media (max-width:640px){ .hero-center h1{ font-size:clamp(1.9rem, 9vw, 2.6rem); } }

/* Fond hero : Faille de l'invocateur */
.hero-bg{ background-image:url('hero-victory.jpg') !important; filter:brightness(0.5) saturate(0.95) blur(1.6px) !important; background-position:center 45%; }

#hero h1{ text-shadow:0 2px 30px rgba(0,0,0,0.6); }

/* Case "Qui je suis" : le logo occupe toute la case */
.who-layout{ align-items:stretch; }
.who-visual{ display:flex; }
.skz-logo-wrap{ width:100%; height:100%; min-height:300px; background:#0a1828; display:flex; align-items:center; justify-content:center; padding:30px; }
.skz-logo-img{ width:100%; max-width:330px; height:auto; }
@media (max-width:840px){ .skz-logo-wrap{ min-height:240px; } }

/* Qui je suis : 2 blocs (logo en haut plein largeur, rang+stats en bas) */
.who-layout{ align-items:center; }
.who-visual{ display:block; }
.skz-logo-wrap{ width:100%; height:auto; min-height:0; background:#0a1828; padding:0; line-height:0; display:block; }
.skz-logo-img{ width:100%; max-width:none; height:auto; display:block; }
.who-visual-body{ border-top:1px solid var(--border); }

/* Logo "Qui je suis" : un peu plus petit dans le bloc du haut */
.skz-logo-wrap{ padding:26px 24px; display:flex; align-items:center; justify-content:center; }
.skz-logo-img{ width:62%; max-width:200px; height:auto; }

/* Qui je suis : rétrécir la CASE de gauche (les blocs), logo qui remplit à nouveau */
.who-layout{ grid-template-columns: 4fr 8fr; }
.skz-logo-wrap{ padding:0; display:block; }
.skz-logo-img{ width:100%; max-width:none; }
.who-visual-body{ padding:14px 16px 16px; }
@media (max-width:840px){ .who-layout{ grid-template-columns:1fr; max-width:360px; } }

/* Qui je suis : réduire la HAUTEUR de la case (bloc logo plafonné + bas compact) */
.skz-logo-wrap{ max-height:185px; padding:14px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.skz-logo-img{ width:auto; max-width:88%; max-height:160px; height:auto; }
.who-visual-body{ padding:12px 16px 14px; }
.who-stats-row{ padding-top:12px; }

/* Qui je suis : logo remplit tout le bloc du haut (colonne resserrée pour rester compact) */
.who-layout{ grid-template-columns: 3fr 9fr; }
.skz-logo-wrap{ max-height:none; padding:0; display:block; overflow:visible; }
.skz-logo-img{ width:100%; max-width:none; max-height:none; height:auto; display:block; }
.who-rank-row{ flex-direction:column; align-items:flex-start; gap:6px; }
.who-visual-body{ padding:14px 16px 16px; }
@media (max-width:840px){ .who-layout{ grid-template-columns:1fr; max-width:340px; } }

/* Qui je suis : RETOUR à l'état validé (tout rentre bien) */
.who-layout{ grid-template-columns: 4fr 8fr; }
.skz-logo-wrap{ max-height:185px; padding:14px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.skz-logo-img{ width:auto; max-width:88%; max-height:160px; height:auto; display:block; }
.who-rank-row{ flex-direction:row; align-items:center; gap:12px; }
.who-visual-body{ padding:12px 16px 14px; }
@media (max-width:840px){ .who-layout{ grid-template-columns:1fr; max-width:360px; } }

/* ════════════════════════════════════════════════════════════
   DIRECTION ARTISTIQUE — passe d'élévation (charte conservée)
   Parti pris : le NAVY est la matière, l'OR est rare et précis.
   Plus d'air · hiérarchie nette · finitions cohérentes.
   ════════════════════════════════════════════════════════════ */

/* 1. Rythme & mesure : l'espace est un matériau, pas du vide */
.section{ padding:118px 44px; }
@media (max-width:640px){ .section{ padding:72px 20px; } }
.container{ max-width:1120px; }

/* 2. Contraste de lecture renforcé (lisible même écran peu lumineux) */
:root{ --offwhite:#d7e1f2; --muted-2:#9aa7ba; --muted:#8090a4; }

/* 3. OR PLUS RARE : on enlève le shimmer omniprésent (tell générique).
      Le hero garde, lui, son traitement signature -> l'effet est CONCENTRÉ. */
.sh .g{ background:none !important; -webkit-text-fill-color:var(--gold) !important;
        color:var(--gold) !important; animation:none !important; }

/* 4. Étiquettes de section : plus fines, plus calmes, mieux espacées */
.tag{ font-size:0.63rem; letter-spacing:3.5px; color:#cda745; gap:12px; margin-bottom:18px; }
.tag::before{ width:24px; background:var(--gold); opacity:.65; }

/* 5. Titres de section : blanc dominant, hiérarchie plus tranchée */
.sh{ font-size:clamp(2.1rem, 4.3vw, 3.5rem); letter-spacing:1.5px; line-height:0.98; margin-bottom:18px; }
.sp{ font-size:0.99rem; line-height:1.8; }

/* 6. Cartes : finition cohérente (rayon unifié, survol maîtrisé) */
.card, .way, .ia-plan, .t-card, .m-step, .faq-item, .analyze-card, .coach-card{ border-radius:14px; }
.card:hover, .way:hover, .ia-plan:hover, .t-card:hover{
  box-shadow:0 18px 50px -14px rgba(0,0,0,.55), 0 0 0 1px rgba(245,184,0,.15); }

/* 7. Signature retenue : coins hextech affinés (gardés aux éléments focaux) */
.hex::before, .hex::after{ width:13px; height:13px; opacity:.5; }

/* 8. Boutons : présence sans surcharge */
.btn-main{ letter-spacing:.4px; padding:16px 32px; box-shadow:0 8px 26px -10px rgba(245,184,0,.5); }
.btn-ghost{ border-color:rgba(255,255,255,.14); }
.btn-ghost:hover{ border-color:rgba(245,184,0,.5); color:#fff; }

/* 9. Barre de réassurance : plus discrète (laisser respirer le hero) */
.proof-strip{ padding:16px 44px; }
.ps-item{ color:var(--muted-2); }

/* Titres de section : 1 ligne si possible, 2 lignes maximum (toutes sections) */
.sh{ font-size:clamp(1.85rem, 3.3vw, 2.9rem); letter-spacing:1px; line-height:1.02;
     text-wrap:balance; }
.cta-h{ font-size:clamp(2rem, 4vw, 3.4rem); line-height:1.02; text-wrap:balance; }
@media (max-width:640px){
  .sh{ font-size:clamp(1.55rem, 6.6vw, 2rem); }
  .cta-h{ font-size:clamp(1.8rem, 8vw, 2.4rem); }
}


/* Modale connexion / création de compte */
.auth-overlay{ position:fixed; inset:0; z-index:400; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(4,10,20,.82); backdrop-filter:blur(6px); }
.auth-overlay.on{ display:flex; }
.auth-box{ position:relative; width:100%; max-width:410px; background:var(--navy-3); border:1px solid var(--gold-border); border-radius:16px; padding:30px 28px; }
.auth-close{ position:absolute; top:13px; right:15px; background:none; border:none; color:var(--muted-2); font-size:1.15rem; cursor:pointer; }
.auth-logo{ font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:2px; color:var(--gold); text-align:center; margin-bottom:20px; }
.auth-logo span{ color:#fff; }
.auth-tabs{ display:flex; gap:6px; background:var(--navy); border:1px solid var(--border); border-radius:9px; padding:4px; margin-bottom:16px; }
.auth-tab{ flex:1; background:none; border:none; color:var(--muted-2); font-family:'Outfit',sans-serif; font-size:.84rem; font-weight:600; padding:9px; border-radius:6px; cursor:pointer; }
.auth-tab.on{ background:var(--gold); color:var(--navy); }
.auth-box label{ display:block; font-size:.68rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--muted); margin:12px 0 6px; }
.auth-box input{ width:100%; background:var(--navy); border:1px solid var(--border); border-radius:8px; padding:12px 14px; color:#fff; font-family:'Outfit',sans-serif; font-size:.9rem; }
.auth-box input:focus{ outline:none; border-color:var(--gold-border); }
.auth-box .auth-go{ width:100%; margin-top:18px; background:var(--gold); color:var(--navy); border:none; border-radius:8px; padding:13px; font-weight:700; font-family:'Outfit',sans-serif; font-size:.92rem; cursor:pointer; transition:background .2s; }
.auth-box .auth-go:hover{ background:var(--gold-2); }
.auth-h{ font-family:'Bebas Neue',sans-serif; font-size:1.5rem; letter-spacing:1px; color:#fff; text-align:center; }
.auth-sub{ font-size:.85rem; color:var(--muted-2); text-align:center; margin:8px auto 2px; max-width:300px; font-weight:300; }
.auth-mini{ font-size:.71rem; color:var(--muted); text-align:center; margin-top:14px; }
.auth-riot{ display:flex; align-items:center; gap:8px; justify-content:center; margin-bottom:14px; color:var(--gold); font-size:.8rem; }


/* --- Page coaching : section "qui je suis", fond bleu neutre, logo affiché en entier --- */
#moi{ background:var(--navy); }
#moi .skz-logo-wrap{ background:var(--navy-3); padding:28px; display:flex; align-items:center; justify-content:center; min-height:0; max-height:none; overflow:visible; }
#moi .skz-logo-img{ width:100%; max-width:300px; height:auto; max-height:none; display:block; }


/* --- Pied de page : réseaux + liens --- */
.footer-socials{ display:flex; gap:12px; justify-content:center; margin:18px 0 8px; }
.footer-socials .soc{ width:40px; height:40px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; transition:all .2s; }
.footer-socials .soc:hover{ border-color:var(--gold-border); background:var(--gold-pale); transform:translateY(-2px); }
.footer-socials .soc img{ opacity:.8; transition:opacity .2s; }
.footer-socials .soc:hover img{ opacity:1; }
.footer-contact{ font-size:.85rem; color:var(--muted-2); margin-bottom:10px; }
.footer-contact a{ color:var(--gold); text-decoration:none; }
.footer-links{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:12px; font-size:.78rem; }
.footer-links a{ color:var(--muted); text-decoration:none; }
.footer-links a:hover{ color:var(--offwhite); }
