:root {
  --color-ink: #00000f;
  --color-text: rgba(0, 0, 15, 0.82);
  --color-muted: rgba(0, 0, 15, 0.58);
  --color-faint: rgba(0, 0, 15, 0.38);
  --color-bg: #ffffff;
  --color-paper: #fbfbf6;
  --color-aqua-50: #e2f6f9;
  --color-aqua-100: #ddf4f8;
  --color-aqua-400: #83ccd2;
  --color-aqua-600: #00849a;
  --color-border: rgba(0, 0, 15, 0.1);
  --color-card: rgba(0, 0, 15, 0.035);
  --color-card-strong: #ddf4f8;

  --font-sans: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Microsoft YaHei", sans-serif;
  --font-display: "SF Pro Display", "PingFang SC", "Hiragino Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --step-1: 4px;
  --step-2: 8px;
  --step-3: 12px;
  --step-4: 16px;
  --step-5: 24px;
  --step-6: 32px;
  --step-7: 48px;
  --step-8: 64px;
  --step-9: 96px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shell: 960px;
  --shell-wide: 1120px;
  --header-height: 88px;
  --footer-height: 72px;

  --text-nav: 14px;
  --text-caption: 13px;
  --text-body: 15px;
  --text-lead: 17px;
  --text-h3: 20px;
  --text-h2: 28px;
  --text-page-title: 44px;
  --text-hero: 50px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site {
  min-height: 100svh;
  display: grid;
  grid-template-rows: var(--header-height) minmax(0, 1fr) var(--footer-height);
  background: var(--color-bg);
}

.shell {
  width: min(var(--shell), calc(100% - var(--step-8)));
  margin: 0 auto;
}

.site-header,
.site-footer {
  position: sticky;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  top: 0;
}

.site-footer {
  bottom: 0;
}

.site[data-route="app"] .site-footer {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--step-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-header__tools,
.primary-nav,
.footer-links {
  display: flex;
  align-items: center;
}

.site-header__tools {
  gap: var(--step-6);
}

.primary-nav {
  gap: var(--step-6);
}

.nav-link,
.nav-link--button {
  display: inline-flex;
  align-items: center;
  gap: var(--step-2);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: var(--text-nav);
  font-weight: 560;
  line-height: 1.4;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-link--button:hover {
  color: var(--color-ink);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-menu,
.language-menu {
  position: relative;
}

.nav-menu::after,
.language-menu::after {
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: var(--step-5);
  content: "";
}

.nav-popover,
.language-popover {
  position: absolute;
  top: calc(100% + var(--step-4));
  z-index: 60;
  padding: var(--step-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 15, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.nav-popover {
  left: 50%;
  min-width: 240px;
  transform: translate(-50%, -4px);
}

.language-popover {
  right: 0;
  min-width: 136px;
}

.nav-menu:hover .nav-popover,
.nav-menu:focus-within .nav-popover,
.nav-menu.is-open .nav-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-menu:hover .language-popover,
.language-menu:focus-within .language-popover,
.language-menu.is-open .language-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu:hover .chevron,
.nav-menu:focus-within .chevron,
.language-menu:hover .chevron,
.language-menu:focus-within .chevron,
.nav-menu.is-open .chevron,
.language-menu.is-open .chevron {
  transform: translateY(2px) rotate(225deg);
}

.product-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: var(--step-3);
  align-items: center;
  padding: var(--step-2);
  border-radius: var(--radius-sm);
}

.product-card:hover {
  background: var(--color-aqua-100);
}

.product-card strong,
.product-card small {
  display: block;
}

.product-card strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.product-card small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--step-2);
  min-width: 92px;
  height: 40px;
  padding: 0 var(--step-4);
  border: 1.5px solid rgba(0, 0, 15, 0.62);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-ink);
  font-size: var(--text-nav);
  font-weight: 620;
  cursor: pointer;
}

.language-popover button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 34px;
  padding: 0 var(--step-3);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink);
  font-size: var(--text-nav);
  font-weight: 520;
  cursor: pointer;
}

.language-popover button:hover,
.language-popover button:focus-visible {
  background: var(--color-aqua-100);
  outline: none;
}

.language-popover button[aria-checked="true"]::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-aqua-400);
  content: "";
}

.site-main {
  min-width: 0;
}

.site-footer {
  color: var(--color-muted);
}

.site-footer p,
.footer-links {
  margin: 0;
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 1.5;
}

.footer-links {
  gap: var(--step-5);
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--color-ink);
}

.app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--color-aqua-400);
  border-radius: 9px;
  background: linear-gradient(90deg, var(--color-paper) 0 49.5%, var(--color-aqua-50) 49.5% 100%);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page {
  min-height: calc(100svh - var(--header-height) - var(--footer-height));
}

.home {
  position: relative;
  display: grid;
  align-items: start;
  height: calc(100svh - var(--header-height) - var(--footer-height));
  overflow: hidden;
  padding: clamp(22px, 3.2svh, 40px) 0 var(--step-4);
}

.home::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(221, 244, 248, 0.84) 0%, var(--color-paper) 100%);
  content: "";
}

.home__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.home__copy {
  display: grid;
  justify-items: center;
  gap: var(--step-3);
  text-align: center;
}

.home__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.52em;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, var(--text-hero));
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.home__title-accent {
  color: var(--color-aqua-400);
}

.home__subtitle {
  max-width: 640px;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
}

.phone-stage {
  width: min(680px, 100%);
  margin-top: clamp(18px, 3svh, 28px);
}

.phone-preview {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 2048 / 991;
  width: 100%;
}

.phone-preview__screen,
.phone-preview__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.phone-preview__screen {
  z-index: 1;
  width: 96.5%;
  height: 92.2%;
}

.phone-preview__frame {
  z-index: 2;
  pointer-events: none;
}

.home__actions {
  margin-top: clamp(16px, 2.4svh, 24px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--step-6);
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
  color: #fff;
  font-size: var(--text-body);
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: rgba(0, 0, 15, 0.9);
  outline: none;
}

.subpage {
  padding: var(--step-7) 0 var(--step-8);
  background: linear-gradient(180deg, #fff 0%, #fff 54%, rgba(226, 246, 249, 0.28) 100%);
}

.subpage__inner {
  display: grid;
  gap: var(--step-7);
}

.page-hero {
  max-width: 760px;
}

.page-hero__kicker {
  margin: 0 0 var(--step-3);
  color: var(--color-aqua-600);
  font-size: var(--text-caption);
  font-weight: 650;
  line-height: 1.4;
}

.page-hero__title {
  margin: 0;
  font-size: var(--text-page-title);
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: 0;
}

.page-hero__lead {
  max-width: 660px;
  margin: var(--step-4) 0 0;
  color: var(--color-muted);
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.7;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: var(--step-8);
  align-items: start;
}

.support-intro {
  display: grid;
  gap: var(--step-8);
}

.support-intro h1,
.support-intro h2 {
  margin: 0 0 var(--step-5);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.2;
}

.support-intro h2 {
  font-size: 28px;
}

.support-intro p,
.content-section p,
.legal-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.78;
}

.support-contact {
  display: grid;
  justify-items: start;
}

.mail-icon {
  position: relative;
  width: 20px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.mail-icon::before,
.mail-icon::after {
  position: absolute;
  top: 2px;
  width: 12px;
  height: 1.8px;
  background: currentColor;
  content: "";
}

.mail-icon::before {
  left: 1px;
  transform: rotate(35deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.button--mail {
  gap: var(--step-3);
  margin-top: var(--step-5);
}

.support-languages {
  margin-top: var(--step-5) !important;
}

.faq-list {
  display: grid;
  gap: var(--step-3);
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-card);
}

.faq-item.is-open {
  background: var(--color-card-strong);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--step-5);
  width: 100%;
  min-height: 64px;
  padding: 0 var(--step-5);
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 580;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  padding: 0 var(--step-8) var(--step-5) var(--step-5);
}

.faq-answer p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-body);
  line-height: 1.72;
}

.faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--color-aqua-400);
}

.faq-mark::before,
.faq-mark::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-mark::after {
  display: none;
}

.company-layout {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: var(--step-8);
  align-items: start;
}

.company-tabs {
  position: sticky;
  top: calc(var(--header-height) + var(--step-7));
  display: grid;
  gap: var(--step-6);
  align-self: start;
  padding: var(--step-6) 0 42vh;
  border-right: 1px solid var(--color-border);
}

.company-tabs a {
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.4;
}

.company-tabs a.is-active {
  color: var(--color-ink);
  font-weight: 620;
}

.company-tabs a:hover,
.company-tabs a:focus-visible {
  color: var(--color-ink);
  outline: none;
}

.company-content {
  display: grid;
  gap: var(--step-7);
  max-width: 720px;
  padding-bottom: 42vh;
}

.company-banner {
  display: grid;
  place-items: center;
  min-height: 188px;
  padding: var(--step-6);
  border-radius: var(--radius-lg);
  background: var(--color-aqua-100);
  text-align: center;
}

.company-banner h1 {
  margin: 0;
  color: var(--color-aqua-600);
  font-size: 38px;
  font-weight: 650;
  line-height: 1.1;
}

.company-banner p {
  margin: var(--step-3) 0 0;
  color: var(--color-aqua-600);
  font-size: var(--text-lead);
  line-height: 1.45;
}

.content-section {
  scroll-margin-top: calc(var(--header-height) + var(--step-7));
}

.content-section h2,
.legal-copy h2 {
  margin: 0 0 var(--step-4);
  font-size: var(--text-h3);
  font-weight: 620;
  line-height: 1.3;
}

.content-section p + p {
  margin-top: var(--step-2);
}

.info-table {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.info-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--step-5);
  padding: var(--step-5) 0;
  border-bottom: 1px solid var(--color-border);
}

.info-table dt {
  color: var(--color-muted);
  font-size: var(--text-body);
  font-weight: 520;
  line-height: 1.6;
}

.info-table dd {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-body);
  font-weight: 430;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--step-4);
}

.info-card,
.contact-card {
  padding: var(--step-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.info-card h2 {
  margin: 0 0 var(--step-4);
  color: var(--color-muted);
  font-size: var(--text-caption);
  font-weight: 620;
}

.info-card p,
.contact-card p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-body);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: var(--step-4);
  max-width: 680px;
}

.contact-card span {
  color: var(--color-muted);
  font-size: var(--text-caption);
  font-weight: 620;
}

.contact-card a,
.legal-copy a,
.info-table a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 15, 0.24);
  text-underline-offset: 4px;
}

.contact-card a {
  width: fit-content;
  font-size: 24px;
  font-weight: 620;
}

.legal-copy {
  display: grid;
  gap: var(--step-6);
  max-width: 760px;
}

.legal-copy p,
.legal-copy ul {
  margin: 0;
}

.legal-copy p + p,
.legal-copy p + ul,
.legal-copy ul + p {
  margin-top: var(--step-3);
}

.legal-copy ul {
  display: grid;
  gap: var(--step-2);
  padding-left: 1.2em;
  color: var(--color-text);
  font-size: var(--text-body);
  line-height: 1.75;
}

body.subpage {
  min-height: 100svh;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-sans);
  letter-spacing: 0;
  line-height: 1.5;
}

.subpage-shell {
  width: min(var(--shell), calc(100% - var(--step-8)));
  margin: 0 auto;
  padding: var(--step-6) 0 var(--step-9);
}

.subpage-global-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--step-5);
  min-height: 56px;
  margin-bottom: var(--step-8);
}

.brand--side {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--step-6);
  margin-left: auto;
  color: var(--color-ink);
  font-size: var(--text-nav);
  font-weight: 540;
}

.subpage-global-nav .language-menu {
  position: relative;
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + var(--step-2));
  z-index: 100;
  display: grid;
  min-width: 132px;
  padding: var(--step-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options,
.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  display: flex;
  justify-content: space-between;
  padding: var(--step-2) var(--step-3);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
}

.language-options button:hover,
.language-options button:focus-visible {
  background: var(--color-aqua-50);
  outline: none;
}

.subpage-hero {
  display: grid;
  gap: var(--step-3);
  max-width: 760px;
  margin-bottom: var(--step-7);
}

.subpage-hero p {
  margin: 0;
  color: var(--color-aqua-600);
  font-size: var(--text-caption);
  font-weight: 650;
  text-transform: uppercase;
}

.subpage-hero h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-page-title);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: 0;
}

.subpage-hero span {
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--step-4);
  margin-bottom: var(--step-7);
}

.support-grid article {
  padding: var(--step-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.support-grid h2,
.subpage-section h2 {
  margin: 0 0 var(--step-4);
  font-size: var(--text-h3);
  font-weight: 620;
}

.support-grid p,
.subpage-section p,
.company-table dd {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-body);
  line-height: 1.7;
}

.subpage-section {
  max-width: 760px;
  margin-bottom: var(--step-7);
}

.company-table {
  max-width: 760px;
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.company-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--step-5);
  padding: var(--step-5) 0;
  border-bottom: 1px solid var(--color-border);
}

.company-table dt {
  color: var(--color-muted);
  font-size: var(--text-body);
  font-weight: 520;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  :root {
    --shell: 880px;
    --text-hero: 44px;
    --text-page-title: 38px;
  }

  .support-layout,
  .company-layout {
    gap: var(--step-7);
  }

  .phone-stage {
    width: min(720px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: auto;
    --footer-height: auto;
    --text-hero: 38px;
    --text-page-title: 34px;
  }

  .site {
    display: block;
  }

  .shell {
    width: min(100% - var(--step-6), var(--shell));
  }

  .site-header,
  .site-footer {
    position: relative;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--step-4);
    min-height: 80px;
    padding: var(--step-4) 0;
  }

  .site-header__tools {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: var(--step-4);
  }

  .primary-nav {
    gap: var(--step-4);
    min-width: 0;
  }

  .nav-link,
  .nav-link--button {
    font-size: 13px;
  }

  .language-trigger {
    min-width: 82px;
    height: 36px;
    font-size: 13px;
  }

  .site-footer__inner {
    display: grid;
    gap: var(--step-3);
    padding: var(--step-4) 0 var(--step-5);
  }

  .footer-links {
    flex-wrap: wrap;
    gap: var(--step-3) var(--step-5);
  }

  .home {
    min-height: auto;
    padding: var(--step-7) 0 var(--step-8);
  }

  .home::before {
    top: 52%;
  }

  .home__title {
    gap: 0.34em;
  }

  .home__inner,
  .home__copy {
    min-width: 0;
    max-width: 100%;
  }

  .home__subtitle {
    max-width: 100%;
    font-size: 14px;
  }

  .phone-stage {
    width: min(100%, calc(100vw - var(--step-6)));
    margin-top: var(--step-6);
  }

  .home__actions {
    margin-top: var(--step-6);
  }

  .subpage {
    padding: var(--step-6) 0 var(--step-8);
  }

  .support-layout,
  .company-layout {
    grid-template-columns: 1fr;
    gap: var(--step-7);
  }

  .support-intro {
    gap: var(--step-7);
  }

  .support-intro h1,
  .support-intro h2 {
    font-size: 28px;
  }

  .faq-trigger {
    min-height: 58px;
    font-size: 16px;
  }

  .company-tabs {
    position: relative;
    top: auto;
    display: flex;
    gap: var(--step-5);
    padding: 0 0 var(--step-5);
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
  }

  .company-tabs a {
    flex: 0 0 auto;
  }

  .company-content {
    max-width: none;
    padding-bottom: var(--step-8);
  }

  .company-banner {
    min-height: 150px;
  }

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

  .info-table div {
    grid-template-columns: 1fr;
    gap: var(--step-2);
  }
}

@media (max-width: 480px) {
  .site-header__tools {
    align-items: flex-start;
  }

  .primary-nav {
    flex-wrap: wrap;
  }

  .language-menu {
    margin-left: auto;
  }

  .button {
    min-height: 46px;
    padding: 0 var(--step-5);
  }

  .phone-stage {
    width: calc(100vw - var(--step-6));
    max-width: 100%;
  }

  .contact-card a {
    font-size: 18px;
  }
}
