:root {
    --gold: #dfbc00;
}

.eyebrow-business {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.eyebrow-business::before {
  content: "";
  width: 18px;
  height: 1px;
  color: var(--gold);
}
.hero-copy-list p {
  position: relative;
  padding-left: 26px;
  color:#555
}

.hero-copy-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gold);
  color: #fff;
  padding: 14px 26px;
  border-radius: 2px;
}

.btn:hover {
  box-shadow:0 8px 24px rgba(247, 204, 17, 0.25);
  transform:translateY(-1px);
}
.btn:hover::after { transform:translateX(0);}

.btn:focus-visible { 
  outline:2px solid var(--gold-hi);
  outline-offset:3px; 
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  transition:transform .35s ease;
}
.btn:hover svg{ transform:translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  background: #f7f5f1;
  color: black;
  border: 1px solid silver;
  padding: 14px 26px;
  border-radius: 2px;
}

.btn-secondary:hover { transform:translateY(-1px);}

#decouvrir, #deroule {
  background: #fff;
}

.final-section {
  padding: 100px 0 90px;
  text-align: center;
}

.final-section p {
  color: #555;
  margin-bottom: 30px;
}

.cta-card{
  flex:1;
  min-width:280px;
  padding:2rem;
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.cta-card h3{
  margin-bottom:1rem;
}

.cta-card p{
  margin-bottom:1.5rem;
}

@media (max-width: 720px) {
  img {
    display: none;
  }
}

@media (min-width: 720px) {
  .cta-group{
    display:flex;
    gap:2rem;
  }
}

@media (min-width: 1200px) {
  .hero .wrap {
    display: grid;
    gap: 64px;
    grid-template-columns: 1.05fr 0.95fr;
  }
}