
    :root {
      --bg: #f6f7fb;
      --surface: #ffffff;
      --surface-soft: #eef2f7;
      --text: #111827;
      --muted: #667085;
      --line: rgba(17, 24, 39, 0.08);
      --accent: #2563eb;
      --accent-soft: #dbeafe;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.06);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(14, 165, 233, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .site-header {
      min-height: 100vh;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 110px 24px 70px;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 7% 5% auto auto;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(6, 182, 212, 0.10));
      filter: blur(4px);
      z-index: 0;
    }

    .site-header::after {
      content: "";
      position: absolute;
      left: 7%;
      bottom: 9%;
      width: 240px;
      height: 240px;
      border-radius: 44px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transform: rotate(-10deg);
      z-index: 0;
    }

    .nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - 32px), var(--max));
      z-index: 100;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(18px);
      border: 1px solid var(--line);
      border-radius: 999px;
      box-shadow: var(--shadow-soft);
    }

    .nav-inner {
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 12px 0 22px;
    }

    .brand {
      font-weight: 760;
      letter-spacing: -0.03em;
      font-size: 17px;
    }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 650;
      color: #344054;
      padding: 10px 13px;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-links a:hover {
      background: var(--surface-soft);
      color: var(--text);
    }

    .menu-toggle {
      display: none;
      border: 0;
      background: var(--text);
      color: #fff;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
    }

    .hero {
      position: relative;
      z-index: 1;
      max-width: var(--max);
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 44px;
      align-items: center;
    }

    .hero-copy {
      padding: 42px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 6px var(--accent-soft);
    }

    h1 {
      margin: 26px 0 12px;
      font-size: clamp(52px, 8vw, 112px);
      line-height: 0.92;
      letter-spacing: -0.075em;
	  line-height: 0.88;
      font-weight: 850;
    }

	.hero-subtitle {
     font-size: clamp(20px, 2.5vw, 30px);
     line-height: 1.28;
     letter-spacing: -0.03em;
     font-weight: 520;
     max-width: 760px;
}

    .hero-panel {
      position: relative;
      min-height: 460px;
      border-radius: 38px;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 28px;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: -35% -20% auto auto;
      width: 360px;
      height: 360px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(14, 165, 233, 0.08));
      border-radius: 999px;
    }

    .system-grid {
      position: relative;
      display: grid;
      gap: 14px;
      z-index: 1;
    }

    .system-pill {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
      font-size: 15px;
      font-weight: 750;
      display: flex;
      justify-content: space-between;
      align-items: center;
      animation: floatX 6s ease-in-out infinite;
    }

    .system-pill:nth-child(even) {
      animation-name: floatXReverse;
    }

    .system-pill span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @keyframes floatX {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(8px); }
    }

    @keyframes floatXReverse {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-8px); }
    }

    main {
      position: relative;
      z-index: 2;
    }

    section {
      padding: 76px 24px;
      scroll-margin-top: 100px;
    }

    .wrap {
      width: min(100%, var(--max));
      margin: 0 auto;
    }

    .section-title {
      max-width: 740px;
      margin-bottom: 28px;
    }

    .section-title h2 {
      margin: 0 0 10px;
      font-size: clamp(32px, 5vw, 58px);
     letter-spacing: -0.05em;
     line-height: 0.96;
     font-weight: 780;
	  padding-bottom: 15px;
    }
	


    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.6;
	  padding-bottom: 40px;
    }
	

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transform: translateY(18px);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.2s ease;
    }

    .card.in-view {
      transform: translateY(0);
      opacity: 1;
    }

    .card:hover {
      box-shadow: var(--shadow);
    }

    .card-media {
      height: 210px;
      background: linear-gradient(135deg, #e0ecff, #f8fafc);
      overflow: hidden;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.94);
      transition: transform 0.4s ease;
    }

    .card:hover .card-media img {
      transform: scale(1.035);
    }

    .card-body {
      padding: 22px;
    }
/*
    .card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      line-height: 1.15;
      letter-spacing: -0.035em;
    }
*/	
	.card h3 {
     font-size: 22px;
     line-height: 1.08;
     letter-spacing: -0.04em;
     font-weight: 760;
}

    .card p {
      margin: 0 0 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.72;
    }

    .card p,
    .section-title p,
    .modal-content {
     font-feature-settings: "liga" 1, "kern" 1;
     text-rendering: optimizeLegibility; 
}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 11px 16px;
      min-height: 42px;
      background: var(--text);
      color: #fff;
      font-weight: 720;
	  letter-spacing: -0.01em;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17, 24, 39, 0.16);
      background: #0b1220;
    }

    .simple-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .chip {
      padding: 16px 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      font-weight: 720;
      color: #344054;
    }

    .footer {
      padding: 70px 24px;
      background: #ffffff;
      border-top: 1px solid var(--line);
    }

    .footer-box {
      width: min(100%, var(--max));
      margin: 0 auto;
      border-radius: 30px;
      background: var(--text);
      color: #fff;
      padding: 34px;
      box-shadow: var(--shadow);
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: center;
    }

    .footer-box h2 {
      margin: 0 0 8px;
      letter-spacing: -0.045em;
      font-size: clamp(26px, 4vw, 44px);
    }

    .footer-box p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
	  font-size: 20px;
    }

    .footer-box .btn {
      background: #fff;
      color: var(--text);
      white-space: nowrap;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(10px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-backdrop.active {
      display: flex;
    }

    .modal {
      width: min(100%, 860px);
      max-height: min(86vh, 760px);
      overflow: auto;
      background: #fff;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.52);
      box-shadow: 0 35px 90px rgba(15, 23, 42, 0.26);
      animation: modalIn 0.24s ease;
    }

    @keyframes modalIn {
      from { transform: translateY(14px) scale(0.98); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }
/*
    .modal-header {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding: 28px 32px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }
*/

.modal-header {
  position: sticky;
  top: 0;
  z-index: 3;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;

  padding: 28px 32px;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.24);
}

    .modal-header h3 {
      margin: 0;
      font-size: clamp(24px, 4vw, 38px);
      letter-spacing: -0.055em;
      line-height: 1.02;
    }

    .close-modal {
      width: 42px;
      height: 42px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--surface-soft);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      color: var(--text);
    }

    .modal-content {
      padding: 34px 38px 40px;
      color: #344054;
      font-size: 17px;
      line-height: 1.75;
    }

    .modal-content ul {
      padding-left: 20px;
    }

    .modal-content li {
      margin: 8px 0;
    }

    .modal-content strong {
      color: var(--text);
	      font-size: 30px;
    }

    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        min-height: auto;
      }

      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .simple-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .nav {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 24px;
      }

      .nav-inner {
        height: auto;
        min-height: 58px;
        padding: 10px 10px 10px 16px;
        align-items: flex-start;
      }

      .brand {
        padding-top: 9px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 10px;
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: stretch;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 13px 14px;
      }

      .site-header {
        min-height: auto;
        padding: 120px 18px 56px;
      }

      h1 {
        font-size: clamp(48px, 18vw, 78px);
      }
	  
	  h1,
      h2,
      h3,
     .brand {
      font-family: "Manrope", sans-serif;
      }

      section {
        padding: 54px 18px;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .card-media {
        height: 190px;
      }

      .footer-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
      }

      .modal-backdrop {
        padding: 12px;
      }

      .modal {
        border-radius: 24px;
        max-height: 88vh;
      }

      .modal-header {
        padding: 20px 20px;
      }

      .modal-content {
        padding: 22px 22px 28px;
        font-size: 15px;
        line-height: 1.68;
      }
    }

    @media (max-width: 460px) {
      .simple-list {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        padding: 18px;
        border-radius: 28px;
      }

      .system-pill {
        padding: 15px;
      }
    }
.nav-links .language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  margin-left: 8px;
}

.nav-links .language-switcher a.lang {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: #344054;
  background: transparent;
}

.nav-links .language-switcher a.lang.active {
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
}

.nav-links .language-switcher a.lang:not(.active):hover {
  background: rgba(17, 24, 39, 0.10);
}

.nav-links .language-switcher a.lang.active:hover {
  background: #111827;
  color: #fff;
}

/*mobile*/
@media (max-width: 760px) {
  .nav-links .language-switcher {
    margin-left: 0;
    align-self: flex-start;
  }
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  transform: scale(1.08);
  will-change: transform;
}

.card-media img {
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.card:hover .card-media img {
  transform: scale(1.045) translateY(-3px);
  filter: brightness(1.02);
}
/*
.modal {
  position: relative;
  overflow: hidden;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../img/modal-bg.jpg");
  background-size: cover;
  background-position: center;

  transform: scale(1.08);
  filter: blur(18px);

  opacity: 0.18;

  z-index: 0;
}

.modal::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.92)
    );

  z-index: 0;
}

.modal-header,
.modal-content {
  position: relative;
  z-index: 2;
}
*/

.modal {
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/modal-bgx.jpg") center center / cover no-repeat;
  filter: blur(14px);
  transform: scale(1.08);
  opacity: 0.35;
  z-index: 0;
}

.modal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  z-index: 1;
}

.modal-header,
.modal-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .modal::after {
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 760px) {
  .modal::before {
    opacity: 0.45;
  }
}

/* Mobile modal refinement */
@media (max-width: 760px) {
  .modal {
    width: calc(100vw - 24px);
    max-height: 86vh;
    border-radius: 24px;
  }

  .modal::after {
    background: rgba(255, 255, 255, 0.76);
  }

  .modal-header {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .modal-header h3 {
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .modal-content {
    padding: 22px 22px 26px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .modal-content p {
    margin-top: 0;
    margin-bottom: 13px;
  }

  .modal-content p strong {
    display: block;
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.045em;
  }

  .modal-content ul {
    margin-top: 12px;
    padding-left: 18px;
  }

  .modal-content li {
    margin: 5px 0;
    line-height: 1.42;
  }
}


@media (max-width: 430px) {
  .modal::after {
    background: rgba(255, 255, 255, 0.82);
  }

  .modal-content {
    padding: 20px 18px 24px;
    font-size: 14px;
    line-height: 1.44;
  }

  .modal-content p strong {
    font-size: 23px;
    line-height: 1.18;
  }

  .modal-header {
    padding: 16px 18px;
  }
}


body.dark-mode {
  --bg: #0f172a;
  --surface: #111827;
  --surface-soft: #1e293b;
  --text: #f3f4f6;
  --muted: #94a3b8;
  --line: rgba(255,255,255,0.10);
  --shadow: 0 18px 45px rgba(0,0,0,0.28);
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.22);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 38px;
  padding: 0 14px;

  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;

  background: rgba(255,255,255,0.72);

  color: var(--text);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}


body.dark-mode {
  --bg: #0f172a;
  --surface: #111827;
  --surface-soft: #1e293b;

  --text: #f3f4f6;
  --muted: #a7b1c2;

  --line: rgba(255,255,255,0.08);

  --shadow:
    0 18px 45px rgba(0,0,0,0.32);

  --shadow-soft:
    0 10px 28px rgba(0,0,0,0.22);
}



body.dark-mode {
  background:
    radial-gradient(circle at 15% 10%, rgba(59,130,246,0.10), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(14,165,233,0.08), transparent 30%),
    linear-gradient(180deg, #0b1220 0%, #111827 42%, #0b1220 100%);
}



body.dark-mode .nav {
  background: rgba(17,24,39,0.72);
  backdrop-filter: blur(18px);
}



body.dark-mode .nav-links a {
  color: #d5dbea;
}

body.dark-mode .nav-links a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}



body.dark-mode .hero-subtitle {
  color: #d6dceb;
}



body.dark-mode .card,
body.dark-mode .chip,
body.dark-mode .system-pill {
  background: rgba(17,24,39,0.82);
}


body.dark-mode .card p,
body.dark-mode .section-title p,
body.dark-mode .modal-content {
  color: #b5bfd1;
}



body.dark-mode .modal::after {
  background: rgba(15,23,42,0.72);
}

body.dark-mode .modal-header {
  background: rgba(15,23,42,0.34);
}

body.dark-mode .modal-content strong,
body.dark-mode .modal-header h3,
body.dark-mode .card h3,
body.dark-mode h1,
body.dark-mode h2 {
  color: #f8fafc;
}



body.dark-mode .btn {
  background: #f8fafc;
  color: #111827;
}

body.dark-mode .btn:hover {
  background: #ffffff;
}



body.dark-mode .theme-toggle {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
  color: #f8fafc;
}

body.dark-mode .theme-toggle:hover {
  background: rgba(255,255,255,0.14);
}




body,
.card,
.modal,
.nav,
.btn,
.theme-toggle,
.system-pill,
.chip {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* Dark mode contrast fixes */
body.dark-mode .eyebrow {
  background: rgba(255, 255, 255, 0.10);
  color: #d8e1f2;
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .eyebrow::before {
  background: #60a5fa;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.18);
}

body.dark-mode .chip {
  color: #dbe5f6;
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode .footer {
  background: #0b1220;
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .footer-box {
  background: rgba(17, 24, 39, 0.88);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.dark-mode .footer-box h2 {
  color: #f8fafc;
}

body.dark-mode .footer-box p {
  color: #c8d2e4;
}

body.dark-mode .footer-box .btn {
  background: #f8fafc;
  color: #0f172a;
}



body.dark-mode .language-switcher {
  background: rgba(255,255,255,0.08);
}

body.dark-mode .language-switcher .lang {
  color: #aebbd0;
}

body.dark-mode .language-switcher .lang:hover {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
}

body.dark-mode .language-switcher .lang.active {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}


body.dark-mode .card-media {
  position: relative;
}

body.dark-mode .card-media::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(15,23,42,0.12),
      rgba(15,23,42,0.36)
    );

  pointer-events: none;
}



/* Dark mode mobile menu fixes */
@media (max-width: 760px) {

  body.dark-mode .nav-links {
    background:
      linear-gradient(
        180deg,
        rgba(15,23,42,0.96),
        rgba(15,23,42,0.92)
      );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.08);
  }

  body.dark-mode .nav-links a {
    color: #e7edf8;
  }

  body.dark-mode .nav-links a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
  }

  body.dark-mode .menu-toggle {
    background: rgba(255,255,255,0.12);
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.10);
  }

  body.dark-mode .menu-toggle:hover {
    background: rgba(255,255,255,0.18);
  }

  body.dark-mode .language-switcher {
    background: rgba(255,255,255,0.08);
  }

  body.dark-mode .theme-toggle {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
  }
}



.menu-toggle {
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle[aria-expanded="true"] {
  font-size: 28px;
  line-height: 1;
  padding-top: 2px;
}


