/* ==========================================================
   Gay-Belgium
   Veilig & comfortabel contact maken
   2026-08-11
========================================================== */

.veiligheid-page {
  min-height: 100vh;
}

.safety-main {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================================
   HERO
========================================================== */

.safety-hero {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 34px;

  min-height: 300px;
  padding: 42px;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(210, 30, 96, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(249, 201, 47, 0.14),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #181512,
      #101010 62%,
      #151015
    );

  box-shadow: var(--shadow-small);
}

.safety-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.02),
      transparent 36%
    );
}

.safety-hero > * {
  position: relative;
  z-index: 1;
}

.safety-kicker,
.safety-section-kicker,
.safety-card-label {
  display: inline-flex;

  color: var(--yellow);

  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.safety-hero h1 {
  max-width: 780px;

  margin: 11px 0 16px;

  color: var(--white);

  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.safety-hero-copy > p {
  max-width: 720px;

  margin: 0;

  color: #c5beb6;

  font-size: 0.93rem;
  line-height: 1.75;
}

.safety-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 25px;
}

.safety-primary-button,
.safety-secondary-button {
  min-height: 44px;
  padding: 0 17px;

  border-radius: 12px;

  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;

  cursor: pointer;
}

.safety-primary-button {
  border: 1px solid var(--yellow);

  color: #171207;
  background: var(--yellow);
}

.safety-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.safety-comfort-card {
  display: grid;
  gap: 10px;

  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  background:
    rgba(8, 8, 8, 0.58);

  backdrop-filter: blur(16px);
}

.safety-comfort-icon {
  font-size: 2rem;
}

.safety-comfort-card strong {
  color: var(--white);

  font-size: 1.1rem;
}

.safety-comfort-card p {
  margin: 0;

  color: #beb7b0;

  font-size: 0.8rem;
  line-height: 1.65;
}

/* ==========================================================
   SHARED SECTION
========================================================== */

.safety-path-section,
.safety-accordion-section,
.safety-meeting-section,
.safety-warning-section,
.safety-final-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  box-shadow: var(--shadow-small);
}

.safety-path-section,
.safety-accordion-section,
.safety-meeting-section,
.safety-warning-section {
  padding: 28px;
}

.safety-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 22px;
}

.safety-section-header h2,
.safety-meeting-copy h2,
.safety-warning-heading h2,
.safety-final-copy h2 {
  margin: 6px 0 0;

  color: var(--white);

  font-size: 1.45rem;
  line-height: 1.2;
}

.safety-section-header p,
.safety-meeting-copy > p {
  margin: 7px 0 0;

  color: var(--muted);

  font-size: 0.8rem;
  line-height: 1.6;
}

/* ==========================================================
   PATH
========================================================== */

.safety-path {
  display: grid;
  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap: 10px;
}

.safety-path-step {
  position: relative;

  display: grid;
  align-content: start;
  gap: 14px;

  min-height: 166px;
  padding: 18px;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.025);
}

.safety-path-step:not(:last-child)::after {
  content: "→";

  position: absolute;

  top: 25px;
  right: -10px;

  z-index: 2;

  display: grid;
  place-items: center;

  width: 20px;
  height: 20px;

  color: var(--yellow);
  background: #151515;

  font-weight: 900;
}

.safety-step-number {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  color: #171207;
  background: var(--yellow);

  font-size: 0.72rem;
  font-weight: 900;
}

.safety-path-step h3 {
  margin: 0 0 6px;

  color: var(--white);

  font-size: 0.86rem;
}

.safety-path-step p {
  margin: 0;

  color: var(--muted);

  font-size: 0.72rem;
  line-height: 1.55;
}

/* ==========================================================
   HELP CARDS
========================================================== */

.safety-help-grid {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;
}

.safety-help-card {
  position: relative;
  overflow: hidden;

  padding: 25px;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  box-shadow: var(--shadow-small);
}

.safety-help-card-featured {
  grid-column: 1 / -1;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(249, 201, 47, 0.10),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #191817,
      #101010
    );
}

.safety-card-icon {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  margin-bottom: 17px;

  border: 1px solid rgba(249, 201, 47, 0.16);
  border-radius: 14px;

  background:
    rgba(249, 201, 47, 0.08);

  font-size: 1.2rem;
}

.safety-help-card h2 {
  margin: 7px 0 11px;

  color: var(--white);

  font-size: 1.18rem;
}

.safety-help-card > p {
  margin: 0;

  color: #bbb4ad;

  font-size: 0.79rem;
  line-height: 1.7;
}

.safety-example-list {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 9px;

  margin-top: 20px;
}

.safety-example-list.compact {
  grid-template-columns: 1fr;
}

.safety-example {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 12px;

  min-height: 72px;
  padding: 12px 12px 12px 15px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.025);
}

.safety-example > span {
  color: #ddd7d0;

  font-size: 0.73rem;
  line-height: 1.55;
}

.safety-example button {
  min-height: 34px;
  padding: 0 10px;

  border: 1px solid rgba(249, 201, 47, 0.2);
  border-radius: 9px;

  color: var(--yellow);
  background: rgba(249, 201, 47, 0.05);

  font: inherit;
  font-size: 0.65rem;
  font-weight: 800;

  cursor: pointer;
}

.safety-example button:hover {
  background:
    rgba(249, 201, 47, 0.11);
}

.safety-tip-list {
  display: grid;
  gap: 8px;

  margin: 18px 0 0;
  padding: 0;

  list-style: none;
}

.safety-tip-list li {
  position: relative;

  padding-left: 22px;

  color: #d2ccc5;

  font-size: 0.75rem;
  line-height: 1.55;
}

.safety-tip-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--yellow);

  font-weight: 900;
}

.safety-mini-example {
  margin-top: 18px;
  padding: 14px;

  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;

  background:
    rgba(249, 201, 47, 0.045);
}

.safety-mini-example span {
  color: var(--yellow);

  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.safety-mini-example p {
  margin: 6px 0 0;

  color: #ddd7d0;

  font-size: 0.76rem;
  line-height: 1.55;
}

.safety-do-dont {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 9px;

  margin-top: 18px;
}

.safety-do,
.safety-dont {
  padding: 14px;

  border-radius: 12px;
}

.safety-do {
  border: 1px solid rgba(46, 204, 113, 0.15);
  background: rgba(46, 204, 113, 0.045);
}

.safety-dont {
  border: 1px solid rgba(255, 100, 100, 0.13);
  background: rgba(255, 80, 80, 0.035);
}

.safety-do strong {
  color: #7bdca5;
}

.safety-dont strong {
  color: #f08d8d;
}

.safety-do p,
.safety-dont p {
  margin: 6px 0 0;

  color: #bbb4ad;

  font-size: 0.7rem;
  line-height: 1.5;
}

.safety-small-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 19px;
}

.safety-small-path span {
  padding: 9px 11px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;

  color: var(--white);
  background:
    rgba(255, 255, 255, 0.03);

  font-size: 0.7rem;
  font-weight: 750;
}

.safety-small-path i {
  color: var(--yellow);

  font-style: normal;
  font-weight: 900;
}

.safety-muted-copy {
  margin-top: 16px !important;

  color: var(--muted) !important;
}

.safety-highlight-box {
  margin-top: 19px;
  padding: 15px;

  border: 1px solid rgba(249, 201, 47, 0.13);
  border-radius: 12px;

  background:
    rgba(249, 201, 47, 0.045);
}

.safety-highlight-box p {
  margin: 0;

  color: #ddd7d0;

  font-size: 0.76rem;
  line-height: 1.6;
}

/* ==========================================================
   ACCORDION
========================================================== */

.safety-accordion-list {
  display: grid;
  gap: 9px;
}

.safety-accordion-item {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;

  background:
    rgba(255, 255, 255, 0.02);
}

.safety-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  width: 100%;
  min-height: 58px;
  padding: 0 17px;

  border: 0;

  color: var(--white);
  background: transparent;

  font: inherit;
  font-size: 0.8rem;
  font-weight: 760;

  text-align: left;

  cursor: pointer;
}

.safety-accordion-trigger:hover {
  background:
    rgba(255, 255, 255, 0.025);
}

.safety-accordion-trigger i {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  flex: 0 0 auto;

  border-radius: 50%;

  color: var(--yellow);
  background:
    rgba(249, 201, 47, 0.07);

  font-size: 1rem;
  font-style: normal;

  transition:
    transform 160ms ease;
}

.safety-accordion-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.safety-accordion-panel {
  padding: 0 17px 17px;
}

.safety-accordion-panel p {
  max-width: 900px;

  margin: 0;

  color: #bdb6af;

  font-size: 0.76rem;
  line-height: 1.7;
}

/* ==========================================================
   MEETING
========================================================== */

.safety-meeting-copy {
  max-width: 760px;
}

.safety-meeting-grid {
  display: grid;
  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 10px;

  margin-top: 22px;
}

.safety-meeting-grid article {
  padding: 17px;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;

  background:
    rgba(255, 255, 255, 0.025);
}

.safety-meeting-grid article > span {
  font-size: 1.25rem;
}

.safety-meeting-grid h3 {
  margin: 11px 0 7px;

  color: var(--white);

  font-size: 0.82rem;
}

.safety-meeting-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 0.7rem;
  line-height: 1.55;
}

/* ==========================================================
   WARNING
========================================================== */

.safety-warning-section {
  border-color:
    rgba(249, 201, 47, 0.13);

  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(249, 201, 47, 0.08),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #181715,
      #101010
    );
}

.safety-warning-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.safety-warning-icon {
  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  flex: 0 0 auto;

  border: 1px solid rgba(249, 201, 47, 0.16);
  border-radius: 16px;

  background:
    rgba(249, 201, 47, 0.07);

  font-size: 1.35rem;
}

.safety-warning-grid {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 10px;

  margin-top: 23px;
}

.safety-warning-grid article {
  padding: 16px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.02);
}

.safety-warning-grid h3 {
  margin: 0 0 6px;

  color: var(--white);

  font-size: 0.8rem;
}

.safety-warning-grid p {
  margin: 0;

  color: #bcb5ad;

  font-size: 0.7rem;
  line-height: 1.55;
}

/* ==========================================================
   FINAL
========================================================== */

.safety-final-card {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 22px;

  padding: 28px;
}

.safety-final-icon {
  display: grid;
  place-items: center;

  width: 62px;
  height: 62px;

  border: 1px solid rgba(249, 201, 47, 0.15);
  border-radius: 20px;

  background:
    rgba(249, 201, 47, 0.07);

  font-size: 1.6rem;
}

.safety-final-copy p {
  max-width: 760px;

  margin: 10px 0;

  color: #bbb4ad;

  font-size: 0.78rem;
  line-height: 1.65;
}

.safety-final-copy strong {
  color: #ded8d1;

  font-size: 0.76rem;
}

.safety-final-actions {
  display: grid;
  gap: 8px;

  min-width: 170px;
}

.safety-primary-link,
.safety-secondary-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  min-height: 42px;
  padding: 0 13px;

  border-radius: 11px;

  font-size: 0.72rem;
  font-weight: 800;
}

.safety-primary-link {
  border: 1px solid var(--yellow);

  color: #171207;
  background: var(--yellow);
}

.safety-secondary-link {
  border: 1px solid var(--border);

  color: var(--white);
  background:
    rgba(255, 255, 255, 0.025);
}

/* ==========================================================
   RIGHTBAR
========================================================== */

.safety-rightbar {
  align-self: start;
}

.safety-pace-list,
.safety-sidebar-actions {
  display: grid;
  gap: 7px;
}

.safety-pace-list button {
  display: grid;
  grid-template-columns:
    34px
    minmax(0, 1fr);

  align-items: center;
  gap: 10px;

  width: 100%;
  min-height: 52px;
  padding: 9px 10px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 11px;

  color: var(--white);
  background:
    rgba(255, 255, 255, 0.02);

  font: inherit;

  text-align: left;

  cursor: pointer;
}

.safety-pace-list button:hover {
  border-color:
    rgba(249, 201, 47, 0.2);

  background:
    rgba(249, 201, 47, 0.04);
}

.safety-pace-list button > span:first-child {
  font-size: 1rem;
}

.safety-pace-list button > span:last-child {
  display: grid;
  gap: 2px;
}

.safety-pace-list strong {
  color: var(--white);

  font-size: 0.7rem;
}

.safety-pace-list small {
  color: var(--muted);

  font-size: 0.61rem;
}

.safety-sidebar-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  min-height: 41px;
  padding: 0 11px;

  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--white);
  background:
    rgba(255, 255, 255, 0.02);

  font-size: 0.7rem;
  font-weight: 750;
}

.safety-sidebar-actions a:hover {
  border-color:
    rgba(249, 201, 47, 0.22);

  background:
    rgba(249, 201, 47, 0.04);
}

/* ==========================================================
   TOAST
========================================================== */

.safety-toast {
  position: fixed;
  z-index: 1800;

  right: 24px;
  bottom: 24px;

  max-width: min(
    380px,
    calc(100vw - 48px)
  );

  padding: 14px 17px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;

  color: var(--white);
  background: #1b1b1b;

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45);

  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.safety-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   MOBILE SIDEBAR SUPPORT
========================================================== */

@media (max-width: 1050px) {

  .veiligheid-page .dashboard-sidebar.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .veiligheid-page #sidebarBackdrop.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1250px) {

  .safety-hero {
    grid-template-columns: 1fr;
  }

  .safety-comfort-card {
    max-width: 500px;
  }

  .safety-path {
    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );
  }

  .safety-path-step::after {
    display: none !important;
  }

  .safety-meeting-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

}

@media (max-width: 820px) {

  .safety-hero {
    min-height: auto;
    padding: 28px;
  }

  .safety-hero h1 {
    font-size: 2.7rem;
  }

  .safety-path {
    grid-template-columns: 1fr;
  }

  .safety-help-grid {
    grid-template-columns: 1fr;
  }

  .safety-help-card-featured {
    grid-column: auto;
  }

  .safety-example-list {
    grid-template-columns: 1fr;
  }

  .safety-meeting-grid,
  .safety-warning-grid {
    grid-template-columns: 1fr;
  }

  .safety-final-card {
    grid-template-columns: 1fr;
  }

  .safety-final-actions {
    min-width: 0;
  }

}

@media (max-width: 560px) {

  .safety-hero,
  .safety-path-section,
  .safety-accordion-section,
  .safety-meeting-section,
  .safety-warning-section,
  .safety-final-card {
    padding: 20px;
  }

  .safety-hero h1 {
    font-size: 2.25rem;
  }

  .safety-hero-actions {
    display: grid;
  }

  .safety-primary-button,
  .safety-secondary-button {
    width: 100%;
  }

  .safety-example {
    grid-template-columns: 1fr;
  }

  .safety-example button {
    justify-self: start;
  }

  .safety-do-dont {
    grid-template-columns: 1fr;
  }

  .safety-toast {
    right: 12px;
    bottom: 82px;
    left: 12px;

    max-width: none;
  }

}
