/* -------------------------------------------------------
   Fonts (local)
------------------------------------------------------- */
@font-face {
    font-family: "Bricolage Grotesque";
    src: url("./assets/fonts/BricolageGrotesque.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Nunito Sans";
    src: url("./assets/fonts/NunitoSans.ttf") format("truetype");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
  }
  
  /* -------------------------------------------------------
     Base
  ------------------------------------------------------- */
  :root {
    --bg-1: #051a3b;
    --bg-2: #071f4a;
    --ink: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.68);
    --line: rgba(255, 255, 255, 0.10);
  
    --accent: #6fa0ff;
    --primary: #2a69ff;
    --primary-2: #1f55d6;
  
    --card: rgba(255, 255, 255, 0.10);
    --card-2: rgba(255, 255, 255, 0.14);
  
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
  
    --shadow-lg: 0 18px 55px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    margin: 0;
    font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #0b0f18;
  }
  
  /* -------------------------------------------------------
     Layout
  ------------------------------------------------------- */
  .page {
    min-height: 100vh;
    padding: 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(1200px 700px at 20% 20%, rgba(117, 148, 255, 0.20), transparent 55%), linear-gradient(135deg, var(--bg-1), var(--bg-2));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .hero {
    position: relative;
    width: min(1220px, 100%);
    min-height: 640px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: radial-gradient(1200px 700px at 20% 20%, rgba(117, 148, 255, 0.20), transparent 55%),
      linear-gradient(135deg, var(--bg-1), var(--bg-2));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* Subtle grid */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.35;
    pointer-events: none;
  }
  
  /* Waves / purple ribbons */
  .hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .hero__bg::before,
  .hero__bg::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 70%;
    left: -20%;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.9;
  }
  
  .hero__bg::before {
    top: -28%;
    background: radial-gradient(closest-side, rgba(167, 111, 255, 0.42), rgba(167, 111, 255, 0) 70%);
    transform: rotate(-6deg);
  }
  
  .hero__bg::after {
    bottom: -35%;
    background: radial-gradient(closest-side, rgba(134, 92, 255, 0.35), rgba(134, 92, 255, 0) 70%);
    transform: rotate(8deg);
  }
  
  /* -------------------------------------------------------
     Top bar
  ------------------------------------------------------- */
  .hero__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 34px 12px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .brand img {
    display: block;
    height: 144px;
    width: auto;
    opacity: 0.95;
  }
  
  .brand__partner img {
    height: 48px;
    opacity: 0.92;
  }
  
  /* -------------------------------------------------------
     Content grid
  ------------------------------------------------------- */
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 18px 34px 34px;
    display: grid;
    grid-template-columns: 1.20fr 0.80fr;
    gap: 6px;
    align-items: center;
  }
  
  .hero__left {
    position: relative;
    padding-right: 8px;
  }
  
  .hero__title {
    margin: 0 0 10px;
    font-family: "Bricolage Grotesque", "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }
  
  .text-accent {
    color: var(--accent);
    text-shadow: 0 0 0 rgba(0,0,0,0);
  }
  
  .hero__subtitle {
    margin: 0 0 14px;
    font-size: 30px;
    color: var(--muted);
    font-weight: 100;
    font-family: 'Nunito Sans';
  }
  
  .hero__lead {
    margin: 0 0 18px;
    font-family:'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.1;
    color: rgba(255, 255, 255, 1);
  }
  
  /* -------------------------------------------------------
     Buttons
  ------------------------------------------------------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    padding: 10px 16px;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
    user-select: none;
    white-space: nowrap;
    cursor:pointer;
  }
  
  .btn:active {
    transform: translateY(1px);
  }
  
  .btn--primary {
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 22px rgba(24, 74, 180, 0.35);
  }
  
  .btn--primary:hover{
    opacity: 1;
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 28px rgba(24, 74, 180, 0.45);
  }
  
  .btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 9px 14px;
  }
  
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
  }
  
  /* -------------------------------------------------------
     Actions + bonus line
  ------------------------------------------------------- */
  .hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  
  .hero__bonus {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }
  
  .hero__bonusIcon {
    width: 18px;
    height: 18px;
    display: inline-block;
  }
  
  /* Si tu préfères ton PNG emoji au lieu de 🎁 :
  .hero__bonusIcon{
    background: url("./img/emoji-gift.png") center/contain no-repeat;
  }
  .hero__bonusIcon::before{ content:""; }
  */
  
  /* -------------------------------------------------------
     Proof points
  ------------------------------------------------------- */
  .hero__proof {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .hero__proofItem {
    position: relative;
    padding-left: 14px;
  }
  
  .hero__proofItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
  }

  /* -------------------------------------------------------
   En ce moment
------------------------------------------------------- */

.hero__current{
    width: 420px;
    background: #ffffff;
    color: #0b1c3f;
    border-radius: 18px;
    padding: 12px 18px 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
    position:relative;
  }
  
  
  .hero__currentContent h3{
    margin: 8px 0 12px;
    font-family: "Bricolage Grotesque";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
  }
  .hero__currentContent h3 span{
    color:var(--accent);
    font-weight: 600;
  }
  
  
  .hero__currentContent ul{
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
  }
  
  .hero__currentContent li{
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
  }
  
  .hero__currentContent li strong{
    font-weight: 800;
    color: var(--accent);
  }
  
  .hero__currentContent li span{
    color: #1c2b55;
    line-height: 1.35;
  }
  
  .hero__currentNote{
    margin: 8px 0 0;
    font-size: 12px;
    color: #5f6c94;
  }
  
  /* -------------------------------------------------------
     Right side (photo + contact)
  ------------------------------------------------------- */
  .hero__right {
    display: grid;
    justify-items: end;
    gap: 14px;
  }
  
  .hero__photo {
    margin:0;
  }
  
  .hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    text-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
  }
  
  /* -------------------------------------------------------
     Contact card
  ------------------------------------------------------- */
  .contactCard {
    width: min(260px, 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 12px 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  
  .contactCard__hint {
    margin: 0 0 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.60);
    text-align: right;
  }
  
  .contactCard__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .contactCard__person {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .contactCard__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  }
  
  .contactCard__infos {
    display: grid;
    gap: 2px;
    text-align: left;
  }
  
  .contactCard__name {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Bricolage Grotesque';
  }
  .contactCard__name span {
    font-weight: 900;
    color:var(--accent);
  }
  
  .contactCard__phone {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 22px;
    font-family: 'Bricolage Grotesque';
  }
  
  .contactCard__phone:hover {
    text-decoration: underline;
  }
  
  /* -------------------------------------------------------
     Responsive
  ------------------------------------------------------- */
  @media (max-width: 980px) {
    .hero__content {
      grid-template-columns: 1fr;
      gap: 22px;
    }
  
    .hero__right {
      justify-items: start;
    }
  
    .contactCard__hint {
      text-align: left;
    }
  }
  
  @media (max-width: 560px) {
    .page {
      padding: 14px;
    }
  
    .hero__top {
      padding: 18px 18px 10px;
    }
  
    .hero__content {
      padding: 10px 18px 18px;
    }
  
    .brand img {
      height: 38px;
    }
  
    .hero__qr {
      width: auto;
    }
  }