:root {
  --primary-900: #0a1e53;
  --primary-800: #101f47;
  --primary-700: #263b6c;
  --primary-600: #354368;
  --secondary-900: #073c4a;
  --secondary-700: #236c9c;
  --secondary-600: #258ca4;
  --secondary-500: #31b6c8;
  --secondary-400: #65cfd7;
  --gray-900: #1f2c34;
  --gray-800: #202833;
  --gray-700: #34405b;
  --gray-600: #4f5c6c;
  --gray-500: #637083;
  --gray-400: #97a1af;
  --gray-300: #cbd2da;
  --gray-200: #e4e7ec;
  --gray-100: #f2f4f7;
  --gray-050: #f8fafb;
  --school-medicine: #97bfd3;
  --white: #ffffff;
  --lavender: #f0edf8;
  --lavender-2: #e9e4f2;
  --blue-pale: #d6e6fb;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 24px 70px rgba(10, 30, 83, .08);
  --container: 1248px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans Georgian", "Inter", "Arial", sans-serif;
  color: var(--primary-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

/* Global text selection: brand-colored highlight across the whole website. */
::selection {
  background: rgba(49, 182, 200, .32);
  color: var(--primary-900);
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

/* Header: clean three-part layout — larger logo, centered menu, call CTA on the right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 36px rgba(10,30,83,.06);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 152px;
  flex: 0 0 auto;
}
.brand img {
  width: 152px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}
.nav a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary-900);
  opacity: .98;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--secondary-500);
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  padding: 4px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.language-switcher a {
  min-width: 34px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}
.language-switcher a.active {
  background: var(--secondary-500);
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--secondary-500);
  color: #fff;
  box-shadow: 0 12px 26px rgba(49,182,200,.24);
}
.btn-primary:hover { background: #2aaabd; box-shadow: 0 16px 30px rgba(49,182,200,.3); }
.phone-cta { min-width: 156px; }
.btn-ghost {
  background: #fff;
  color: var(--primary-900);
  border-color: var(--gray-200);
}
.btn-small { min-height: 36px; padding-inline: 16px; font-size: 11px; }
.btn-circle {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 50%;
}
.arrow-dot {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: var(--secondary-500);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}
.burger {
  display: none;
  border: 0;
  background: transparent;
  width: 38px;
  height: 38px;
  padding: 0;
  position: relative;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--primary-900);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger::before { top: 12px; }
.burger span { top: 18px; }
.burger::after { top: 24px; }
body.menu-open .burger::before { top: 18px; transform: rotate(45deg); }
body.menu-open .burger span { opacity: 0; }
body.menu-open .burger::after { top: 18px; transform: rotate(-45deg); }

.section { padding: 94px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-500);
}
.h1, h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary-900);
}
.h2, h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.h3, h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.h4, h4 {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: var(--gray-600);
}
p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-600);
}

/* Language foundation: Georgian will become the primary site language.
   The script is visually heavier than Latin, so Georgian mode gets calmer spacing. */
html[lang="ka"] body {
  letter-spacing: -0.01em;
}
html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4 {
  line-height: 1.16;
  letter-spacing: -0.025em;
}
html[lang="ka"] .btn,
html[lang="ka"] .nav a {
  letter-spacing: -0.015em;
}
.text-small { font-size: 14px; line-height: 20px; }
.text-caption { font-size: 12px; line-height: 18px; }

.hero-home { padding: 0 0 38px; }
.hero-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: 51.5% 48.5%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #f1f3f6;
}
.hero-copy {
  padding: 88px 64px 56px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy h1 {
  max-width: 515px;
  color: var(--secondary-500);
}
.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--primary-900);
  font-weight: 600;
}
.hero-ctas { display: flex; align-items: center; gap: 18px; margin-top: 38px; }
.hero-iso { margin-top: auto; display: flex; align-items: center; gap: 8px; color: #1e89d5; font-size: 13px; font-weight: 700; }
.hero-iso img { width: 78px; height: auto; }
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  min-height: 560px;
  overflow: hidden;
}
/* Hero visual: static high-resolution DNA frame.
   The previous spinning video was removed to avoid a stepped, non-premium loop. */
.hero-dna-image {
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: 52% 50%;
}
.hero-media::after {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 45% 35%, transparent 0 52%, rgba(255,255,255,.1) 100%);
  pointer-events:none;
}

.partners {
  padding: 14px 0 72px;
}
/* Partners: stronger visual weight and equal logo boxes for a consistent Figma-like row */
.partners-row {
  display: grid;
  grid-template-columns: 230px repeat(7, minmax(92px, 1fr));
  gap: 28px;
  align-items: center;
}
.partners-label {
  color: var(--primary-900);
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.partner-logo {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
  transition: transform .2s ease;
}
.partner-logo:hover { transform: translateY(-1px); }
.partner-logo img {
  width: 100%;
  height: 100%;
  max-width: 154px;
  max-height: 42px;
  object-fit: contain;
}

/* Home services: tighter bottom spacing so the Technology block starts closer to the slider. */
.services-preview {
  overflow: hidden;
  padding: 72px 0 38px;
  background: linear-gradient(90deg, #fff 0 46%, #fbfcfd 46% 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}
.services-heading { padding-top: 6px; }
.services-heading h2 {
  max-width: 340px;
  font-size: clamp(44px, 4.2vw, 60px);
}

/* Services slider: desktop shows two cards, and JS moves the track by two-card pages. */
.services-slider {
  --service-card-w: 300px;
  --service-gap: 24px;
  width: calc((var(--service-card-w) * 2) + var(--service-gap));
  max-width: 100%;
}
.services-viewport {
  overflow: hidden;
  width: 100%;
}
.services-track {
  display: flex;
  gap: var(--service-gap);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.service-card {
  flex: 0 0 var(--service-card-w);
  height: 332px;
  border-radius: 8px;
  background: var(--lavender-2);
  padding: 154px 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:nth-child(even) { background: #eef7f9; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-card::before {
  content: attr(data-number);
  position: absolute;
  left: -10px;
  top: -10px;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 999px 0;
  background: #c0d4ef;
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.service-card h3 { font-size: 24px; line-height: 30px; letter-spacing: -0.02em; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 20px; color: var(--gray-600); }
.services-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}
.slider-controls { display:flex; gap: 12px; justify-content: flex-start; }
.round-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: #fff; color: var(--primary-900);
  display: grid; place-items: center; transition: background .2s ease, border .2s ease, transform .2s ease;
}
.round-btn:hover { background: var(--gray-050); border-color: var(--secondary-500); transform: translateY(-1px); }

.tech-mobile-anchor { display: none; }
/* Home technology: tighter section spacing and a deliberate two-line title instead of a narrow text pyramid. */
.tech-preview { padding: 52px 0 76px; }
.tech-head { max-width: 880px; margin: 0 auto 44px; text-align: center; }
.tech-head h2 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.tech-head h2 span { display: block; }
.tech-head h2 span + span { color: var(--secondary-500); }
.tech-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tech-card {
  min-height: 330px;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px 24px;
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
/* Technology media: every card uses the same image box so the row feels even and premium. */
.tech-card figure {
  margin: 0 0 20px;
  width: 100%;
  height: 148px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-050);
}
.tech-card figure img {
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}
.tech-card h3 { font-size: 16px; line-height: 21px; margin-bottom: 10px; }
.tech-card p { font-size: 12px; line-height: 18px; }

.news-section { padding: 78px 0 98px; }
.section-row {
  display:flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 44px;
}
.news-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { display:block; border-radius: 18px; transition: transform .22s ease; }
.article-card:hover { transform: translateY(-4px); }
.article-card__image { height: 188px; border-radius: 16px; overflow:hidden; background: var(--gray-100); margin-bottom: 20px; }
.article-card__image img { width:100%; height:100%; object-fit: cover; }
/* Article cards: only the genetics category remains; dates and read-time metadata were removed from HTML. */
.article-card__meta { display:flex; gap:10px; flex-wrap: wrap; margin-bottom: 8px; }
.article-card__cat { font-size: 11px; line-height: 16px; font-weight: 800; color: var(--secondary-600); text-transform: uppercase; }
.article-card h3 { font-size: 22px; line-height: 28px; letter-spacing: -0.025em; margin: 0; }

.cta-banner { padding: 0 0 88px; }
.cta-card {
  min-height: 164px;
  border-radius: 24px;
  overflow:hidden;
  position:relative;
  background: #f0edf8;
  display:flex;
  align-items:center;
  padding: 38px 44px;
}
.cta-card::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(240,237,248,1) 0 45%, rgba(240,237,248,.58) 58%, rgba(240,237,248,0) 100%);
  z-index:1;
}
.cta-card img { position:absolute; inset:0 0 0 auto; width: 62%; height:100%; object-fit: cover; object-position: center; }
.cta-content { position:relative; z-index:2; max-width: 620px; }
.cta-content h2 { font-size: 40px; line-height: 46px; letter-spacing: -0.03em; margin-bottom: 22px; }

/* Footer: four clean columns, larger brand mark, centered credit line. */
.site-footer { background:#fff; padding: 70px 0 38px; }
.footer-main {
  display:grid;
  grid-template-columns: 1.35fr 1fr 1fr .75fr;
  gap: 64px;
  padding-bottom: 70px;
  align-items: start;
}
.footer-brand-col { display:flex; flex-direction: column; align-items: flex-start; }
.footer-logo { width: 164px; margin-bottom: 18px; }
.footer-col h4 { font-size: 13px; line-height: 18px; margin: 0 0 14px; color: var(--gray-500); font-weight: 700; }
.footer-col p, .footer-col a { font-size: 13px; line-height: 22px; color: var(--primary-900); font-weight: 700; }
.footer-brand-col p { max-width: 210px; text-align: left; }
.footer-col a:hover { color: var(--secondary-600); }
/* Social icons: lightweight inline CSS icons, no external library needed. */
.socials { display:flex; align-items:center; gap:14px; }
.social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--primary-900);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.social-link:hover {
  color: var(--secondary-600);
  background: var(--gray-050);
  transform: translateY(-1px);
}
.social-link::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
}
.social-link--facebook::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.5h2.5V5H14c-3 0-5 1.9-5 5v2H6v3.5h3V22h4v-6.5h3.1l.6-3.5H13v-1.7c0-1.1.4-1.8 1-1.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.5h2.5V5H14c-3 0-5 1.9-5 5v2H6v3.5h3V22h4v-6.5h3.1l.6-3.5H13v-1.7c0-1.1.4-1.8 1-1.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.social-link--instagram::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 38px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 24px;
  color: var(--gray-500);
}
.footer-bottom p, .footer-bottom a { font-size: 12px; line-height: 18px; color: var(--gray-500); }
.footer-credit { text-align: center; white-space: nowrap; }
.footer-credit a { color: var(--secondary-600); font-weight: 800; }
.footer-legal { display:flex; justify-content: flex-end; gap: 24px; }

/* Inner pages */
.page-hero { padding: 62px 0 88px; }
.page-hero-grid { display:grid; grid-template-columns: 1fr 580px; gap: 88px; align-items:center; }
.page-hero p { margin-top: 22px; max-width: 620px; }
.page-hero .btn { margin-top: 36px; }
.page-image { height: 430px; border-radius: 24px; overflow: hidden; background: var(--gray-100); }
.page-image img { width:100%; height:100%; object-fit: cover; }
.content-block { padding: 88px 0; background: #fff; }
.content-block.alt { background: var(--gray-050); }
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items:center; }
.panel {
  background: var(--lavender-2);
  border-radius: 24px;
  padding: 48px;
  min-height: 370px;
}
.panel p { margin-top: 18px; }
.image-panel { height: 370px; border-radius: 24px; overflow:hidden; }
.image-panel img { width:100%; height:100%; object-fit: cover; }

/* About page: certificate images must remain fully visible, not cropped. */
.image-panel--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fff;
}
.image-panel--contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* About page: richer Word-based content blocks with clean spacing and readable lists. */
.panel--quality .btn {
  margin-top: 28px;
  box-shadow: 0 10px 24px rgba(10, 30, 83, .06);
}
.quality-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--gray-600);
}
.quality-list li {
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 23px;
}
.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.mission-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 32px;
}
.mission-card p {
  font-size: 15px;
  line-height: 23px;
}
.about-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-tech-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.about-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.about-tech-card figure {
  margin: 0;
  height: 100%;
  min-height: 272px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--gray-050);
}
.about-tech-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about-tech-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--secondary-600);
}
.about-tech-copy h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 34px;
}
.about-tech-copy p,
.about-tech-copy li {
  font-size: 15px;
  line-height: 23px;
  color: var(--gray-600);
}
.about-tech-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
}
.about-tech-copy li { margin-bottom: 8px; }
.team-grid, .services-list { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  background:#fff;
  border:1px solid var(--gray-100);
  border-radius:20px;
  padding:28px;
  min-height: 220px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.info-card h3 { font-size: 24px; line-height: 30px; margin-bottom: 12px; }
.info-card p, .info-card li { font-size: 14px; line-height: 21px; color: var(--gray-600); }
.info-card ul { margin: 16px 0 0; padding-left: 18px; }


/* Services page: searchable bilingual-ready catalog based on the client-provided test list. */
.services-hero-copy p:not(.eyebrow) {
  max-width: 650px;
}
.services-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.services-hero-actions .btn { margin-top: 0; }
.services-hero-image img { object-position: center; }
.service-catalog-section {
  padding: 86px 0 76px;
  background: var(--gray-050);
}
.service-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}
.service-catalog-head h2 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
}
.service-catalog-head > p {
  font-size: 15px;
  line-height: 23px;
}
.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.service-summary-grid article {
  min-height: 132px;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--gray-100);
}
.service-summary-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--secondary-600);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.03em;
}
.service-summary-grid span {
  display: block;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 21px;
}
.service-search-card {
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 56px rgba(10, 30, 83, .05);
}
.service-search-card label {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-900);
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
}
.service-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.service-search-row input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--primary-900);
  background: var(--gray-050);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-search-row input:focus {
  border-color: var(--secondary-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 182, 200, .12);
}
.service-search-card p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
}
.service-category-stack {
  display: grid;
  gap: 20px;
}
.service-category {
  border: 1px solid var(--gray-100);
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
}
.service-category[hidden],
.service-subgroup[hidden],
.service-test[hidden] { display: none; }
.service-category summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 32px;
  cursor: pointer;
  color: var(--primary-900);
}
.service-category summary::-webkit-details-marker { display: none; }
.service-category summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gray-050);
  color: var(--secondary-600);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}
.service-category[open] summary::after { content: "−"; }
.service-category summary span {
  display: block;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.service-category summary small {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}
.service-category__content {
  display: grid;
  gap: 24px;
  padding: 0 32px 34px;
}
.service-subgroup {
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.service-subgroup h3 {
  margin-bottom: 16px;
  color: var(--secondary-600);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.02em;
}
.service-test-list {
  display: grid;
  gap: 12px;
}
.service-test {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: var(--gray-050);
  transition: border .2s ease, background .2s ease, transform .2s ease;
}
.service-test:hover {
  border-color: rgba(49, 182, 200, .35);
  background: #fff;
  transform: translateY(-1px);
}
.service-test h4 {
  margin: 0;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.015em;
}
.service-test small {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}
.service-test__tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 330px;
}
.service-test__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e9f8fb;
  color: var(--secondary-700);
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
}
.service-no-results {
  margin-top: 24px;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--gray-100);
  text-align: center;
}
.service-no-results h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
}
.service-help-section {
  padding: 0 0 88px;
  background: var(--gray-050);
}
.service-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 26px;
  background: var(--lavender-2);
}
.service-help-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
}
.service-help-card p:not(.eyebrow) {
  max-width: 650px;
}
.service-help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* Georgian service catalog mode: prepared for the primary Georgian rollout. */
html[lang="ka"] .service-test h4,
html[lang="ka"] .service-category summary span,
html[lang="ka"] .service-subgroup h3 {
  line-height: 1.32;
}
html[lang="ka"] .service-test h4 { font-size: 16px; }

/* Research page: polished sections with clear value, grounded focus areas and contained apparatus visuals. */
.research-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--gray-600);
}
.research-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.research-hero-actions .btn { margin-top: 0; }
.research-hero-image img { object-position: center; }

.research-value-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  gap: 42px;
  align-items: stretch;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 14%, rgba(49,182,200,.18), transparent 34%),
    linear-gradient(135deg, #f7fbfc 0%, #ece7f5 100%);
  overflow: hidden;
}
.research-value-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(49,182,200,.16);
}
.research-value-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}
.research-value-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
}
.research-value-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--gray-600);
}
.research-value-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.research-value-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 16px 40px rgba(10,30,83,.06);
}
.research-value-steps span {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary-500);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}
.research-value-steps h3 {
  grid-column: 2;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 28px;
}
.research-value-steps p {
  grid-column: 2;
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 22px;
}

.research-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.research-focus-card {
  min-height: 278px;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: transform .22s ease, box-shadow .22s ease;
}
.research-focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.research-focus-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--secondary-600);
  font-size: 18px;
  line-height: 24px;
  font-weight: 900;
}
.research-focus-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 29px;
}
.research-focus-card p {
  font-size: 14px;
  line-height: 21px;
  color: var(--gray-600);
}

.research-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.research-capability-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 270px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.research-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.research-capability-card figure {
  height: 226px;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--gray-050);
}
.research-capability-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.research-capability-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--secondary-600);
  font-size: 11px;
  line-height: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.research-capability-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 32px;
}
.research-capability-card p {
  font-size: 15px;
  line-height: 23px;
  color: var(--gray-600);
}

.research-academic-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}
.research-university-photo {
  min-height: 470px;
}
.research-university-photo img {
  object-fit: cover;
  object-position: center;
}
.research-academic-content {
  min-height: 470px;
  padding: 48px;
  border-radius: 26px;
  background: var(--lavender-2);
}
.research-academic-content h2 {
  margin-bottom: 18px;
}
.research-academic-content > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--gray-600);
}
.research-academic-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.research-academic-points article {
  min-height: 148px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
}
.research-academic-points strong,
.research-academic-points span {
  display: block;
}
.research-academic-points strong {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
}
.research-academic-points span {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 20px;
}

.research-contact-section { padding-top: 74px; }
.research-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 26px;
  background: var(--lavender-2);
}
.research-contact-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
}
.research-contact-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--gray-600);
}
.research-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-whatsapp {
  gap: 8px;
}
.whatsapp-mark {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.72 12.72 0 0 0 5.1 22.48L3.2 29l6.68-1.76A12.7 12.7 0 1 0 16.02 3.2Zm0 2.32a10.38 10.38 0 0 1 8.84 15.84 10.36 10.36 0 0 1-13.56 3.72l-.48-.26-3.96 1.04 1.06-3.86-.3-.5A10.4 10.4 0 0 1 16.02 5.52Zm-4.44 5.44c-.24 0-.62.08-.94.44-.32.36-1.22 1.2-1.22 2.92 0 1.72 1.24 3.38 1.42 3.62.18.24 2.42 3.86 5.98 5.26 2.96 1.16 3.56.94 4.2.88.64-.06 2.08-.84 2.38-1.66.3-.82.3-1.52.2-1.66-.1-.14-.34-.22-.72-.42-.38-.2-2.08-1.02-2.4-1.14-.32-.12-.56-.18-.8.2-.24.38-.92 1.14-1.12 1.38-.2.24-.42.26-.78.08-.38-.2-1.58-.58-3-1.84-1.1-.98-1.84-2.18-2.06-2.56-.22-.38-.02-.58.16-.76.16-.16.38-.42.56-.64.18-.22.24-.38.36-.64.12-.26.06-.48-.02-.66-.08-.18-.78-1.88-1.08-2.56-.28-.66-.56-.56-.78-.58h-.34Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.72 12.72 0 0 0 5.1 22.48L3.2 29l6.68-1.76A12.7 12.7 0 1 0 16.02 3.2Zm0 2.32a10.38 10.38 0 0 1 8.84 15.84 10.36 10.36 0 0 1-13.56 3.72l-.48-.26-3.96 1.04 1.06-3.86-.3-.5A10.4 10.4 0 0 1 16.02 5.52Zm-4.44 5.44c-.24 0-.62.08-.94.44-.32.36-1.22 1.2-1.22 2.92 0 1.72 1.24 3.38 1.42 3.62.18.24 2.42 3.86 5.98 5.26 2.96 1.16 3.56.94 4.2.88.64-.06 2.08-.84 2.38-1.66.3-.82.3-1.52.2-1.66-.1-.14-.34-.22-.72-.42-.38-.2-2.08-1.02-2.4-1.14-.32-.12-.56-.18-.8.2-.24.38-.92 1.14-1.12 1.38-.2.24-.42.26-.78.08-.38-.2-1.58-.58-3-1.84-1.1-.98-1.84-2.18-2.06-2.56-.22-.38-.02-.58.16-.76.16-.16.38-.42.56-.64.18-.22.24-.38.36-.64.12-.26.06-.48-.02-.66-.08-.18-.78-1.88-1.08-2.56-.28-.66-.56-.56-.78-.58h-.34Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Contact page: professional text-first hero, form, direct actions and map as one cohesive hub. */
.contact-hero-v2 {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 85% 18%, rgba(49,182,200,.16), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}
.contact-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
}
.contact-hero-card--single {
  max-width: 920px;
}
.contact-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--gray-600);
}
.contact-hero-links {
  display: none;
}
.contact-hero-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gray-050);
  border: 1px solid var(--gray-100);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-hero-links a:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(10,30,83,.08);
}
.contact-hero-links span {
  color: var(--secondary-600);
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-hero-links strong {
  color: var(--primary-900);
  font-size: 15px;
  line-height: 21px;
}
.contact-section {
  padding: 34px 0 96px;
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 28px;
  align-items: stretch;
}
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
}
.contact-form--main {
  min-height: 100%;
}
.form-head {
  margin-bottom: 28px;
}
.form-head h2 {
  font-size: 38px;
  line-height: 44px;
  letter-spacing: -0.035em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-field label {
  font-size: 12px;
  line-height: 18px;
  color: var(--primary-900);
  font-weight: 700;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  background: var(--gray-100);
  border-radius: 10px;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--primary-900);
  outline: none;
  transition: box-shadow .2s ease, background .2s ease;
}
.form-field textarea {
  min-height: 142px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(49,182,200,.32);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.form-status {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--gray-600);
}
.form-status.is-success {
  color: #198a62;
  font-weight: 700;
}
.form-status.is-error {
  color: #b54708;
  font-weight: 700;
}
.contact-aside {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}
.contact-card,
.map-card {
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  background: var(--lavender);
  overflow: hidden;
}
.contact-card--methods {
  padding: 34px;
}
.contact-card h2 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -0.035em;
}
.contact-methods {
  display: grid;
  gap: 12px;
}
.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-method:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10,30,83,.08);
}
.contact-method__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary-500);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}
.contact-method__icon--whatsapp .whatsapp-mark {
  width: 21px;
  height: 21px;
}
.contact-method strong,
.contact-method small {
  display: block;
}
.contact-method strong {
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 20px;
  color: var(--primary-900);
}
.contact-method small {
  font-size: 13px;
  line-height: 18px;
  color: var(--gray-600);
}
.map-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
}
.map-card__head {
  padding: 26px 28px 18px;
}
.map-card__head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
}
.map-frame {
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  margin: 0 18px 18px;
  background: var(--gray-100);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* Blog article pages: reusable static template with clear navigation and no fake breadcrumbs. */
.article-page { padding: 62px 0 92px; }
.article-layout { max-width: 980px; margin: 0 auto; }
.breadcrumbs { margin-bottom: 28px; font-size: 13px; line-height: 18px; color: var(--gray-500); }
.article-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}
.article-top-nav a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  color: var(--secondary-600);
}
.article-head { text-align: center; margin-bottom: 42px; }
.article-head .eyebrow { margin-bottom: 14px; color: var(--secondary-600); }
.article-head h1 { max-width: 880px; margin:0 auto; }
.article-hero { height: 470px; border-radius: 22px; overflow:hidden; margin-bottom: 52px; background: var(--gray-100); }
.article-hero img { width:100%; height:100%; object-fit:cover; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-size: 34px; line-height: 42px; margin: 42px 0 16px; }
.article-content p { margin-bottom: 18px; }
.article-content ul { color: var(--gray-600); font-size:16px; line-height:24px; }
.article-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 58px 0 74px;
}
.article-nav__item {
  min-height: 112px;
  padding: 22px;
  border-radius: 22px;
  background: var(--gray-050);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.article-nav__item:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(10, 30, 83, .08);
}
.article-nav__item span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
}
.article-nav__item strong {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: var(--primary-900);
}
.article-nav__item--center { text-align: center; background: rgba(31, 181, 200, .08); }
.article-related { margin-top: 12px; }
.news-grid--related { grid-template-columns: repeat(2, 1fr); }
.article-legacy { min-height: 420px; }

@media (max-width: 1180px) {
  .container { width: min(100% - 54px, var(--container)); }
  .header-inner { grid-template-columns: 160px minmax(0, 1fr) 170px; }
  .brand, .brand img { width: 138px; }
  .nav { gap: 18px; }
  .phone-cta { min-width: 146px; padding-inline: 18px; }
  .hero-card { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 72px 42px 42px 52px; }
  .services-grid { grid-template-columns: 330px 1fr; gap: 50px; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 42px; text-align: center; justify-items: center; }
  .footer-brand-col { align-items: center; }
  .footer-brand-col p { text-align: center; }
  .socials { justify-content: center; }
  /* Tablet CTA banner: keep the copy centered when the banner starts to compress. */
  .cta-card { justify-content: center; text-align: center; }
  .cta-content { margin: 0 auto; }
  .cta-content .btn { margin-inline: auto; }
  .page-hero-grid { grid-template-columns: 1fr 500px; gap: 46px; }
}



@media (max-width: 1100px) {
  /* Compact laptop / tablet landscape: keeps the desktop composition, but prevents 1024px layouts from feeling squeezed. */
  .container { width: min(100% - 48px, var(--container)); }

  /* Header compact mode: logo-menu-button still stay in one clean row. */
  .header-inner {
    grid-template-columns: 150px minmax(0, 1fr) 158px;
    gap: 18px;
  }
  .brand,
  .brand img { width: 128px; }
  .nav { gap: 14px; }
  .nav a {
    font-size: 11px;
    line-height: 16px;
  }
  .phone-cta {
    min-width: 138px;
    min-height: 42px;
    padding-inline: 16px;
  }

  /* Hero compact mode: smaller title and image so the first screen does not feel oversized on 1024px laptops. */
  .hero-home { padding-bottom: 26px; }
  .hero-card {
    min-height: 500px;
    grid-template-columns: 50% 50%;
  }
  .hero-copy {
    padding: 60px 34px 42px 48px;
  }
  .hero-copy h1 {
    max-width: 430px;
    font-size: 52px;
    line-height: 58px;
  }
  .hero-copy p {
    max-width: 430px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 23px;
  }
  .hero-media { min-height: 500px; }
  .hero-dna-image {
    width: 108%;
    height: 108%;
    object-position: 52% 50%;
  }

  /* Partners compact mode: logo row wraps into a cleaner two-line structure instead of overflowing. */
  .partners { padding: 12px 0 48px; }
  .partners-row {
    grid-template-columns: repeat(7, minmax(72px, 1fr));
    gap: 18px 22px;
  }
  .partners-label {
    grid-column: 1 / -1;
    text-align: left;
  }
  .partner-logo {
    height: 42px;
  }
  .partner-logo img {
    max-width: 138px;
    max-height: 38px;
  }

  /* Home services compact mode: two cards remain visible without pushing the layout wider than the viewport. */
  .services-preview { padding: 56px 0 32px; }
  .services-grid {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 38px;
  }
  .services-heading h2 {
    max-width: 290px;
    font-size: 46px;
    line-height: 52px;
  }
  .services-slider {
    --service-card-w: 258px;
    --service-gap: 20px;
  }
  .service-card {
    height: 306px;
    padding: 142px 24px 24px;
  }
  .service-card h3 {
    font-size: 22px;
    line-height: 27px;
  }

  /* Technology and news compact mode: slightly tighter vertical rhythm for 1024px screens. */
  .tech-preview { padding: 44px 0 68px; }
  .tech-head { margin-bottom: 34px; }
  .tech-head h2 {
    font-size: 48px;
    line-height: 52px;
  }
  .tech-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }
  .tech-card {
    min-height: 300px;
    padding: 14px 14px 20px;
  }
  .tech-card figure { height: 130px; }
  .tech-card h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .news-section { padding: 64px 0 84px; }
  .article-card__image { height: 170px; }
  .article-card h3 {
    font-size: 20px;
    line-height: 26px;
  }

  /* Inner pages compact mode: avoids oversized hero columns on tablet landscape. */
  .page-hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 38px;
  }
  .page-image { height: 380px; }
  .team-grid,
  .services-list { gap: 20px; }
  /* Services catalog compact laptop/tablet landscape mode. */
  .service-catalog-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .service-summary-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .service-summary-grid article { min-height: 120px; padding: 22px; }
  .service-category summary { padding: 24px 26px; }
  .service-category__content { padding: 0 26px 30px; }
  .service-test { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .service-test__tags { justify-content: flex-start; max-width: none; }
  .service-help-card { grid-template-columns: 1fr; text-align: center; }
  .service-help-actions { justify-content: center; }
  .mission-grid { gap: 18px; }
  .mission-card {
    min-height: 230px;
    padding: 28px;
  }
  .mission-card h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .about-tech-card {
    grid-template-columns: 180px 1fr;
    gap: 22px;
    min-height: 340px;
  }
  .about-tech-card figure { min-height: 292px; }
  .about-tech-copy h3 {
    font-size: 24px;
    line-height: 30px;
  }

  /* Research compact mode: keeps the polished informative page balanced at 1024px. */
  .research-value-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .research-value-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .research-value-steps article {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .research-value-steps span,
  .research-value-steps h3,
  .research-value-steps p {
    grid-column: auto;
    grid-row: auto;
  }
  .research-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .research-capabilities-grid {
    grid-template-columns: 1fr;
  }
  .research-capability-card {
    grid-template-columns: 220px 1fr;
  }
  .research-academic-card {
    grid-template-columns: 1fr;
  }
  .research-university-photo {
    min-height: 360px;
  }
  .research-academic-content {
    min-height: 0;
  }
  .research-contact-card {
    grid-template-columns: 1fr;
  }
  .research-contact-actions {
    justify-content: flex-start;
  }

  /* Contact compact mode: keeps form, direct actions and map balanced at 1024px. */
  .contact-hero-card {
    grid-template-columns: 1fr;
  }
  .contact-section { padding-bottom: 78px; }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
  }
  .contact-form { padding: 32px; }
  .form-head h2 { font-size: 34px; line-height: 40px; }
  .contact-card--methods { padding: 28px; }
  .contact-card h2 { font-size: 30px; line-height: 36px; }
  .map-frame,
  .map-frame iframe { min-height: 270px; }
}

@media (max-width: 900px) {
  :root { --header-h: 58px; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { height: var(--header-h); }
  .header-inner { display: flex; justify-content: space-between; }
  .brand, .brand img { width: 112px; }
  .burger { display:block; z-index:1002; }
  .header-actions { display:none; }
  .nav {
    position: fixed;
    z-index:1001;
    left: 0; right: 0; top: var(--header-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    margin: 0;
    padding: 20px 16px 28px;
    background:#fff;
    border-top:1px solid var(--gray-100);
    transform: translateY(-12px);
    opacity:0;
    pointer-events:none;
    box-shadow: 0 24px 50px rgba(10,30,83,.08);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .nav { opacity:1; transform: translateY(0); pointer-events:auto; }
  .nav a { font-size: 20px; line-height: 28px; padding:14px 10px; }
  .nav a::after { display:none; }
  .hero-home { padding-top: 0; }
  .hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 12px 12px 0 0;
  }
  .hero-copy { padding: 34px 32px 24px; align-items:center; text-align:center; min-height: 304px; }
  .hero-copy h1 { font-size: 31px; line-height: 35px; max-width: 300px; letter-spacing:-0.035em; }
  .hero-copy p { margin-top: 16px; font-size: 13px; line-height: 19px; max-width: 280px; }
  .hero-ctas { margin-top: 24px; width:100%; justify-content:center; }
  /* Mobile hero CTA: compact pill button instead of a stretched full-width control. */
  .hero-ctas .btn { width: auto; min-width: 164px; max-width: none; justify-content: center; min-height: 42px; padding-inline: 18px 22px; }
  .hero-iso { margin-top: 22px; justify-content:center; }
  .hero-media { min-height: 298px; }
  /* Mobile DNA visual: centered so the molecule does not drift to one side. */
  .hero-dna-image { width: 118%; height: 118%; object-position: 50% 50%; }
  .partners { padding: 28px 0 54px; }
  .partners-row { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; text-align:center; }
  .partners-label { grid-column: 1 / -1; margin-bottom: 2px; font-size: 15px; line-height: 22px; }
  .partner-logo { height: 42px; }
  .partner-logo img { max-width: 148px; max-height: 38px; }
  .services-preview { padding: 42px 0 26px; background:#fff; }
  .services-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-heading { text-align:center; }
  .services-heading h2 { margin: 0 auto; font-size: 34px; line-height: 38px; }
  .services-slider { --service-card-w: min(244px, calc(100vw - 32px)); --service-gap: 18px; width: var(--service-card-w); margin: 0 auto; }
  .service-card { height: 286px; padding: 132px 22px 20px; }
  .service-card::before { width: 92px; height: 92px; font-size: 28px; }
  .service-card h3 { font-size: 20px; line-height: 25px; }
  .services-actions { flex-direction: column; justify-content: center; margin-top: 20px; }
  .slider-controls { justify-content:center; }
  .tech-preview { padding: 42px 0 58px; }
  .tech-grid { grid-template-columns: 1fr; max-width: 292px; margin: 0 auto; gap: 36px; }
  .tech-card { border: 0; min-height: auto; padding:0; box-shadow:none; }
  .tech-head h2 span { display: inline; }
  .tech-head h2 span + span::before { content: " "; }
  .tech-card figure { height: 158px; width: 100%; margin-bottom: 15px; }
  .tech-card figure img { object-fit: cover; border-radius: 12px; }
  .news-section { padding: 56px 0; }
  .section-row { align-items:center; margin-bottom:26px; }
  .news-grid, .team-grid, .services-list { grid-template-columns: 1fr; gap: 28px; }
  .article-card__image { height: 210px; }
  .cta-banner { padding-bottom: 58px; }
  /* Mobile/tablet CTA banner: content is centered over the soft image overlay. */
  .cta-card { min-height: 184px; padding: 28px 26px; border-radius: 18px; justify-content: center; text-align: center; }
  .cta-card img { width:100%; opacity:.45; }
  .cta-card::before { background: linear-gradient(90deg, rgba(240,237,248,.96), rgba(240,237,248,.75)); }
  .cta-content { margin: 0 auto; }
  .cta-content h2 { font-size: 28px; line-height: 34px; }
  .cta-content .btn { margin-inline: auto; }
  /* Mobile/tablet footer: all columns are centered for a cleaner stacked layout. */
  .site-footer { padding-top: 46px; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; padding-bottom: 42px; justify-items: center; text-align: center; }
  .footer-brand-col { align-items: center; }
  .footer-brand-col p { text-align: center; }
  .footer-logo { width: 152px; margin-inline: auto; }
  .socials { justify-content: center; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; padding-top:28px; }
  .footer-credit { text-align: center; }
  .footer-legal { justify-content: center; }
  .page-hero { padding: 34px 0 54px; }
  .page-hero-grid { grid-template-columns:1fr; gap:28px; }
  .page-hero h1 { font-size: 38px; line-height: 43px; text-align:center; }
  .page-hero p { text-align:center; margin-inline:auto; font-size:14px; line-height:22px; }
  .page-hero .btn { margin-inline:auto; display:flex; width:max-content; }
  .page-image { height: 310px; border-radius: 18px; order:-1; }
  .content-block { padding: 54px 0; }
  /* Services catalog mobile/tablet portrait mode. */
  .services-hero-actions { justify-content: center; }
  .service-catalog-section { padding: 54px 0 48px; }
  .service-catalog-head { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .service-catalog-head h2 { margin: 0 auto; font-size: 32px; line-height: 38px; }
  .service-catalog-head > p { margin-inline: auto; }
  .service-summary-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-summary-grid article { min-height: 0; padding: 22px; text-align: center; }
  .service-search-card { padding: 22px; border-radius: 20px; text-align: center; }
  .service-search-row { grid-template-columns: 1fr; }
  .service-search-row .btn { width: max-content; margin: 0 auto; }
  .service-category summary { grid-template-columns: 1fr auto; padding: 22px; text-align: left; }
  .service-category summary span { font-size: 24px; line-height: 30px; }
  .service-category__content { padding: 0 18px 24px; }
  .service-subgroup h3 { text-align: left; font-size: 18px; line-height: 24px; }
  .service-test { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .service-test h4 { font-size: 15px; line-height: 22px; }
  .service-test small { font-size: 12px; line-height: 19px; }
  .service-test__tags { justify-content: flex-start; max-width: none; }
  .service-help-section { padding-bottom: 58px; }
  .service-help-card { grid-template-columns: 1fr; padding: 30px 24px; text-align: center; }
  .service-help-actions { justify-content: center; }
  .service-help-actions .btn { width: 100%; max-width: 250px; }
  .split { grid-template-columns:1fr; }
  .panel { padding: 30px; min-height:0; }
  .image-panel { height: 300px; }
  .image-panel--contain { padding: 18px; }
  .mission-grid { grid-template-columns: 1fr; gap: 18px; }
  .mission-card { min-height: 0; padding: 26px; text-align: center; }
  .section-intro { text-align: center; margin: 0 auto 30px; }
  .about-tech-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-tech-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 20px;
    text-align: center;
  }
  .about-tech-card figure {
    height: 220px;
    min-height: 0;
  }
  .about-tech-copy ul {
    text-align: left;
  }
  /* Research mobile/tablet mode: all content stacks cleanly without fake article cards. */
  .research-hero-actions { justify-content: center; flex-wrap: wrap; }
  .research-value-card { grid-template-columns: 1fr; padding: 28px 22px; text-align: center; }
  .research-value-steps,
  .research-focus-grid,
  .research-capabilities-grid,
  .research-academic-card,
  .research-academic-points { grid-template-columns: 1fr; }
  .research-value-steps article { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .research-value-steps span,
  .research-value-steps h3,
  .research-value-steps p {
    grid-column: auto;
    grid-row: auto;
  }
  .research-focus-card { min-height: 0; text-align: center; }
  .research-focus-card span { margin-bottom: 20px; }
  .research-capability-card { grid-template-columns: 1fr; text-align: center; padding: 20px; }
  .research-capability-card figure { height: 220px; }
  .research-university-photo { min-height: 280px; }
  .research-academic-content { min-height: 0; padding: 30px 24px; text-align: center; }
  .research-contact-section { padding-top: 54px; }
  .research-contact-card { grid-template-columns: 1fr; padding: 30px 24px; text-align: center; }
  .research-contact-actions { justify-content: center; }

  /* Contact mobile/tablet mode: stack the communication hub and center content without making it bulky. */
  .contact-hero-v2 { padding: 38px 0 28px; }
  .contact-hero-card { padding: 28px 24px; text-align: center; }
  .contact-hero-copy p:not(.eyebrow) { margin-inline: auto; }
  .contact-section { padding: 0 0 58px; }
  .contact-layout { grid-template-columns: 1fr; gap: 22px; }
  .contact-form { padding: 24px; border-radius: 20px; }
  .form-head { text-align: center; margin-bottom: 24px; }
  .form-head h2 { font-size: 30px; line-height: 36px; }
  .form-grid { grid-template-columns:1fr; }
  .form-actions { flex-direction: column; align-items: center; text-align: center; }
  .contact-aside { gap: 22px; }
  .contact-card--methods { padding: 24px; text-align: center; }
  .contact-card h2 { margin-inline: auto; font-size: 28px; line-height: 34px; }
  .contact-method { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .map-card__head { padding: 24px 22px 16px; text-align: center; }
  .map-frame { margin: 0 14px 14px; min-height: 260px; }
  .map-frame iframe { min-height: 260px; }
  /* Blog article mobile/tablet mode: navigation stacks and the article stays readable. */
  .article-page { padding: 34px 0 58px; }
  .article-top-nav { margin-bottom: 26px; }
  .article-head { text-align: center; margin-bottom: 30px; }
  .article-head h1 { font-size: 36px; line-height:40px; text-align:center; }
  .article-hero { height: 260px; border-radius:16px; margin-bottom: 34px; }
  .article-content h2 { font-size: 28px; line-height:34px; }
  .article-nav { grid-template-columns: 1fr; gap: 12px; margin: 42px 0 54px; }
  .article-nav__item { min-height: 0; text-align: center; }
  .news-grid--related { grid-template-columns: 1fr; }
}


/* Blog article helpers: supports contain-mode illustrations, inline figures and biomarker tables. */
.article-hero--contain {
  height: auto;
  min-height: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero--contain img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}
.article-figure {
  margin: 30px 0 38px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--gray-050);
  border: 1px solid var(--gray-100);
}
.article-figure img {
  width: 100%;
  display: block;
}
.article-figure--contain {
  padding: 16px;
}
.article-figure--contain img {
  max-height: 560px;
  object-fit: contain;
  margin: 0 auto;
}
.article-figure figcaption {
  padding: 14px 18px 18px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 20px;
}
.article-table-wrap {
  margin: 26px 0 38px;
  overflow-x: auto;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  background: #fff;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.article-table th,
.article-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}
.article-table thead th {
  background: var(--gray-050);
  color: var(--secondary-600);
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.article-table tbody td:first-child {
  font-weight: 800;
  color: var(--secondary-700);
}
.article-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .article-hero--contain {
    padding: 18px;
  }
  .article-table th,
  .article-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .article-hero--contain img,
  .article-figure--contain img {
    max-height: 420px;
  }
  .article-figure {
    margin: 24px 0 32px;
    border-radius: 16px;
  }
}


/* Georgian primary-language tuning: keeps Georgian copy balanced in the existing Figma layout. */
html[lang="ka"] .nav {
  gap: 22px;
}
html[lang="ka"] .nav a {
  font-size: 11.5px;
}
html[lang="ka"] .phone-cta {
  min-width: 112px;
  padding-inline: 16px;
}
html[lang="ka"] .hero-copy h1 {
  max-width: 560px;
}
html[lang="ka"] .service-card h3,
html[lang="ka"] .article-card h3,
html[lang="ka"] .contact-method strong {
  line-height: 1.28;
}
html[lang="ka"] .article-content p,
html[lang="ka"] .article-content li {
  line-height: 1.72;
}
html[lang="ka"] .article-head h1 {
  max-width: 940px;
}
html[lang="ka"] .form-field input,
html[lang="ka"] .form-field textarea {
  font-size: 14px;
}
@media (max-width: 1180px) {
  html[lang="ka"] .nav {
    gap: 14px;
  }
  html[lang="ka"] .nav a {
    font-size: 10.5px;
  }
}
@media (max-width: 900px) {
  .language-switcher {
    margin-left: 0;
  }
  html[lang="ka"] .nav a {
    font-size: 19px;
    line-height: 28px;
  }
}


/* Build 02 bilingual fixes: prevent Georgian text overflow and tune the home services block. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.nav-language-switcher {
  display: none;
}

html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] p,
html[lang="ka"] a,
html[lang="ka"] li,
html[lang="ka"] span,
html[lang="ka"] small {
  overflow-wrap: break-word;
}

html[lang="ka"] .services-heading h2 {
  max-width: 410px;
  font-size: clamp(42px, 3.55vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

html[lang="ka"] .service-card h3 {
  font-size: 22px;
  line-height: 1.25;
}

html[lang="ka"] .service-card p {
  font-size: 13px;
  line-height: 1.55;
}

html[lang="ka"] .service-test h4,
html[lang="ka"] .service-test__tags span {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  html[lang="ka"] .services-grid {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
  }

  html[lang="ka"] .services-heading h2 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.15;
  }

  html[lang="ka"] .services-slider {
    --service-card-w: 248px;
    --service-gap: 18px;
  }

  html[lang="ka"] .service-card {
    height: 306px;
    padding: 138px 22px 22px;
  }

  html[lang="ka"] .service-card h3 {
    font-size: 20px;
    line-height: 1.25;
  }
}

@media (max-width: 1024px) {
  html[lang="ka"] .services-grid {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
  }

  html[lang="ka"] .services-heading h2 {
    max-width: 290px;
    font-size: 36px;
    line-height: 1.16;
  }

  html[lang="ka"] .services-slider {
    --service-card-w: 232px;
    --service-gap: 16px;
  }
}

@media (max-width: 900px) {
  .nav-language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 6px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--gray-050);
  }

  .nav-language-switcher a {
    min-width: 44px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--gray-600);
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900;
  }

  .nav-language-switcher a.active {
    background: var(--secondary-500);
    color: #fff;
  }

  html[lang="ka"] .hero-copy h1 {
    font-size: 28px;
    line-height: 1.2;
    max-width: 330px;
  }

  html[lang="ka"] .hero-copy p {
    max-width: 320px;
    font-size: 12.5px;
    line-height: 1.65;
  }

  html[lang="ka"] .services-heading h2 {
    max-width: 320px;
    font-size: 30px;
    line-height: 1.22;
  }

  html[lang="ka"] .services-slider {
    --service-card-w: min(268px, calc(100vw - 40px));
    --service-gap: 18px;
    width: var(--service-card-w);
  }

  html[lang="ka"] .service-card {
    height: auto;
    min-height: 280px;
    padding: 126px 22px 22px;
  }

  html[lang="ka"] .service-card h3 {
    font-size: 19px;
    line-height: 1.28;
  }

  html[lang="ka"] .service-card p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  html[lang="ka"] .page-hero h1,
  html[lang="ka"] .section-intro h2,
  html[lang="ka"] .tech-head h2,
  html[lang="ka"] .service-catalog-head h2,
  html[lang="ka"] .research-value-copy h2,
  html[lang="ka"] .research-focus-section h2,
  html[lang="ka"] .contact-hero-copy h1,
  html[lang="ka"] .form-head h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.025em;
  }

  html[lang="ka"] .service-category summary span {
    font-size: 20px;
    line-height: 1.35;
  }

  html[lang="ka"] .service-test h4 {
    font-size: 14px;
    line-height: 1.55;
  }

  html[lang="ka"] .about-tech-card figure {
    height: 220px;
    padding: 18px;
  }
}

@media (max-width: 620px) {
  html[lang="ka"] .container {
    width: min(100% - 26px, var(--container));
  }

  html[lang="ka"] .hero-copy {
    padding: 30px 22px 24px;
  }

  html[lang="ka"] .hero-copy h1 {
    font-size: 25px;
    line-height: 1.24;
  }

  html[lang="ka"] .partners-row,
  html[lang="ka"] .tech-grid,
  html[lang="ka"] .news-grid {
    max-width: 100%;
  }

  html[lang="ka"] .cta-content h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  html[lang="ka"] .contact-form,
  html[lang="ka"] .contact-card--methods,
  html[lang="ka"] .map-card__head,
  html[lang="ka"] .panel,
  html[lang="ka"] .research-academic-content {
    padding-inline: 20px;
  }

  html[lang="ka"] .service-search-card,
  html[lang="ka"] .service-help-card,
  html[lang="ka"] .research-contact-card {
    padding-inline: 18px;
  }

  html[lang="ka"] .article-head h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  html[lang="ka"] .article-content h2 {
    font-size: 24px;
    line-height: 1.28;
  }
}

@media (max-width: 420px) {
  html[lang="ka"] .brand,
  html[lang="ka"] .brand img {
    width: 104px;
  }

  html[lang="ka"] .nav a {
    font-size: 17px;
    line-height: 1.35;
    padding-block: 11px;
  }

  html[lang="ka"] .hero-copy h1 {
    font-size: 23px;
  }

  html[lang="ka"] .services-heading h2 {
    font-size: 27px;
  }

  html[lang="ka"] .service-card {
    min-height: 270px;
  }
}







/* Build 05 correction: fixed sticky header, visible scroll-up button, research mobile typography, centered eyebrow and centered cover images. */

/* Header behaves like a sticky header on every page and every breakpoint. */
body {
  padding-top: var(--header-h);
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000;
}

/* Mobile menu opens under the visible fixed header, exactly where the user is. */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Classic scroll-to-top button. It is created in HTML and also guarded by JS. */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3500;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 30, 83, .08);
  border-radius: 50%;
  background: var(--secondary-500);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(31, 174, 192, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--secondary-600);
}

/* Photos: return to cover, but keep the important part centered instead of decorative contain boxes. */
.about-tech-card figure {
  padding: 0 !important;
  overflow: hidden;
  background: var(--gray-050);
}
.about-tech-card figure::before,
.about-tech-card figure::after {
  display: none !important;
  content: none !important;
}
.about-tech-card figure img,
.page-image img,
.research-hero-image img,
.research-university-photo img,
.research-capability-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: 50% 50% !important;
}

/* Georgian desktop title scale: prevents the hero from becoming a vertical stack. */
html[lang="ka"] .hero-copy h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

/* Georgian home services: keep heading and slider inside the viewport. */
html[lang="ka"] .services-grid {
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
}
html[lang="ka"] .services-heading h2 {
  max-width: 330px;
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.18;
}
html[lang="ka"] .services-slider,
html[lang="ka"] .services-viewport {
  overflow: hidden;
}

/* Research page mobile: no clipping, centered eyebrows/headings, normal button flow. */
@media (max-width: 900px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  html[lang="ka"] .hero-copy h1 {
    max-width: 340px;
    font-size: 27px;
    line-height: 1.24;
    text-align: center;
  }

  html[lang="ka"] .hero-copy p {
    max-width: 330px;
    text-align: center;
  }

  html[lang="ka"] .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  html[lang="ka"] .services-heading h2 {
    max-width: 330px;
    font-size: 27px;
    line-height: 1.24;
    margin-inline: auto;
    text-align: center;
  }

  html[lang="ka"] .services-slider {
    --service-card-w: min(278px, calc(100vw - 42px));
    --service-gap: 18px;
    width: var(--service-card-w);
    max-width: calc(100vw - 42px);
    margin-inline: auto;
  }

  /* Center all research section labels and headings on mobile. */
  .research-value-copy,
  .research-focus-section .section-intro,
  .research-capabilities-section .section-intro,
  .research-academic-content,
  .research-contact-card,
  .research-contact-card > div {
    min-width: 0;
    max-width: 100%;
    text-align: center;
  }

  .research-value-copy .eyebrow,
  .research-focus-section .eyebrow,
  .research-capabilities-section .eyebrow,
  .research-academic-content .eyebrow,
  .research-contact-card .eyebrow {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .research-value-copy h2,
  .research-focus-section h2,
  .research-capabilities-section h2,
  .research-academic-content h2,
  .research-contact-card h2 {
    max-width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  html[lang="ka"] .research-value-copy h2,
  html[lang="ka"] .research-focus-section h2,
  html[lang="ka"] .research-capabilities-section h2,
  html[lang="ka"] .research-academic-content h2,
  html[lang="ka"] .research-contact-card h2 {
    font-size: clamp(23px, 6.4vw, 32px);
    line-height: 1.28;
    letter-spacing: -0.025em;
  }

  .research-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: visible !important;
    padding: 28px 18px;
    border-radius: 24px;
  }

  .research-contact-card p:not(.eyebrow) {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .research-contact-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .research-contact-actions .btn {
    width: min(100%, 260px);
    justify-content: center;
  }

  .research-capability-card,
  .research-focus-card {
    text-align: center;
  }

  .about-tech-card figure {
    height: 240px;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  html[lang="ka"] .container {
    width: min(100% - 28px, var(--container));
  }

  html[lang="ka"] .research-value-copy h2,
  html[lang="ka"] .research-focus-section h2,
  html[lang="ka"] .research-capabilities-section h2,
  html[lang="ka"] .research-academic-content h2,
  html[lang="ka"] .research-contact-card h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  html[lang="ka"] .research-contact-card {
    padding: 26px 16px;
  }

  html[lang="ka"] .article-related .section-row h2,
  html[lang="ka"] .news-section .section-row h2 {
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
  }
}

@media (max-width: 420px) {
  html[lang="ka"] .hero-copy h1 {
    font-size: 23px;
  }

  html[lang="ka"] .research-value-copy h2,
  html[lang="ka"] .research-focus-section h2,
  html[lang="ka"] .research-capabilities-section h2,
  html[lang="ka"] .research-academic-content h2,
  html[lang="ka"] .research-contact-card h2 {
    font-size: 22px;
  }
}





/* Build 08 real exact class fix:
   Only this exact Georgian research inquiry block. No generic research styles. */
@media (max-width: 425px) {
  html[lang="ka"] .research-inquiry-fix-section {
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-section > .container {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 24px 14px;
    overflow: visible;
    border-radius: 22px;
    text-align: center;
  }

  html[lang="ka"] .research-inquiry-fix-copy {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    text-align: center;
  }

  html[lang="ka"] .research-inquiry-fix-copy .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 12px;
    text-align: center;
    white-space: normal;
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-title {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 14px;
    padding: 0;
    font-size: 18px;
    line-height: 1.48;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-text {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.78;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-card .research-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 22px;
    overflow: visible;
  }

  html[lang="ka"] .research-inquiry-fix-card .research-contact-actions .btn {
    width: 100%;
    max-width: 230px;
    min-width: 0;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  html[lang="ka"] .research-inquiry-fix-section > .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  html[lang="ka"] .research-inquiry-fix-card {
    padding: 22px 12px;
    border-radius: 20px;
  }

  html[lang="ka"] .research-inquiry-fix-title {
    font-size: 16px;
    line-height: 1.5;
  }

  html[lang="ka"] .research-inquiry-fix-text {
    font-size: 12px;
    line-height: 1.8;
  }

  html[lang="ka"] .research-inquiry-fix-card .research-contact-actions .btn {
    max-width: 214px;
  }
}
