:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #ffb347;
  --accent-soft: rgba(255, 179, 71, 0.12);
  --text: #f5f5f7;
  --muted: #a2a7b8;
  --border: rgba(255, 255, 255, 0.08);
  --danger: #ff4f6a;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.5);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

/* RESET BASIC */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #020312;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 64px;
}

/* HEADER */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0 10px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(2, 3, 18, 0.96),
    rgba(2, 3, 18, 0.85),
    transparent
  );
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe7b5, #ffb347 45%, #ff6b6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #1a1020;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  animation: float 5s ease-in-out infinite;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text span:first-child {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 3px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb347, #ff6b6b);
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.8);
  font-size: 13px;
  color: #ffd9a2;
}

.nav-cta:hover {
  background: rgba(255, 179, 71, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 179, 71, 0.22);
}

/* HERO WRAPPER + BACKGROUND */

.hero-wrapper {
  margin-top: 10px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

/* HIER gebruik je jouw eigen hero-sessie.jpg */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(2, 3, 18, 0.9), rgba(2, 3, 18, 0.75), rgba(2, 3, 18, 0.9)),
    url("../img/hero-sessie.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 179, 71, 0.25), transparent 60%),
    radial-gradient(circle at 85% 90%, rgba(0, 210, 255, 0.12), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 40px;
  padding: 34px 30px 32px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.08;
  margin-top: 18px;
  margin-bottom: 16px;
}

.hero-copy h1 span.highlight {
  background: linear-gradient(120deg, #ffb347, #ff6b6b);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  color: #e4e5f0;
  max-width: 520px;
}

.hero-sub strong {
  color: #ffffff;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: inherit;
  transition:
    transform 0.11s ease-out,
    box-shadow 0.11s ease-out,
    background 0.15s ease-out,
    border-color 0.15s ease-out,
    opacity 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(120deg, #ffb347, #ff6b6b);
  color: #1a1020;
  box-shadow: var(--shadow-soft);
}

.btn-primary span.icon {
  font-size: 17px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(5, 8, 22, 0.86);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(18, 22, 48, 0.96);
  transform: translateY(-1px);
  color: #f5f5f7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span b {
  color: #fdfdfd;
  font-weight: 500;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(162, 167, 184, 0.6);
}

/* HERO VISUAL CARD */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card-hero {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), rgba(5, 8, 22, 0.96) 60%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 340px;
  margin-left: auto;
  animation: float-slow 8s ease-in-out infinite;
}

.card-hero::before {
  content: "";
  position: absolute;
  inset: -60%;
  background-image:
    radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.06) 0, transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 179, 71, 0.16) 0, transparent 58%);
  opacity: 0.8;
  pointer-events: none;
}

.card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.label {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}

.label strong {
  display: block;
  color: #fdfdfd;
  font-size: 13px;
  margin-top: 4px;
}

.q-block {
  position: relative;
  margin-top: 4px;
  padding: 12px 12px 12px 14px;
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.q-block span.q {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 4px;
}

.q-block p {
  font-size: 13px;
}

.steps {
  position: relative;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.step-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 179, 71, 0.08);
  border: 1px solid rgba(255, 179, 71, 0.7);
  color: var(--accent);
}

.step small {
  font-size: 11px;
  color: var(--muted);
}

.tag-row {
  position: relative;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.tag.hot {
  background: rgba(255, 79, 106, 0.14);
  border-color: rgba(255, 79, 106, 0.7);
  color: #ffd8df;
}

.glow-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2), transparent 70%);
  right: -40px;
  top: -30px;
  filter: blur(2px);
  pointer-events: none;
}

/* SECTIONS / GRID */

main {
  margin-top: 32px;
}

.section {
  padding: 18px 0 24px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
}

.section-sub {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 16px 15px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), rgba(5, 8, 22, 0.97));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: var(--muted);
}

.pill-mini {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd9a2;
  border: 1px solid rgba(255, 179, 71, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
}

.card ul li::before {
  content: "•";
  color: var(--accent);
  margin-top: 1px;
}

.strip {
  margin-top: 18px;
  padding: 14px 15px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.24);
  background: rgba(5, 8, 22, 0.96);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.strip strong {
  color: #fff6e9;
}

.strip small {
  color: var(--muted);
}

.strip .btn {
  font-size: 13px;
  padding-inline: 14px;
}

/* QUOTE */

.quote {
  position: relative;
  padding: 16px 15px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top right, rgba(255, 179, 71, 0.13), rgba(5, 8, 22, 0.96) 65%);
  font-size: 13px;
  color: var(--muted);
}

.quote::before {
  content: "“";
  position: absolute;
  font-size: 42px;
  opacity: 0.08;
  left: 13px;
  top: -4px;
}

.quote strong {
  color: #fdfdfd;
}

.quote-footer {
  margin-top: 10px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: space-between;
  align-items: center;
}

.quote-footer span.name {
  font-weight: 500;
  color: #fff6e9;
}

.quote-footer span.role {
  color: var(--muted);
}

/* IMAGE STRIP / FOTO'S */

.image-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 140px;
  background-size: cover;
  background-position: center;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 3, 18, 0.9), transparent 55%);
}

.image-card-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  font-size: 12px;
  color: #f5f5f7;
}

.image-card-label strong {
  display: block;
  font-size: 13px;
}

.image-card.main {
  grid-row: span 2;
  min-height: 290px;
}

/* CONTACT */

.contact-card {
  border-radius: var(--radius-xl);
  padding: 18px 16px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(255, 179, 71, 0.16), rgba(5, 8, 22, 0.98) 65%);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

form {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label span {
  font-weight: 500;
  font-size: 12px;
}

input,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 8, 22, 0.92);
  padding: 9px 11px;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
}

textarea {
  border-radius: 14px;
  min-height: 80px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(162, 167, 184, 0.8);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hint {
  font-size: 11px;
  color: var(--muted);
}

.form-footer {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 36px;
  padding-top: 14px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  opacity: 0.8;
}

footer a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

/* ANIMATIONS */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-6px) translateX(-3px);
  }
}

/* FADE-IN */

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px 18px 24px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .card-hero {
    margin: 0;
    max-width: 100%;
  }

  .hero-wrapper {
    border-radius: 18px;
  }

  main {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .shell {
    padding-inline: 16px;
  }

  .section-header {
    align-items: flex-start;
  }

  .strip {
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-strip {
    grid-template-columns: minmax(0, 1fr);
  }
}
