/*
  EriFaye TV - Landing page statique V1
  Hébergement cible : S3 static website
*/

:root {
  --ef-bg: #05070d;
  --ef-card: rgba(17, 24, 39, 0.78);
  --ef-border: rgba(255, 255, 255, 0.12);
  --ef-text: #ffffff;
  --ef-muted: rgba(255, 255, 255, 0.74);
  --ef-soft: rgba(255, 255, 255, 0.52);
  --ef-red: #e50914;
  --ef-red-2: #ff3140;
  --ef-green: #19d27c;
  --ef-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ef-bg);
  color: var(--ef-text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--ef-red);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.fw-black {
  font-weight: 700;
}

.site-bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 15%, rgba(229, 9, 20, 0.20), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(245, 196, 81, 0.08), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(25, 210, 124, 0.06), transparent 35%);
}

/* NAVBAR */

.ef-navbar {
  background: rgba(5, 7, 13, 0.45);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ef-navbar.is-scrolled {
  background: rgba(5, 7, 13, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ef-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ef-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ef-red), #8f0710);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.35);
}

.ef-brand-text {
  color: #ffffff;
  font-size: 1.1rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ffffff;
}

/* BUTTONS */

.ef-btn-primary {
  background: linear-gradient(135deg, var(--ef-red), var(--ef-red-2));
  border: 0;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.34);
}

.ef-btn-primary:hover,
.ef-btn-primary:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(229, 9, 20, 0.42);
}

.ef-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.ef-btn-outline:hover,
.ef-btn-outline:focus {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* HERO */

.ef-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ef-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.03);
}

.ef-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.78) 38%, rgba(5, 7, 13, 0.35) 72%, rgba(5, 7, 13, 0.8) 100%),
    linear-gradient(0deg, rgba(5, 7, 13, 1) 0%, rgba(5, 7, 13, 0.12) 45%, rgba(5, 7, 13, 0.64) 100%);
}

.ef-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}

.ef-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.ef-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ef-red);
  box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.16);
}

.ef-hero-title {
  color: #ffffff;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.ef-hero-text {
  color: var(--ef-muted);
  max-width: 760px;
  font-size: 1.2rem;
}

.ef-trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ef-trust-row > div {
  min-width: 140px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.ef-trust-row strong,
.ef-trust-row span {
  display: block;
}

.ef-trust-row strong {
  font-size: 1.15rem;
  color: #ffffff;
}

.ef-trust-row span {
  font-size: 0.86rem;
  color: var(--ef-muted);
}

.ef-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: ef-bounce 1.8s infinite;
}

@keyframes ef-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* SECTIONS */

.ef-section {
  position: relative;
  padding: 7rem 0;
}

.ef-intro-section {
  background: linear-gradient(180deg, #05070d, #080c14);
}

.ef-section-label {
  display: inline-flex;
  align-items: center;
  color: var(--ef-red-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.ef-section-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  text-wrap: balance;
}

.ef-section-text {
  color: var(--ef-muted);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 780px;
}

/* PARALLAX */

.ef-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.ef-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.94), rgba(5, 7, 13, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.16), transparent 32%);
}

.ef-parallax > .container {
  position: relative;
  z-index: 2;
}

.ef-parallax-1 {
  background-image:
    linear-gradient(120deg, rgba(5, 7, 13, 0.9), rgba(5, 7, 13, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.32), transparent 40%),
    linear-gradient(135deg, #0d1320, #05070d);
}

.ef-parallax-2 {
  background-image:
    linear-gradient(120deg, rgba(5, 7, 13, 0.9), rgba(5, 7, 13, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(245, 196, 81, 0.18), transparent 32%),
    linear-gradient(135deg, #0c111d, #05070d);
}

/* CARDS */

.ef-content-card,
.ef-price-card,
.ef-step,
.ef-showcase-copy,
.ef-ppv-panel,
.ef-final-cta {
  border: 1px solid var(--ef-border);
  background: var(--ef-card);
  box-shadow: var(--ef-shadow);
  backdrop-filter: blur(18px);
}

.ef-content-card {
  min-height: 260px;
  padding: 2rem;
  border-radius: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ef-content-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.42);
  background: rgba(20, 28, 44, 0.88);
}

.ef-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 9, 20, 0.14);
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 1.4rem;
}

.ef-content-card h3,
.ef-step h3,
.ef-final-cta h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.ef-content-card p,
.ef-step p,
.ef-final-cta p {
  color: var(--ef-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

/* SHOWCASE */

.ef-showcase-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.11), transparent 35%),
    linear-gradient(180deg, #080c14, #05070d);
}

.ef-showcase-copy {
  padding: 2.2rem;
  border-radius: 30px;
}

.ef-screen-mockup {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #111827, #05070d);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.66);
  min-height: 430px;
}

.ef-screen-topbar {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.ef-screen-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.ef-screen-hero {
  min-height: 240px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 2rem;
  background:
    linear-gradient(0deg, rgba(5, 7, 13, 1), rgba(5, 7, 13, 0.15)),
    radial-gradient(circle at 70% 30%, rgba(229, 9, 20, 0.36), transparent 34%),
    linear-gradient(135deg, #1b2233, #0b0f17);
}

.ef-screen-hero h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.ef-screen-hero p {
  color: var(--ef-muted);
  margin: 0;
}

.ef-screen-hero i {
  font-size: 4.4rem;
  color: #ffffff;
  filter: drop-shadow(0 12px 30px rgba(229, 9, 20, 0.45));
}

.ef-mini-badge {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--ef-red);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ef-screen-rail {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ef-poster-card {
  height: 150px;
  border-radius: 18px;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: #ffffff;
  font-weight: 700;
  background:
    linear-gradient(0deg, rgba(5, 7, 13, 0.9), transparent),
    radial-gradient(circle at 50% 20%, rgba(229, 9, 20, 0.32), transparent 42%),
    #141b2c;
}

/* PRICING */

.ef-pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.12), transparent 38%),
    #05070d;
}

.ef-price-card {
  position: relative;
  height: 100%;
  padding: 2.2rem;
  border-radius: 30px;
}

.ef-price-card-featured {
  border-color: rgba(229, 9, 20, 0.55);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.16), rgba(12, 18, 30, 0.92));
  transform: translateY(-10px);
}

.ef-plan-badge {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ef-red);
  font-weight: 700;
  font-size: 0.75rem;
}

.ef-price-card h3 {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
}

.ef-price-card p {
  color: var(--ef-muted);
}

.ef-price {
  margin: 1.6rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.ef-price span {
  color: #ffffff;
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.ef-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ef-price-card li {
  color: var(--ef-muted);
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.65rem;
}

.ef-price-card li i {
  color: var(--ef-green);
}

/* PPV */

.ef-ppv-panel {
  padding: 2.2rem;
  border-radius: 30px;
}

.ef-ppv-panel h3 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ef-ppv-panel p {
  color: var(--ef-muted);
}

.ef-ppv-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ef-ppv-row span {
  color: var(--ef-muted);
}

.ef-ppv-row strong {
  color: #ffffff;
}

.ef-ppv-row.ef-free strong {
  color: var(--ef-green);
}

.ef-ppv-note {
  margin-top: 1.3rem;
  font-size: 0.92rem;
  color: var(--ef-soft) !important;
}

/* STEPS */

.ef-step {
  height: 100%;
  padding: 1.8rem;
  border-radius: 28px;
}

.ef-step span {
  display: block;
  color: var(--ef-red-2);
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
}

/* FAQ */

.ef-faq-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.12), transparent 32%),
    linear-gradient(180deg, #05070d, #080c14);
}

.ef-accordion .accordion-item {
  background: rgba(17, 24, 39, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

.ef-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 700;
  box-shadow: none;
}

.ef-accordion .accordion-button:not(.collapsed) {
  background: rgba(229, 9, 20, 0.16);
  color: #ffffff;
}

.ef-accordion .accordion-button::after {
  filter: invert(1);
}

.ef-accordion .accordion-body {
  color: var(--ef-muted);
  line-height: 1.75;
}

.ef-final-cta {
  padding: 2rem;
  border-radius: 28px;
}

/* FOOTER */

.ef-footer {
  background: #03050a;
  color: var(--ef-muted);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ef-footer a {
  color: rgba(255, 255, 255, 0.74);
  margin-left: 1.2rem;
  font-weight: 700;
}

.ef-footer a:hover {
  color: #ffffff;
}

.ef-footer-brand {
  margin-left: 0 !important;
}

.ef-copyright {
  color: var(--ef-soft);
  font-size: 0.92rem;
}

/* BACK TO TOP */

.ef-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ef-red);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(229, 9, 20, 0.36);
  z-index: 20;
}

.ef-back-to-top.is-visible {
  display: inline-flex;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  .ef-hero-title {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .ef-section {
    padding: 5rem 0;
  }

  .ef-parallax {
    background-attachment: scroll;
  }

  .ef-price-card-featured {
    transform: none;
  }

  .ef-screen-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .ef-navbar {
    background: rgba(5, 7, 13, 0.94);
  }

  .ef-brand-text {
    font-size: 1rem;
  }

  .ef-hero-content {
    padding-top: 6rem;
  }

  .ef-hero-title {
    letter-spacing: -0.035em;
  }

  .ef-trust-row > div {
    width: 100%;
  }

  .ef-content-card,
  .ef-price-card,
  .ef-step,
  .ef-showcase-copy,
  .ef-ppv-panel,
  .ef-final-cta {
    border-radius: 22px;
  }

  .ef-footer a {
    display: inline-block;
    margin: 0.75rem 1rem 0 0;
  }
}


/* LEGAL PAGES */
.ef-legal-page {
  min-height: 100vh;
  padding-top: 110px;
  background:
    radial-gradient(circle at 20% 10%, rgba(229, 9, 20, 0.16), transparent 30%),
    linear-gradient(180deg, #05070d, #080c14);
}

.ef-legal-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.ef-legal-card {
  border: 1px solid var(--ef-border);
  background: rgba(17, 24, 39, 0.82);
  box-shadow: var(--ef-shadow);
  border-radius: 30px;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--ef-muted);
}

.ef-legal-card h1,
.ef-legal-card h2,
.ef-legal-card h3 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ef-legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.ef-legal-card h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.ef-legal-card p,
.ef-legal-card li {
  line-height: 1.75;
}

.ef-legal-card a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(229, 9, 20, 0.8);
}

.ef-legal-muted {
  color: var(--ef-soft);
  font-size: 0.95rem;
}

.ef-legal-alert {
  border: 1px solid rgba(245, 196, 81, 0.32);
  background: rgba(245, 196, 81, 0.10);
  color: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
}


/* TYPOGRAPHY TUNING V1.2
   Police plus moderne et moins lourde : Manrope.
   On évite les titres trop gras en 900.
*/
.ef-brand,
.ef-hero-title {
  font-weight: 800;
}

.ef-section-title,
.ef-price span {
  font-weight: 800;
}

.ef-content-card h3,
.ef-price-card h3,
.ef-step h3,
.ef-final-cta h3,
.ef-ppv-panel h3,
.ef-screen-hero h3,
.ef-legal-card h1,
.ef-legal-card h2,
.ef-legal-card h3 {
  font-weight: 700;
}

.navbar .nav-link,
.ef-btn-primary,
.ef-btn-outline,
.ef-kicker,
.ef-mini-badge,
.ef-plan-badge,
.ef-section-label {
  font-weight: 700;
}

.ef-hero-title {
  letter-spacing: -0.045em;
}

.ef-section-title {
  letter-spacing: -0.035em;
}
