:root {
  --student-accent: #4ea1ff;
  --student-accent-rgb: 78, 161, 255;
}

.student-zone-hero.accent-green,
.student-service-shell.accent-green {
  --student-accent: #34d399;
  --student-accent-rgb: 52, 211, 153;
}

.student-zone-hero.accent-orange,
.student-service-shell.accent-orange {
  --student-accent: #ffb020;
  --student-accent-rgb: 255, 176, 32;
}

.student-zone-hero.accent-red,
.student-service-shell.accent-red {
  --student-accent: #fb7185;
  --student-accent-rgb: 251, 113, 133;
}

.student-zone-hero.accent-cyan,
.student-service-shell.accent-cyan {
  --student-accent: #22d3ee;
  --student-accent-rgb: 34, 211, 238;
}

.student-zone-hero.accent-purple,
.student-service-shell.accent-purple {
  --student-accent: #a78bfa;
  --student-accent-rgb: 167, 139, 250;
}

.student-zone-hero {
  position: relative;
  min-height: 570px;
  padding: 5.5rem 0 6.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 84% 24%, rgba(var(--student-accent-rgb), 0.2), transparent 25%),
    linear-gradient(125deg, #06172d 0%, #092b59 54%, #0b3fa8 100%);
  overflow: hidden;
}

.student-zone-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.student-zone-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(var(--student-accent-rgb), 0.16);
  border-radius: 50%;
}

.student-zone-glow::before,
.student-zone-glow::after {
  position: absolute;
  border: 1px solid rgba(var(--student-accent-rgb), 0.11);
  border-radius: inherit;
  content: "";
}

.student-zone-glow::before {
  inset: 42px;
}

.student-zone-glow::after {
  inset: 92px;
}

.student-zone-glow.glow-one {
  top: -170px;
  left: -130px;
}

.student-zone-glow.glow-two {
  right: -170px;
  bottom: -210px;
  width: 500px;
  height: 500px;
}

.student-zone-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 3.8rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.student-zone-breadcrumb a {
  color: rgba(255, 255, 255, 0.68);
}

.student-zone-breadcrumb a:hover,
.student-zone-breadcrumb strong {
  color: #fff;
}

.student-zone-breadcrumb i {
  font-size: 0.55rem;
}

.student-zone-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--student-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.student-zone-kicker > i {
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.student-zone-hero h1 {
  max-width: 760px;
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.9rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.student-zone-hero h1::after {
  display: block;
  width: min(490px, 72%);
  height: 4px;
  margin-top: 1.2rem;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--student-accent), transparent);
  content: "";
}

.student-zone-hero p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.student-zone-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
}

.student-zone-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 600;
}

.student-zone-trust i {
  color: var(--student-accent);
  font-size: 0.88rem;
}

.student-zone-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(410px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.visual-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(var(--student-accent-rgb), 0.25);
  border-radius: 50%;
  animation: student-orbit-spin 18s linear infinite;
}

.visual-orbit::before {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--student-accent);
  box-shadow: 0 0 18px var(--student-accent);
  content: "";
}

.visual-orbit.orbit-two {
  inset: 20%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 13s;
}

.visual-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.05);
}

.visual-dot.dot-one {
  top: 21%;
  right: 7%;
}

.visual-dot.dot-two {
  right: 14%;
  bottom: 18%;
}

.visual-dot.dot-three {
  bottom: 13%;
  left: 14%;
}

.visual-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 260px;
  min-height: 315px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06)),
    rgba(7, 29, 58, 0.7);
  box-shadow: 0 30px 70px rgba(0, 8, 24, 0.35);
  transform: translate(-50%, -50%) translateZ(35px) rotate(-4deg);
  backdrop-filter: blur(18px);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--student-accent-rgb), 0.18), transparent 50%);
  content: "";
  pointer-events: none;
}

.visual-card-label,
.visual-card strong,
.visual-card small {
  position: relative;
  display: block;
}

.visual-card-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 2.25rem 0 1.35rem;
  color: #06172d;
  border-radius: 21px;
  background: var(--student-accent);
  box-shadow: 0 16px 34px rgba(var(--student-accent-rgb), 0.23);
  font-size: 2rem;
}

.visual-card strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 750;
}

.visual-card small {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.visual-card-line {
  position: relative;
  height: 1px;
  margin: 1.65rem 0 1.1rem;
  background: rgba(255, 255, 255, 0.12);
}

.visual-card-code {
  position: relative;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
}

.visual-card-code i {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
}

.visual-card-code i:nth-child(1) { height: 45%; }
.visual-card-code i:nth-child(2) { height: 85%; }
.visual-card-code i:nth-child(3) { height: 60%; }
.visual-card-code i:nth-child(4) { height: 100%; background: var(--student-accent); }
.visual-card-code i:nth-child(5) { height: 72%; }
.visual-card-code i:nth-child(6) { height: 92%; }
.visual-card-code i:nth-child(7) { height: 55%; }

.visual-status {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  color: #20314d;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(0, 8, 24, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  transform: translateZ(50px);
  animation: student-status-float 4s ease-in-out infinite;
}

.visual-status i {
  color: #10b981;
  font-size: 1rem;
}

.student-service-switcher {
  position: relative;
  z-index: 4;
  margin-top: -2.2rem;
}

.student-service-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0.55rem;
  border: 1px solid var(--skiisy-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(9, 32, 63, 0.1);
}

.student-service-track > a {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem;
  color: var(--skiisy-text);
  border-radius: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.student-service-track > a:hover {
  color: var(--skiisy-text);
  background: #f5f8fd;
  transform: translateY(-2px);
}

.student-service-track > a.active {
  color: #fff;
  background: var(--skiisy-navy);
}

.service-switch-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #155eef;
  border-radius: 11px;
  background: #eaf1ff;
}

.service-switch-icon.accent-green { color: #059669; background: #e8faf3; }
.service-switch-icon.accent-orange { color: #b86d00; background: #fff6df; }
.service-switch-icon.accent-red { color: #e11d48; background: #fff0f3; }
.service-switch-icon.accent-cyan { color: #0891b2; background: #e8fbff; }
.service-switch-icon.accent-purple { color: #7c3aed; background: #f3efff; }

.student-service-track > a span:nth-child(2) {
  min-width: 0;
}

.student-service-track small,
.student-service-track strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.student-service-track small {
  margin-bottom: 0.15rem;
  color: var(--skiisy-muted);
  font-size: 0.48rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.student-service-track strong {
  font-size: 0.64rem;
}

.student-service-track > a.active small {
  color: rgba(255, 255, 255, 0.5);
}

.switch-arrow {
  display: none;
  margin-left: auto;
}

.student-service-section {
  background:
    radial-gradient(circle at 8% 35%, rgba(21, 94, 239, 0.05), transparent 22%),
    #f7f9fc;
}

.student-service-shell {
  overflow: hidden;
  border: 1px solid var(--skiisy-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(9, 32, 63, 0.09);
}

.student-service-intro {
  position: relative;
  height: 100%;
  min-height: 590px;
  padding: 3.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(var(--student-accent-rgb), 0.2), transparent 27%),
    linear-gradient(145deg, #071a35, #0a2d5a);
  overflow: hidden;
}

.student-service-intro::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(var(--student-accent-rgb), 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(var(--student-accent-rgb), 0.035),
    0 0 0 110px rgba(var(--student-accent-rgb), 0.02);
  content: "";
}

.intro-number {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.055);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
}

.student-service-intro h2 {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 1.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.student-service-intro > p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.8rem;
  line-height: 1.75;
}

.student-service-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.student-service-steps > div {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.student-service-steps > div.active {
  border-color: rgba(var(--student-accent-rgb), 0.3);
  background: rgba(var(--student-accent-rgb), 0.08);
}

.student-service-steps > div > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.student-service-steps > div.active > span {
  color: #071a35;
  background: var(--student-accent);
}

.student-service-steps strong,
.student-service-steps small {
  display: block;
}

.student-service-steps strong {
  color: #fff;
  font-size: 0.7rem;
}

.student-service-steps small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  line-height: 1.45;
}

.student-help-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.student-help-note > i {
  color: var(--student-accent);
}

.student-help-note strong,
.student-help-note small {
  display: block;
}

.student-help-note strong {
  color: #fff;
  font-size: 0.66rem;
}

.student-help-note small {
  max-width: 320px;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.58rem;
  line-height: 1.5;
}

.student-form-panel {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem clamp(2rem, 5vw, 5rem);
}

.student-form-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 17px;
  background: #eaf1ff;
  font-size: 1.45rem;
}

.student-form-heading small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--skiisy-primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.student-form-heading h2 {
  margin: 0;
  color: var(--skiisy-navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.student-zone-form .form-label {
  margin-bottom: 0.55rem;
  color: #34445d;
  font-size: 0.7rem;
  font-weight: 700;
}

.student-input-wrap {
  position: relative;
}

.student-input-wrap > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1rem;
  color: #8b99aa;
  font-size: 0.9rem;
  transform: translateY(-50%);
}

.student-input-wrap .form-control {
  min-height: 58px;
  padding: 0.8rem 3rem 0.8rem 2.85rem;
  color: var(--skiisy-text);
  border-color: #dce3ec;
  border-radius: 14px;
  background: #fbfcfe;
  font-size: 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.student-input-wrap .form-control:focus {
  border-color: rgba(21, 94, 239, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
}

.student-input-wrap:focus-within > i {
  color: var(--skiisy-primary);
}

.password-toggle {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0.75rem;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--skiisy-muted);
  border: 0;
  border-radius: 9px;
  background: transparent;
  transform: translateY(-50%);
}

.password-toggle:hover {
  color: var(--skiisy-primary);
  background: #eef4ff;
}

.student-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.66rem;
}

.student-login-options label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--skiisy-muted);
}

.student-login-options input {
  accent-color: var(--skiisy-primary);
}

.student-login-options a {
  color: var(--skiisy-primary);
  font-weight: 700;
}

.student-submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.75rem 0.8rem 1.35rem;
  color: #fff;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(105deg, var(--skiisy-primary), #0b3fa8);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.22);
  font-size: 0.75rem;
  font-weight: 750;
  overflow: hidden;
}

.student-submit-button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 70%);
  content: "";
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.student-submit-button:hover::before {
  transform: translateX(100%);
}

.student-submit-button:hover {
  color: #fff;
  background: linear-gradient(105deg, #0f53d8, #082f80);
}

.student-submit-button > i {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.14);
}

.student-form-response {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(21, 94, 239, 0.17);
  border-radius: 14px;
  background: #f1f6ff;
  animation: student-response-enter 0.35s ease both;
}

.student-form-response[hidden] {
  display: none;
}

.student-form-response > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 10px;
  background: #fff;
}

.student-form-response strong {
  display: block;
  color: var(--skiisy-navy);
  font-size: 0.68rem;
}

.student-form-response p {
  margin: 0.2rem 0 0;
  color: var(--skiisy-muted);
  font-size: 0.6rem;
  line-height: 1.55;
}

.student-form-response button {
  color: var(--skiisy-muted);
  border: 0;
  background: transparent;
}

.certificate-verification-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: 16px;
  background: linear-gradient(145deg, #f0fdf4, #fff);
  box-shadow: 0 14px 32px rgba(21, 128, 61, 0.08);
}

.certificate-verification-result header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.certificate-verification-result header > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: #16a34a;
  font-size: 1.05rem;
}

.certificate-verification-result header small {
  display: block;
  color: #15803d;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-verification-result h3 {
  margin: 0.15rem 0 0;
  color: var(--skiisy-navy);
  font-size: 0.95rem;
}

.certificate-verification-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin: 0 0 1rem;
}

.certificate-verification-result dl > div {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.certificate-verification-result dt {
  color: var(--skiisy-muted);
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
}

.certificate-verification-result dd {
  margin: 0.18rem 0 0;
  color: var(--skiisy-navy);
  font-size: 0.65rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.certificate-pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  color: #fff;
  border-radius: 10px;
  background: #15803d;
  font-size: 0.62rem;
  font-weight: 800;
  text-decoration: none;
}

.certificate-pdf-link:hover {
  color: #fff;
  background: #166534;
}

.certificate-verification-result > p {
  margin: 0.65rem 0 0;
  color: var(--skiisy-muted);
  font-size: 0.52rem;
}

.student-result-panel {
  min-height: auto;
  justify-content: flex-start;
  padding: 3rem;
}

.student-result-panel > .student-form-heading,
.student-result-panel > .student-zone-form {
  width: min(100%, 650px);
  margin-right: auto;
  margin-left: auto;
}

.student-result-panel > .student-form-heading {
  margin-bottom: 2rem;
}

.certificate-document-result {
  width: 100%;
  margin-top: 2.5rem;
  color: #16254c;
}

.certificate-record-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  color: #fff;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(110deg, #0d713c, #159455 62%, #0e7b46);
  box-shadow: 0 10px 25px rgba(18, 129, 70, 0.18);
}

.certificate-record-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.35rem;
}

.certificate-record-heading > div {
  min-width: 0;
}

.certificate-record-heading small {
  display: block;
  color: #c7f9d8;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.certificate-record-heading h3 {
  margin: 0.15rem 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
}

.certificate-record-heading p {
  margin: 0.16rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.certificate-record-heading > em {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.certificate-student-summary {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.1rem;
  border: 1px solid #e0e8e3;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(140deg, #f8fdf9, #fff 65%);
  box-shadow: 0 8px 24px rgba(15, 74, 42, 0.06);
}

.certificate-student-photo > div {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border: 2px solid #dce8e0;
  border-radius: 8px;
  background: linear-gradient(145deg, #e5f5eb, #e8f1ff);
}

.certificate-student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-student-photo > div > span {
  color: #579575;
  font-size: 3.2rem;
}

.certificate-student-photo > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.45rem;
  padding: 0.42rem 0.25rem;
  color: #137541;
  border: 1px solid #d6ebde;
  border-radius: 7px;
  background: #effaf3;
  font-size: 0.52rem;
  text-align: center;
}

.certificate-student-details {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.2rem;
  margin: 0;
}

.certificate-student-details > div {
  display: grid;
  grid-template-columns: minmax(105px, 0.8fr) minmax(0, 1.3fr);
  gap: 0.4rem;
  min-width: 0;
  padding: 0.43rem 0;
  border-bottom: 1px solid #e7ece9;
}

.certificate-student-details dt,
.certificate-student-details dd {
  font-size: 0.57rem;
  line-height: 1.45;
}

.certificate-student-details dt {
  color: #36507e;
  font-weight: 750;
}

.certificate-student-details dd {
  position: relative;
  min-width: 0;
  margin: 0;
  padding-left: 0.7rem;
  color: #182238;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.certificate-student-details dd::before {
  position: absolute;
  left: 0;
  color: #6b778a;
  content: ":";
}

.certificate-verification-code {
  grid-column: 1 / -1;
}

.certificate-verification-code dd {
  color: #147642;
  letter-spacing: 0.025em;
}

.student-document-availability {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e1e6ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 38, 83, 0.05);
}

.student-document-availability > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.student-document-availability > header small {
  display: block;
  color: #3158bd;
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.student-document-availability > header h3 {
  margin: 0.12rem 0 0;
  color: #142654;
  font-size: 0.9rem;
  font-weight: 850;
}

.student-document-availability > header > span {
  color: #778399;
  font-size: 0.52rem;
  font-weight: 650;
}

.verified-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.verified-document-card {
  display: flex;
  min-width: 0;
  min-height: 225px;
  flex-direction: column;
  padding: 0.9rem;
  border: 1px solid #e2e7f0;
  border-radius: 10px;
  background: #fbfcfe;
}

.verified-document-card.is-available {
  border-color: #cfe8d7;
  background: linear-gradient(145deg, #f5fcf7, #fff);
}

.verified-document-card.is-unavailable {
  opacity: 0.8;
}

.verified-document-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.verified-document-card-top > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #2450b7;
  border-radius: 10px;
  background: #eaf0ff;
  font-size: 0.95rem;
}

.is-available .verified-document-card-top > span {
  color: #147642;
  background: #e6f6ec;
}

.verified-document-card-top em {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #6d788a;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 800;
}

.is-available .verified-document-card-top em {
  color: #168048;
}

.verified-document-card h4 {
  margin: 0.7rem 0 0;
  color: #172753;
  font-size: 0.72rem;
  font-weight: 850;
}

.verified-document-card > p {
  min-height: 2.2em;
  margin: 0.2rem 0 0;
  color: #68758b;
  font-size: 0.52rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.verified-document-card dl {
  margin: 0.55rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid #e5eae7;
}

.verified-document-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.13rem 0;
}

.verified-document-card dt,
.verified-document-card dd {
  margin: 0;
  font-size: 0.49rem;
}

.verified-document-card dt {
  color: #708096;
}

.verified-document-card dd {
  color: #263650;
  font-weight: 750;
  text-align: right;
}

.verified-document-card > a,
.verified-record-only,
.document-not-issued {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.7rem;
  font-size: 0.51rem;
  font-weight: 800;
}

.verified-document-card > a {
  justify-content: space-between;
  color: #fff;
  padding: 0.55rem 0.65rem;
  border-radius: 7px;
  background: #157b46;
  text-decoration: none;
}

.verified-document-card > a:hover {
  color: #fff;
  background: #0e6337;
}

.verified-record-only {
  color: #157744;
}

.document-not-issued {
  color: #7a8494;
}

.certificate-verification-footer {
  margin-top: 1rem;
}

.signed-document-note {
  margin: 0.55rem 0 0;
  color: #778399;
  font-size: 0.5rem;
  text-align: right;
}

.signed-document-note i {
  color: #168048;
}

.verification-dashboard {
  overflow: hidden;
  border: 1px solid #d8e3ed;
  border-radius: 12px;
  background: #f8fbfd;
  box-shadow: 0 14px 38px rgba(22, 49, 83, 0.08);
}

.verification-result-page {
  min-height: 72vh;
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(3rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(42, 110, 232, 0.09), transparent 28rem),
    linear-gradient(180deg, #f8fbff, #fff 32%);
}

.verification-result-container {
  width: min(1580px, calc(100% - 2rem));
  margin: 0 auto;
}

.verification-result-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: #71809b;
  font-size: 0.75rem;
  font-weight: 700;
}

.verification-result-breadcrumb a {
  color: #315ec6;
  text-decoration: none;
}

.verification-result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.verification-result-heading span {
  color: #128044;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verification-result-heading h1 {
  margin: 0.35rem 0 0.4rem;
  color: #12234d;
  font: 850 clamp(1.65rem, 3vw, 2.65rem)/1.12 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.verification-result-heading p {
  max-width: 760px;
  margin: 0;
  color: #66748d;
  font-size: 0.9rem;
}

.verification-result-heading > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  color: #244faa;
  border: 1px solid #d5e0f5;
  border-radius: 10px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.verification-result-page .verification-success-bar {
  padding: 1.2rem 1.5rem;
}

.verification-result-page .verification-success-copy > span {
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
}

.verification-result-page .verification-success-copy strong {
  font-size: 1rem;
}

.verification-result-page .verification-success-copy small,
.verification-result-page .verification-success-meta {
  font-size: 0.72rem;
}

.verification-result-page .verification-document-layout {
  grid-template-columns: minmax(350px, 1fr) repeat(2, minmax(420px, 1.25fr));
  gap: 1rem;
  padding: 1rem;
}

.verification-result-page .verification-document-layout.has-one-preview {
  grid-template-columns: minmax(380px, 0.9fr) minmax(600px, 1.6fr);
}

.verification-result-page .verification-student-card,
.verification-result-page .verification-preview-card {
  padding: 1rem;
}

.verification-result-page .verification-student-card > h3,
.verification-result-page .verification-preview-card > h3 {
  font-size: 0.78rem;
}

.verification-result-page .verification-student-body {
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 1rem;
}

.verification-result-page .verification-student-body dl > div {
  grid-template-columns: 18px minmax(105px, 0.9fr) minmax(0, 1.3fr);
  padding: 0.4rem 0;
}

.verification-result-page .verification-student-body dl i,
.verification-result-page .verification-student-body dt,
.verification-result-page .verification-student-body dd {
  font-size: 0.66rem;
}

.verification-result-page .verification-pdf-preview {
  height: 610px;
}

.verification-result-page .verification-pdf-preview > a,
.verification-result-page .verification-id-card-link {
  font-size: 0.65rem;
}

.verification-result-page .admission-verification-result {
  margin-top: 0;
}

.verification-result-page .admission-verification-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, 0.85fr);
  gap: 1.15rem;
}

.verification-result-page .admission-side-column {
  gap: 1.15rem;
}

.verification-result-page .admission-card-heading {
  min-height: 56px;
  padding: 0.85rem 1.1rem;
}

.verification-result-page .admission-card-heading h3 {
  font-size: 0.82rem;
}

.verification-result-page .admission-student-content {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.25rem;
}

.verification-result-page .student-detail-list > div {
  grid-template-columns: 20px minmax(130px, 0.85fr) minmax(0, 1.5fr);
  padding: 0.45rem 0;
}

.verification-result-page .student-detail-list > div > i,
.verification-result-page .admission-detail-list dt,
.verification-result-page .admission-detail-list dd {
  font-size: 0.72rem;
}

.verification-result-page .compact-detail-list {
  padding: 1rem 1.2rem;
}

.verification-result-page .compact-detail-list > div {
  padding: 0.58rem 0;
}

.verification-result-page .verified-student-badge {
  padding: 0.55rem 0.35rem;
  font-size: 0.65rem;
}

@media (max-width: 1350px) {
  .verification-result-page .verification-document-layout {
    grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1.4fr);
  }

  .verification-result-page .verification-preview-card:last-child {
    grid-column: 2;
  }
}

@media (max-width: 991.98px) {
  .verification-result-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .verification-result-page .verification-document-layout,
  .verification-result-page .verification-document-layout.has-one-preview,
  .verification-result-page .admission-verification-grid {
    grid-template-columns: 1fr;
  }

  .verification-result-page .verification-preview-card:last-child {
    grid-column: auto;
  }

  .verification-result-page .verification-pdf-preview {
    height: 720px;
  }
}

@media (max-width: 575.98px) {
  .verification-result-container {
    width: min(100% - 1rem, 1580px);
  }

  .verification-result-page .admission-student-content,
  .verification-result-page .verification-student-body {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .verification-result-page .student-detail-list > div,
  .verification-result-page .verification-student-body dl > div {
    grid-template-columns: 15px minmax(82px, 0.85fr) minmax(0, 1.15fr);
  }

  .verification-result-page .verification-pdf-preview {
    height: 480px;
  }
}

.verification-success-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #b9dfcb;
  background: linear-gradient(90deg, #f3fcf7, #f9fefd);
}

.verification-success-copy,
.verification-success-meta,
.verification-success-copy p {
  display: flex;
  align-items: center;
}

.verification-success-copy {
  gap: 0.75rem;
}

.verification-success-copy > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #07933b;
  font-size: 1.35rem;
  box-shadow: 0 5px 14px rgba(7, 147, 59, 0.2);
}

.verification-success-copy p {
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
}

.verification-success-copy strong {
  color: #087832;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.verification-success-copy small {
  margin-top: 0.1rem;
  color: #39724e;
  font-size: 0.58rem;
}

.verification-success-meta {
  gap: 1rem;
  color: #344461;
  font-size: 0.56rem;
  font-weight: 650;
}

.verification-success-meta span {
  white-space: nowrap;
}

.verification-success-meta i {
  margin: 0 0.2rem;
  color: #3159bd;
}

.verification-success-meta > strong {
  padding: 0.32rem 1rem;
  color: #fff;
  border-radius: 5px;
  background: #078d31;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verification-document-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.8rem;
}

.verification-student-card,
.verification-preview-card {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid #dfe6ef;
  border-radius: 9px;
  background: #fff;
}

.verification-student-card > h3,
.verification-preview-card > h3 {
  margin: 0 0 0.7rem;
  color: #172d65;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.verification-student-card > h3 i,
.verification-preview-card > h3 i {
  margin-right: 0.35rem;
  color: #315ec6;
}

.verification-preview-card > h3 small {
  float: right;
  color: #6a7890;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.verification-student-body {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.75rem;
}

.verification-student-body aside > strong {
  display: block;
  margin-top: 0.55rem;
  padding: 0.35rem 0.3rem;
  color: #168044;
  border-radius: 5px;
  background: #eef9f2;
  font-size: 0.48rem;
  text-align: center;
}

.verification-student-photo {
  overflow: hidden;
  aspect-ratio: 0.78;
  border: 3px solid #eef2f4;
  border-radius: 6px;
  background: #edf3f8;
}

.verification-student-photo img,
.verification-student-photo span {
  width: 100%;
  height: 100%;
}

.verification-student-photo img {
  display: block;
  object-fit: cover;
}

.verification-student-photo span {
  display: grid;
  place-items: center;
  color: #7c8ca5;
  font-size: 2rem;
}

.verification-student-body dl {
  min-width: 0;
  margin: 0;
}

.verification-student-body dl > div {
  display: grid;
  grid-template-columns: 15px minmax(76px, 0.85fr) minmax(0, 1.25fr);
  gap: 0.3rem;
  padding: 0.25rem 0;
  border-bottom: 1px dotted #e4e8ed;
}

.verification-student-body dl i {
  color: #3862c2;
  font-size: 0.55rem;
}

.verification-student-body dt,
.verification-student-body dd {
  margin: 0;
  font-size: 0.49rem;
  line-height: 1.35;
}

.verification-id-card-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding: 0.55rem;
  color: #244caa;
  border: 1px solid #dbe5fa;
  border-radius: 6px;
  background: #f5f8ff;
  font-size: 0.48rem;
  font-weight: 800;
  text-decoration: none;
}

.verification-id-card-link > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.verification-id-card-link small {
  color: #73809a;
  font-size: 0.43rem;
  overflow-wrap: anywhere;
}

.verification-document-layout.has-one-preview {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2fr);
}

.verification-student-body dt {
  color: #61708a;
  font-weight: 650;
}

.verification-student-body dd {
  color: #1e315b;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.verification-pdf-preview {
  position: relative;
  overflow: hidden;
  height: 385px;
  border: 2px solid #3475e8;
  border-radius: 5px;
  background: #edf2f7;
}

.verification-pdf-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.verification-pdf-preview > a {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.38rem 0.55rem;
  color: #fff;
  border-radius: 5px;
  background: rgba(18, 52, 116, 0.92);
  box-shadow: 0 4px 12px rgba(18, 52, 116, 0.2);
  font-size: 0.5rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1099.98px) {
  .verification-document-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .verification-preview-card:last-child {
    grid-column: 2;
  }
}

@media (max-width: 767.98px) {
  .verification-success-bar,
  .verification-success-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .verification-success-meta {
    gap: 0.45rem;
    padding-left: 3.15rem;
  }

  .verification-document-layout {
    grid-template-columns: 1fr;
  }

  .verification-preview-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 419.98px) {
  .verification-student-body {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .verification-student-body dl > div {
    grid-template-columns: 14px minmax(65px, 0.8fr) minmax(0, 1.2fr);
  }

  .verification-pdf-preview {
    height: 320px;
  }
}

.admission-verification-result {
  width: 100%;
  margin-top: 2.5rem;
  color: #16254c;
}

.admission-verification-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  gap: 0.85rem;
}

.admission-side-column {
  display: grid;
  align-content: stretch;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.admission-detail-card {
  overflow: hidden;
  border: 1px solid #e3e8f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(15, 35, 83, 0.05);
}

.admission-card-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 43px;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #e8ebf5;
  background: linear-gradient(90deg, #f8f9ff, #fcfdff);
}

.admission-card-heading > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: #182f83;
  border-radius: 7px;
  background: #edf1ff;
  font-size: 0.68rem;
}

.admission-card-heading h3 {
  margin: 0;
  color: #142b75;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.admission-student-content {
  display: grid;
  align-items: start;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.8rem;
}

.verified-photo-column {
  min-width: 0;
}

.verified-student-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border: 2px solid #e5e9f4;
  border-radius: 7px;
  background: linear-gradient(145deg, #e9f4ff, #dbeafe);
}

.verified-student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-student-photo > span {
  color: #6792c7;
  font-size: 3rem;
}

.verified-student-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.45rem;
  padding: 0.42rem 0.3rem;
  color: #117a3f;
  border: 1px solid #d9eee1;
  border-radius: 6px;
  background: #f1fbf5;
  font-size: 0.52rem;
  font-weight: 800;
  text-align: center;
}

.admission-detail-list {
  margin: 0;
}

.admission-detail-list > div {
  display: grid;
  min-width: 0;
  align-items: start;
  padding: 0.29rem 0;
}

.student-detail-list > div {
  grid-template-columns: 15px minmax(90px, 0.75fr) minmax(0, 1.4fr);
  gap: 0.34rem;
}

.student-detail-list > div > i {
  color: #224cb5;
  font-size: 0.55rem;
  line-height: 1.45;
}

.admission-detail-list dt,
.admission-detail-list dd {
  min-width: 0;
  line-height: 1.4;
}

.admission-detail-list dt {
  color: #24417f;
  font-size: 0.55rem;
  font-weight: 750;
}

.admission-detail-list dd {
  position: relative;
  margin: 0;
  padding-left: 0.7rem;
  color: #1f2937;
  font-size: 0.55rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.admission-detail-list dd::before {
  position: absolute;
  left: 0;
  color: #53627c;
  content: ":";
}

.compact-detail-list {
  padding: 0.65rem 0.9rem;
}

.compact-detail-list > div {
  grid-template-columns: minmax(98px, 0.9fr) minmax(0, 1.1fr);
  gap: 0.3rem;
  padding: 0.39rem 0;
}

.confirmed-admission {
  color: #15803d !important;
  font-weight: 850 !important;
}

.admission-verification-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #dce8e0;
  border-radius: 9px;
  background: linear-gradient(90deg, #f7fcf8, #fbfdff);
}

.admission-verified-message,
.admission-verified-time,
.admission-verified-time > span {
  display: flex;
  align-items: center;
}

.admission-verified-message {
  gap: 0.6rem;
}

.admission-verified-message > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: #168144;
  font-size: 1rem;
}

.admission-verified-message p {
  margin: 0;
}

.admission-verified-message strong,
.admission-verified-message small {
  display: block;
}

.admission-verified-message strong {
  color: #1f2937;
  font-size: 0.57rem;
}

.admission-verified-message small {
  margin-top: 0.1rem;
  color: #56637b;
  font-size: 0.5rem;
}

.admission-verified-time {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  color: #40516f;
  font-size: 0.52rem;
  font-weight: 650;
}

.admission-verified-time > span {
  gap: 0.3rem;
}

.admission-verified-time i {
  color: #2550bc;
  font-size: 0.68rem;
}

.admission-verified-time strong {
  color: #178248;
}

.student-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.6rem;
  color: #8290a3;
}

.student-privacy-note > i {
  color: #10b981;
  font-size: 0.72rem;
}

.student-privacy-note p {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.55;
}

.student-privacy-note strong {
  color: #56657a;
}

.student-support-strip {
  padding: 3.2rem 0;
  color: #fff;
  background: linear-gradient(105deg, #0b3fa8, #155eef);
}

.student-support-strip span {
  color: #8edfff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.student-support-strip h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

@keyframes student-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes student-status-float {
  50% {
    transform: translateY(-8px) translateZ(50px);
  }
}

@keyframes student-response-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 1199.98px) {
  .student-service-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .student-service-track strong {
    font-size: 0.68rem;
  }
}

@media (max-width: 991.98px) {
  .student-zone-hero {
    padding: 4.5rem 0 5.5rem;
  }

  .student-zone-breadcrumb {
    margin-bottom: 2.8rem;
  }

  .student-zone-visual {
    width: min(370px, 90vw);
  }

  .student-service-intro {
    min-height: auto;
    padding: 3rem;
  }

  .student-form-panel {
    min-height: 520px;
    padding: 3rem;
  }

  .student-result-panel {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .student-zone-hero {
    min-height: auto;
    padding: 3.5rem 0 5rem;
  }

  .student-zone-breadcrumb {
    margin-bottom: 2.2rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .student-zone-breadcrumb strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .student-zone-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .student-zone-hero p {
    font-size: 0.86rem;
  }

  .student-zone-trust {
    gap: 0.65rem 1rem;
  }

  .student-zone-visual {
    width: min(330px, 90vw);
  }

  .visual-card {
    width: 220px;
    min-height: 280px;
  }

  .visual-card-icon {
    width: 64px;
    height: 64px;
    margin-top: 1.8rem;
  }

  .visual-status {
    right: 3%;
    bottom: 14%;
  }

  .student-service-switcher {
    margin-top: -1.8rem;
  }

  .student-service-track {
    display: flex;
    padding: 0.45rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .student-service-track::-webkit-scrollbar {
    display: none;
  }

  .student-service-track > a {
    min-width: 205px;
    scroll-snap-align: start;
  }

  .switch-arrow {
    display: block;
  }

  .student-service-shell {
    border-radius: 22px;
  }

  .student-service-intro,
  .student-form-panel {
    padding: 2.2rem 1.4rem;
  }

  .student-service-intro h2 {
    font-size: 2.15rem;
  }

  .student-form-panel {
    min-height: auto;
  }

  .student-form-heading {
    margin-bottom: 2rem;
  }

  .certificate-verification-result dl {
    grid-template-columns: 1fr;
  }

  .certificate-pdf-link {
    width: 100%;
  }

  .student-result-panel {
    padding: 2.2rem 1.4rem;
  }

  .certificate-student-details {
    gap: 0 0.7rem;
  }

  .certificate-student-details > div {
    grid-template-columns: minmax(90px, 0.75fr) minmax(0, 1.25fr);
  }

  .admission-verification-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr);
  }

  .admission-student-content {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .student-detail-list > div {
    grid-template-columns: 13px minmax(82px, 0.7fr) minmax(0, 1.3fr);
    gap: 0.25rem;
  }

  .compact-detail-list {
    padding: 0.55rem 0.65rem;
  }

  .compact-detail-list > div {
    grid-template-columns: minmax(84px, 0.85fr) minmax(0, 1.15fr);
  }

  .admission-verification-footer {
    align-items: flex-start;
  }

  .student-support-strip {
    text-align: center;
  }
}

@media (max-width: 639.98px) {
  .certificate-record-heading > em {
    display: none;
  }

  .certificate-student-summary {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .certificate-student-details,
  .verified-document-grid {
    grid-template-columns: 1fr;
  }

  .certificate-verification-code {
    grid-column: auto;
  }

  .verified-document-card {
    min-height: 205px;
  }

  .admission-verification-grid {
    grid-template-columns: 1fr;
  }

  .admission-side-column {
    grid-template-rows: auto;
  }

  .admission-verification-footer,
  .admission-verified-time {
    align-items: flex-start;
    flex-direction: column;
  }

  .admission-verified-time {
    justify-content: flex-start;
  }
}

@media (max-width: 419.98px) {
  .student-zone-trust span {
    width: 100%;
  }

  .student-zone-visual {
    width: 290px;
  }

  .visual-status {
    right: -2%;
  }

  .student-service-steps > div {
    grid-template-columns: 36px 1fr;
    padding: 0.7rem;
  }

  .student-service-steps > div > span {
    width: 34px;
    height: 34px;
  }

  .admission-student-content {
    grid-template-columns: 1fr;
  }

  .verified-photo-column {
    width: 125px;
    margin: 0 auto 0.5rem;
  }

  .certificate-student-summary {
    grid-template-columns: 1fr;
  }

  .certificate-student-photo {
    width: 125px;
    margin: 0 auto 0.5rem;
  }

  .certificate-record-heading {
    align-items: flex-start;
  }

  .certificate-record-heading > span {
    width: 42px;
    height: 42px;
  }

  .student-document-availability > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .student-login-options {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-orbit,
  .visual-status {
    animation: none;
  }

  .student-zone-visual,
  .student-service-track > a,
  .student-submit-button::before {
    transition: none;
  }
}
