:root {
  --navy: #1e2343;
  --navy-2: #2e345f;
  --gold: #ddb33b;
  --gold-2: #f0cb66;
  --bg: #f7f5f1;
  --muted: #6b7187;
  --card: #ffffff;
  --line: #e7e2d7;
  --shadow: 0 18px 40px rgba(26, 30, 54, .08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: #1f2433;
  line-height: 1.8;
}

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

img {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 35, 67, .08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  width: 94%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 22px;
  box-shadow: var(--shadow);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: -3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(30, 35, 67, .07);
}

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

.lang-switch,
.btn-primary,
.btn-outline,
.menu-toggle {
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch,
.menu-toggle {
  background: #fff;
  border: 1px solid rgba(30, 35, 67, .12);
  padding: 10px 14px;
  color: var(--navy);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 13px 22px;
  color: var(--navy);
  box-shadow: var(--shadow);
  display: inline-block;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(30, 35, 67, .18);
  padding: 13px 22px;
  color: var(--navy);
  display: inline-block;
}

/* generic */
.section {
  padding: 72px 0;
}

.section.alt {
  background: #fff;
}

.section-head .eyebrow,
.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(221, 179, 59, .18);
  color: #c99609;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin: 0 0 8px;
}

.section-head p {
  margin: 0;
  font-size: 18px;
  color: #4f5668;
}

.section-head.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 30px;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 23px;
}

.card p,
.card li {
  color: #434a5d;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 14px 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  box-shadow: 0 10px 25px rgba(20, 26, 45, .05);
}

.num-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.num-list li {
  counter-increment: item;
  background: #fff;
  padding: 18px 18px 18px 70px;
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

[dir="rtl"] .num-list li {
  padding: 18px 70px 18px 18px;
}

.num-list li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
}

[dir="rtl"] .num-list li::before {
  right: 16px;
  left: auto;
}

.page-hero {
  background: linear-gradient(135deg, #1f2554, #3e345f);
  color: #fff;
  padding: 90px 0 70px;
}

.page-hero p {
  color: rgba(255, 255, 255, .9);
}

/* home */
.hero-home {
  position: relative;
  overflow: hidden;
  background: #f7f5f2;
  padding: 0 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8px;
  align-items: center;
  min-height: 78vh;
  width: 100%;
}

.hero-content {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
}

.pill {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  background: rgba(30, 35, 67, .08);
  border: 1px solid rgba(30, 35, 67, .08);
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy);
}

.hero-content h1 {
  font-size: clamp(35px, 5vw, 68px);
  line-height: 1.08;
  margin: 14px 0 10px;
}

.hero-subtitle {
  color: var(--navy);
  font-size: clamp(22px, 2vw, 34px);
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.95;
  color: #3e4351;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-visual-wrap {
  position: relative;
  min-height: 637px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-diagonal-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f2554 0 43%, transparent 43%);
}

.diamond-wrap {
  position: relative;
  width: 430px;
  height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.diamond-frame {
  position: absolute;
  transform: rotate(45deg);
  border-radius: 38px;
  box-sizing: border-box;
}

.diamond-frame.outer {
  width: 360px;
  height: 360px;
  border: 16px solid #e0b437;
  z-index: 1;
}

.diamond-frame.inner {
  width: 250px;
  height: 250px;
  border: 14px solid #e0b437;
  top: 38px;
  left: 38px;
  z-index: 2;
}

.diamond-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.diamond-image img {
  width: 145%;
  height: 145%;
  object-fit: cover;
  transform: rotate(269deg) scale(1.05);
  transform-origin: center;
  position: absolute;
  top: -22%;
  left: -22%;
}

.home-split-grid,
.feature-grid,
.grid-2,
.grid-3,
.stages-grid {
  display: grid;
  gap: 24px;
}

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

.feature-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}

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

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

.stages-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-image-card img,
.certificate-image img,
.stage-icon img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.feature-image-card img {

  object-fit: cover;
}

.stage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
}

.stage-card h3,
.certificate-card h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--navy);
}

.stage-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
}

.mt-20 {
  margin-top: 20px;
}

/* about */
.info-note {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
}

.info-note h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.goal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
  height: 100%;
}

.goal-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold);
  color: #1f2554;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.goal-card p {
  margin: 0;
  line-height: 1.9;
  color: #3f4552;
}

.vision-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
}

.vision-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.vision-content {
  padding: 34px;
}

.vision-content h2 {
  margin: 12px 0 16px;
  color: var(--navy);
}

.vision-content p {
  color: #3f4552;
  line-height: 2;
  margin-bottom: 14px;
}

/* publication */
.rule-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
}

.rule-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rule-number {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: var(--gold);
  color: #1f2554;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.rule-head h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.rule-head p {
  margin: 0;
  color: #596070;
  line-height: 1.9;
}

.publication-list {
  margin: 0;
  padding-inline-start: 22px;
}

.publication-list li {
  margin-bottom: 14px;
  line-height: 1.95;
  color: #3f4552;
}

.rule-paragraph {
  line-height: 2;
  font-size: 17px;
  margin: 0;
}

/* study */
.level-card {
  text-align: center;
}

.level-icon {
  width: 120px;
  height: 85px;
  margin: 0 auto 18px;
}

.level-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.competencies-list {
  display: grid;
  gap: 22px;
}



.competency-text h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.competency-text p {
  margin: 0;
  line-height: 1.95;
  color: #3f4552;
}

.competency-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
}

.competency-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.competency-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.competency-thumb-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 37, 84, .12);
}

.competency-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.competency-text p {
  margin: 0;
  line-height: 1.95;
  color: #3f4552;
}

.certificate-card p {
  color: #5e6472;
  line-height: 1.85;
}

/* membership */
.membership-conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.condition-card {
  background: #4b4254;
  color: #fff;
  border-radius: 22px;
  padding: 26px 20px 22px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.condition-icon {
  width: 92px;
  height: 92px;
  margin: -58px auto 16px;
  background: #f3f3f3;
  border-radius: 50%;
  padding: 16px;
  border: 4px solid #ececec;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.condition-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.condition-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 10px;
}

.condition-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.condition-card p {
  color: rgba(255, 255, 255, .94);
  line-height: 1.85;
  margin: 0;
}

.org-conditions-list {
  display: grid;
  gap: 18px;
}

.org-condition-card {
  display: grid;
  grid-template-columns: 1fr 120px;
  align-items: center;
  gap: 18px;
  background: #4b4254;
  border-radius: 24px;
  padding: 22px 24px;
  color: #fff;
}

.org-condition-text {
  display: flex;
  gap: 14px;
  align-items: center;
}

.org-condition-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 28px;
  min-width: 42px;
}

.org-condition-text p {
  margin: 0;
  line-height: 1.9;
  color: #fff;
}

.org-condition-icon {
  width: 90px;
  height: 90px;
  margin-inline-start: auto;
  background: #f3f3f3;
  border-radius: 50%;
  padding: 16px;
  border: 4px solid #ececec;
}

.org-condition-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.membership-benefits-section {
  background: linear-gradient(to bottom, #ffffff 0 34%, #ffffff 34% 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.benefit-card {
  text-align: center;
  color: #000000;
}

.benefit-image {
  border: 8px solid var(--gold);
  background: #fff;
  margin-bottom: 14px;
}

.benefit-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.benefit-number {
  color: var(--gold);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;

}

.benefit-card h3 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 0px;
}

.benefit-card p {
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.9;
  margin: 0;
}

.certificate-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.certificate-showcase-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

.certificate-showcase-content h2 {
  color: var(--navy);
  margin: 12px 0 14px;
}

.certificate-showcase-content p {
  color: #434959;
  line-height: 1.95;
}

/* branches */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.branch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(31, 37, 84, .06);
  height: 100%;
}

.branch-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.branch-head h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 28px;
}

.branch-city {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
}

.branch-flag {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.branch-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.branch-body strong {
  display: inline-block;
  margin-bottom: 6px;
  color: #222;
}

.branch-body p {
  margin: 0 0 10px;
  color: #414754;
  line-height: 1.85;
}

.branch-email a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.branch-email a:hover {
  text-decoration: underline;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.input,
.textarea {
  border: 1px solid #d9dbe3;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.info-list li {
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff8e1;
  border: 1px solid #efd98f;
  color: #6b5406;
}

/* footer */
.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  border-top: 1px solid #eceef5;
  padding: 60px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 40px;
  align-items: start;
}

.site-footer__brand {
  max-width: 340px;
}

.site-footer__nav h5,
.site-footer__contact h5 {
  margin: 0 0 18px;
  font-size: 16px;
  color: #1f2554;
  font-weight: 800;
}

.site-footer__nav ul,
.site-footer__contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav li,
.site-footer__contact li {
  margin-bottom: 12px;
}

.site-footer__nav a,
.site-footer__contact a {
  color: #4b5563;
  text-decoration: none;
  transition: 0.2s ease;
  line-height: 1.8;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: #1f2554;
}

.site-footer__contact li {
  color: #6b7280;
  line-height: 1.9;
}

.site-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #eceef5;
  color: #8a90a2;
  text-align: center;
  font-size: 14px;
}

/* mobile panel */
.mobile-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: min(88vw, 360px);
  background: #fff;
  z-index: 1200;
  box-shadow: -12px 0 40px rgba(14, 18, 35, .18);
  padding: 18px 18px 24px;
  transition: right .28s ease;
  overflow: auto;
}

[dir="rtl"] .mobile-panel {
  left: -100%;
  right: auto;
  transition: left .28s ease;
}

.mobile-panel.open {
  right: 0;
}

[dir="rtl"] .mobile-panel.open {
  left: 0;
  right: auto;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 35, .42);
  opacity: 0;
  visibility: hidden;
  transition: .24s;
  z-index: 1100;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f8fc;
  color: var(--navy);
  font-weight: 800;
}

.close-btn {
  background: #f3f5fb;
  border: 1px solid rgba(30, 35, 67, .08);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

/* responsive */
@media (max-width: 992px) {

  .contact-grid,
  .footer-grid,
  .site-footer__grid,
  .hero-grid,
  .home-split-grid,
  .feature-grid,
  .grid-2,
  .grid-3,
  .stages-grid,
  .goals-grid,
  .vision-wrap,
  .membership-conditions-grid,
  .benefits-grid,
  .certificate-showcase,
  .branches-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav,
  .nav-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-visual-wrap {
    min-height: 320px;
    order: -1;
  }

  .diamond-wrap {
    width: 260px;
    height: 260px;
  }

  .diamond-frame.outer {
    width: 210px;
    height: 210px;
    border-width: 10px;
    border-radius: 24px;
  }

  .diamond-frame.inner {
    width: 145px;
    height: 145px;
    border-width: 9px;
    border-radius: 18px;
    top: 23px;
    left: 23px;
  }

  .vision-image img {
    min-height: 260px;
  }

  .vision-content {
    padding: 22px;
  }

  .competency-card {
    grid-template-columns: 1fr;
  }

  .org-condition-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .org-condition-text {
    flex-direction: column;
  }

  .org-condition-icon {
    margin: 0 auto;
  }

  .condition-icon {
    margin-top: 0;
  }

  .branch-head h3 {
    font-size: 24px;
  }

  .site-footer {
    padding: 44px 0 20px;
  }

  .site-footer__brand {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 0;
  }

  .navbar {
    min-height: 70px;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }

  .section {
    padding: 56px 8px;
  }

  .section-no-padding-top {
    padding: 0px 8px;
  }

  .hero-grid {
    width: 100%;
  }

  .card,
  .stage-card,
  .rule-block {
    padding: 20px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.alert {
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

.alert-success {
  background: #ecfdf3;
  border: 1px solid #b7ebc6;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #f3c2c2;
  color: #991b1b;
}

.error-list {
  margin: 10px 0 0;
  padding-inline-start: 18px;
}

.error-list li {
  margin-bottom: 6px;
}

.d-none {
  display: none !important;
}

.submit-btn {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:disabled {
  opacity: .8;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(30, 35, 67, 0.25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

@media (max-width: 992px) {
  .nav-actions {
    gap: 8px;
  }

  .lang-switch,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
  }

  .lang-switch {
    font-size: 13px;
  }

  .menu-toggle {
    font-size: 18px;
  }
}