:root {
  --xpf-navy: #1F266B;
  --xpf-blue: #2E3192;
  --xpf-cyan: #00AEEF;
  --xpf-magenta: #EC008C;
  --medical-blue: #033793;
  --soft-blue: #B0CCE6;
  --deep-teal: #20526B;
  --dark: #2F2F2F;
  --gray: #646461;
  --light-gray: #DDE1E5;
  --white: #FFFFFF;
  --success: #159A5B;
  --danger: #D64545;
  --bg-blue: #F3F8FC;
  --line: rgba(176, 204, 230, 0.55);
  --shadow: 0 22px 60px rgba(31, 38, 107, 0.10);
  --shadow-soft: 0 14px 36px rgba(31, 38, 107, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 82px;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 225, 229, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(31, 38, 107, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 0;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-wide {
  width: 285px;
  height: auto;
}

.brand-logo-compact {
  display: none;
  width: 92px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--xpf-navy);
  font-size: 15px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--xpf-magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--xpf-blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn-primary-xpf,
.nav-cta,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #29328F, #167FBE);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(31, 38, 107, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary-xpf:hover,
.nav-cta:hover,
.form-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 15px 32px rgba(31, 38, 107, 0.20);
}

.nav-cta {
  min-height: 44px;
  padding: 11px 20px;
}

.nav-cta::after {
  display: none;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(31, 38, 107, 0.22);
  border-radius: 14px;
  background: var(--white);
  color: var(--xpf-navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-lang:hover {
  transform: translateY(-2px);
  color: var(--xpf-blue);
  border-color: rgba(46, 49, 146, 0.45);
  box-shadow: 0 12px 26px rgba(31, 38, 107, 0.12);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1201;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 38, 107, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--xpf-navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(31, 38, 107, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  height: min(70vh, 620px);
  min-height: 560px;
  overflow: hidden;
  background: var(--xpf-navy);
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 55, 147, 0.12), rgba(0, 174, 239, 0.04));
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--xpf-navy);
  box-shadow: 0 14px 34px rgba(31, 38, 107, 0.16);
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.hero .swiper-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(31, 38, 107, 0.12);
  transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1), background 0.24s ease, transform 0.24s ease;
}

.hero .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--xpf-cyan);
  box-shadow: 0 4px 16px rgba(0, 174, 239, 0.28);
  animation: pagination-pop 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pagination-pop {
  0% {
    transform: scaleX(0.55);
  }

  100% {
    transform: scaleX(1);
  }
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 174, 239, 0.09), transparent 28%),
    linear-gradient(180deg, #F7FBFE, #EEF7FC);
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--xpf-navy);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--xpf-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--xpf-magenta);
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head .section-lead {
  max-width: 680px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--xpf-blue);
  font-weight: 800;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--xpf-magenta);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

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

.feature-card,
.achievement-card,
.certificate-card,
.contact-card,
.verify-card,
.info-card {
  border: 1px solid rgba(176, 204, 230, 0.55);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.achievement-card {
  padding: 24px;
  overflow: hidden;
}

.feature-card::before,
.achievement-card::before {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--xpf-blue), var(--xpf-cyan));
}

.feature-card h3,
.achievement-card h3 {
  margin: 0 0 8px;
  color: var(--xpf-navy);
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.achievement-card p {
  margin: 0;
  color: var(--gray);
}

.page-hero {
  padding: 96px 0 74px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(31, 38, 107, 0.95), rgba(3, 55, 147, 0.90)),
    radial-gradient(circle at 85% 24%, rgba(0, 174, 239, 0.35), transparent 28%);
}

.page-hero .section-title {
  color: var(--white);
}

.page-hero .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: -18px 24px 24px -18px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.14), rgba(0, 174, 239, 0.18));
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--gray);
}

.achievement-grid {
  margin-top: 34px;
}

.achievement-card strong {
  display: block;
  color: var(--xpf-navy);
  font-size: 28px;
  line-height: 1;
}

.achievement-card span {
  display: block;
  margin-top: 8px;
  color: var(--gray);
  font-weight: 700;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.certificate-card {
  padding: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.certificate-frame {
  display: grid;
  place-items: center;
  min-height: 470px;
  border-radius: 18px;
  background: linear-gradient(180deg, #F8FBFE, #EDF6FB);
  overflow: hidden;
}

.certificate-frame img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  padding: 12px;
}

.certificate-card h3 {
  margin: 18px 8px 4px;
  color: var(--xpf-navy);
}

.certificate-card p {
  margin: 0 8px 6px;
  color: var(--gray);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(13, 21, 52, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 980px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--xpf-navy);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 26px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 30px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.verify-layout,
.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.verify-card,
.info-card,
.contact-card {
  padding: 34px;
}

.verify-form {
  margin-top: 28px;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--xpf-navy);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(31, 38, 107, 0.18);
  border-radius: 14px;
  background: #FBFDFF;
  color: var(--dark);
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input {
  min-height: 54px;
  padding: 0 16px;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px 16px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--xpf-cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.form-hint {
  margin: 10px 0 0;
  color: var(--gray);
  font-size: 14px;
}

.verify-result,
.form-status {
  display: none;
  margin-top: 20px;
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 700;
}

.verify-result.is-visible,
.form-status.is-visible {
  display: block;
}

.verify-result.success,
.form-status.success {
  color: #0C6339;
  background: rgba(21, 154, 91, 0.10);
  border: 1px solid rgba(21, 154, 91, 0.22);
}

.verify-result.error {
  color: #983030;
  background: rgba(214, 69, 69, 0.10);
  border: 1px solid rgba(214, 69, 69, 0.22);
}

.form-status.error {
  color: #983030;
  background: rgba(214, 69, 69, 0.10);
  border: 1px solid rgba(214, 69, 69, 0.22);
}

.info-card h3,
.contact-card h3,
.contact-card h2,
.info-card h2 {
  margin: 0 0 10px;
  color: var(--xpf-navy);
  font-size: 24px;
}

.info-card p,
.contact-card p {
  margin: 0;
  color: var(--gray);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.12), rgba(0, 174, 239, 0.18));
  color: var(--xpf-blue);
  font-weight: 900;
}

.contact-mark svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.contact-item span {
  display: block;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--xpf-navy);
  font-size: 17px;
  line-height: 1.35;
}

.contact-item p {
  margin: 0;
  color: var(--xpf-navy);
  font-size: 16px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.site-footer {
  padding: 64px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 174, 239, 0.22), transparent 22%),
    var(--xpf-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.8fr 0.8fr;
  gap: 44px;
}

.footer-logo {
  width: 118px;
  padding: 10px;
  border-radius: 14px;
  /* background: var(--white); */
}

.footer-text {
  max-width: 420px;
  margin: 22px 0 0;
}

.footer-title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-contact-item:hover {
  color: var(--xpf-cyan);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.footer-contact-item.is-centered {
  align-items: center;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--xpf-cyan);
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 980px) {
  .hero {
    height: 520px;
    min-height: 520px;
  }

  .intro-grid,
  .about-grid,
  .verify-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 761px) and (max-width: 900px) {
  .about-grid {
    gap: 34px;
  }

  .image-panel {
    max-width: 640px;
    margin: 0 auto;
  }

  .image-panel::before {
    inset: -12px 18px 18px -12px;
    border-radius: 24px;
  }

  .image-panel img {
    max-height: 390px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    object-position: center 42%;
  }

  .about-copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .about-copy .section-title {
    font-size: clamp(30px, 4vw, 38px);
  }

  .about-copy p {
    margin-top: 14px;
  }

  .achievement-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .achievement-card {
    min-height: 128px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .achievement-card::before {
    width: 42px;
    margin-bottom: 14px;
  }

  .achievement-card strong {
    font-size: 26px;
  }

  .achievement-card span {
    font-size: 13px;
    line-height: 1.3;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo-wide {
    display: none;
  }

  .brand-logo-compact {
    display: block;
    width: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(86vw, 360px);
    height: 100vh;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 104px 24px 28px;
    background: var(--white);
    box-shadow: -22px 0 54px rgba(31, 38, 107, 0.18);
    opacity: 0;
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, visibility 0s linear 0.42s;
    contain: layout paint;
  }

  .nav.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, visibility 0s;
  }

  .nav-link,
  .nav-cta,
  .nav-lang {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .nav-link {
    background: #F7FBFE;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    height: 430px;
    min-height: 430px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .image-panel {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 10px;
  }

  .image-panel::before {
    inset: 0;
    border-radius: 24px;
  }

  .image-panel img {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-position: center;
  }

  .page-hero {
    padding: 76px 0 58px;
  }

  .feature-grid,
  .achievement-grid,
  .certificates-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .text-link {
    margin-top: 18px;
  }

  .certificate-frame {
    min-height: 360px;
  }

  .certificate-frame img {
    height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .verify-card,
  .info-card,
  .contact-card {
    padding: 24px;
    border-radius: 20px;
  }

  .feature-card {
    padding: 22px;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .achievement-card {
    min-height: 126px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .achievement-card::before {
    width: 44px;
    margin-bottom: 14px;
  }

  .achievement-card strong {
    font-size: clamp(24px, 7vw, 30px);
  }

  .achievement-card span {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .achievement-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .achievement-card {
    min-height: 128px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .achievement-card strong {
    font-size: 26px;
  }

  .achievement-card span {
    font-size: 13px;
  }
}

/* Google Translate widget: keep the machinery invisible, only the .nav-lang toggle is shown. */
#google_translate_element {
  display: none;
}

/* Google Translate forces inline height:100%/top:40px on html and body for its banner,
   which collapses the document to viewport height and kills scrolling. Neutralize it. */
html {
  height: auto !important;
}

body {
  height: auto !important;
  position: static !important;
  top: 0 !important;
}

iframe.goog-te-banner-frame,
iframe.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight,
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
  background: none !important;
  box-shadow: none !important;
}
