:root {
  --brand-blue: #3184ee;
  --brand-teal: #18c6c0;
  --brand-navy: #1c2840;
  --bg: #fbfcff;
  --card: #ffffff;
  --foreground: #242937;
  --text-dim: #687181;
  --secondary: #f2f5f8;
  --border: rgba(36, 41, 55, 0.08);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 24px 70px -36px rgba(22, 36, 64, .32);
  --radius: 16px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { 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;
  background: var(--bg);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 48px, 1152px); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 252, 255, .80);
  backdrop-filter: blur(18px);
  transition: box-shadow .28s ease, background .28s ease;
}
.site-header.scrolled { background: rgba(251,252,255,.65); box-shadow: 0 12px 40px rgba(20,35,64,.08); }
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; color: var(--text-dim); font-size: 14px; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--foreground); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--foreground); color: var(--bg); padding: 10px 16px; font-size: 14px; font-weight: 600; transition: opacity .2s ease, transform .2s ease; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--foreground); }

.hero { position: relative; overflow: hidden; padding: 80px 0 112px; }
.grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(to right, rgba(36,41,55,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(36,41,55,.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); color: var(--text-dim); font-size: 12px; }
.eyebrow-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-teal); box-shadow: 0 0 0 4px rgba(24,198,192,.12); }
.eyebrow-text { width: auto; height: auto; border-radius: 0; background: transparent; box-shadow: none; }
.hero h1 { margin: 0 0 24px; max-width: 620px; font-size: clamp(46px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.045em; font-weight: 700; }
.hero h1 span, .challenge strong { background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 560px; margin: 0 0 38px; color: var(--text-dim); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 13px 24px; font-size: 14px; font-weight: 650; border: 1px solid transparent; transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--foreground); color: var(--bg); }
.btn-dark:hover { opacity: .92; }
.btn-light { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-light:hover { background: var(--secondary); }
.hero-phone { justify-self: center; width: min(100%, 380px); }
.hero-phone img { width: 100%; height: auto; filter: drop-shadow(0 36px 60px rgba(21,31,55,.25)); animation: float 6s ease-in-out infinite; }

.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; background: rgba(255,255,255,.28); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-card strong { display: block; margin-bottom: 9px; font-size: clamp(34px, 4vw, 48px); line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
.stat-card p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.45; }

.section { padding: 112px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head > span, .dashboard-copy > span { display: inline-block; margin-bottom: 12px; color: var(--brand-blue); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.1; letter-spacing: -0.035em; font-weight: 700; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; }
.step small { display: block; margin-bottom: 10px; color: var(--text-dim); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; }
.step h3, .benefit h3, .challenge h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -0.02em; }
.step p, .benefit p, .challenge p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.75; }
.icon-box { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); color: var(--brand-blue); }
.icon-box svg, .feature-list svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.benefits, .challenges { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(242,245,248,.55); }
.benefits-grid { display: grid; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: var(--border); grid-template-columns: repeat(3, 1fr); gap: 1px; }
.benefit { padding: 32px; background: var(--card); transition: background .22s ease; }
.benefit:hover { background: rgba(242,245,248,.65); }
.benefit .icon-box { background: var(--secondary); }

.dashboard {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,249,252,.95));
}
.dashboard .container {
  width: min(100% - 48px, 1260px);
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.dashboard-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.dashboard-copy h2 {
  margin-bottom: 24px;
}
.dashboard-copy > p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.72;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 28px rgba(20,35,64,.05);
}
.feature-list svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--brand-blue);
}
.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.feature-list small {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}
.dashboard-preview-wrap {
  position: relative;
  padding: 8px 0 12px;
}
.dashboard-preview-wrap::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 78%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(49,132,238,.14), rgba(24,198,192,.16));
  filter: blur(14px);
  opacity: .95;
}
.dashboard-preview {
  position: relative;
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(15,23,42,.07), 0 50px 110px -48px rgba(49,132,238,.35);
}
.browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.browser-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}
.browser-top span {
  margin-left: 10px;
  color: var(--text-dim);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.challenge { padding: 28px; border: 1px solid var(--border); border-radius: 20px; background: var(--card); }
.tag { display: inline-flex; margin-bottom: 28px; border: 1px solid var(--border); border-radius: 999px; padding: 3px 10px; color: var(--text-dim); font-size: 11px; }
.challenge p { margin-bottom: 32px; }
.challenge div:last-child { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.challenge small { color: var(--text-dim); font-size: 12px; }
.challenge strong { font-size: 18px; }

.final-cta { padding: 112px 0; }
.cta-card { max-width: 880px; margin: 0 auto; padding: 60px; text-align: center; border: 1px solid var(--border); border-radius: 28px; background: var(--card); box-shadow: var(--shadow-soft); }
.cta-card h2 { max-width: 650px; margin: 0 auto 18px; }
.cta-card p { max-width: 650px; margin: 0 auto 36px; color: var(--text-dim); font-size: 18px; line-height: 1.7; }
.cta-card small { display: block; margin-top: 14px; color: var(--text-dim); }
.footer { border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer img { height: 40px; opacity: .8; }
.footer p, .footer a { color: var(--text-dim); font-size: 12px; }
.footer div:last-child { display: flex; gap: 24px; }
.footer a:hover { color: var(--foreground); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in, .show-immediate { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 1152px); }
  .nav-links { position: absolute; top: 64px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 14px 24px; border-bottom: 1px solid var(--border); background: rgba(251,252,255,.97); }
  .nav-links a { width: 100%; padding: 14px 0; }
  .site-header.open .nav-links { display: flex; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .dashboard .container { width: min(100% - 36px, 1152px); }
  .dashboard-copy { max-width: none; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .dashboard-preview { width: 100%; }
  .hero-phone { max-width: 330px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .benefits-grid, .challenge-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .hero h1 { font-size: 43px; }
  .hero p { font-size: 16px; }
  .section { padding: 78px 0; }
  h2 { font-size: 34px; }
  .stats-grid, .steps-grid, .benefits-grid, .challenge-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .dashboard-preview-wrap::before { left: 2%; right: 2%; }
  .benefit, .challenge, .cta-card { padding: 26px; }
  .cta-card { border-radius: 22px; }
  .footer div:last-child { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Dashboard image zoom */
.dashboard-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
}

.dashboard-zoom-trigger img {
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.dashboard-zoom-trigger:hover img {
  transform: scale(1.012);
  filter: brightness(1.04);
}

.zoom-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(16, 23, 36, .74);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease;
}

.zoom-hint svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-zoom-trigger:hover .zoom-hint,
.dashboard-zoom-trigger:focus-visible .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 14, 24, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.image-lightbox__dialog {
  position: relative;
  width: min(96vw, 1500px);
  max-height: 92vh;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #0d1624;
  box-shadow: 0 40px 140px rgba(0,0,0,.55);
  overflow: hidden;
  transform: scale(.965) translateY(12px);
  transition: transform .24s var(--ease);
}

.image-lightbox.is-open .image-lightbox__dialog {
  transform: scale(1) translateY(0);
}

.image-lightbox__dialog img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

.image-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12, 20, 32, .72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease;
}

.image-lightbox__close:hover {
  transform: scale(1.05);
  background: rgba(12, 20, 32, .9);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .zoom-hint {
    right: 12px;
    bottom: 12px;
    padding: 9px 11px;
    font-size: 11px;
    opacity: 1;
    transform: none;
  }

  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox__dialog {
    border-radius: 18px;
  }
}


/* ================= APP GALLERY ================= */
.app-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(49,132,238,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.92));
}

.app-gallery-section::before,
.app-gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  max-width: 260px;
  pointer-events: none;
  z-index: 8;
}

.app-gallery-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(251,252,255,.86) 42%, rgba(251,252,255,0) 100%);
}

.app-gallery-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(251,252,255,.86) 42%, rgba(251,252,255,0) 100%);
}

.app-gallery-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.app-gallery-head p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.72;
}

.app-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 20px;
  outline: none;
}

.app-gallery-stage {
  position: relative;
  width: 100%;
  height: min(760px, 82vh);
  min-height: 620px;
}

.app-gallery-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(29vw, 350px);
  aspect-ratio: 720 / 1560;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 34px 80px -54px rgba(17,24,39,.55);
  transition:
    transform .78s var(--ease),
    opacity .78s var(--ease),
    box-shadow .78s var(--ease);
  will-change: transform, opacity;
}

.app-gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.app-gallery-slide.is-active {
  z-index: 6;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 12px 95px -8px rgba(17,24,39,.72);
}

.app-gallery-slide.is-prev {
  z-index: 5;
  opacity: .76;
  transform: translate(calc(-50% - min(25vw, 300px)), -50%) scale(.82);
}

.app-gallery-slide.is-next {
  z-index: 5;
  opacity: .76;
  transform: translate(calc(-50% + min(25vw, 300px)), -50%) scale(.82);
}

.app-gallery-slide.is-prev2 {
  z-index: 4;
  opacity: .22;
  transform: translate(calc(-50% - min(46vw, 560px)), -50%) scale(.68);
}

.app-gallery-slide.is-next2 {
  z-index: 4;
  opacity: .22;
  transform: translate(calc(-50% + min(46vw, 560px)), -50%) scale(.68);
}

.app-gallery-slide.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.68);
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36,41,55,.08);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: #FFF;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20,35,64,.12);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.gallery-control:hover {
  background: rgba(0,0,0,.68);
  transform: translateY(-50%) scale(1.06);
}

.gallery-control svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-prev { left: 31.5%; }
.gallery-next { right: 31.5%; }

.gallery-dots {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: -22px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(36,41,55,.16);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.gallery-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
}

@media (max-width: 980px) {
  .app-gallery-section::before,
  .app-gallery-section::after {
    width: 90px;
  }

  .app-gallery-stage {
    height: 650px;
    min-height: 560px;
  }

  .app-gallery-slide {
    width: min(46vw, 300px);
    border-radius: 24px;
  }

  .app-gallery-slide.is-prev {
    transform: translate(calc(-50% - min(33vw, 240px)), -50%) scale(.80);
  }

  .app-gallery-slide.is-next {
    transform: translate(calc(-50% + min(33vw, 240px)), -50%) scale(.80);
  }

  .app-gallery-slide.is-prev2 {
    opacity: .16;
    transform: translate(calc(-50% - min(58vw, 420px)), -50%) scale(.66);
  }

  .app-gallery-slide.is-next2 {
    opacity: .16;
    transform: translate(calc(-50% + min(58vw, 420px)), -50%) scale(.66);
  }

  .gallery-prev { left: 14%; }
  .gallery-next { right: 14%; }
}

@media (max-width: 640px) {
  .app-gallery-section::before,
  .app-gallery-section::after {
    width: 56px;
  }

  .app-gallery-stage {
    height: 560px;
    min-height: 510px;
  }

  .app-gallery-slide {
    width: min(72vw, 255px);
    border-radius: 22px;
  }

  .app-gallery-slide.is-prev {
    opacity: .34;
    transform: translate(calc(-50% - 42vw), -50%) scale(.74);
  }

  .app-gallery-slide.is-next {
    opacity: .34;
    transform: translate(calc(-50% + 42vw), -50%) scale(.74);
  }

  .app-gallery-slide.is-prev2,
  .app-gallery-slide.is-next2 {
    opacity: 0;
  }

  .gallery-control {
    width: 40px;
    height: 40px;
  }

  .gallery-prev { left: 5%; }
  .gallery-next { right: 5%; }

  .gallery-dots {
    margin-top: -12px;
  }
}


/* ================= LANGUAGE SELECTOR ================= */
.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-switcher select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(49,132,238,.08), rgba(24,198,192,.08)),
    var(--card);
  color: var(--foreground);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 32px 10px 14px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 8px 22px rgba(20,35,64,.06);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%),
    linear-gradient(135deg, rgba(49,132,238,.08), rgba(24,198,192,.08));
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px),
    0 0;
  background-size: 5px 5px, 5px 5px, 100% 100%;
  background-repeat: no-repeat;
}

.language-switcher select:hover {
  border-color: rgba(49,132,238,.28);
}

.language-switcher select:focus-visible {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(49,132,238,.14);
}

@media (max-width: 980px) {
  .language-switcher {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .language-switcher select {
    padding: 9px 28px 9px 12px;
    font-size: 12px;
  }
}

