*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #1b2e56;
  padding: 2rem 1rem;
}

/* Achtergrondafbeelding */
.bg-photo {
  position: absolute;
  inset: 0;
  background: url('images/landing_1.jpg') center / cover no-repeat;
}

/* Witte overlay -- zelfde als homepage hero */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 252, 0.82);
}

/* Wrapper: logo boven de card */
.wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 620px;
}

/* Logo */
.logo-wrap {
  margin-bottom: 1.5rem;
}

.logo-wrap img {
  height: 96px;
  width: auto;
  display: block;
}

/* Witte card */
.content {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(27, 46, 86, 0.12);
  padding: 3rem 2.5rem;
  text-align: center;
  width: 100%;
}

/* Titel */
h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #1b2e56;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 0;
}

h1 span {
  color: #1b2e56;
}

/* Oranje divider */
.divider {
  width: 48px;
  height: 3px;
  background: #eb7603;
  border-radius: 999px;
  margin: 1.25rem auto 1.5rem;
}

/* Tagline */
.tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  width: 100%;
}

.btn-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.btn-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  text-align: center;
  padding: 0.35rem 0.9rem;
  border-radius: 0 0 10px 10px;
  width: fit-content;
  align-self: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn-item:hover .btn-label {
  opacity: 1;
  transform: translateY(-5px);
}

.btn {
  display: flex;
  align-items: stretch;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-item:hover .btn {
  transform: translateY(-5px);
  filter: brightness(0.95);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
}

.btn-primary {
  background: #eb7603;
  color: white;
  box-shadow: 0 4px 16px rgba(235, 118, 3, 0.3);
}

.btn-primary + .btn-label {
  background: #f08828;
}

.btn-outline {
  background: #1b2e56;
  color: white;
  box-shadow: 0 4px 12px rgba(27, 46, 86, 0.2);
}

.btn-outline + .btn-label {
  background: #243d6e;
}

/* Responsive: op small mobile buttons full-width */
@media (max-width: 480px) {
  .content {
    padding: 2.5rem 1.5rem;
  }

  .btn-group {
    flex-direction: column;
  }
}

/* Touch-apparaten: geen hover, labels altijd zichtbaar */
@media (hover: none) {
  .btn-label {
    opacity: 1;
    transform: none;
  }
}
