:root {
  --fw-yellow: #FFC500;
  --fw-yellow-dark: #e0ad00;
  --fw-black: #0e0f11;
  --fw-dark: #1a1d21;
  --fw-dark-2: #23272c;
}

body {
  font-family: "Heebo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1a1d21;
}

/* Headings in the brand display font */
h1, h2, h3, .display-font {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.text-yellow { color: var(--fw-yellow); }
.bg-black-fw { background: var(--fw-black); }

/* ---------- Buttons ---------- */
.btn-fw {
  background: var(--fw-yellow);
  border-color: var(--fw-yellow);
  color: #1a1d21;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: "Oswald", sans-serif;
}
.btn-fw:hover {
  background: var(--fw-yellow-dark);
  border-color: var(--fw-yellow-dark);
  color: #1a1d21;
}
.btn-outline-fw {
  border-color: var(--fw-yellow);
  color: var(--fw-yellow);
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
.btn-outline-fw:hover {
  background: var(--fw-yellow);
  color: #1a1d21;
}

/* ---------- Navbar ---------- */
.fw-nav {
  background: var(--fw-black);
  padding: 0.6rem 0;
}
.fw-nav .logo {
  height: 38px;
}
.fw-nav .brand-word {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 197, 0, 0.10), transparent 60%),
    linear-gradient(135deg, var(--fw-black) 0%, #20242a 100%);
  color: #fff;
  padding: 4.5rem 0 5.5rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 0.98;
}
.hero .lead { font-size: 1.15rem; opacity: 0.85; }
.tagline {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fw-yellow);
  font-size: 0.95rem;
}

/* ---------- USP ---------- */
.usp i { color: var(--fw-yellow); }
.usp p { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }

/* ---------- Sections ---------- */
section { padding: 3.75rem 0; }
.section-dark { background: var(--fw-black); color: #fff; }
.section-alt { background: #f6f7f8; }

/* ---------- 5 movements (illustrations are black-bg, blend on dark) ---------- */
.move {
  text-align: center;
}
.move img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.move-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fw-yellow);
  margin-top: 0.5rem;
}

/* ---------- Brand band (t-shirt photo) ---------- */
.brand-band {
  position: relative;
  background: url("../img/brand-shirt.jpg") center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.brand-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,15,17,0.85) 0%, rgba(14,15,17,0.35) 100%);
}
.brand-band .inner { position: relative; color: #fff; }

/* ---------- Lead form ---------- */
.lead-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}
.lead-card .form-label { font-weight: 600; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  display: none;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(14, 15, 17, 0.97);
  backdrop-filter: blur(6px);
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 767.98px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 4.5rem; }
}

.proefles-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}
