/* Lab Check Thailand - Clinical Diagnostics Theme */

/* CSS Variables */
:root {
  --color-white: #ffffff;
  --color-light-gray: #f5f5f7;
  --color-deep-blue: #0d47a1;
  --color-calm-gray: #9e9e9e;
  --color-sky-blue: #42a5f5;
  --color-success: #4caf50;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #616161;
  --color-border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Sarabun",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.krewy4f9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  padding: 12px 0;
}

.bvtqzmzu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zo334v49 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.iqigqy68 {
  width: 40px;
  height: 40px;
}

.g8sixng4 {
  font-size: 18px;
  color: var(--color-deep-blue);
}

.g8sixng4 strong {
  font-weight: 700;
}

.shejgk27 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ppnbzobc {
  font-size: 13px;
  color: var(--color-calm-gray);
  font-family: monospace;
  background: var(--color-light-gray);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.vtuau22w {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-success);
  font-weight: 500;
}

.ofpjts6x {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.d19sa350 {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-light-gray) 100%
  );
}

.d19sa350 .krewy4f9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qezjqy0k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-light-gray);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  color: var(--color-deep-blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.e4y9ekc3 {
  width: 8px;
  height: 8px;
  background: var(--color-deep-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.zb1a1tt0 {
  font-size: 42px;
  color: var(--color-deep-blue);
  margin-bottom: 16px;
}

.fae9mhnl {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  font-weight: 500;
}

.fydkhr4b {
  display: flex;
  justify-content: center;
  align-items: center;
}

.n05uypy1 {
  width: 280px;
  height: 560px;
  background: var(--color-deep-blue);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.n05uypy1::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--color-deep-blue);
  border-radius: 0 0 16px 16px;
}

.py0e6vgv {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hrf6d0nf {
  position: relative;
  width: 200px;
  height: 200px;
}

.b08ljgv3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-deep-blue),
    transparent
  );
  animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.z4zi5pzb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
}

.yrcaqvfw {
  width: 50px;
  height: 50px;
  background: var(--color-light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.yrcaqvfw.id3h88ia {
  background: linear-gradient(
    135deg,
    var(--color-deep-blue),
    var(--color-sky-blue)
  );
  animation: cellGlow 1.5s ease-in-out infinite;
}

@keyframes cellGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.ccivzdm9 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 30px;
  width: 100%;
}

.l8p7kvqt {
  height: 12px;
  background: var(--color-light-gray);
  border-radius: 6px;
}

.l8p7kvqt.ce9db2hn {
  width: 60%;
}

/* Buttons */
.zlkyejnu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: "Sarabun", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.uwv2qswk {
  background: linear-gradient(
    135deg,
    var(--color-deep-blue),
    var(--color-sky-blue)
  );
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
}

.uwv2qswk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13, 71, 161, 0.4);
}

.f8i86uok {
  background: var(--color-light-gray);
  color: var(--color-text-primary);
}

.f8i86uok:hover:not(:disabled) {
  background: #e8e8ea;
}

.f8i86uok:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jpsinput {
  padding: 18px 36px;
  font-size: 18px;
}

.cwi295wg {
  width: 100%;
}

.soaahrxk {
  width: 20px;
  height: 20px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.e0z1r4qw {
  text-align: center;
  margin-bottom: 48px;
}

.cwqc8ezw {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-deep-blue),
    var(--color-sky-blue)
  );
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.e0z1r4qw h2 {
  font-size: 32px;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.e0z1r4qw p {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* Assessment Section */
.en17bv3d {
  background: var(--color-light-gray);
}

.wl3m3u51 {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.j7nbw7fw {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.it1xnrv9 {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-deep-blue),
    var(--color-sky-blue)
  );
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 16.67%;
}

.onighlnu {
  font-size: 14px;
  color: var(--color-calm-gray);
  min-width: 60px;
  text-align: right;
}

.dqb3udlh {
  max-width: 800px;
  margin: 0 auto;
}

.wo3r3unt {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wo3r3unt[data-active="true"] {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.i2oa36mk {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.i2oa36mk svg {
  width: 100%;
  height: 100%;
}

.o4lxjgpn {
  font-size: 24px;
  color: var(--color-deep-blue);
  text-align: center;
  margin-bottom: 8px;
}

.aeb5ylig {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.j374dc45 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prc0y731,
.ozncr999 {
  position: relative;
  display: block;
  padding: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.prc0y731:hover,
.ozncr999:hover {
  border-color: var(--color-deep-blue);
  box-shadow: var(--shadow-sm);
}

.prc0y731[data-selected="true"],
.ozncr999[data-selected="true"],
.prc0y731:has(input:checked),
.ozncr999:has(input:checked) {
  border-color: var(--color-deep-blue);
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.05),
    rgba(66, 165, 245, 0.05)
  );
  box-shadow: var(--shadow-sm);
}

.prc0y731 input,
.ozncr999 input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fi807qzr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s4qlwm87 {
  font-size: 28px;
}

.ynvcu0ij {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.qdfyr7rl {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  transition: var(--transition);
}

.prc0y731[data-selected="true"] .qdfyr7rl,
.prc0y731:has(input:checked) .qdfyr7rl {
  background: var(--color-deep-blue);
  border-color: var(--color-deep-blue);
}

.prc0y731[data-selected="true"] .qdfyr7rl::after,
.prc0y731:has(input:checked) .qdfyr7rl::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.diw70ut5 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bachd4x9 {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.g2i3piuw {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.ztqw4foq {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ztqw4foq.qsjs7qjl {
  max-width: 300px;
}

.de4njyid {
  font-size: 15px;
  color: var(--color-text-primary);
}

.br2lao7b {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.br2lao7b .zlkyejnu {
  min-width: 140px;
}

/* Why Section */
.wh555rmz {
  background: var(--color-white);
}

.fc4lw3in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.qxcm9eqt {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.qxcm9eqt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pyhgge2x {
  font-size: 48px;
  margin-bottom: 16px;
}

.qxcm9eqt h4 {
  font-size: 18px;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.qxcm9eqt p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.pcd4id9w {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.rx2hojsb {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.xyh9xldo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-deep-blue);
}

/* Final Section */
.j6jmiczp {
  background: linear-gradient(
    135deg,
    var(--color-light-gray) 0%,
    var(--color-white) 100%
  );
}

.ndnbckjq {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.izwljb59 {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.izwljb59 svg {
  width: 100%;
  height: 100%;
}

.ndnbckjq h2 {
  font-size: 28px;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.dlc9aps4 {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  font-weight: 500;
}

.pug8ddy8 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.r6e7fr7j {
  text-align: left;
}

.r6e7fr7j label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.r6e7fr7j input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: "Sarabun", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.r6e7fr7j input:focus {
  outline: none;
  border-color: var(--color-deep-blue);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.xp1urdpp {
  font-size: 13px;
  color: var(--color-calm-gray);
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 48px 0 24px;
}

.p5ascosj {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

.f77ue8jt .zo334v49 {
  margin-bottom: 16px;
}

.f77ue8jt .iqigqy68 {
  stroke: var(--color-white);
}

.f77ue8jt .g8sixng4 {
  color: var(--color-white);
}

.i3d14vdy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.mt0id5wd {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.i8t4oxye {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.i8t4oxye:hover {
  color: var(--color-white);
}

.n75bwcf4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.n75bwcf4 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fwjdavqi {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.tafjzii8 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.k7dvi8hm {
  background: var(--color-white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  max-width: 420px;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}

.fx4sazta {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.fx4sazta svg {
  width: 100%;
  height: 100%;
}

.m8omkn4o {
  font-size: 24px;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.gfoo0sby {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .d19sa350 .krewy4f9 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fydkhr4b {
    order: -1;
  }

  .zb1a1tt0 {
    font-size: 36px;
  }

  .fc4lw3in {
    grid-template-columns: repeat(2, 1fr);
  }

  .p5ascosj {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .n75bwcf4 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .shejgk27 {
    display: none;
  }

  .d19sa350 {
    padding: 100px 0 60px;
  }

  .zb1a1tt0 {
    font-size: 28px;
  }

  .fae9mhnl {
    font-size: 16px;
  }

  .n05uypy1 {
    width: 220px;
    height: 440px;
  }

  section {
    padding: 60px 0;
  }

  .e0z1r4qw h2 {
    font-size: 26px;
  }

  .j374dc45 {
    grid-template-columns: 1fr;
  }

  .fc4lw3in {
    grid-template-columns: 1fr;
  }

  .rx2hojsb {
    height: 250px;
  }

  .ndnbckjq {
    padding: 32px 24px;
  }

  .br2lao7b {
    flex-direction: column;
  }

  .br2lao7b .zlkyejnu {
    width: 100%;
  }

  .k7dvi8hm {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .zb1a1tt0 {
    font-size: 24px;
  }

  .jpsinput {
    padding: 16px 28px;
    font-size: 16px;
  }

  .ztqw4foq {
    flex-direction: column;
  }

  .ozncr999 {
    width: 100%;
  }
}
