:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --text: #16222d;
  --muted: #5f6d79;
  --brand: #eb3422;
  --brand-dark: #bf2216;
  --green: #7fb71f;
  --green-dark: #5d890f;
  --line: rgba(22, 34, 45, 0.08);
  --shadow: 0 18px 48px rgba(22, 34, 45, 0.08);
  --shadow-hover: 0 22px 44px rgba(22, 34, 45, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(127, 183, 31, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(235, 52, 34, 0.1), transparent 24%),
    var(--bg);
}
body.translated-ltr,
body {
  top: 0 !important;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }
button, a, select, input, textarea {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

button.is-pressed,
a.is-pressed {
  transform: translateY(1px) scale(0.985);
}

button.was-pressed,
a.was-pressed {
  box-shadow: 0 0 0 4px rgba(235, 52, 34, 0.12);
}

.wrap { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-shell { padding: 14px 0; }

.brand-mark,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark img,
.footer-brand img {
  width: 74px;
  flex: 0 0 auto;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-dropdown {
  position: relative;
}

.main-nav > .nav-dropdown > a,
.footer-nav a,
.header-cta,
.button-primary,
.button-secondary {
  border-radius: 999px;
  font-weight: 800;
}

.main-nav a,
.footer-nav a {
  padding: 10px 14px;
}

.main-nav > .nav-dropdown > a.is-active,
.main-nav > .nav-dropdown > a:hover {
  background: var(--brand);
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  display: none;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: rgba(22, 34, 45, 0.05);
  color: var(--text);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 6px;
}

.header-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(235, 52, 34, 0.16);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(235, 52, 34, 0.22);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 24px rgba(22, 34, 45, 0.08);
}

.hero-section,
.page-hero {
  padding: 12px 0 8px;
}

.language-banner {
  padding: 12px 0 0;
}

.language-banner-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(127, 183, 31, 0.12), rgba(235, 52, 34, 0.08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.language-banner-shell strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}

.language-banner-shell p {
  margin: 0;
  color: var(--muted);
}

.language-banner-control {
  min-width: 250px;
}

.language-banner-control select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22, 34, 45, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.hero-layout,
.feature-layout,
.page-hero-shell,
.live-test-layout,
.contact-layout-two {
  display: grid;
  gap: 20px;
}

.hero-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-content h1,
.section-heading h2,
.page-hero-shell h1,
.product-copy h2,
.role-box h2,
.result-card h2,
.contact-info-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  line-height: 1.16;
}

.hero-content h1 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  letter-spacing: -0.02em;
}

.section-heading h2,
.page-hero-shell h1,
.product-copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  letter-spacing: -0.02em;
}

.role-box h2,
.result-card h2,
.contact-info-card h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
}

.hero-summary,
.page-intro,
.product-copy p,
.sector-card p,
.feature-copy-block p,
.category-card p,
.role-box p,
.contact-info-card p,
.footer-brand p,
.result-intro {
  color: var(--muted);
  line-height: 1.75;
}

.hero-summary,
.feature-copy-block p,
.category-card p,
.sector-card p {
  max-width: 58ch;
}

.hero-summary,
.page-intro,
.feature-copy-block p,
.category-card p,
.sector-card p,
.result-intro {
  margin: 0;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.hero-tags,
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions { margin: 16px 0 14px; }

.hero-language-card {
  max-width: 420px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.hero-language-label {
  display: grid;
  gap: 10px;
}

.hero-language-label span {
  font-weight: 800;
}

.hero-language-label select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22, 34, 45, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.hero-language-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-tags span,
.feature-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-weight: 700;
}

.hero-tags span:hover,
.feature-pills span:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
}

.hero-focus,
.mini-visual-card,
.sector-card,
.category-card,
.feature-copy-block,
.feature-photo-card,
.form-card,
.result-card,
.role-box,
.contact-info-card,
.pricing-panels article,
.trust-grid article {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-focus,
.sector-card,
.category-card,
.feature-copy-block,
.feature-photo-card,
.trust-grid article,
.pricing-panels article,
.hero-caption-card,
.mini-stat-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero-focus,
.sector-card,
.category-card,
.feature-copy-block,
.feature-photo-card,
.form-card,
.result-card,
.role-box,
.contact-info-card,
.pricing-panels article,
.trust-grid article {
  border-radius: var(--radius-xl);
}

.hero-focus {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 153, 51, 0.12), rgba(255, 255, 255, 0.86) 36%, rgba(19, 136, 8, 0.12)),
    var(--surface);
}

.hero-india-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 15px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.22), rgba(255, 255, 255, 0.92) 45%, rgba(19, 136, 8, 0.18));
  border: 1px solid rgba(22, 34, 45, 0.1);
}

.hero-india-copy {
  max-width: 34ch;
}

.hero-india-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-india-copy h2 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.2;
}

.hero-india-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-india-price {
  min-width: 160px;
  padding: 13px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 34, 45, 0.08);
  text-align: center;
}

.hero-india-price strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  color: var(--brand);
}

.hero-india-price span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-device {
  border-radius: 22px;
  max-height: 470px;
  object-fit: cover;
}

.hero-caption-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-caption-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 34, 45, 0.08);
}

.hero-caption-card img {
  height: 150px;
  object-fit: cover;
}

.hero-caption-card-large img {
  height: 100%;
  min-height: 310px;
}

.hero-caption-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.hero-caption-card figcaption strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero-caption-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.hero-focus:hover,
.sector-card:hover,
.category-card:hover,
.feature-copy-block:hover,
.feature-photo-card:hover,
.trust-grid article:hover,
.pricing-panels article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mini-stat-card:hover,
.hero-caption-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(22, 34, 45, 0.1);
}

.hero-caption-card:hover img,
.feature-photo-card:hover img,
.sector-card:hover .content-card-image,
.category-card:hover .content-card-image {
  transform: scale(1.03);
}

.hero-caption-card img,
.feature-photo-card img,
.content-card-image {
  transition: transform 260ms ease;
}

.hero-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.mini-visual-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.mini-visual-card img {
  height: 210px;
  object-fit: cover;
}

.mini-visual-card div {
  padding: 16px;
}

.mini-visual-card strong {
  display: block;
  margin-bottom: 4px;
}

.mini-visual-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 2px 0 0;
}

.trust-grid,
.sector-grid,
.category-grid,
.role-grid,
.certificate-grid {
  display: grid;
  gap: 14px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article,
.sector-card,
.category-card,
.role-box {
  padding: 18px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.content-section {
  padding: 10px 0 12px;
}

.section-heading {
  margin-bottom: 14px;
}

.sector-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-section {
  background: linear-gradient(180deg, rgba(127, 183, 31, 0.05), rgba(235, 52, 34, 0.04));
}

.feature-layout {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
}

.feature-copy-block,
.feature-photo-card,
.contact-info-card,
.live-result-card {
  padding: 18px;
}

.feature-photo-card img,
.page-hero-image {
  border-radius: 22px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
}

.certificates-section {
  padding-bottom: 52px;
}

.certificate-grid {
  grid-template-columns: repeat(4, 1fr);
}

.certificate-grid img {
  padding: 10px;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.certificate-page-grid,
.company-doc-grid,
.download-grid {
  display: grid;
  gap: 18px;
}

.certificate-page-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.certificate-card,
.download-card,
.download-note {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.certificate-card {
  padding: 18px;
}

.certificate-card h2 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.download-grid {
  grid-template-columns: repeat(3, 1fr);
}

.download-card {
  display: block;
  padding: 22px;
}

.download-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.download-card span,
.download-note p {
  color: var(--muted);
  line-height: 1.7;
}

.download-note {
  padding: 22px;
}

.page-hero-shell {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.page-hero-shell > :only-child {
  grid-column: 1 / -1;
  max-width: 840px;
}

.page-hero-image {
  min-height: 220px;
}

.product-stack {
  display: grid;
  gap: 18px;
}

.product-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.product-row.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-row.reverse img {
  order: 2;
}

.product-row img {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-height: 370px;
  object-fit: contain;
}

.product-copy {
  padding: 4px 0;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.live-hero-shell {
  grid-template-columns: 1fr 0.7fr;
}

.live-test-page .page-hero {
  padding: 8px 0 2px;
}

.live-test-page .page-hero-shell {
  align-items: end;
  gap: 18px;
}

.live-test-page .page-intro {
  max-width: 58ch;
}

.live-test-page .content-section {
  padding: 6px 0 10px;
}

.live-test-page .live-registration-section {
  padding-top: 0;
}

.pricing-panels {
  display: grid;
  gap: 16px;
}

.pricing-panels article {
  padding: 22px;
}

.pricing-panels strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

.pricing-panels span {
  color: var(--muted);
}

.live-test-layout {
  grid-template-columns: 1fr 0.9fr;
}

.live-test-page .live-test-layout {
  align-items: start;
  gap: 18px;
}

.form-card {
  padding: 24px;
}

.live-test-page .test-form-card,
.live-test-page .live-result-card {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.96));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 24px 44px rgba(22, 34, 45, 0.08);
}

.live-test-page .test-form-card {
  padding: 26px;
}

.live-test-page .live-result-card {
  position: sticky;
  top: 90px;
}

.form-intro {
  margin: -2px 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-inline-actions {
  display: flex;
  align-items: end;
}

.live-test-page .form-grid-two {
  gap: 16px;
}

.form-card label {
  display: block;
  margin-bottom: 14px;
}

.form-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22, 34, 45, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.live-test-page .form-card input,
.live-test-page .form-card select,
.live-test-page .form-card textarea {
  min-height: 54px;
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.live-test-page .form-card input:focus,
.live-test-page .form-card select:focus,
.live-test-page .form-card textarea:focus {
  outline: none;
  border-color: rgba(235, 52, 34, 0.44);
  box-shadow: 0 0 0 4px rgba(235, 52, 34, 0.12);
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 16px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(127, 183, 31, 0.08), rgba(235, 52, 34, 0.06));
  border: 1px solid var(--line);
}

.price-box strong {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.form-button {
  border: none;
  cursor: pointer;
}

.live-test-page .form-button {
  position: relative;
  overflow: hidden;
}

.live-test-page .form-button::after {
  content: "";
  position: absolute;
  inset: auto auto -36px 50%;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%) scale(0);
  transition: transform 240ms ease;
}

.live-test-page .form-button.was-pressed::after {
  transform: translateX(-50%) scale(1);
}

.live-test-page .button-primary.form-button,
.live-test-page #paymentButton {
  min-height: 54px;
  font-size: 1rem;
  font-weight: 800;
}

.live-test-page #paymentButton.was-pressed,
.live-test-page .button-primary.form-button.was-pressed {
  box-shadow: 0 0 0 5px rgba(127, 183, 31, 0.18);
}

.result-card h2 {
  margin-top: 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  margin-bottom: 10px;
  background: rgba(22, 34, 45, 0.04);
  border-radius: 14px;
}

.result-row-normal {
  background: rgba(127, 183, 31, 0.14);
}

.result-row-watch {
  background: rgba(255, 198, 43, 0.24);
}

.result-row-alert {
  background: rgba(235, 52, 34, 0.16);
}

.result-row-emphasis strong,
.result-row-emphasis span {
  font-weight: 800;
}

.lab-report-shell {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(22, 34, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 251, 0.97));
  box-shadow: 0 18px 34px rgba(22, 34, 45, 0.08);
}

.lab-report-header {
  display: grid;
  grid-template-columns: 88px 1fr auto 108px;
  align-items: start;
  gap: 14px;
}

.lab-report-brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lab-report-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.lab-report-title-block {
  display: grid;
  gap: 6px;
}

.lab-report-kicker {
  display: block;
  margin-bottom: 6px;
  color: #61707c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-report-header h3 {
  margin: 0;
  font-size: 1.28rem;
}

.lab-report-subtitle {
  margin: 0;
  color: #61707c;
  font-size: 0.82rem;
  line-height: 1.5;
}

.lab-report-qr-box {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: rgba(247, 249, 250, 0.98);
}

.lab-report-qr-image {
  width: 112px;
  height: 112px;
  padding: 8px;
  box-sizing: border-box;
  object-fit: contain;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: #ffffff;
}

.lab-report-qr-box span {
  color: #6b7882;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lab-report-patient-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: rgba(247, 249, 250, 0.98);
}

.lab-report-patient-inline-item span {
  display: block;
  margin-bottom: 4px;
  color: #6b7882;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lab-report-patient-inline-item strong {
  font-size: 0.92rem;
  color: #16222d;
}

.lab-report-capture {
  display: grid;
  gap: 10px;
}

.lab-report-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(22, 34, 45, 0.08);
}

.lab-report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #ffffff;
}

.lab-report-table thead th {
  padding: 13px 14px;
  background: #16222d;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.lab-report-table tbody th,
.lab-report-table tbody td {
  padding: 13px 14px;
  border-top: 1px solid rgba(22, 34, 45, 0.08);
  text-align: left;
  vertical-align: top;
}

.lab-report-table tbody th {
  width: 30%;
  background: rgba(246, 249, 251, 0.96);
  color: #16222d;
  font-size: 0.86rem;
}

.lab-report-table tbody td {
  color: #394753;
  font-size: 0.84rem;
  line-height: 1.5;
}

.lab-report-row-watch th,
.lab-report-row-watch td {
  background: rgba(255, 198, 43, 0.2);
}

.lab-report-row-alert th,
.lab-report-row-alert td {
  background: rgba(235, 52, 34, 0.14);
}

.lab-report-outlier {
  font-weight: 800;
  color: #16222d;
}

.lab-report-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lab-report-note {
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: rgba(247, 249, 250, 0.98);
}

.lab-report-note strong {
  display: block;
  margin-bottom: 4px;
  color: #6b7882;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lab-report-note span {
  color: #394753;
  font-size: 0.83rem;
  line-height: 1.5;
}

.lab-report-remedy-shell {
  display: grid;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(120, 97, 34, 0.16);
  background: linear-gradient(180deg, rgba(251, 247, 236, 0.98), rgba(247, 243, 231, 0.98));
}

.lab-report-remedy-copy strong,
.lab-report-remedy-item strong {
  display: block;
  margin-bottom: 4px;
  color: #6b7882;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lab-report-remedy-copy span,
.lab-report-remedy-item span {
  color: #394753;
  font-size: 0.83rem;
  line-height: 1.5;
}

.lab-report-remedy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lab-report-remedy-item {
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(120, 97, 34, 0.12);
  background: rgba(255, 253, 248, 0.96);
}

.lab-report-remedy-item-wide {
  grid-column: 1 / -1;
}

.lab-report-remedy-disclaimer {
  margin: 0;
  color: #4e5b65;
  font-size: 0.72rem;
  line-height: 1.45;
}

.lab-report-stress-shell {
  display: grid;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: rgba(247, 249, 250, 0.98);
}

.lab-report-stress-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #6b7882;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lab-report-stress-copy span,
.lab-report-stress-scale {
  color: #394753;
  font-size: 0.83rem;
  line-height: 1.5;
}

.lab-report-stress-graph svg {
  width: 100%;
  height: auto;
  display: block;
}

.lab-report-stress-graph text {
  fill: #5f6d79;
  font-size: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.lab-report-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
}

.lab-report-signature,
.lab-report-disclaimer {
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: rgba(247, 249, 250, 0.98);
}

.lab-report-signature span,
.lab-report-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: #6b7882;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lab-report-signature strong {
  color: #16222d;
  font-size: 0.92rem;
}

.lab-report-sign-line {
  height: 1px;
  margin: 16px 0 8px;
  background: rgba(22, 34, 45, 0.45);
}

.lab-report-signature p,
.lab-report-disclaimer p {
  margin: 0;
  color: #394753;
  font-size: 0.82rem;
  line-height: 1.5;
}

.lab-report-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.45;
}

.status-chip {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-weight: 800;
}

.status-normal {
  background: rgba(127, 183, 31, 0.16);
  color: var(--green-dark);
}

.status-watch {
  background: rgba(255, 198, 43, 0.24);
  color: #916600;
}

.status-alert {
  background: rgba(235, 52, 34, 0.15);
  color: #a92014;
}

.role-grid {
  grid-template-columns: repeat(3, 1fr);
}

.login-panel-shell {
  display: grid;
  place-items: center;
  margin-top: 12px;
}

.login-form-card {
  width: min(520px, 100%);
}

.access-form-card {
  width: min(760px, 100%);
}

.access-fields[hidden] {
  display: none;
}

.inline-result-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 34, 45, 0.04);
  border: 1px solid var(--line);
}

.inline-result-card p {
  margin: 0;
  color: var(--muted);
}

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

.hidden-admin-shell {
  margin-top: 10px;
}

.hidden-admin-card {
  border-style: dashed;
}

.contact-layout-two {
  grid-template-columns: 1fr 0.85fr;
}

.contact-info-card {
  border-radius: var(--radius-xl);
}

.contact-logo {
  width: 110px;
  margin-bottom: 18px;
}

.contact-info p {
  margin: 0 0 10px;
}

.status-text {
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 700;
}

.live-test-page .status-text {
  line-height: 1.55;
}

.journey-card-grid,
.feature-panel-list,
.live-app-layout,
.camera-shell {
  display: grid;
  gap: 16px;
}

.journey-card-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.mini-stat-card,
.feature-panel-list article {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.mini-stat-card:hover,
.feature-panel-list article:hover {
  border-color: rgba(235, 52, 34, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.mini-stat-card strong,
.feature-panel-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.mini-stat-card strong {
  font-size: 1.7rem;
  color: var(--brand);
}

.feature-panel-list p,
.mini-stat-card span,
.disclaimer-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.disclaimer-panel {
  padding: 26px;
}

.critical-disclaimer {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(235, 52, 34, 0.1);
  border: 1px solid rgba(235, 52, 34, 0.28);
}

.critical-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  color: #a92014;
}

.critical-disclaimer p {
  margin: 0;
  color: #5a2320;
  line-height: 1.7;
}

.compact-disclaimer {
  padding: 14px 16px;
}

.compact-disclaimer strong {
  margin-bottom: 0;
}

.test-form-card h2,
.camera-card h2 {
  margin-top: 0;
}

.live-app-layout {
  align-items: start;
}

.camera-shell {
  display: grid;
  position: relative;
  justify-items: center;
  min-height: 420px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(22, 34, 45, 0.04);
  overflow: hidden;
  backdrop-filter: none;
  isolation: isolate;
}

.live-test-camera-shell {
  align-items: start;
}

.live-test-camera-embed-shell {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: #ffffff;
}

.live-test-camera-embed {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #f4f6f8;
}

#cameraPreview,
#nativeCameraPreview,
#livePreviewCanvas,
#capturedImage {
  display: block;
  grid-area: 1 / 1;
  width: min(100%, 420px);
  max-width: 420px;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  border-radius: 18px;
  background: #dbe2e8;
  object-fit: cover;
}

.live-test-camera-preview,
.live-test-camera-still {
  display: block;
  grid-area: 1 / 1;
  width: min(100%, 420px);
  max-width: 420px;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  border-radius: 18px;
  background: #000000;
  object-fit: cover;
}

.live-test-camera-preview {
  position: relative;
  z-index: 1;
}

.live-test-camera-still {
  display: none;
  z-index: 2;
}

#cameraPreview {
  opacity: 1;
  z-index: 1;
  position: relative;
  background: #000000;
}

#livePreviewCanvas {
  display: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
}

.camera-card,
.test-form-card,
.home-page .registration-camera-panel {
  backdrop-filter: none;
}

#capturedImage {
  display: none;
  z-index: 2;
}

.doctor-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.doctor-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(22, 34, 45, 0.04);
  border: 1px solid var(--line);
}

.doctor-card strong {
  font-family: "Sora", sans-serif;
}

.doctor-card span {
  color: var(--muted);
  line-height: 1.5;
}

.doctor-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.consultation-launch-card {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 34, 45, 0.04);
  border: 1px solid var(--line);
}

.consultation-payment-qr {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(22, 34, 45, 0.03);
  border: 1px dashed rgba(22, 34, 45, 0.16);
}

.consultation-payment-qr .lab-report-qr-image {
  width: 160px;
  height: 160px;
}

.consultation-payment-qr p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.result-card-head {
  display: grid;
  gap: 4px;
}

.result-card-head strong {
  font-family: "Sora", sans-serif;
}

.result-card-head span {
  color: var(--muted);
}

.consultation-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(27, 143, 120, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbfa 0%, #eef4f3 100%);
}

.consultation-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 56px;
  display: grid;
  gap: 24px;
}

.consultation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.consultation-hero h1 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.consultation-grid {
  display: grid;
  gap: 20px;
}

.consultation-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 34, 45, 0.08);
  box-shadow: 0 18px 42px rgba(19, 39, 48, 0.08);
}

.consultation-panel-head {
  display: grid;
  gap: 6px;
}

.consultation-panel-head strong,
.consultation-video-head strong,
.consultation-person-head strong {
  font-family: "Sora", sans-serif;
}

.consultation-panel-head span,
.consultation-video-head span,
.consultation-person-head span,
.consultation-person-meta span,
.consultation-report-copy span,
.consultation-link-box p {
  color: var(--muted);
  line-height: 1.5;
}

.consultation-video-grid,
.consultation-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consultation-video-card,
.consultation-person-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(22, 34, 45, 0.04);
  border: 1px solid rgba(22, 34, 45, 0.08);
}

.consultation-video-head,
.consultation-person-head {
  display: grid;
  gap: 4px;
}

#localConsultationVideo,
#remoteConsultationVideo {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  background: #0f1b22;
  object-fit: cover;
}

.consultation-person-meta {
  display: grid;
  gap: 10px;
}

.consultation-person-meta div,
.consultation-report-copy div {
  display: grid;
  gap: 4px;
}

.consultation-link-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(232, 244, 241, 0.92);
  border: 1px solid rgba(27, 143, 120, 0.18);
}

.consultation-report-copy {
  display: grid;
  gap: 12px;
}

.consultation-report-full {
  margin-top: 4px;
}

.consultation-report-preview {
  display: grid;
  gap: 12px;
}

.consultation-report-frame,
.consultation-report-image {
  width: 100%;
  min-height: 380px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  border-radius: 18px;
  background: #ffffff;
}

.consultation-report-image {
  object-fit: contain;
}

.consultation-room-actions {
  margin-top: 0;
}

.consultation-status-card {
  align-self: stretch;
}

@media (max-width: 900px) {
  .consultation-hero,
  .consultation-video-grid,
  .consultation-people-grid {
    grid-template-columns: 1fr;
  }

  .consultation-shell {
    width: min(100% - 24px, 1180px);
    padding: 24px 0 40px;
  }

  #localConsultationVideo,
  #remoteConsultationVideo,
  .consultation-report-frame,
  .consultation-report-image {
    min-height: 220px;
  }
}

.content-card-image,
.feature-section-image {
  width: 100%;
  height: 168px;
  margin-bottom: 16px;
  border-radius: 18px;
  object-fit: cover;
}

.sector-card h3,
.category-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
}

.sector-card,
.category-card,
.feature-photo-card {
  overflow: hidden;
}

.admin-dashboard {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(22, 34, 45, 0.03);
  border: 1px solid var(--line);
}

.admin-panel h3,
.admin-editor h4 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
}

.admin-panel p,
.admin-record-meta span {
  color: var(--muted);
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.admin-search-row,
.admin-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-search-row input {
  flex: 1;
}

.admin-pagination span {
  min-width: 108px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.admin-record-list {
  display: grid;
  gap: 12px;
}

.admin-record-card {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.admin-record-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}

.admin-record-card span {
  display: inline-block;
  line-height: 1.5;
}

.admin-record-meta {
  display: grid;
  gap: 4px;
}

.admin-card-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-inline-button {
  padding: 10px 16px;
}

.admin-panel button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.admin-editor {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(127, 183, 31, 0.07);
  border: 1px solid rgba(127, 183, 31, 0.16);
}

.admin-full-row {
  grid-column: 1 / -1;
}

.site-footer {
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.footer-shell {
  padding: 24px 0 32px;
}

.footer-brand p {
  margin: 6px 0 0;
}

.home-page .language-banner {
  padding: 4px 0 0;
}

.home-page .language-banner-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 153, 51, 0.07), rgba(255, 255, 255, 0.96) 42%, rgba(19, 136, 8, 0.08));
  border: 1px solid rgba(22, 34, 45, 0.06);
  box-shadow: 0 14px 26px rgba(22, 34, 45, 0.07);
}

.home-page .language-banner-copy {
  display: grid;
  gap: 6px;
}

.home-page .language-banner-copy strong {
  font-size: 0.9rem;
}

.home-page .language-banner-copy p {
  font-size: 0.84rem;
}

.home-page .language-banner-tools {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}

.home-page .hero-section {
  padding: 2px 0 0;
}

.home-page .hero-layout,
.home-page .feature-layout {
  gap: 18px;
}

.home-page .hero-layout {
  align-items: start;
}

.home-page .feature-layout {
  align-items: start;
}

.home-page .hero-content {
  position: relative;
  padding: 20px 22px 16px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 235, 0.96));
  border: 1px solid rgba(22, 34, 45, 0.05);
  box-shadow: 0 28px 54px rgba(22, 34, 45, 0.1);
}

.home-page .hero-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, #ff9933, #eb3422 52%, #138808);
}

.home-page .hero-content h1 {
  font-size: clamp(1.32rem, 2vw, 1.85rem);
  line-height: 1.16;
  margin-bottom: 10px;
  color: #0f1a22;
  max-width: 17ch;
}

.home-page .page-hero-shell h1,
.home-page .section-heading h2 {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

.home-page .hero-summary,
.home-page .page-intro,
.home-page .feature-copy-block p,
.home-page .sector-card p,
.home-page .category-card p {
  font-size: 0.93rem;
  line-height: 1.58;
  color: #42515d;
}

.home-page .section-kicker {
  margin-bottom: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.home-page .hero-actions {
  gap: 10px;
  margin: 12px 0 10px;
}

.home-page .button-primary,
.home-page .button-secondary,
.home-page .header-cta {
  padding: 11px 16px;
  font-size: 0.92rem;
}

.home-page .button-primary {
  background: linear-gradient(135deg, #ef5824, #bf2216);
  box-shadow: 0 18px 30px rgba(235, 52, 34, 0.26);
}

.home-page .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: #16222d;
  border: 1px solid rgba(22, 34, 45, 0.1);
}

.home-page .hero-language-label select,
.home-page .language-banner-control select {
  padding: 10px 12px;
  border-radius: 12px;
}

.home-page .hero-language-note {
  font-size: 0.85rem;
}

.home-page .home-hero-note {
  margin: 0 0 8px;
  max-width: 56ch;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 34, 45, 0.06);
}

.home-page .hero-guidance-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
}

.home-page .hero-guidance-bar article {
  padding: 11px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.9));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 14px 22px rgba(22, 34, 45, 0.06);
}

.home-page .hero-guidance-bar strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  font-family: "Sora", sans-serif;
  color: #0f1a22;
}

.home-page .hero-guidance-bar span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #4b5b67;
}

.home-page .hero-fee-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 0;
  padding: 11px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 88, 36, 0.14), rgba(255, 255, 255, 0.98) 42%, rgba(127, 183, 31, 0.16));
  border: 1px solid rgba(239, 88, 36, 0.18);
  box-shadow: 0 14px 24px rgba(22, 34, 45, 0.07);
}

.home-page .hero-fee-highlight strong {
  color: #8f2b1f;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .hero-fee-highlight span {
  color: #16222d;
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-page .hero-fee-highlight b {
  color: #9a2717;
  font-size: 1rem;
}

.home-page .voice-assist-card {
  margin: 0 0 10px;
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.12), rgba(255, 255, 255, 0.98) 42%, rgba(19, 136, 8, 0.11));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 18px 30px rgba(22, 34, 45, 0.09);
}

.home-page .voice-assist-card[data-listening="true"] {
  background: linear-gradient(135deg, rgba(235, 52, 34, 0.16), rgba(255, 255, 255, 0.98) 38%, rgba(127, 183, 31, 0.18));
  border-color: rgba(235, 52, 34, 0.32);
  box-shadow: 0 0 0 4px rgba(235, 52, 34, 0.12), 0 20px 34px rgba(22, 34, 45, 0.12);
}

.home-page .voice-assist-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.home-page .voice-assist-head strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  color: #0f1a22;
}

.home-page .voice-assist-head span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.home-page .voice-assist-actions {
  display: flex;
  gap: 6px;
}

.home-page .voice-action-button {
  padding: 10px 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-page .voice-start-button {
  background: linear-gradient(135deg, #ef5824, #bf2216);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(235, 52, 34, 0.22);
}

.home-page .voice-action-button.is-active {
  background: linear-gradient(135deg, #ea4a1f, #bf2216);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(235, 52, 34, 0.24);
}

.home-page .voice-action-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.home-page .voice-assist-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 7px;
}

.home-page .voice-assist-prompts span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 34, 45, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  color: #24323d;
}

.home-page .voice-assist-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.42;
}

.home-page .voice-assist-helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
}

.home-page .voice-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 34, 45, 0.08);
  color: #33424d;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-page .voice-live-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8c9aa5;
  box-shadow: 0 0 0 0 rgba(140, 154, 165, 0.4);
}

.home-page .voice-live-pill.is-listening {
  color: #8f2318;
  border-color: rgba(235, 52, 34, 0.22);
}

.home-page .voice-live-pill.is-listening::before {
  background: #eb3422;
  box-shadow: 0 0 0 8px rgba(235, 52, 34, 0.14);
}

.home-page .voice-assist-tip {
  font-size: 0.74rem;
  line-height: 1.4;
  color: #5d6a75;
  text-align: right;
}

.home-page .voice-assist-status[data-state="alert"] {
  color: #a92014;
}

.home-page .voice-assist-status[data-state="watch"] {
  color: #916600;
}

.home-page .hero-tags,
.home-page .feature-pills {
  gap: 8px;
}

.home-page .hero-tags {
  display: none;
}

.home-page .hero-flow-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
}

.home-page .hero-flow-strip article {
  padding: 11px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 246, 240, 0.95));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 16px 24px rgba(22, 34, 45, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-page .hero-flow-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(235, 52, 34, 0.16);
  box-shadow: 0 16px 24px rgba(22, 34, 45, 0.08);
}

.home-page .hero-flow-strip strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  color: #0f1a22;
}

.home-page .hero-flow-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.38;
}

.home-page .hero-tags span,
.home-page .feature-pills span {
  padding: 7px 10px;
  font-size: 0.76rem;
  border-radius: 999px;
}

.home-page .language-quick-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2px;
}

.home-page .language-pill-button {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.14), rgba(255, 255, 255, 0.96) 54%, rgba(19, 136, 8, 0.12));
  border: 1px solid rgba(22, 34, 45, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  color: #16222d;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-page .language-pill-button:hover,
.home-page .language-pill-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px rgba(22, 34, 45, 0.08);
  border-color: rgba(235, 52, 34, 0.16);
  outline: none;
}

.home-page .language-pill-button.is-active,
.home-page .language-banner-control select.is-active {
  border-color: rgba(235, 52, 34, 0.28);
  box-shadow: 0 0 0 4px rgba(235, 52, 34, 0.12), 0 12px 18px rgba(22, 34, 45, 0.08);
  background: linear-gradient(135deg, rgba(239, 88, 36, 0.16), rgba(255, 255, 255, 0.98) 54%, rgba(19, 136, 8, 0.14));
  color: #8f2318;
}

#google_translate_mount,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-simple img {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.home-page .hero-focus {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 232, 0.95)),
    var(--surface);
  border: 1px solid rgba(22, 34, 45, 0.05);
  box-shadow: 0 30px 56px rgba(22, 34, 45, 0.12);
}

.home-page .hero-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 153, 51, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(19, 136, 8, 0.14), transparent 24%);
  pointer-events: none;
}

.home-page .hero-india-panel,
.home-page .mini-stat-card,
.home-page .hero-caption-card,
.home-page .trust-grid article,
.home-page .sector-card,
.home-page .category-card,
.home-page .feature-copy-block,
.home-page .feature-photo-card {
  position: relative;
  overflow: hidden;
}

.home-page .hero-india-panel {
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.18), rgba(255, 255, 255, 0.98) 48%, rgba(19, 136, 8, 0.16));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-page .hero-india-copy h2 {
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  margin-bottom: 4px;
  color: #111b23;
}

.home-page .hero-india-copy p {
  font-size: 0.8rem;
  line-height: 1.42;
  color: #34434f;
}

.home-page .hero-india-label {
  margin-bottom: 6px;
  padding: 5px 9px;
  font-size: 0.68rem;
}

.home-page .hero-india-price {
  min-width: 126px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(239, 88, 36, 0.18);
  box-shadow: 0 14px 24px rgba(239, 88, 36, 0.12);
}

.home-page .hero-india-price strong {
  font-size: 1.22rem;
}

.home-page .hero-india-price span {
  font-size: 0.76rem;
}

.home-page .hero-caption-grid {
  gap: 8px;
  margin-bottom: 8px;
}

.home-page .hero-caption-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 14px 24px rgba(22, 34, 45, 0.07);
}

.home-page .hero-caption-card img {
  height: 118px;
}

.home-page .hero-caption-card-large img {
  min-height: 224px;
}

.home-page .hero-caption-card figcaption {
  gap: 6px;
  padding: 9px 10px;
}

.home-page .hero-caption-card figcaption strong {
  font-size: 0.84rem;
}

.home-page .hero-caption-card figcaption span {
  font-size: 0.75rem;
}

.home-page .journey-card-grid {
  gap: 8px;
  margin-top: 8px;
}

.home-page .mini-stat-card {
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 12px 20px rgba(22, 34, 45, 0.06);
}

.home-page .mini-stat-card strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.home-page .mini-stat-card span {
  font-size: 0.78rem;
  line-height: 1.42;
}

.home-page .trust-strip {
  padding: 0;
}

.home-page .trust-grid,
.home-page .sector-grid,
.home-page .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.home-page .sector-grid > .sector-card,
.home-page .trust-grid > article {
  flex: 1 1 calc(25% - 8px);
  max-width: calc(25% - 8px);
}

.home-page .category-grid > .category-card {
  flex: 1 1 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
}

.home-page .trust-grid article,
.home-page .sector-card,
.home-page .category-card,
.home-page .feature-copy-block,
.home-page .feature-photo-card {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 240, 0.96));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 16px 28px rgba(22, 34, 45, 0.07);
  align-self: start;
}

.home-page .trust-grid article,
.home-page .sector-card,
.home-page .category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.home-page .trust-grid strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: #101a22;
}

.home-page .trust-grid span {
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-page .content-section {
  padding: 8px 0;
}

.home-page .section-heading {
  margin-bottom: 6px;
}

.home-page .content-card-image,
.home-page .feature-section-image {
  height: 164px;
  margin-bottom: 12px;
  border-radius: 18px;
}

.home-page .feature-section {
  padding-top: 0;
  padding-bottom: 2px;
  margin-top: 0;
}

.home-doctor-board-section {
  padding-top: 8px;
}

.home-doctor-board-shell {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 249, 252, 0.98));
  border: 1px solid rgba(22, 34, 45, 0.08);
  box-shadow: 0 18px 32px rgba(22, 34, 45, 0.08);
}

.home-doctor-board-filter {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.home-doctor-board-filter span {
  font-weight: 700;
  color: #0f1a22;
}

.home-doctor-board-filter select {
  width: 100%;
}

.home-doctor-board-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.home-doctor-board-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 34, 45, 0.08);
  box-shadow: 0 12px 22px rgba(22, 34, 45, 0.06);
}

.home-doctor-board-head {
  display: grid;
  gap: 4px;
}

.home-doctor-board-head strong {
  font-family: "Sora", sans-serif;
  color: #0f1a22;
}

.home-doctor-board-head span {
  color: #8f3d13;
  font-weight: 700;
}

.home-doctor-board-meta {
  display: grid;
  gap: 6px;
}

.home-doctor-board-meta span {
  color: var(--muted);
  line-height: 1.5;
}

.home-page .sector-card h3,
.home-page .category-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.home-page .feature-panel-list {
  gap: 8px;
}

.home-page .feature-panel-list article {
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 12px 20px rgba(22, 34, 45, 0.06);
}

.home-page .feature-panel-list strong {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #0f1a22;
}

.home-page .footer-shell {
  padding: 16px 0 20px;
}

.home-page .hero-focus:hover,
.home-page .sector-card:hover,
.home-page .category-card:hover,
.home-page .feature-copy-block:hover,
.home-page .feature-photo-card:hover,
.home-page .trust-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(22, 34, 45, 0.12);
}

.home-page .hero-india-panel:hover,
.home-page .mini-stat-card:hover,
.home-page .hero-caption-card:hover,
.home-page .feature-panel-list article:hover,
.home-page .hero-tags span:hover,
.home-page .feature-pills span:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 26px rgba(22, 34, 45, 0.12);
}

.home-page .hero-tags span:hover,
.home-page .feature-pills span:hover {
  border-color: rgba(235, 52, 34, 0.18);
}

.home-page .hero-caption-card::after,
.home-page .sector-card::after,
.home-page .category-card::after,
.home-page .trust-grid article::after,
.home-page .feature-panel-list article::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.8), rgba(235, 52, 34, 0.7), rgba(19, 136, 8, 0.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.home-page .hero-caption-card:hover::after,
.home-page .sector-card:hover::after,
.home-page .category-card:hover::after,
.home-page .trust-grid article:hover::after,
.home-page .feature-panel-list article:hover::after {
  transform: scaleX(1);
}

.home-page .home-registration-section {
  padding-top: 0;
  margin-top: 0;
}

.home-page .home-registration-layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
}

.home-page .home-registration-card,
.home-page .home-registration-result {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.97));
  border: 1px solid rgba(22, 34, 45, 0.06);
  box-shadow: 0 24px 42px rgba(22, 34, 45, 0.08);
}

.home-page .home-registration-card {
  padding: 16px;
}

.home-page .home-registration-card h2,
.home-page .home-registration-result h2 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.home-page .home-registration-card .form-intro,
.home-page .home-registration-result .result-intro {
  margin-bottom: 10px;
  color: #5a6772;
  line-height: 1.5;
  font-size: 0.84rem;
}

.home-page .registration-camera-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.94));
  border: 1px solid rgba(22, 34, 45, 0.07);
}

.home-page .registration-camera-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-page .registration-camera-head strong {
  font-size: 0.82rem;
  color: #16222d;
}

.home-page .registration-camera-head span {
  font-size: 0.75rem;
  color: #5a6772;
  text-align: right;
}

.home-page .compact-camera-shell {
  gap: 0;
}

.home-page .compact-camera-shell #cameraPreview,
.home-page .compact-camera-shell #nativeCameraPreview,
.home-page .compact-camera-shell #livePreviewCanvas,
.home-page .compact-camera-shell #capturedImage {
  width: min(100%, 220px);
  max-width: 220px;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  max-height: none;
  border-radius: 16px;
  object-fit: cover;
}

.home-page .camera-inline-actions {
  display: flex;
  gap: 8px;
}

.home-page .camera-inline-actions .form-button {
  flex: 1;
}

.home-page .camera-inline-status p {
  margin: 0;
  color: #5f6d79;
  line-height: 1.5;
  font-size: 0.78rem;
}

.home-page .home-registration-card .form-grid-two {
  gap: 12px;
}

.home-page .home-registration-card input,
.home-page .home-registration-card select {
  min-height: 46px;
  padding: 11px 12px;
  font-size: 0.88rem;
  border-radius: 14px;
}

.home-page .home-registration-card label {
  margin-bottom: 10px;
}

.home-page .home-registration-card label span {
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.home-page .home-registration-card .button-primary.form-button,
.home-page .home-registration-card #paymentButton {
  min-height: 48px;
  font-size: 0.92rem;
  font-weight: 800;
}

.home-page .home-registration-card .button-primary.form-button {
  width: 100%;
  margin-top: 4px;
}

.home-page .home-payment-panel {
  margin-top: 14px;
  padding: 18px 18px;
  background: linear-gradient(135deg, rgba(239, 88, 36, 0.16), rgba(255, 255, 255, 0.99) 36%, rgba(127, 183, 31, 0.14));
  border-color: rgba(239, 88, 36, 0.22);
  box-shadow: 0 20px 30px rgba(239, 88, 36, 0.12);
}

.home-page .home-payment-panel strong {
  font-size: 1.34rem;
  color: #9a2717;
}

.home-page .home-payment-panel span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
}

.home-page .home-registration-result {
  position: static;
}

.home-page .hero-summary-panel {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.97));
  border: 1px solid rgba(22, 34, 45, 0.06);
  box-shadow: 0 20px 34px rgba(22, 34, 45, 0.08);
}

.home-page .hero-summary-panel h2 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.home-page .hero-summary-panel .result-intro {
  margin-bottom: 10px;
  color: #5a6772;
  line-height: 1.5;
  font-size: 0.84rem;
}

.home-page .home-registration-result #vitalsResults p {
  margin: 0;
  color: #5f6d79;
  line-height: 1.65;
}

.home-page .sample-report-shell {
  display: grid;
  gap: 10px;
}

.home-page .home-lite-shell {
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.95));
  border: 1px solid rgba(22, 34, 45, 0.07);
}

.home-page .home-lite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-page .home-lite-grid article {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 34, 45, 0.07);
}

.home-page .home-lite-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
  color: #16222d;
}

.home-page .home-lite-grid span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #5f6d79;
}

.home-page .sample-report-copy p {
  margin: 0;
  color: #5f6d79;
  line-height: 1.55;
  font-size: 0.84rem;
}

.home-page .report-capture-card {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.94));
  border: 1px solid rgba(22, 34, 45, 0.07);
}

.home-page .report-capture-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-page .report-capture-meta strong {
  font-size: 0.8rem;
  color: #16222d;
}

.home-page .report-capture-meta span {
  font-size: 0.74rem;
  color: #6b7882;
}

.home-page .report-capture-image {
  width: 100%;
  min-height: 164px;
  max-height: 164px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(22, 34, 45, 0.08);
}

.home-page .sample-report-grid {
  display: grid;
  gap: 8px;
}

.home-page .sample-report-grid .result-row {
  margin-bottom: 0;
  padding: 11px 12px;
  border-radius: 14px;
}

.home-page .sample-report-grid strong,
.home-page .sample-report-grid span {
  font-size: 0.8rem;
}

.home-page .sample-report-note {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 237, 0.94));
  border: 1px solid rgba(22, 34, 45, 0.07);
}

.home-page .sample-report-note strong {
  font-size: 0.8rem;
  color: #16222d;
}

.home-page .sample-report-note span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5a6772;
}

.home-page .instant-vitals-section {
  padding-top: 0;
  margin-top: 0;
}

.home-page .instant-vitals-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
}

.home-page .instant-vitals-copy {
  align-self: start;
  margin-top: 0;
  padding-top: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 237, 0.96));
  border: 1px solid rgba(22, 34, 45, 0.07);
  box-shadow: 0 18px 30px rgba(22, 34, 45, 0.07);
}

.home-page .instant-vitals-visual {
  order: 2;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.home-page .instant-vitals-copy h2,
.home-page .feature-copy-block h2 {
  margin: 0;
}

.home-page .instant-vitals-copy p,
.home-page .feature-copy-block p {
  margin: 0;
}

.home-page .instant-vitals-note {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #66747f;
}

.home-page .feature-copy-block {
  align-self: start;
  padding: 14px 16px;
}

.home-page .feature-copy-block .feature-pills {
  margin-top: 8px;
}

.home-page .feature-layout {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  align-items: start;
}

.home-page .feature-photo-card {
  align-self: start;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-top: 14px;
}

.home-page .instant-vitals-visual,
.home-page .home-report-result {
  display: grid;
  gap: 10px;
}

.home-page .instant-vitals-photo {
  width: 100%;
  min-height: 228px;
  max-height: 228px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 42px rgba(22, 34, 45, 0.12);
}

.home-page .instant-vitals-price-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.home-page .instant-vitals-price-card,
.home-page .instant-vitals-parameter-card,
.home-page .report-preview-card {
  border-radius: 20px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 235, 0.95));
  box-shadow: 0 16px 26px rgba(22, 34, 45, 0.06);
}

.home-page .instant-vitals-price-card {
  padding: 14px 16px;
}

.home-page .instant-vitals-price-card strong {
  display: block;
  margin-bottom: 4px;
  color: #9a2717;
  font-size: 1.36rem;
}

.home-page .instant-vitals-price-card span,
.home-page .instant-vitals-copy p {
  color: #5a6772;
  line-height: 1.58;
}

.home-page .instant-vitals-parameter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.home-page .instant-vitals-parameter-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
}

.home-page .instant-vitals-parameter-card strong {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239, 88, 36, 0.16), rgba(127, 183, 31, 0.16));
  color: #16222d;
  font-size: 0.86rem;
}

.home-page .instant-vitals-parameter-card span {
  color: #16222d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-page .home-report-section .test-form-card textarea {
  min-height: 172px;
}

.home-page .home-report-section {
  padding-top: 2px;
}

.home-page .home-report-layout {
  align-items: start;
  gap: 8px;
}

.home-page .result-card.live-result-card {
  padding: 16px;
}

.home-page .home-report-result {
  margin-top: 0;
  align-content: start;
  align-self: start;
}

.home-page .home-report-result h2,
.home-page .home-report-result .result-intro {
  margin-bottom: 0;
}

.home-page .home-report-result .result-actions {
  margin: 0 0 10px;
}

.home-page .report-preview-card {
  padding: 14px 16px;
}

.home-page .report-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.home-page .report-preview-head strong {
  color: #16222d;
  font-size: 0.95rem;
}

.home-page .report-preview-head span,
.home-page .report-preview-meta-note,
.home-page .report-preview-placeholder {
  color: #5f6d79;
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-page .report-preview-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.home-page .report-preview-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.home-page .report-preview-meta-row strong {
  color: #16222d;
  font-size: 0.85rem;
}

.home-page .report-preview-meta-row span {
  color: #7a8792;
  font-size: 0.78rem;
}

.home-page .report-preview-file-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(239, 88, 36, 0.09);
  color: #8f2b1f;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-page .report-preview-frame,
.home-page .report-preview-image {
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
  border: 1px solid rgba(22, 34, 45, 0.08);
  background: #f7f3ec;
}

.home-page .report-preview-frame {
  height: 360px;
}

.home-page .report-preview-image {
  object-fit: contain;
  padding: 8px;
}

@media (max-width: 1060px) {
  .hero-layout,
  .feature-layout,
  .page-hero-shell,
  .live-hero-shell,
  .live-test-layout,
  .contact-layout-two,
  .language-banner-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .category-grid,
  .trust-grid,
  .certificate-grid,
  .role-grid,
  .certificate-page-grid,
  .download-grid,
  .admin-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .product-row.reverse img {
    order: 0;
  }

  .home-page .hero-layout,
  .home-page .feature-layout,
  .home-page .instant-vitals-layout {
    gap: 12px;
  }

  .home-page .feature-layout {
    grid-template-columns: 1fr;
  }

  .home-page .sector-grid > .sector-card,
  .home-page .trust-grid > article,
  .home-page .category-grid > .category-card {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }

  .home-page .home-registration-result {
    position: static;
    top: auto;
  }

  .home-page .home-registration-section {
    margin-top: -8px;
  }

  .home-page .registration-camera-head,
  .home-page .report-capture-meta,
  .home-page .report-preview-head,
  .home-page .report-preview-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lab-report-patient-box,
  .lab-report-note-grid,
  .lab-report-remedy-grid,
  .lab-report-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-test-page .live-result-card {
    position: static;
    top: auto;
  }

  .hero-caption-grid,
  .journey-card-grid {
    grid-template-columns: 1fr;
  }

  .home-page .instant-vitals-parameter-grid,
  .home-page .instant-vitals-price-row {
    grid-template-columns: 1fr;
  }

  .lab-report-header,
  .lab-report-patient-box,
  .lab-report-note-grid,
  .lab-report-remedy-grid,
  .lab-report-footer {
    grid-template-columns: 1fr;
  }

  .lab-report-header {
    display: grid;
  }
}

@media (max-width: 1280px) and (min-width: 761px) {
  .header-shell {
    gap: 12px;
  }

  .brand-mark img {
    width: 62px;
  }

  .brand-copy strong {
    font-size: 1.06rem;
  }

  .brand-copy span {
    font-size: 0.82rem;
  }

  .main-nav,
  .footer-nav {
    gap: 6px;
  }

  .main-nav a,
  .footer-nav a {
    padding: 10px 11px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 0.94rem;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(1200px, calc(100% - 18px));
  }

  .header-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .footer-nav {
    display: grid;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    gap: 6px;
    min-width: 0;
    margin-top: 6px;
    padding: 8px 0 10px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-side-grid,
  .hero-caption-grid,
  .form-grid-two,
  .sector-grid,
  .category-grid,
  .trust-grid,
  .certificate-grid,
  .role-grid,
  .certificate-page-grid,
  .company-doc-grid,
  .download-grid,
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .brand-mark img,
  .footer-brand img {
    width: 64px;
  }

  .language-banner-shell {
    display: grid;
  }

  .language-banner-control {
    min-width: 0;
  }

  .home-page .wrap {
    width: min(1200px, calc(100% - 14px));
  }

  .home-page .language-banner-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .home-page .language-banner-tools {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .voice-assist-head {
    flex-direction: column;
  }

  .home-page .voice-assist-actions {
    width: 100%;
  }

  .home-page .voice-action-button {
    flex: 1;
  }

  .home-page .voice-assist-helper-row,
  .home-page .hero-guidance-bar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .voice-assist-tip {
    text-align: left;
  }

  .home-page .language-quick-pills {
    justify-content: flex-start;
  }

  .home-page .hero-section {
    padding-top: 10px;
  }

  .home-page .hero-content h1 {
    font-size: 1.4rem;
  }

  .home-page .hero-flow-strip {
    grid-template-columns: 1fr;
  }

  .home-page .section-heading h2,
  .home-page .page-hero-shell h1 {
    font-size: 0.96rem;
  }

  .home-page .hero-caption-card-large img {
    min-height: 170px;
  }

  .home-page .sector-grid > .sector-card,
  .home-page .trust-grid > article,
  .home-page .category-grid > .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .home-page .home-lite-grid {
    grid-template-columns: 1fr;
  }

  .home-page .compact-pad-image {
    width: 72%;
    max-width: 136px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
  }

  .hero-india-panel,
  .hero-caption-card figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-caption-card-large img {
    min-height: 240px;
  }

  .admin-panel-head {
    flex-direction: column;
  }

  .admin-search-row,
  .admin-pagination {
    flex-direction: column;
    align-items: stretch;
  }
}
