:root {
  --ink: #0b1220;
  --ink-soft: #233044;
  --muted: #617086;
  --line: #d7dee8;
  --panel: #ffffff;
  --surface: #f5f7fb;
  --blue: #1456a0;
  --blue-dark: #0d3466;
  --teal: #08737d;
  --green: #18855a;
  --amber: #b76b16;
  --danger: #b42318;
  --shadow: 0 18px 42px rgba(8, 20, 38, 0.14);
  font-family: "Inter", "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 6%, rgba(8, 115, 125, 0.08), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(20, 86, 160, 0.08), transparent 30%),
    var(--surface);
  line-height: 1.6;
}

body.lang-en {
  letter-spacing: 0.01em;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(215, 222, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.main-nav a:hover {
  color: var(--blue);
  background: #edf5ff;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-toggle button {
  min-width: 40px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-toggle button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown.wide {
  min-width: 360px;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.product-menu {
  min-width: 300px;
}

.nav-product-group {
  display: grid;
  gap: 2px;
  padding: 4px;
}

.nav-product-group + .nav-product-group {
  border-top: 1px solid var(--line);
}

.nav-parent {
  color: var(--blue-dark);
  font-weight: 800;
}

.nav-child {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: grid;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 34, 0.92), rgba(6, 18, 34, 0.54) 46%, rgba(6, 18, 34, 0.16)),
    url("../media/ppg-high-precision-main.png") center / cover no-repeat;
  filter: saturate(0.92);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(11, 18, 32, 0.94), rgba(11, 18, 32, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 12vh, 128px) 0 56px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee7e1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 1080px;
  color: #d9e6f3;
  font-size: clamp(17px, 2vw, 21px);
  white-space: nowrap;
}

.hero-actions,
.tag-row,
.point-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  color: var(--blue);
  border-color: #bed6f2;
  background: #fff;
}

.button.compact {
  min-width: 100px;
  color: var(--blue);
  background: #edf5ff;
  border-color: #bed6f2;
}

.button:hover {
  filter: brightness(0.96);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.tight {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.row-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.capability-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article,
.product-card,
.resource-item,
.resource-policy,
.solution-item,
.contact-panel,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(8, 20, 38, 0.03);
}

.capability-grid article {
  min-height: 220px;
  padding: 22px;
}

.capability-grid span,
.solution-order {
  color: var(--amber);
  font-weight: 800;
}

.capability-grid p,
.product-card p,
.solution-item p,
.resource-item p,
.contact-panel p,
.model-section p {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #e7edf5;
}

.product-body {
  padding: 24px;
}

.product-subtitle {
  margin-bottom: 6px;
  color: var(--teal) !important;
  font-weight: 700;
}

.tag-row span,
.point-row span,
.model-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: #f0f4f8;
  font-size: 13px;
}

.model-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.model-links a {
  color: var(--blue-dark);
  background: #edf5ff;
}

.metric-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.metric-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
}

.metric-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.inline-link {
  display: inline-flex;
  margin-top: 14px;
}

.page-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 38px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 56px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.product-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8eef5;
  box-shadow: 0 16px 38px rgba(8, 20, 38, 0.1);
}

body[data-id="ppg-standard"] .product-hero img,
body[data-id="ppg-standard"] .image-feature img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

body[data-id="multi-axis-dispensing"] .image-feature img {
  object-fit: contain;
  object-position: center;
  background: #07111f;
}

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

.detail-grid article,
.image-feature,
.next-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-grid article {
  padding: 22px;
}

.detail-grid p,
.next-step p {
  color: var(--muted);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  overflow: hidden;
}

.image-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #e8eef5;
}

.image-feature > div {
  padding: clamp(24px, 4vw, 42px);
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.small-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  background: #fff;
}

.next-step {
  padding: 22px;
  background: #f7fafc;
}

.compact-list .solution-item {
  padding: 18px;
}

.model-section {
  width: 100%;
  padding: 76px max(20px, calc((100% - 1160px) / 2));
  background: #eaf0f7;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

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

.series-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.series-card p {
  color: var(--muted);
}

.compact-table {
  min-width: 0;
  margin-top: 16px;
}

.compact-table th,
.compact-table td {
  padding: 11px 12px;
}

.force-series-section {
  display: grid;
  gap: 24px;
}

.force-series-section .section-heading {
  margin-bottom: 0;
}

.force-series-section .section-heading p {
  max-width: 780px;
}

.force-family-panel,
.force-table-panel {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 20, 38, 0.08);
}

.force-family-heading,
.force-table-heading {
  padding: 22px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(44, 201, 224, 0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-dark), #123f5f 58%, var(--teal));
}

.force-family-heading h3,
.force-table-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.force-family-heading p,
.force-table-heading p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.force-table-heading .eyebrow {
  color: #55d9ea;
}

.force-model-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: #f2f7fb;
}

.force-model-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 18px 16px;
  border: 1px solid rgba(20, 86, 160, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #edf7fb);
}

.force-model-card strong {
  color: var(--blue-dark);
  font-size: 15px;
  line-height: 1.35;
}

.force-model-bar {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #32d2e6);
}

.force-model-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.force-model-card dl div {
  display: grid;
  gap: 1px;
}

.force-model-card dt {
  color: var(--muted);
  font-size: 12px;
}

.force-model-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.force-model-card dl div:last-child dd {
  color: var(--teal);
}

.force-family-note {
  margin: 0 22px 22px;
  padding: 14px 18px;
  border: 1px solid rgba(8, 115, 125, 0.2);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #edf8fa;
}

.force-table-scroll {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.force-parameter-table {
  min-width: 980px;
  background: #fff;
}

.force-parameter-table th,
.force-parameter-table td {
  text-align: center;
  vertical-align: middle;
  white-space: pre-line;
}

.force-parameter-table th {
  color: #fff;
  background: var(--blue);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.force-parameter-table td {
  border-right: 1px solid var(--line);
}

.force-parameter-table td:first-child {
  color: var(--blue-dark);
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.03em;
}

.force-parameter-table tr:nth-child(even) td {
  background: #f6f9fc;
}

.force-table-notes {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fbfdff;
  font-size: 14px;
}

.force-table-notes p {
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.table-wrap {
  max-width: 100%;
  min-width: 0;
  overflow: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue-dark);
  background: #f3f7fc;
  font-weight: 800;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
}

.solution-order {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #fff4e6;
  font-size: 18px;
}

.resource-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.resource-item h3 {
  margin-bottom: 6px;
}

.resource-item small {
  color: var(--muted);
}

.resource-type {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 0 9px;
  border-radius: 4px;
  color: #fff;
  background: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.resource-policy {
  padding: 22px;
}

.resource-policy ul,
.contact-lines {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 92px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    url("../media/force-gauge-body.png") center / cover no-repeat;
}

.contact-form,
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

label.full,
.request-form label:last-of-type {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c5cfdb;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 86, 160, 0.16);
  border-color: var(--blue);
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 24px;
  font-weight: 700;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: #d7e2ef;
  background: #0b1220;
}

.site-footer p {
  margin: 4px 0 0;
  color: #9eafc4;
}

.site-footer a {
  color: #d7e2ef;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer div:last-child {
  display: grid;
  gap: 4px;
  color: #9eafc4;
  text-align: right;
}

.request-dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.request-dialog::backdrop {
  background: rgba(8, 20, 38, 0.55);
}

.dialog-close-form {
  position: absolute;
  top: 10px;
  right: 10px;
}

.dialog-close-form button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}

.request-form {
  padding: 28px;
}

.request-form .eyebrow,
.request-form h2,
.selected-resource {
  grid-column: 1 / -1;
}

.selected-resource {
  padding: 12px;
  border-left: 4px solid var(--blue);
  color: var(--ink-soft);
  background: #edf5ff;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-group {
    display: grid;
  }

  .nav-dropdown,
  .nav-dropdown.wide {
    position: static;
    display: grid;
    min-width: 0;
    margin-left: 12px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

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

  .split-layout,
  .resource-layout,
  .contact-panel,
  .product-hero,
  .image-feature {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: 68px;
    padding-inline: 12px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    display: none;
  }

  .menu-button {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .language-toggle {
    flex: 0 0 auto;
    padding: 2px;
  }

  .language-toggle button {
    min-width: 32px;
    padding: 5px 7px;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.14;
  }

  h2 {
    font-size: 26px;
  }

  .hero-content,
  .section {
    width: min(calc(100% - 28px), 1160px);
  }

  .capability-grid,
  .product-grid,
  .contact-form,
  .request-form {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 220px;
  }

  .solution-item {
    grid-template-columns: 1fr;
  }

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

  .force-model-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .force-family-heading,
  .force-table-heading {
    padding: 18px;
  }

  .force-family-note {
    margin: 0 16px 16px;
  }

  .resource-item {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading.row-heading {
    align-items: start;
    flex-direction: column;
  }

  .page-hero,
  .product-hero {
    width: min(calc(100% - 28px), 1160px);
    padding-top: 48px;
  }

  .hero-lead {
    white-space: normal;
  }

  .product-hero img,
  .image-feature img {
    height: 260px;
  }

  body[data-id="ppg-standard"] .product-hero img,
  body[data-id="ppg-standard"] .image-feature img {
    height: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .brand-text strong {
    font-size: 14px;
  }

  .language-toggle button {
    min-width: 30px;
    padding-inline: 6px;
  }
}
