/* =========================================================
   SAYAMA — BRODERIE PREMIUM V2
   HERO MODERNE / GLASS / FORMES / LUMIÈRES
   ========================================================= */

:root{

  --gold:#c58b38;
  --gold2:#e8b15a;

  --blue:#0b1f5e;
  --blue2:#07153f;

  --violet:#5b21b6;

  --text:#ffffff;
  --muted:rgba(255,255,255,.74);

  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);

  --shadow:
    0 25px 60px rgba(0,0,0,.42);

  --radius:24px;
  --radius2:34px;
}
.circle{
  position:absolute;
  border-radius:50%;
  overflow:hidden;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);

  box-shadow:0 20px 45px rgba(0,0,0,.35);

  animation:floating 8s ease-in-out infinite;
}

.circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.85;
}

.circle::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(59,130,246,.18),
    rgba(124,58,237,.25)
  );
  pointer-events:none;
}

/* =========================================================
   HERO
   ========================================================= */

.bro-hero{

  position:relative;

  min-height:100vh;

  overflow:hidden;

  display:flex;
  align-items:center;

  padding:120px 0 90px;

  background:

    radial-gradient(
      circle at 78% 18%,
      rgba(124,58,237,.32),
      transparent 28%
    ),

    radial-gradient(
      circle at 15% 12%,
      rgba(59,130,246,.22),
      transparent 24%
    ),

    linear-gradient(
      135deg,
      rgba(2,6,23,.92),
      rgba(4,17,55,.90),
      rgba(38,10,78,.84)
    ),

    url("../img/BRODEUSE/brodeuse.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* =========================================================
   GLOW
   ========================================================= */

.bro-hero::before{

  content:"";

  position:absolute;

  width:900px;
  height:900px;

  right:-300px;
  top:-280px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(59,130,246,.18),
      rgba(124,58,237,.18),
      transparent 70%
    );

  filter:blur(60px);

  z-index:1;
}

/* =========================================================
   SHAPE PRINCIPALE
   ========================================================= */

.bro-hero::after{

  content:"";

  position:absolute;

  width:720px;
  height:720px;

  right:-120px;
  bottom:-220px;

  border-radius:
    42% 58% 62% 38% /
    38% 42% 58% 62%;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.10),
      rgba(255,255,255,.03)
    );

  border:
    1px solid rgba(255,255,255,.10);

  backdrop-filter:blur(18px);

  animation:
    blobMove 12s ease-in-out infinite;

  z-index:1;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.bro-hero__inner{

  position:relative;
  z-index:5;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:center;
}

/* =========================================================
   TEXTE HERO
   ========================================================= */

.bro-hero__badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:10px 16px;

  border-radius:999px;

  border:
    1px solid rgba(255,255,255,.14);

  background:
    rgba(255,255,255,.08);

  backdrop-filter:blur(12px);

  font-weight:900;

  color:white;

  margin-bottom:18px;
}

.bro-hero__title{

  font-size:
    clamp(42px, 5vw, 72px);

  line-height:1.02;

  letter-spacing:-2px;

  margin-bottom:20px;

  text-shadow:
    0 10px 30px rgba(0,0,0,.35);
}

.bro-hero__subtitle{

  max-width:58ch;

  color:var(--muted);

  line-height:1.8;

  font-size:17px;

  margin-bottom:26px;
}

/* =========================================================
   ACTIONS
   ========================================================= */

.bro-hero__actions{

  display:flex;

  gap:14px;

  flex-wrap:wrap;

  margin-bottom:26px;
}

.btn-premium{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:15px 24px;

  border-radius:999px;

  border:
    1px solid rgba(255,255,255,.12);

  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.90),
      rgba(124,58,237,.92)
    );

  color:white;

  font-weight:900;

  box-shadow:
    0 18px 40px rgba(0,0,0,.28);

  transition:.3s ease;
}

.btn-premium:hover{

  transform:
    translateY(-4px);

  box-shadow:
    0 24px 50px rgba(0,0,0,.35);
}

.btn-glass{

  background:
    rgba(255,255,255,.08);

  backdrop-filter:blur(12px);
}

/* =========================================================
   CHIPS
   ========================================================= */

.bro-hero__chips{

  display:flex;

  flex-wrap:wrap;

  gap:12px;
}

.hero-chip{

  padding:11px 16px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(12px);

  font-weight:800;

  color:rgba(255,255,255,.82);
}

/* =========================================================
   VISUEL HERO
   ========================================================= */

.bro-visual{

  position:relative;

  min-height:620px;
}

/* FORMES */

.bro-shape{

  position:absolute;

  inset:40px 0 0 40px;

  border-radius:
    42% 58% 62% 38% /
    38% 42% 58% 62%;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.04)
    );

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(12px);

  box-shadow:
    0 30px 80px rgba(0,0,0,.42);

  animation:
    blobMove 10s ease-in-out infinite;
}

/* IMAGE */

.bro-mainImg{

  position:absolute;

  right:-30px;
  top:50px;

  width:100%;
  max-width:760px;

  height:540px;

  object-fit:cover;

  border-radius:
    42% 58% 62% 38% /
    38% 42% 58% 62%;

  box-shadow:
    0 30px 80px rgba(0,0,0,.52);

  z-index:3;
}

/* =========================================================
   TAGS FLOTTANTS
   ========================================================= */

.bro-tag{

  position:absolute;

  z-index:6;

  padding:16px 24px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.92),
      rgba(124,58,237,.92)
    );

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(12px);

  color:white;

  font-weight:900;

  box-shadow:
    0 16px 40px rgba(0,0,0,.30);
}

.bro-tag--top{

  top:70px;
  left:-20px;
}

.bro-tag--right{

  top:220px;
  right:-20px;
}

.bro-tag--bottom{

  bottom:80px;
  left:220px;
}

/* =========================================================
   BULLES
   ========================================================= */

.circle{

  position:absolute;

  border-radius:50%;

  background:
    rgba(255,255,255,.06);

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  animation:
    floating 8s ease-in-out infinite;
}

.circle1{

  width:140px;
  height:140px;

  top:10%;
  right:20%;
}

.circle2{

  width:80px;
  height:80px;

  bottom:15%;
  right:8%;

  animation-delay:-3s;
}

.circle3{

  width:220px;
  height:220px;

  bottom:-40px;
  left:10%;

  animation-delay:-5s;
}

/* =========================================================
   TIMELINE
   ========================================================= */

.timeline{

  position:relative;

  padding:80px 0;

  display:grid;

  gap:40px;
}

.timeline__rail{

  position:absolute;

  left:50%;

  top:0;
  bottom:0;

  width:3px;

  background:
    rgba(255,255,255,.12);

  transform:
    translateX(-50%);

  border-radius:999px;

  overflow:hidden;
}

.timeline__progress{

  width:100%;

  height:50%;

  background:
    linear-gradient(
      to bottom,
      rgba(59,130,246,.95),
      rgba(124,58,237,.95)
    );

  box-shadow:
    0 0 30px rgba(124,58,237,.45);
}

.t-item{

  position:relative;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:30px;

  align-items:center;
}

/* DOT */

.t-dot{

  position:absolute;

  left:50%;
  top:50%;

  width:18px;
  height:18px;

  border-radius:999px;

  transform:
    translate(-50%, -50%);

  background:
    rgba(59,130,246,.95);

  border:
    3px solid white;

  box-shadow:
    0 0 0 12px rgba(59,130,246,.20);
}

/* CARD */

.t-card{

  border-radius:28px;

  padding:28px;

  background:
    rgba(255,255,255,.06);

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(14px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.32);
}

.t-card__badge{

  display:inline-flex;

  padding:8px 14px;

  border-radius:999px;

  margin-bottom:14px;

  background:
    rgba(59,130,246,.16);

  border:
    1px solid rgba(59,130,246,.35);

  font-size:12px;

  font-weight:900;

  letter-spacing:.8px;
}

.t-card h3{

  margin-bottom:12px;

  font-size:30px;
}

.t-card p{

  color:var(--muted);

  line-height:1.8;
}

/* IMAGE */

.t-media{

  border-radius:28px;

  overflow:hidden;

  border:
    1px solid rgba(255,255,255,.12);

  box-shadow:
    0 20px 50px rgba(0,0,0,.32);

  min-height:320px;
}

.t-media img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:.5s ease;
}

.t-media:hover img{

  transform:
    scale(1.06);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq{

  display:grid;

  gap:16px;

  max-width:920px;
}

.faq__item{

  border-radius:22px;

  overflow:hidden;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.10);

  backdrop-filter:blur(12px);
}

.faq__question{

  cursor:pointer;

  padding:22px;

  font-weight:900;

  list-style:none;

  font-size:18px;
}

.faq__question::-webkit-details-marker{
  display:none;
}

.faq__answer{

  padding:0 22px 22px;

  color:var(--muted);

  line-height:1.8;
}

.faq__item[open]{

  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.12),
      rgba(124,58,237,.12)
    );
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta{

  position:relative;

  overflow:hidden;

  border-radius:34px;

  padding:42px;

  text-align:center;

  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.12),
      rgba(124,58,237,.12)
    );

  border:
    1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(16px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.38);
}

.final-cta::before{

  content:"";

  position:absolute;

  width:320px;
  height:320px;

  right:-120px;
  top:-120px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(59,130,246,.22),
      transparent 70%
    );

  filter:blur(30px);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes blobMove{

  0%,100%{

    transform:
      translateY(0)
      rotate(0deg);
  }

  50%{

    transform:
      translateY(-20px)
      rotate(4deg);
  }
}

@keyframes floating{

  0%,100%{

    transform:
      translateY(0px);
  }

  50%{

    transform:
      translateY(-18px);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:980px){

  .bro-hero__inner{

    grid-template-columns:1fr;
  }

  .bro-visual{

    min-height:420px;
  }

  .bro-mainImg{

    height:380px;
  }

  .bro-tag--bottom{

    left:40px;
  }
}

@media(max-width:820px){

  .timeline__rail{

    left:16px;

    transform:none;
  }

  .t-item{

    grid-template-columns:1fr;

    padding-left:40px;
  }

  .t-dot{

    left:16px;
    top:40px;

    transform:
      translate(-50%,0);
  }
}

@media(max-width:680px){

  .bro-hero{

    padding:110px 0 70px;
  }

  .bro-hero__title{

    font-size:48px;
  }

  .bro-mainImg{

    height:300px;
  }

  .bro-tag{

    font-size:13px;

    padding:11px 14px;
  }

  .bro-tag--top{

    top:20px;
    left:0;
  }

  .bro-tag--right{

    top:140px;
    right:0;
  }

  .bro-tag--bottom{

    bottom:10px;
    left:10px;
  }
}