/* ════════════════════════════════════════════════════════════════
   GAME POINT — Custom homepage sections
   Sport-brand redesign: condensed display type, bento grid, red accent
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --gp-red:        #DC2626;
  --gp-red-bright: #EF4444;
  --gp-gold:       #FBBF24;
  --gp-black:      #0A0A0A;
  --gp-card:       #141414;
  --gp-card-hi:    #1C1C1C;
  --gp-border:     rgba(255, 255, 255, 0.08);
  --gp-border-hi:  rgba(255, 255, 255, 0.18);
  --gp-text:       #FFFFFF;
  --gp-text-dim:   rgba(255, 255, 255, 0.62);
  --gp-text-mute:  rgba(255, 255, 255, 0.42);
}

.gp-section {
  position: relative;
  padding: clamp(80px, 10vw, 180px) 0;
  background: var(--gp-black);
  color: var(--gp-text);
  font-family: 'Barlow', system-ui, sans-serif;
  overflow: hidden;
}

.gp-section + .gp-section { padding-top: 0; }

.gp-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 2;
}

/* ─────────── Eyebrow + Titles ─────────── */

.gp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gp-red-bright);
  margin-bottom: 28px;
}
.gp-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gp-red-bright);
}

.gp-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.gp-section-title em {
  font-style: normal;
  color: var(--gp-red-bright);
}
.gp-section-title .outline {
  -webkit-text-stroke: 2px var(--gp-text);
  color: transparent;
}

/* ═══════════════════════════════════════════
   SECTION 1 — Tagline + 3 pillars
   ═══════════════════════════════════════════ */

.gp-hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 12vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 48px;
}
.gp-hero-tagline em {
  font-style: normal;
  color: var(--gp-red-bright);
}
.gp-hero-tagline .outline {
  -webkit-text-stroke: 2px var(--gp-text);
  color: transparent;
  display: inline-block;
}

.gp-hero-sub {
  max-width: 720px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--gp-text-dim);
  margin: 0 0 80px;
}

.gp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gp-pillar {
  position: relative;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: 28px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
  overflow: hidden;
}
.gp-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gp-red);
  background: linear-gradient(135deg, var(--gp-card-hi) 0%, rgba(220, 38, 38, 0.10) 100%);
}
.gp-pillar__icon {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 4px 20px rgba(220, 38, 38, 0.3));
}
.gp-pillar__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.gp-pillar__num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gp-text-mute);
}

/* ═══════════════════════════════════════════
   SECTION 2 — Why GP (intro)
   ═══════════════════════════════════════════ */

.gp-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gp-why__lead {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  color: var(--gp-text);
}
.gp-why__body {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  color: var(--gp-text-dim);
}

/* ═══════════════════════════════════════════
   SECTION 3 — Bento Grid (4 pillars)
   ═══════════════════════════════════════════ */

.gp-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
  margin-top: 64px;
}

.gp-card {
  position: relative;
  background: var(--gp-card);
  border: 1px solid var(--gp-border);
  border-radius: 32px;
  padding: clamp(32px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}
.gp-card:hover {
  transform: translateY(-6px);
  border-color: var(--gp-red);
  background: var(--gp-card-hi);
}
/* Watermark big number */
.gp-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(220px, 22vw, 380px);
  line-height: 1;
  color: rgba(220, 38, 38, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 280ms ease;
}
.gp-card:hover::before { color: rgba(220, 38, 38, 0.12); }

.gp-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gp-red-bright);
  margin-bottom: 28px;
}
.gp-card__meta__dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--gp-red-bright);
}

.gp-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.gp-card__title .emoji {
  font-size: 0.7em;
  margin-right: 6px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 12px rgba(239, 68, 68, 0.35));
}

.gp-card__lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--gp-text-dim);
  max-width: 540px;
  margin: 0;
}

.gp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.gp-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--gp-border-hi);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gp-text);
  transition: border-color 200ms ease, background 200ms ease;
}
.gp-chip:hover {
  border-color: var(--gp-red-bright);
  background: rgba(220, 38, 38, 0.08);
}

/* Bento grid asymmetric layout */
.gp-card--lg   { grid-column: span 7; grid-row: span 2; }
.gp-card--md   { grid-column: span 5; }
.gp-card--sm   { grid-column: span 5; }
.gp-card--wide { grid-column: span 12; }

/* ═══════════════════════════════════════════
   SECTION 4 — Closing
   ═══════════════════════════════════════════ */

.gp-closing-section {
  text-align: center;
  padding: clamp(100px, 12vw, 220px) 0;
}
.gp-closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.gp-closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7.5vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 1200px;
}
.gp-closing-headline em {
  font-style: normal;
  color: var(--gp-red-bright);
}
.gp-closing-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gp-text-dim);
}
.gp-closing-tags span { position: relative; }
.gp-closing-tags span + span::before {
  content: '';
  position: absolute;
  left: -22px; top: 50%;
  width: 4px; height: 4px;
  background: var(--gp-red-bright);
  border-radius: 999px;
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .gp-pillars  { grid-template-columns: 1fr; }
  .gp-why      { grid-template-columns: 1fr; gap: 32px; }
  .gp-bento    { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gp-card--lg,
  .gp-card--md,
  .gp-card--sm,
  .gp-card--wide { grid-column: span 1; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .gp-pillar, .gp-card, .gp-chip { transition: none; }
  .gp-pillar:hover, .gp-card:hover { transform: none; }
}

/* ═══════════════════════════════════════════
   NEWSLETTER — REAL Webflow specs (Montserrat + Lato, #FF5E00)
   Source: game-point-01.design.webflow.com (.accueil lead-generator)
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lato:wght@400;500;700&display=swap');

:root {
  --gp-orange: #FF5E00;
  --gp-orange-bright: #FF7A2D;
  --gp-ink: #111111;
  --gp-ink-soft: #333333;
  --gp-input-bg: #F2F2F2;
}

.gp-newsletter-light {
  position: relative;
  background: #FFFFFF;
  color: var(--gp-ink);
  padding: 56px 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  overflow: hidden;
}
.gp-newsletter-light .gp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}
.gp-newsletter-light__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ─── LEFT visual: dot pattern + photo ─── */

.gp-newsletter-light__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.gp-newsletter-light__dots {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 145px;
  height: 150px;
  background-image: url('../img/gp-real/dot-pattern-orange.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.gp-newsletter-light__logo-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  z-index: 2;
  transform: rotate(-5deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms ease;
}
.gp-newsletter-light__logo-card:hover { transform: rotate(0deg) scale(1.02); }

/* orange oval badge: white "GP" (screen-blended off black) + GAMEPOINT wordmark */
.gp-logo-badge {
  position: relative;
  isolation: isolate;
  width: 82%;
  aspect-ratio: 1.3 / 1;
  background: var(--gp-orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gp-logo-badge__mark {
  width: 56%;
  height: auto;
  margin-bottom: -6%;
  mix-blend-mode: screen;
  pointer-events: none;
}
.gp-logo-badge__word {
  width: 66%;
  height: auto;
}

/* ─── RIGHT content + form ─── */

.gp-newsletter-light__eyebrow,
.gp-light-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gp-ink);
  margin: 0 0 0;
}
.gp-newsletter-light__eyebrow::before { display: none; }

.gp-newsletter-light__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--gp-ink);
  margin: 16px 0 28px;
}

.gp-newsletter-light__lead {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--gp-ink);
  margin: 0 0 32px;
  max-width: 520px;
}

.gp-newsletter-light-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.gp-newsletter-light-form__input {
  width: 100%;
  background: var(--gp-input-bg);
  border: 0;
  border-radius: 15px;
  padding: 18px 20px;
  height: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gp-ink);
  outline: 0;
  transition: box-shadow 200ms ease;
}
.gp-newsletter-light-form__input::placeholder { color: #777; }
.gp-newsletter-light-form__input:focus {
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.25);
}

.gp-newsletter-light-form__btn {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--gp-orange);
  color: #FFFFFF;
  border: 2px solid var(--gp-orange);
  border-radius: 25px;
  padding: 16px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.gp-newsletter-light-form__btn:hover {
  background: var(--gp-orange-bright);
  border-color: var(--gp-orange-bright);
  transform: translateY(-1px);
}
.gp-newsletter-light-form__btn:focus-visible {
  outline: 3px solid var(--gp-orange);
  outline-offset: 3px;
}

/* success state */
.gp-newsletter-light-form.is-success .gp-newsletter-light-form__input,
.gp-newsletter-light-form.is-success .gp-newsletter-light-form__btn { display: none; }
.gp-newsletter-light-form__success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 15px;
  background: #E9F8EE;
  color: #0F7A37;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.gp-newsletter-light-form.is-success .gp-newsletter-light-form__success { display: flex; }

@media (max-width: 991px) {
  .gp-newsletter-light__grid { grid-template-columns: 1fr; gap: 40px; }
  .gp-newsletter-light__visual { min-height: 420px; }
}

/* ═══════════════════════════════════════════
   GP PILLAR SECTIONS — exact Webflow patterns
   Sources:  .accueil intro-section  /  .accueil benefits  /  .accueil black-bg
   Fonts: Montserrat (titles) + Lato (body)
   ═══════════════════════════════════════════ */

/* ─── SECTION WRAPPERS ─── */

.gp-light {
  position: relative;
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url('../img/gp-real/white-architectural-bg.jpg');
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, 50% 50%;
  color: #111111;
  padding: 56px 0 80px;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.gp-light + .gp-light { padding-top: 0; }

.gp-light .gp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── SECTION HEADING (orange bold + thin white-ish span) ─── */
/* Mirrors .accueil .category-heading-container + .section-heading + .thin-heading */

.gp-light__heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.gp-light__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FF5E00;
  margin: 0;
  letter-spacing: normal;
}
.gp-light__heading .thin {
  display: inline;
  font-weight: 400;
  color: #111111;
  margin-left: 8px;
}

.gp-light__heading-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
  white-space: nowrap;
}

.gp-light__lead {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #111111;
  max-width: 760px;
  margin: 0 0 48px;
}

/* ─── BENEFITS-STYLE CARD GRID ─── */
/* Mirrors .accueil.benefits .cards-container .column.card */

.gp-light__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gp-light__card {
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 24px 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 140px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.gp-light__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gp-light__card-icon {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  margin: 0;
}
.gp-light__card-icon img {
  width: 32px;
  height: auto;
  display: block;
}

.gp-light__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #111111;
  margin: 8px 0 0;
}

/* tagline below grid */
.gp-light__tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
  margin: 48px 0 0;
}
.gp-light__tagline::before {
  content: '';
  width: 48px;
  height: 2px;
  background: #FF5E00;
  flex-shrink: 0;
}

/* ─── CLOSING SECTION (centered, AVEC VOUS POUR VOUS pattern) ─── */
/* Mirrors .accueil.intro-section */

.gp-light-closing {
  position: relative;
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('../img/gp-real/white-architectural-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #111111;
}
.gp-light-closing__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 30px;
}
.gp-light-closing__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #111111;
  margin: 24px 0 24px;
}
.gp-light-closing__title em {
  font-style: normal;
  color: #FF5E00;
}
.gp-light-closing__lead {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #111111;
  max-width: 680px;
  margin: 0 auto 40px;
}
.gp-light-closing__triplet {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.gp-light-closing__triplet span {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #FF5E00;
  padding: 14px 28px;
  border-radius: 25px;
  border: 2px solid #FF5E00;
  transition: background 200ms ease, transform 200ms ease;
}
.gp-light-closing__triplet span:hover {
  background: #FF7A2D;
  transform: translateY(-2px);
}

/* Centered eyebrow variant */
.gp-light-closing__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .gp-light, .gp-light-closing { background-attachment: scroll; }
  .gp-light__heading-row { flex-direction: column; align-items: flex-start; }
  .gp-light__heading { font-size: 22px; }
}

/* legacy class compat — older HTML still uses these names */
.gp-light-eyebrow { display: none; }
.gp-light-title { display: none; }
.gp-light-quote { display: none; }
.gp-feature-grid { display: contents; }
.gp-feature, .gp-feature__icon, .gp-feature__title { all: revert; }

/* ═══════════════════════════════════════════
   FOOTER — REAL Webflow specs
   Source: .accueil footer (Montserrat, black bg, wordmark logo)
   ═══════════════════════════════════════════ */

.gp-footer {
  background: #000000;
  color: #FFFFFF;
  font-family: 'Montserrat', system-ui, sans-serif;
  padding: 60px 0 30px;
}
.gp-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── Top row: logo + 3 link columns ─── */
.gp-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
}
.gp-footer__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.gp-footer__brand img {
  width: 180px;
  height: auto;
  display: block;
}

.gp-footer__col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gp-footer__link {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 8px;
  transition: color 200ms ease;
}
.gp-footer__link:hover,
.gp-footer__link:focus-visible {
  color: var(--gp-orange);
  outline: none;
}

/* ─── Legal row: copyright + socials ─── */
.gp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gp-footer__copyright {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  margin: 0;
}
.gp-footer__copyright a {
  color: var(--gp-orange);
  text-decoration: none;
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin: 0 4px;
}
.gp-footer__copyright a:hover { text-decoration: underline; }

.gp-footer__socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.gp-footer__social {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, opacity 200ms ease;
  opacity: 0.9;
}
.gp-footer__social:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.gp-footer__social:focus-visible {
  outline: 2px solid var(--gp-orange);
  outline-offset: 4px;
  border-radius: 4px;
}
.gp-footer__social img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);  /* force white SVGs */
}

@media (max-width: 991px) {
  .gp-footer__top { justify-content: flex-start; }
  .gp-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════
   INTRO (page-load) ANIMATION — Game Point branding
   Word-cycle intro now flashes "Game Point" + the GP logo bookends,
   and the slide revealed mid-transition is brand orange
   (ancienne couleur rouge du template remplacée par #FF5E00).
   ════════════════════════════════════════════════════════════════ */

/* GP logo sits in the 3 logo slots of the word-cycle intro */
.transition-container .transition-screen-inner .single-word img.gp-intro-logo {
  width: auto;
  height: 2.8em;
  display: block;
}
.transition-container .transition-screen-inner .single-word img.gp-intro-logo--lg {
  height: 3.4em;
  transform: translateY(5%);
}

/* Screen revealed as the intro slides away: template red → brand orange */
.transition-container[data-transition-status="loading"] .fixed-background.gray {
  background-color: var(--gp-orange);
}
.transition-container[data-transition-status="loading"] .fixed-background.gray .texture {
  background-image: none; /* drop the template's solid-red texture so the brand orange shows cleanly */
}

/* ════════════════════════════════════════════════════════════════
   À PROPOS — align with the homepage art direction
   The about-header + first image block backgrounds were template red
   (.fixed-background.primary #FF5E00); they now reuse the homepage's
   dark texture background (.fixed-background.dark). The template had
   hardcoded the giant "À Propos" title to --color-dark for the red
   backdrop, so on dark it vanished — flip it to light like the
   homepage hero title.
   ════════════════════════════════════════════════════════════════ */
.about-header h1.split-chars {
  color: var(--color-light);
}
.about-header h1 .outline {
  -webkit-text-stroke-color: rgba(var(--color-light-rgb), 1);
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-HERO — White hero block (homepage intro)
   2-column editorial layout: text + CTAs on the left,
   orange dot grid + player photo on the right.
   Re-uses the existing white architectural background.
   ════════════════════════════════════════════════════════════════ */
:root { --gp-orange: #FF5E00; }

.gp-light-hero {
  position: relative;
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url('../img/gp-real/white-architectural-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(80px, 9vw, 140px) 0 clamp(60px, 8vw, 120px);
  color: #0A0A0A;
  font-family: 'Montserrat', system-ui, sans-serif;
  overflow: hidden;
}

.gp-light-hero .gp-container {
  position: relative;
  z-index: 2;
}

.gp-light-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

/* ─── LEFT COLUMN — text + CTAs ─── */
.gp-light-hero__text {
  position: relative;
  padding-left: clamp(22px, 2.4vw, 36px);
}
/* Vertical orange accent bar (matches the Webflow design) */
.gp-light-hero__text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 70px;   /* aligns with the title baseline, not the social icons */
  bottom: 14%;
  width: 6px;
  background: var(--gp-orange);
  border-radius: 3px;
}

.gp-light-hero__social {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  gap: 18px;
}
.gp-light-hero__social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gp-light-hero__social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.gp-light-hero__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(0);
}

.gp-light-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7.2vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0 0 28px;
}
.gp-light-hero__title span {
  display: block;
}
.gp-light-hero__title em {
  font-style: normal;
  color: var(--gp-orange);
  display: block;            /* « opportunités. » sur sa propre ligne, alignée à gauche */
}
.gp-light-hero__title em::after { display: none !important; }  /* pas de trait orange sous le mot */

.gp-light-hero__lead {
  font-family: 'Barlow', 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.65);
  max-width: 560px;
  margin: 0 0 38px;
}

.gp-light-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gp-light-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.gp-light-hero__btn--outline {
  background: transparent;
  color: #0A0A0A;
  border: 1.5px solid rgba(10,10,10,0.85);
}
.gp-light-hero__btn--outline:hover {
  background: #0A0A0A;
  color: #fff;
  transform: translateY(-2px);
}
.gp-light-hero__btn--solid {
  background: var(--gp-orange);
  color: #fff;
  border: 1.5px solid var(--gp-orange);
  box-shadow: 0 8px 24px rgba(255, 94, 0, 0.25);
}
.gp-light-hero__btn--solid:hover {
  background: #EE5400;
  border-color: #EE5400;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 94, 0, 0.35);
}
.gp-light-hero__btn--solid svg {
  transition: transform 0.2s ease;
}
.gp-light-hero__btn--solid:hover svg { transform: translateX(3px); }

/* ─── RIGHT COLUMN — visual (dot pattern + photo) ─── */
.gp-light-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.gp-light-hero__dots {
  position: absolute;
  top: 5%;
  left: -4%;
  width: 64%;
  height: auto;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}
.gp-light-hero__photo {
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.gp-light-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .gp-light-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gp-light-hero__text::before { top: 60px; bottom: auto; height: 72%; }
  .gp-light-hero__visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .gp-light-hero__dots { width: 56%; }
}
@media (max-width: 640px) {
  .gp-light-hero {
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .gp-light-hero__title { font-size: clamp(40px, 11vw, 60px); }
  .gp-light-hero__text::before { width: 4px; top: 54px; height: 64%; }
  .gp-light-hero__lead {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .gp-light-hero__btn {
    padding: 14px 22px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .gp-light-hero__btn--solid { width: 100%; justify-content: center; }
  .gp-light-hero__btn--outline { width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-FEATURES — 3-column floating cards under the hero
   ════════════════════════════════════════════════════════════════ */
.gp-light-features {
  padding-top: 0 !important;
  padding-bottom: clamp(60px, 8vw, 100px);
  margin-top: clamp(-90px, -7vw, -60px); /* lift cards so they slightly overlap the hero */
  background: transparent;
}
.gp-light-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.gp-light-features__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 36px) clamp(24px, 2.4vw, 36px);
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.08), 0 2px 8px rgba(15, 15, 15, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gp-light-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(15, 15, 15, 0.12), 0 4px 12px rgba(15, 15, 15, 0.06);
}
.gp-light-features__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.gp-light-features__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-POURQUOI — Centered "why choose" block
   ════════════════════════════════════════════════════════════════ */
.gp-light-pourquoi {
  padding-top: clamp(40px, 6vw, 80px) !important;
  padding-bottom: clamp(80px, 10vw, 140px);
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url('../img/gp-real/white-architectural-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.gp-light-pourquoi__inner {
  max-width: 880px;
  margin: 0 auto;
}
.gp-light-pourquoi__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0 0 36px;
}
.gp-light-pourquoi__lead {
  font-family: 'Barlow', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.85;
  letter-spacing: 0;
  color: rgba(10, 10, 10, 0.78);
  max-width: 760px;
  margin: 0 auto 28px;
}
.gp-light-pourquoi__note {
  font-family: 'Barlow', 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.55);
  margin: 0 0 44px;
}
.gp-light-pourquoi__note em {
  font-style: italic;
  margin-right: 4px;
}
.gp-light-pourquoi__note a {
  color: inherit;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.gp-light-pourquoi__note a:hover { color: var(--gp-orange); }

.gp-light-pourquoi__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 56px;
  border-radius: 999px;
  background: var(--gp-orange);
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(255, 94, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.gp-light-pourquoi__cta:hover {
  background: #EE5400;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 94, 0, 0.38);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .gp-light-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gp-light-features { margin-top: -20px; }
}
@media (max-width: 640px) {
  .gp-light-features__card {
    padding: 22px 22px;
  }
  .gp-light-features__text { font-size: 14px; }
  .gp-light-pourquoi__title { font-size: clamp(34px, 9vw, 52px); }
  .gp-light-pourquoi__lead { font-size: 15px; line-height: 1.7; }
  .gp-light-pourquoi__cta {
    width: 100%;
    padding: 18px 28px;
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}


/* ════════════════════════════════════════════════════════════════
   Fix bande noire (version MINIMALE — sans toucher au body/loader)
   La cause : .gp-light-features avait background:transparent, et
   le fond sombre du body du template traversait. On peint juste
   les sections concernées en blanc, sans toucher à html/body.
   ════════════════════════════════════════════════════════════════ */

/* Section des 3 cartes : fond blanc explicite */
.gp-light-features {
  background-color: #FFFFFF !important;
}

/* Empty placeholder gp-light entre Pourquoi et Vimeo : 0 hauteur visuelle.
   IMPORTANT : on EXCLUT les sections About (hero/pillars/values/cta) et les
   sections Services/Partners/Newsletter qui ont leur propre padding — sinon
   ce reset les écrasait (spécificité 0,5,0 !important). */
.gp-light:not(.gp-light-hero):not(.gp-light-features):not(.gp-light-pourquoi):not(.gp-light-closing):not(.gp-about-hero):not(.gp-about-pillars):not(.gp-about-values):not(.gp-about-cta):not(.gp-light-services):not(.gp-light-partners):not(.gp-newsletter-light):not(.gp-partners-hero):not(.gp-partners-v2) {
  background-color: #FFFFFF !important;
  padding: 0 !important;
  min-height: 0 !important;
}
.gp-light:not(.gp-light-hero):not(.gp-light-features):not(.gp-light-pourquoi):not(.gp-light-closing):not(.gp-about-hero):not(.gp-about-pillars):not(.gp-about-values):not(.gp-about-cta):not(.gp-light-services):not(.gp-light-partners):not(.gp-newsletter-light):not(.gp-partners-hero):not(.gp-partners-v2) .gp-container {
  padding: 0 !important;
  min-height: 0 !important;
}

/* Les 4 sections du template entre Pourquoi et Newsletter — fond blanc + texte sombre */
.block-vimeo-player-home,
.section-clients-marquee,
.section-home-work-intro,
.section-more-work-slider {
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #0A0A0A !important;
}

.block-vimeo-player-home h1, .block-vimeo-player-home h2, .block-vimeo-player-home h3,
.block-vimeo-player-home p, .block-vimeo-player-home span, .block-vimeo-player-home a,
.section-clients-marquee h1, .section-clients-marquee h2, .section-clients-marquee h3,
.section-clients-marquee p, .section-clients-marquee span, .section-clients-marquee a,
.section-home-work-intro h1, .section-home-work-intro h2, .section-home-work-intro h3,
.section-home-work-intro p, .section-home-work-intro span, .section-home-work-intro a,
.section-more-work-slider h1, .section-more-work-slider h2, .section-more-work-slider h3,
.section-more-work-slider p, .section-more-work-slider span, .section-more-work-slider a {
  color: #0A0A0A !important;
}

.block-vimeo-player-home .outline,
.section-home-work-intro .outline,
.section-more-work-slider .outline {
  -webkit-text-stroke-color: #0A0A0A !important;
  color: transparent !important;
}

/* Fixed-backgrounds sombres dans ces sections → blanc + invisible */
.block-vimeo-player-home .fixed-background,
.section-clients-marquee .fixed-background,
.section-home-work-intro .fixed-background,
.section-more-work-slider .fixed-background {
  background-color: #FFFFFF !important;
  background-image: none !important;
}
.block-vimeo-player-home .fixed-background .texture,
.section-clients-marquee .fixed-background .texture,
.section-home-work-intro .fixed-background .texture,
.section-more-work-slider .fixed-background .texture {
  background-image: none !important;
  opacity: 0 !important;
}

/* Overlays sombres au-dessus de la vidéo Vimeo → neutralisés */
.block-vimeo-player-home .vimeo-overlay-dark,
.block-vimeo-player-home .overlay.vimeo-overlay-dark {
  background-color: transparent !important;
  opacity: 0 !important;
}


/* Centrer la grille des 3 cartes au milieu (largeur réduite) */
.gp-light-features__grid {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* Positionner les 3 cartes au centre de la zone entre le hero et "Pourquoi" */
.gp-light-features {
  margin-top: 0 !important;
  padding-top: clamp(70px, 7vw, 110px) !important;
  padding-bottom: clamp(70px, 7vw, 110px) !important;
}


/* Hero photo (cutout PNG transparent) — agrandir + ne pas couper les joueuses */
.gp-light-hero__visual {
  max-width: 700px !important;
  aspect-ratio: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-light-hero__photo {
  position: relative;
  z-index: 2;
  width: 100% !important;
  margin: 0 auto !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-light-hero__photo img {
  width: 100% !important;
  height: auto !important;
  max-height: 760px;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

/* Le pattern de points reste derrière, mais on le réduit un peu pour mieux centrer la photo */
.gp-light-hero__dots {
  top: 8% !important;
  left: -2% !important;
  width: 55% !important;
}

@media (max-width: 1024px) {
  .gp-light-hero__visual { max-width: 520px !important; }
  .gp-light-hero__photo img { max-height: 560px; }
}
@media (max-width: 640px) {
  .gp-light-hero__visual { max-width: 100% !important; }
  .gp-light-hero__photo img { max-height: 480px; }
}


/* Encore plus grand */
.gp-light-hero__visual { max-width: 820px !important; }
.gp-light-hero__photo img { max-height: 900px !important; }

@media (max-width: 1024px) {
  .gp-light-hero__visual { max-width: 600px !important; }
  .gp-light-hero__photo img { max-height: 640px !important; }
}
@media (max-width: 640px) {
  .gp-light-hero__photo img { max-height: 520px !important; }
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-PILLARS — 5 piliers Game Point en stack éditorial
   Numéro + emoji + titre + lead + liste à puces orange + tagline
   ════════════════════════════════════════════════════════════════ */
.gp-light-pillars {
  padding-top: clamp(60px, 7vw, 110px) !important;
  padding-bottom: clamp(80px, 9vw, 140px) !important;
  background-color: #FFFFFF !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
}
.gp-light-pillars .gp-container {
  max-width: 1100px;
}

.gp-light-pillars__item {
  padding: clamp(40px, 5vw, 72px) 0;
}
.gp-light-pillars__item:first-child { padding-top: 0; }
.gp-light-pillars__item:last-child { padding-bottom: 0; }

.gp-light-pillars__divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.12) 20%, rgba(10,10,10,0.12) 80%, transparent);
  margin: 0;
}

.gp-light-pillars__head {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.gp-light-pillars__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gp-orange);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gp-orange);
}
.gp-light-pillars__emoji {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}
.gp-light-pillars__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
  flex: 1 1 60%;
  min-width: 0;
}
.gp-light-pillars__title em {
  font-style: normal;
  color: var(--gp-orange);
}

.gp-light-pillars__lead {
  font-family: 'Barlow', 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(10,10,10,0.75);
  max-width: 780px;
  margin: 0 0 22px;
}
.gp-light-pillars__lead strong {
  color: #0A0A0A;
  font-weight: 700;
}

.gp-light-pillars__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px clamp(16px, 2vw, 40px);
  max-width: 720px;
}
.gp-light-pillars__list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.gp-light-pillars__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gp-orange);
  transform: rotate(45deg);
}

.gp-light-pillars__tagline {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: clamp(14px, 1.05vw, 17px);
  color: rgba(10,10,10,0.65);
  margin: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(10,10,10,0.08);
  display: inline-block;
}

/* Pilier 5 — closing triplet */
.gp-light-pillars__item--final .gp-light-pillars__lead {
  font-size: clamp(16px, 1.25vw, 20px);
  max-width: 820px;
}
.gp-light-pillars__triplet {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 26px;
}
.gp-light-pillars__triplet span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0A0A0A;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--gp-orange);
}

/* Responsive */
@media (max-width: 720px) {
  .gp-light-pillars__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gp-light-pillars__num { font-size: 11px; }
  .gp-light-pillars__triplet span { font-size: 14px; }
}


/* Continuité visuelle hero ↔ cards ↔ piliers ↔ pourquoi : même fond architectural */
.gp-light-features,
.gp-light-pillars {
  background-color: #FFFFFF !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: scroll !important;
}

/* Le hero garde le même overlay (déjà à 0.92 → on l'aligne à 0.86 pour uniformité) */
.gp-light-hero,
.gp-light-pourquoi {
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-SERVICES — Grille 6 services Game Point
   Cards avec mini-vidéo en hover (poster = fond architectural)
   ════════════════════════════════════════════════════════════════ */
.gp-light-services {
  padding-top: clamp(80px, 10vw, 140px) !important;
  padding-bottom: clamp(80px, 10vw, 140px) !important;
  background-color: #FFFFFF !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
}
.gp-light-services .gp-container { max-width: 1340px; }

.gp-light-services__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.gp-light-services__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gp-orange);
  margin: 0 0 18px;
}
.gp-light-services__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
}
.gp-light-services__title em {
  font-style: normal;
  color: var(--gp-orange);
}

/* Grille 3 colonnes desktop, 2 tablette, 1 mobile */
.gp-light-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}

.gp-light-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #0A0A0A;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 40px rgba(10,10,10,0.08);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), box-shadow 0.45s ease;
}
.gp-light-services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(10,10,10,0.18);
}

.gp-light-services__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gp-light-services__video,
.gp-light-services__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.gp-light-services__card:hover .gp-light-services__video,
.gp-light-services__card:hover .gp-light-services__media > img {
  transform: scale(1.05);
}
.gp-light-services__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,0) 35%, rgba(10,10,10,0.78) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.gp-light-services__card:hover .gp-light-services__overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.85) 100%);
}

.gp-light-services__info {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: clamp(20px, 2.2vw, 32px);
  color: #FFFFFF;
}
.gp-light-services__num {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gp-orange);
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gp-orange);
}
.gp-light-services__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: #FFFFFF;
}
.gp-light-services__name em {
  font-style: normal;
  color: var(--gp-orange);
}
.gp-light-services__sub {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Placeholder visuel pendant que la vidéo n'est pas encore branchée :
   pattern texturé en dégradé selon le numéro de carte */
.gp-light-services__card[data-service="entrainement-labo"] .gp-light-services__media { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); }
.gp-light-services__card[data-service="camps"] .gp-light-services__media           { background: linear-gradient(135deg, #FF5E00 0%, #B23800 100%); }
.gp-light-services__card[data-service="ligue"] .gp-light-services__media           { background: linear-gradient(135deg, #2a2a2a 0%, #0A0A0A 100%); }
.gp-light-services__card[data-service="aau-elite"] .gp-light-services__media       { background: linear-gradient(135deg, #FF5E00 0%, #1a1a1a 100%); }
.gp-light-services__card[data-service="medias"] .gp-light-services__media          { background: linear-gradient(135deg, #1a1a1a 0%, #FF5E00 100%); }
.gp-light-services__card[data-service="evenements"] .gp-light-services__media      { background: linear-gradient(135deg, #0A0A0A 0%, #2a2a2a 100%); }

/* Caché — pour la section Vimeo qu'on remplace */
.gp-hidden { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .gp-light-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gp-light-services__grid { grid-template-columns: 1fr; }
  .gp-light-services__card { aspect-ratio: 3 / 4; }
}


/* Encore plus grand — joueuses plein cadre */
.gp-light-hero__visual {
  max-width: 1000px !important;
  width: 100% !important;
}
.gp-light-hero__photo img {
  max-height: 1100px !important;
}

/* Pattern de points orange agrandi en proportion */
.gp-light-hero__dots {
  top: 6% !important;
  left: -8% !important;
  width: 62% !important;
}

@media (max-width: 1024px) {
  .gp-light-hero__visual { max-width: 700px !important; }
  .gp-light-hero__photo img { max-height: 760px !important; }
}
@media (max-width: 640px) {
  .gp-light-hero__visual { max-width: 100% !important; }
  .gp-light-hero__photo img { max-height: 580px !important; }
  .gp-light-hero__dots { width: 56% !important; left: -4% !important; }
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-PARTNERS — Marquee premium
   - Section header centré (eyebrow + titre)
   - Logos en cartes avec ombre douce et bordure subtile
   - Hover = élévation + scale léger + ombre renforcée
   - Animation infinie lente, mask gradient sur les bords
   ════════════════════════════════════════════════════════════════ */
.gp-light-partners {
  padding-top: clamp(80px, 9vw, 140px) !important;
  padding-bottom: clamp(80px, 9vw, 140px) !important;
  overflow: hidden;
  background-color: #FFFFFF !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
}
.gp-light-partners .gp-container { max-width: 1480px; }

.gp-light-partners__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.gp-light-partners__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gp-orange);
  margin: 0 0 18px;
}
.gp-light-partners__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
}
.gp-light-partners__title em {
  font-style: normal;
  color: var(--gp-orange);
}

.gp-light-partners__track {
  display: flex;
  gap: clamp(28px, 3vw, 48px);
  width: max-content;
  animation: gpPartnersScroll 40s linear infinite;
  will-change: transform;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.gp-light-partners:hover .gp-light-partners__track,
.gp-light-partners:focus-within .gp-light-partners__track {
  animation-play-state: paused;
}

.gp-light-partners__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  flex-shrink: 0;
}

/* Carte par logo — fond blanc, bordure subtile, ombre douce */
.gp-light-partners__card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 19vw, 280px);
  height: clamp(110px, 11vw, 160px);
  padding: clamp(20px, 2vw, 32px) clamp(28px, 2.6vw, 44px);
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 18px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.03),
    0 12px 28px -8px rgba(10, 10, 10, 0.08);
  transition:
    transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease;
}
.gp-light-partners__card::after {
  /* Glow orange sur hover — accent de marque */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.gp-light-partners__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(10, 10, 10, 0.04),
    0 28px 52px -12px rgba(255, 94, 0, 0.18);
  border-color: rgba(10, 10, 10, 0.1);
}
.gp-light-partners__card:hover::after {
  border-color: rgba(255, 94, 0, 0.35);
}
.gp-light-partners__card:hover img {
  transform: scale(1.06);
}

.gp-light-partners__card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

/* Tailles spécifiques par logo (chaque brand a son optimum) */
.gp-light-partners__card--p8 img {
  max-height: 38px;
}
.gp-light-partners__card--gestev img {
  /* Icon carré 69x69 — l'agrandir un peu */
  max-height: 72px;
  width: 72px;
  border-radius: 12px;
}

@keyframes gpPartnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gp-light-partners__track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .gp-light-partners__group[aria-hidden="true"] { display: none; }
}

@media (max-width: 1024px) {
  .gp-light-partners__card {
    width: clamp(180px, 28vw, 240px);
    height: clamp(100px, 14vw, 140px);
  }
}

@media (max-width: 640px) {
  .gp-light-partners__track { animation-duration: 26s; gap: 18px; padding: 10px 0; }
  .gp-light-partners__group { gap: 18px; }
  .gp-light-partners__card {
    width: 170px;
    height: 100px;
    padding: 18px 22px;
    border-radius: 14px;
  }
  .gp-light-partners__card--p8 img { max-height: 32px; }
  .gp-light-partners__card--gestev img { max-height: 60px; width: 60px; }
}


/* ════════════════════════════════════════════════════════════════
   Titres "SELECTED CASES" style — Bulevar Poster condensé du template
   Appliqué sur les titres des sections Partenaires et Services
   ════════════════════════════════════════════════════════════════ */
.gp-light-partners__title,
.gp-light-services__title {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  line-height: 0.85 !important;
  letter-spacing: -0.005em !important;
  text-transform: uppercase !important;
  font-size: clamp(64px, 11vw, 200px) !important;
}
.gp-light-partners__title em,
.gp-light-services__title em {
  font-style: normal;
  color: var(--gp-orange);
}

@media (max-width: 640px) {
  .gp-light-partners__title,
  .gp-light-services__title {
    font-size: clamp(48px, 14vw, 88px) !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   GP-LIGHT-POURQUOI-XL — Split layout style "SELECTED CASES"
   Texte à gauche, titre massif Bulevar Poster à droite
   ════════════════════════════════════════════════════════════════ */
.gp-light-pourquoi-xl {
  padding-top: clamp(100px, 12vw, 180px) !important;
  padding-bottom: clamp(100px, 12vw, 180px) !important;
  background-color: #FFFFFF !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
}
.gp-light-pourquoi-xl .gp-container { max-width: 1480px; }

.gp-light-pourquoi-xl__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* Colonne texte */
.gp-light-pourquoi-xl__col--text {
  padding-top: clamp(8px, 2vw, 32px);
}
.gp-light-pourquoi-xl__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gp-orange);
  margin: 0 0 28px;
}
.gp-light-pourquoi-xl__lead {
  font-family: 'Barlow', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: rgba(10,10,10,0.78);
  max-width: 480px;
  margin: 0 0 32px;
}
.gp-light-pourquoi-xl__note {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(10,10,10,0.55);
  margin: 0 0 40px;
  padding: 14px 0;
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  max-width: 480px;
}
.gp-light-pourquoi-xl__note em {
  font-style: italic;
  color: #0A0A0A;
  margin-right: 6px;
  font-weight: 600;
}
.gp-light-pourquoi-xl__note a {
  color: inherit;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}
.gp-light-pourquoi-xl__note a:hover { color: var(--gp-orange); }

.gp-light-pourquoi-xl__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid #0A0A0A;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.gp-light-pourquoi-xl__cta:hover {
  background: var(--gp-orange);
  border-color: var(--gp-orange);
  transform: translateY(-3px);
}
.gp-light-pourquoi-xl__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  color: #0A0A0A;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.gp-light-pourquoi-xl__cta:hover .gp-light-pourquoi-xl__arrow {
  transform: translateX(4px) rotate(-2deg);
}

/* Colonne titre — Bulevar Poster massif */
.gp-light-pourquoi-xl__col--title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gp-light-pourquoi-xl__title {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
  text-align: right;
}
.gp-light-pourquoi-xl__title em {
  font-style: normal;
  color: var(--gp-orange);
}

/* Responsive */
@media (max-width: 1024px) {
  .gp-light-pourquoi-xl__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gp-light-pourquoi-xl__col--title { justify-content: flex-start; }
  .gp-light-pourquoi-xl__title { text-align: left; }
}
@media (max-width: 640px) {
  .gp-light-pourquoi-xl {
    padding-top: clamp(64px, 10vw, 100px) !important;
    padding-bottom: clamp(64px, 10vw, 100px) !important;
  }
  .gp-light-pourquoi-xl__title { font-size: clamp(56px, 16vw, 96px); }
  .gp-light-pourquoi-xl__cta {
    padding: 18px 24px;
    font-size: 12px;
    letter-spacing: 0.16em;
    gap: 12px;
  }
  .gp-light-pourquoi-xl__arrow { width: 28px; height: 28px; }
}


/* Petite ligne italique sous le paragraphe Pourquoi choisir Game Point */
.section-home-work-intro .gp-pourquoi-note {
  font-style: italic;
  font-size: 14px;
  opacity: 0.75;
  margin-top: 16px;
}
.section-home-work-intro .gp-pourquoi-note em {
  font-weight: 600;
  margin-right: 4px;
}
.section-home-work-intro .gp-pourquoi-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-home-work-intro .gp-pourquoi-note a:hover { color: var(--gp-orange); }


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — FILET DE SÉCURITÉ GLOBAL  (chargé en dernier = priorité)
   • aucun défilement horizontal
   • médias jamais plus larges que leur conteneur
   • aucun mot tronqué / texte hors conteneur
   ═══════════════════════════════════════════════════════════════════════ */
html, body { overflow-x: clip; max-width: 100%; }
img, svg, video, picture, canvas, iframe, source { max-width: 100%; height: auto; }
/* exceptions : médias en object-fit qui doivent remplir (ratio géré par le parent) */
.gp-media-card__img img, .gp-feat__media img, .gp-hero-players__duo,
.gp-allstar-slide, .gp-allstar-card__media img, .stacked-images .single-stacked-image img,
.gp-light-services__poster, video { height: 100%; }
h1, h2, h3, h4, h5, h6, p, a, li, span, strong, em, blockquote, figcaption, label, button, dd, dt {
  overflow-wrap: break-word;
}

/* Pilliers "Notre méthode" — collapse propre en 1 colonne empilée sur mobile.
   On abandonne la grille (display:flex colonne) pour neutraliser les grid-column
   résiduels (1/7, 1/4, 4/7…) hérités du layout tablette qui faisaient déborder
   les cards 02/03/05 et les écrasaient à 0px. En flex, grid-column est ignoré. */
@media (max-width: 768px) {
  .gpv4-pillars .gpv4-pillars__grid,
  section.gpv4-pillars .gpv4-pillars__grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .gpv4-pillars .gpv4-pillars__grid > .gpv4-pillars__card,
  .gpv4-pillars .gpv4-pillars__card--xl,
  .gpv4-pillars .gpv4-pillars__card--md,
  .gpv4-pillars .gpv4-pillars__card--lg,
  .gpv4-pillars .gpv4-pillars__card--closing {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: clamp(320px, 64vw, 440px) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   HARDENING RESPONSIVE — collapse propre + reset des breakouts (mobile/tablette)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Sections services : pas d'indentation gauche → aligné au bord, plus de place */
  .gp-svc__body { padding-left: 0 !important; }
  /* Galerie médias : annuler le breakout desktop (sinon débordement) */
  #medias .gp-svc-container { max-width: 100% !important; }
  #medias .gp-svc__body > .gp-media-grid { margin-left: 0 !important; width: 100% !important; }
  /* Feature (affiche + infos) → empilé */
  .gp-feat { grid-template-columns: 1fr !important; }
  .gp-feat__media { max-width: 440px; }
  /* Lignes clé/valeur → empilées */
  .gp-info-row { grid-template-columns: 1fr !important; gap: 3px !important; }
  /* Formulaire → 1 colonne */
  .gp-contact-form__row { grid-template-columns: 1fr !important; }
  /* Callout → empilé */
  .gp-callout { flex-direction: column !important; align-items: flex-start !important; }
  /* Footer → 2 colonnes max */
  .gp-footer__top { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .gp-svc__cards--2, .gp-svc__cards--3, .gp-media-grid,
  .gp-about-values__grid, .gp-light-features__grid,
  .gp-light-services__grid { grid-template-columns: 1fr !important; }
  .gp-facts, .gp-facts--3 { grid-template-columns: repeat(2, 1fr) !important; }
  .gp-cal, .gp-weeks { grid-template-columns: repeat(2, 1fr) !important; }
  .gp-footer__top { grid-template-columns: 1fr 1fr !important; gap: 24px 16px !important; }
  .gp-sched-list__item { flex-wrap: wrap !important; }
}

/* Titre hero : ne JAMAIS rogner — les lignes peuvent passer à la ligne au lieu d'être coupées */
.gp-light-hero__title span,
.gp-light-hero__title > span {
  white-space: normal !important;
  overflow: visible !important;
}
.gp-light-hero__title .gpv2-word { white-space: normal !important; }

/* ═══════════════════════════════════════════════════════════════════════
   Development League — légendes de section + consentement + case à cocher
   (formulaire sur fond sombre .gp-reg)
   ═══════════════════════════════════════════════════════════════════════ */
.gp-form-legend {
  margin: clamp(22px, 2.4vw, 30px) 0 16px;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.gp-reg__consent-text {
  margin: 0 0 16px;
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.gp-contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  cursor: pointer;
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.gp-contact-form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.gp-contact-form__check input[type="checkbox"]:hover {
  border-color: rgba(255, 94, 0, 0.5);
}
.gp-contact-form__check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.gp-contact-form__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.gp-contact-form__check input[type="checkbox"]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.25);
}
.gp-contact-form__check .gp-req { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════
   Bannière sponsor (page Partenaires) — Gestev / Coupe du Monde à Québec
   ═══════════════════════════════════════════════════════════════════════ */
.gp-sponsor-banner {
  padding: clamp(22px, 3.2vw, 48px) 0;
}
.gp-sponsor-banner__link {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 44px -20px rgba(10, 10, 10, 0.45);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.gp-sponsor-banner__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px -20px rgba(10, 10, 10, 0.55);
}
.gp-sponsor-banner__link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.gp-sponsor-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   Sélecteur de langue FR / EN — pastille fixe en haut à droite
   (à gauche du hamburger : top 24px / right 24px, ⌀56px)
   ═══════════════════════════════════════════════════════════════════════ */
.gp-lang {
  position: fixed;
  top: 31px;
  right: 92px;
  z-index: 9000;
}
.gp-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 17px;
  box-sizing: border-box;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.22);
  transition: border-color .3s ease, background .3s ease, transform .25s ease, box-shadow .3s ease;
}
.gp-lang__toggle:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 94, 0, 0.34);
}
.gp-lang__opt {
  opacity: 0.5;
  transition: opacity .25s ease, color .25s ease;
}
.gp-lang__opt.is-active {
  opacity: 1;
  color: var(--accent);
}
.gp-lang__toggle:hover .gp-lang__opt { opacity: 0.85; }
.gp-lang__toggle:hover .gp-lang__opt.is-active { color: #fff; opacity: 1; }
.gp-lang__slash { opacity: 0.4; font-weight: 400; }

/* Masquer la pastille quand le menu plein écran est ouvert */
body[data-navigation-status="active"] .gp-lang {
  opacity: 0;
  pointer-events: none;
}

/* Tablette/mobile : aligner la pastille avec le hamburger repositionné (top:16 · right:16 · ⌀50) */
@media (max-width: 768px) {
  .gp-lang { top: 22px; right: 76px; }
  .gp-lang__toggle { height: 38px; padding: 0 13px; font-size: 12px; letter-spacing: 0.12em; gap: 5px; }
}
/* Très petits écrans */
@media (max-width: 360px) {
  .gp-lang { right: 72px; }
  .gp-lang__toggle { height: 36px; padding: 0 10px; font-size: 11px; gap: 4px; letter-spacing: 0.08em; }
}


/* ═══════════════════════════════════════════════════════════════════════
   ALL-STAR — Prochaine édition (feature billetterie, section claire)
   ═══════════════════════════════════════════════════════════════════════ */
.gp-allstar-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border: 1px solid rgba(255, 94, 0, 0.28);
  border-radius: 22px;
  padding: clamp(16px, 2.4vw, 30px);
  box-shadow: 0 1px 2px rgba(10,10,10,0.02), 0 24px 60px -30px rgba(255,94,0,0.28);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease, border-color .4s ease;
  margin-bottom: clamp(30px, 4vw, 52px);
}
.gp-allstar-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 94, 0, 0.5);
  box-shadow: 0 8px 18px rgba(10,10,10,0.06), 0 40px 82px -28px rgba(255,94,0,0.36);
}
.gp-allstar-feature__posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 16px);
}
.gp-allstar-feature__posters img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: linear-gradient(160deg, #15233f 0%, #0c1526 100%);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.gp-allstar-feature:hover .gp-allstar-feature__posters img { transform: scale(1.03); }
.gp-allstar-feature__body { min-width: 0; }
.gp-allstar-feature__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255,94,0,.4);
}
.gp-allstar-feature__title {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 14px 0 10px;
}
.gp-allstar-feature__title sup { font-size: .55em; }
.gp-allstar-feature__desc {
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.6;
  color: rgba(10,10,10,0.64);
  margin: 0 0 18px;
}
.gp-allstar-feature__games {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gp-allstar-feature__games li {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 15px;
  background: rgba(10,10,10,0.035);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.gp-allstar-feature__time {
  flex: 0 0 auto;
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 19px; color: var(--accent);
  min-width: 54px;
}
.gp-allstar-feature__match {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15.5px; letter-spacing: .01em; color: #0A0A0A;
}
.gp-allstar-feature__match strong { text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.gp-allstar-feature__match em { font-style: normal; color: rgba(10,10,10,0.5); }
.gp-allstar-feature__venue {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13.5px; letter-spacing: .03em; line-height: 1.5;
  color: rgba(10,10,10,0.6);
  margin: 0 0 20px;
}
.gp-allstar-feature__cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 10px 26px -8px rgba(255,94,0,.5);
  transition: gap .3s ease, background .3s ease;
}
.gp-allstar-feature:hover .gp-allstar-feature__cta { gap: 13px; background: #ff6f1a; }
@media (max-width: 760px) {
  .gp-allstar-feature { grid-template-columns: 1fr; gap: 22px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   INSCRIPTION — message de confirmation après envoi (Ligue de développement)
   ═══════════════════════════════════════════════════════════════════════ */
.gp-contact-form.is-success > *:not(.gp-contact-form__success) { display: none !important; }
.gp-contact-form__success { display: none; }
.gp-contact-form.is-success .gp-contact-form__success {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: clamp(26px, 4vw, 46px);
  background: linear-gradient(165deg, #ffffff 0%, #fff6f0 100%);
  border: 1px solid rgba(255, 94, 0, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 60px -34px rgba(255, 94, 0, 0.42);
  animation: gpRegSuccessIn .55s cubic-bezier(.22,1,.36,1) both;
}
@keyframes gpRegSuccessIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.gp-contact-form__success-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 26px -8px rgba(255, 94, 0, 0.55);
  margin-bottom: 4px;
}
.gp-contact-form__success-title {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #0A0A0A;
  margin: 0;
}
.gp-contact-form__success p {
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.62;
  color: rgba(10, 10, 10, 0.68);
  margin: 0;
  max-width: 62ch;
}
.gp-contact-form__success-foot {
  font-weight: 700 !important;
  color: var(--accent) !important;
  margin-top: 2px !important;
}
