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


:root {
  --bg: #ffffff;
  --bg-light: #f4f6fb;
  --dark: #0f1623;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --text: #1a202c;
  --muted: #64748b;
  --border: #e2e8f0;
  --grid: rgba(100,116,139,0.10);
  --inner: #f1f4f9;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}


/* ── HEADER ── */
    .header-bg {
      background: var(--bg-light);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 16px rgba(15,22,35,0.06);
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 68px;
    }

    /* ── LOGO ── */
    .logo {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.18rem;
      color: var(--dark);
      letter-spacing: -0.01em;
    }

    .logo-word {
      color: var(--dark);
    }

    .logo-badge {
      background: var(--blue);
      color: #fff;
      border-radius: 8px;
      padding: 2px 8px 3px;
      font-size: 1rem;
      font-weight: 800;
    }

    /* ── NAV DESKTOP ── */
    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    nav.desktop-nav a {
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--muted);
      padding: 7px 14px;
      border-radius: 10px;
      transition: color 0.18s, background 0.18s;
    }

    nav.desktop-nav a:hover {
      color: var(--blue);
      background: rgba(37,99,235,0.07);
    }

    nav.desktop-nav a.active {
      color: var(--blue);
      background: rgba(37,99,235,0.10);
    }

    /* ── RIGHT SIDE ── */
    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* CTA button — same as GeniusPay "Rejoindre" */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 2px 14px rgba(37,99,235,0.25);
    }

    .btn-cta:hover {
      background: #1d4ed8;
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(37,99,235,0.35);
    }

    .btn-cta .arrow {
      font-size: 1rem;
      line-height: 1;
    }

    /* ── OUTLINE BUTTON ── */
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--dark);
      font-family: 'Sora', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }

    .btn-outline:hover {
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-1px);
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 7px 10px;
      cursor: pointer;
      color: var(--dark);
      font-size: 1.2rem;
      line-height: 1;
      transition: border-color 0.2s;
    }

    .hamburger:hover { border-color: var(--blue); color: var(--blue); }

    /* ── MOBILE MENU ── */
    #mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 8px 16px 16px;
      animation: slideDown 0.22s ease;
    }

    #mobile-menu.open { display: flex; }

    #mobile-menu a {
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      padding: 13px 12px;
      border-radius: 10px;
      transition: background 0.15s, color 0.15s;
    }

    #mobile-menu a:hover {
      background: rgba(37,99,235,0.07);
      color: var(--blue);
    }

    #mobile-menu .mobile-cta {
      margin-top: 8px;
      background: var(--blue);
      color: #fff;
      text-align: center;
      border-radius: 12px;
      padding: 13px;
      font-weight: 700;
    }

    #mobile-menu .mobile-cta:hover {
      background: #1d4ed8;
      color: #fff;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav.desktop-nav { display: none; }
      .btn-cta.desktop-only { display: none; }
      .hamburger { display: block; }
    }

    @media (min-width: 769px) {
      #mobile-menu { display: none !important; }
    }

/* ── GRID BACKGROUND (dots) ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* subtle radial glow at top center */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ── BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 36px;
  animation: fadeDown 0.6s ease both;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.35);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59,130,246,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(59,130,246,0.10); }
}

/* ── TITLE ── */
.hero-title {
  font-size: clamp(1.5rem, 8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 28px;
  animation: fadeDown 0.7s 0.1s ease both;
}

.hero-title span {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 2px 18px 6px;
  margin-left: 4px;
}

/* ── TYPING SUBTITLE ── */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
  min-height: 2em;
  animation: fadeDown 0.7s 0.2s ease both;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--blue);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ── DESCRIPTION ── */
.hero-desc {
  max-width: 560px;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeDown 0.7s 0.3s ease both;
}

/* ── BUTTONS ── */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
  animation: fadeDown 0.7s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 60px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #1e2d45; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 60px;
  border-radius: 14px;
  border: 2px solid #d1d5db;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ── STATS ── */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeDown 0.7s 0.55s ease both;
}

.stat-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 10px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  min-width: 130px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat-value span {
  font-size: 1.1rem;
  color: var(--blue);
}

.stat-label {
  font-size: 0.50rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}


.vog{
  position: relative;
  overflow: hidden;
  z-index: 0;

  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*BOOKMAKERS*/
.bookmakers-section {
      padding: 80px 24px 90px;
      background-color: var(--bg-light);
      background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .section-title {
      text-align: center;
      font-size: clamp(0.78rem, 1.8vw, 0.92rem);
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 56px;
    }

    .logos-row {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    /* Circle container */
    .logo-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #e8eaef;
      border: 1px solid #dde1ea;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      filter: grayscale(1) brightness(0.88);
      opacity: 0.78;
      transition: filter 0.3s, opacity 0.3s, transform 0.25s, box-shadow 0.3s;
      cursor: default;
      padding: 18px;
    }

    .logo-circle:hover {
      filter: grayscale(0) brightness(1);
      opacity: 1;
      transform: translateY(-5px) scale(1.08);
      box-shadow: 0 14px 36px rgba(0,0,0,0.14);
      background: #fff;
    }

    .logo-circle img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: contain;
    }

    /* Fallback text for broken images */
    .logo-fallback {
      font-size: 0.72rem;
      font-weight: 800;
      color: #555;
      text-align: center;
      letter-spacing: 0.04em;
      display: none;
    }

    .logo-circle img.error + .logo-fallback { display: block; }

    @media (max-width: 560px) {
      .logo-circle { width: 60px; height: 60px; padding: 14px; }
    }



/* ── SECTION ── */
.pricing-section {
  padding: 90px 24px 100px;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pricing-inner {
  max-width: 560px;
  margin: 0 auto;
}

/* ── HEADING ── */
.pricing-heading {
  margin-bottom: 12px;
}

.pricing-heading h3 {
  font-size: clamp(2rem, 6vw, 2.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--dark);
}

.pricing-heading h3 .highlight {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 2px 14px 5px;
}

.pricing-heading p {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CARD ── */
.pricing-card {
  margin-top: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(15,22,35,0.07);
}

/* TOP BLOCK */
.card-top {
  padding: 34px 34px 28px;
  border-bottom: 1px solid var(--border);
}

.card-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.price-big {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.price-desc {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-fixed {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

.price-plus {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.price-fixed-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}

.price-fixed-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CHECKLIST */
.card-features {
  padding: 28px 34px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--muted);
  font-weight: 500;
}

.feat-item .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
}

/* CALCUL BLOCK */
.card-calc {
  padding: 30px 34px 34px;
}

.calc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

.calc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.calc-row:last-of-type { border-bottom: none; }

.calc-key {
  color: var(--muted);
  font-weight: 500;
}

.calc-val {
  font-weight: 700;
  color: var(--dark);
}

/* RESULT */
.calc-result {
  background: var(--inner);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 26px;
}

.calc-result .res-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.calc-result .res-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

/* CTA */
.btn-cta-full {
  display: block;
  width: 100%;
  background: var(--dark);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-full:hover { background: #1e2d45; transform: translateY(-2px); }

/* TRUST BADGES */
.trust-badges {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 36px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}


/*CARTES CASINO & SPORTS
/* ══ CARD ══ */
    .main-card{
      font-family: 'Sora', sans-serif;
      background: #f4f6fb;
      padding: 40px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .pred-card {
      width: 100%;
      max-width: 540px;
      background: #161d2e;
      border-radius: 24px;
      padding: 28px 30px 30px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.22);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .pred-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 56px rgba(0,0,0,0.30);
    }

    /* Subtle glow in top-left corner */
    .pred-card::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.12;
    }
    .card-casino::before  { background: radial-gradient(circle, #f59e0b, transparent 70%); }
    .card-sports::before  { background: radial-gradient(circle, #22c55e, transparent 70%); }

    /* ── TOP ROW : icon + badge ── */
    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 28px;
    }

    /* Icon box */
    .card-icon {
      width: 58px; height: 58px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .card-casino .card-icon  { background: #2e1f0a; }
    .card-sports .card-icon  { background: #0a2211; }

    .card-icon svg { width: 28px; height: 28px; }
    .card-casino  .card-icon svg { color: #f59e0b; }
    .card-sports  .card-icon svg { color: #22c55e; }

    /* Badge */
    .card-badge {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1.5px solid;
    }
    .card-casino .card-badge  { color: #f59e0b; border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.08); }
    .card-sports .card-badge  { color: #22c55e; border-color: rgba(34,197,94,0.35);  background: rgba(34,197,94,0.08); }

    /* ── TITLE ── */
    .card-title {
      font-size: 1.45rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 14px;
      line-height: 1.2;
    }

    /* ── DESC ── */
    .card-desc {
      font-size: 0.88rem;
      color: #7d8fa8;
      line-height: 1.75;
      margin-bottom: 30px;
    }

    /* ── CTA LINK ── */
    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 22px;
      width: 100%;
      transition: gap 0.2s;
    }
    .card-cta:hover { gap: 16px; }
    .card-cta .arrow {
      width: 30px; height: 30px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .card-cta:hover .arrow { transform: translateX(4px); }
    .card-casino  .card-cta .arrow { background: rgba(245,158,11,0.15); color: #f59e0b; }
    .card-sports  .card-cta .arrow { background: rgba(34,197,94,0.15);  color: #22c55e; }
    .card-cta .arrow svg { width: 14px; height: 14px; }

    /* ── STAT PILLS (optional row) ── */
    .card-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .stat-pill {
      font-size: 0.73rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      color: #94a3b8;
      border: 1px solid rgba(255,255,255,0.07);
    }



.footer{
  background: #161d2e;
}