/* ══════════════════════════════════════
   URCHET — site.css
   Moderno · Pulito · Diretto · Commerciale
══════════════════════════════════════ */

/* ── FONT ── */
body {
  font-family: "DM Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", sans-serif;
}

/* ── BOTTONI ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F5C400;
  color: #111111;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary:hover {
  background: #FFD84D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.45);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #111111;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1.5px solid #111111;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: #111111;
  color: #F5C400;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline-light:hover {
  border-color: #F5C400;
  color: #F5C400;
}

/* ── SECTION LABEL ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 2.5px;
  background: #F5C400;
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-label-pale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}
.sec-label-pale::before {
  content: "";
  display: block;
  width: 18px;
  height: 2.5px;
  background: #F5C400;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── SEZIONI ── */
.sec {
  padding: 96px 5vw;
}
.sec-in {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFDF0;
  color: #111111;
  border: 1px solid #F5C400;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5C400;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

/* ── CARD ── */
.card {
  background: #fff;
  border: 1px solid #e8e8e0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.card:hover {
  border-color: #F5C400;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.card-yellow {
  background: #FFFDF0;
  border: 1px solid #F5C400;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.card-yellow:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(245, 196, 0, 0.2);
}

.card-dark {
  background: #111111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.card-dark:hover {
  border-color: #F5C400;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(245, 196, 0, 0.15);
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ── OPACITÀ TESTO BIANCO ── */
.text-white-35 { color: rgba(255, 255, 255, 0.35); }
.text-white-45 { color: rgba(255, 255, 255, 0.45); }
.text-white-55 { color: rgba(255, 255, 255, 0.55); }
.text-white-65 { color: rgba(255, 255, 255, 0.65); }
.text-white-75 { color: rgba(255, 255, 255, 0.75); }

/* ── SFONDI SCURI ── */
.bg-ink    { background-color: #111111; }
.bg-ink-2  { background-color: #1A1A14; }

/* ── MARQUEE ── */
.marquee-track {
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}

/* ── HIGHLIGHT TESTO ── */
.text-highlight {
  position: relative;
  display: inline-block;
  color: #111111;
}
.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  height: 10px;
  background: #F5C400;
  z-index: -1;
  border-radius: 2px;
  opacity: 0.6;
}

/* ── KEYFRAMES ── */
@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STEP NUMBER ── */
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F5C400;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #111111;
  flex-shrink: 0;
}

/* ── TAG / PILL ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #FFFDF0;
  color: #111111;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid #F5C400;
}