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

body {
  background: #050505;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  transform: scale(1.35);
}

.menu-btn {
  position: absolute;
  left: 24px;
  top: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -500px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 200;
  transition: left 0.3s ease;
}

.side-menu.open {
  left: 0;
}

.close-btn {
  position: absolute;
  right: 24px;
  top: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 80px 24px 24px;
}

.side-menu li {
  margin-bottom: 18px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 12px;
  border-radius: 10px;
}

.side-menu a:hover {
  background: #8a4af3;
}

.lab-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(138, 74, 243, 0.3), transparent 35%),
    linear-gradient(135deg, #050505, #111);
  padding: 145px 24px 85px;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto 28px;
  color: #aaa;
  font-size: 14px;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
  color: #777;
}

.lab-hero {
  max-width: 1050px;
  margin: 0 auto 45px;
  text-align: center;
}

.lab-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d6d6d6;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lab-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 900;
}

.lab-hero p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.report-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions a,
.report-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: #fff;
  color: #000;
  transition: all 0.25s ease;
}

.hero-actions a:hover,
.report-actions a:hover {
  background: #8a4af3;
  color: #fff;
}

.lab-info-grid {
  max-width: 1320px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lab-info-grid article,
.report-card,
.notice-section,
.faq-section {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.lab-info-grid h2,
.section-heading h2,
.notice-section h2,
.faq-section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.lab-info-grid p,
.section-heading p,
.notice-section p,
.faq-item p,
.report-content p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 16px;
}

.reports-section,
.notice-section,
.faq-section {
  max-width: 1320px;
  margin: 28px auto 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.report-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.report-preview {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.report-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.report-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #d6d6d6;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.report-content h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.report-content p {
  margin-bottom: 20px;
}

.faq-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 22px 16px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .lab-info-grid,
  .report-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 105px;
  }

  .logo img {
    width: 155px;
    height: 90px;
  }

  .menu-btn {
    top: 32px;
    left: 18px;
    font-size: 34px;
  }

  .side-menu {
    width: 100%;
  }

  .lab-page {
    padding: 130px 16px 70px;
  }

  .lab-hero h1 {
    font-size: 38px;
  }

  .lab-hero p {
    font-size: 16px;
  }

  .hero-actions a,
  .report-actions a {
    width: 100%;
  }
}


.header-warning {
  position: absolute;
  right: 24px;
  top: 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(220,38,38,0.22),
      rgba(255,60,60,0.12)
    );

  border: 1px solid rgba(255,70,70,0.45);

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 25px rgba(220,38,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: 0.25s ease;

  z-index: 1001;
}

.header-warning:hover {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #ff3b3b
    );

  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(220,38,38,0.35);
}

@media (max-width: 620px) {

  .header-warning {

    position: absolute;

    left: 300px;
    top: 40px;

    padding: 7px 12px;

    font-size: 7.5px;
    font-weight: 800;

    border-radius: 999px;

    white-space: nowrap;

  }

}