@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("fonts/Onest-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PinarFD";
  src: url("fonts/Pinar-DS1-FD.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PinarTextFD";
  src: url("fonts/Pinar-FD.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AnjomanFaNum";
  src: url("fonts/AnjomanFaNum-Medium.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AnjomanFaNum";
  src: url("fonts/AnjomanFaNum-SemiBold.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AnjomanFaNum";
  src: url("fonts/AnjomanFaNum-ExtraBold.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANYekanFaNum";
  src: url("fonts/iranyekanwebregularfanum.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANYekanFaNum";
  src: url("fonts/iranyekanwebboldfanum.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #302546;
  --muted: #8a7d98;
  --paper: #fbf8ff;
  --surface: #ffffff;
  --line: #eee7f6;
  --purple: #8f6ff0;
  --purple-deep: #241b35;
  --purple-mid: #6c58b8;
  --mint: #6fe9d0;
  --lavender: #f2ecff;
  --soft-blue: #f5f2fb;
  --shadow: 0 24px 80px rgba(95, 72, 132, 0.16);
  --glow: 0 0 24px rgba(143, 111, 240, 0.3);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(143, 111, 240, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #f7f1ff 100%);
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.rtl {
  direction: ltr;
  font-family: "AnjomanFaNum", "IRANYekanFaNum", Arial, sans-serif;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl .brand,
body.rtl .button,
body.rtl .header-cta {
  font-family: "PinarFD", "AnjomanFaNum", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: calc(var(--max) + 56px);
  margin: 0 auto;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(238, 231, 246, 0.95);
  backdrop-filter: blur(22px);
}

body.rtl .site-header {
  direction: rtl;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  border-radius: 50%;
  box-shadow: var(--glow);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  overflow: visible;
}

.mark-shape {
  fill: #fff;
}

.mark-cut {
  fill: var(--purple-deep);
  opacity: 0.92;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(95, 72, 132, 0.07);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  background: var(--lavender);
  color: var(--purple-deep);
}

.main-nav a {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  background: var(--lavender);
  color: var(--purple-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--purple), #d9c8ff);
  color: #fff;
  box-shadow: 0 14px 36px rgba(143, 111, 240, 0.25);
}

.button.secondary {
  color: var(--purple-deep);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(95, 72, 132, 0.07);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

main {
  overflow: hidden;
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 28px;
}

.section-band {
  max-width: none;
}

.section-band > * {
  max-width: var(--max);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 46px;
  min-height: 760px;
  padding-top: 56px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 70% 28%, rgba(143, 111, 240, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(251, 248, 255, 0.96));
}

.hero-copy {
  justify-self: end;
  width: 100%;
}

.hero-visual {
  position: relative;
  align-self: center;
  display: grid;
  align-content: center;
  min-height: 620px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(238, 231, 246, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(143, 111, 240, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(247, 242, 255, 0.96), rgba(255, 255, 255, 0.82)),
    #fff;
  box-shadow: var(--shadow);
}

.image-hero {
  display: block;
  aspect-ratio: 3 / 2;
  min-height: 0;
  padding: 0;
}

.image-hero img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual:not(.image-hero)::before,
.hero-visual:not(.image-hero)::after {
  content: "";
  position: absolute;
  inset: 54px 48px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 111, 240, 0.42), transparent);
}

.hero-visual:not(.image-hero)::after {
  inset: auto 48px 76px;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(238, 231, 246, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(95, 72, 132, 0.14);
}

.main-panel {
  padding: 24px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-top span,
.dashboard-card > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.panel-top strong,
.dashboard-card strong {
  color: var(--purple-deep);
  font-size: 18px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.signal-row span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(180deg, #fbf8ff, var(--lavender));
  font-weight: 800;
  text-align: center;
}

.work-map {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49%, rgba(143, 111, 240, 0.22) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(111, 233, 208, 0.2) 50%, transparent 51%),
    #fbfaff;
}

.node {
  position: absolute;
  display: grid;
  min-width: 142px;
  min-height: 54px;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--purple-deep);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(95, 72, 132, 0.11);
}

.node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(143, 111, 240, 0.16);
  border-radius: 999px;
}

.turkey {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: #fff;
}

.europe {
  left: 24px;
  top: 28px;
}

.region {
  right: 24px;
  bottom: 28px;
}

.side-panel {
  width: min(320px, 70%);
  margin: -34px 22px 0 auto;
  padding: 20px;
}

.side-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl p {
  word-break: normal;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.intro .section-heading {
  display: block;
  max-width: 760px;
  margin-left: 0;
}

.section-heading::after {
  content: none;
}

.section-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact::after {
  content: none;
}

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

.intro-grid article,
.price-card,
.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(95, 72, 132, 0.07);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid p,
.split-copy p,
.bridge-copy p,
.people-copy p,
.meeting p,
.faq-grid p {
  color: var(--muted);
}

.split,
.bridge,
.meeting {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 48px;
  background: var(--purple-deep);
  color: #fff;
}

.split-media,
.bridge-image,
.people-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img,
.bridge-image img,
.people-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.split-copy p,
.bridge-copy p,
.people-copy p {
  max-width: 720px;
  font-size: 18px;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.split .eyebrow {
  color: #cbb7ff;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.packages {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.price-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  background: linear-gradient(180deg, var(--purple-deep), #34264d);
  color: #fff;
  border-color: rgba(143, 111, 240, 0.5);
  box-shadow: 0 24px 80px rgba(95, 72, 132, 0.22);
}

.plan {
  margin: 0 0 18px;
  color: var(--purple-mid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .plan {
  color: #d9c28c;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

body.rtl .price-card li {
  padding-right: 22px;
  padding-left: 0;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
}

body.rtl .price-card li::before {
  right: 0;
  left: auto;
}

.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.featured li::before {
  background: var(--mint);
}

.bridge {
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  background: linear-gradient(180deg, #fbf8ff, #f3ecff);
  color: var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--purple-mid);
  font-size: 22px;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
}

.people {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 48px;
}

.questions {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-grid p {
  margin-bottom: 0;
}

.meeting {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
  background:
    radial-gradient(circle at 84% 18%, rgba(143, 111, 240, 0.26), transparent 34%),
    var(--purple-deep);
  color: #fff;
}

.meeting .eyebrow {
  color: #cbb7ff;
}

.meeting p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.meeting .button {
  background: #fff;
  color: var(--purple-deep);
}

.meeting-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meeting-points span,
.meeting-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.meeting-points span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.meeting-card {
  padding: 24px;
  justify-self: end;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.meeting-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.meeting-card .button {
  width: 100%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 28px 44px;
  color: var(--muted);
}

footer .brand {
  color: var(--ink);
}

body.rtl .hero-copy,
body.rtl .split-copy,
body.rtl .bridge-copy,
body.rtl .people-copy,
body.rtl .section-heading,
body.rtl .meeting,
body.rtl .price-card,
body.rtl .faq-grid {
  direction: rtl;
  text-align: right;
}

body.rtl .main-nav,
body.rtl .meeting-points,
body.rtl .feature-list,
body.rtl .metrics,
body.rtl .price-card ul,
body.rtl .faq-grid details,
body.rtl footer p {
  direction: rtl;
}

body.rtl .hero-copy {
  justify-self: start;
}

body.rtl .meeting-card {
  justify-self: start;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    width: 100%;
    max-width: none;
  }

  .header-actions {
    justify-self: end;
    padding-right: 56px;
  }

  body.rtl .header-actions {
    justify-self: start;
    padding-right: 0;
    padding-left: 56px;
  }

  .nav-toggle {
    position: absolute;
    top: 13px;
    right: 18px;
    z-index: 40;
    display: inline-flex;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  body.rtl .nav-toggle {
    right: auto;
    left: 18px;
  }

  body.nav-open .main-nav,
  body.nav-open .header-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: flex;
  }

  body.nav-open .main-nav {
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav a {
    padding: 12px;
  }

  body.nav-open .header-cta {
    top: 354px;
    justify-content: center;
  }

  .hero,
  .split,
  .bridge,
  .people,
  .meeting,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy {
    justify-self: center;
  }

  .hero-visual {
    min-height: 460px;
    padding: 24px;
  }

  .section-heading::after {
    max-width: 660px;
  }

  .intro-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .meeting {
    justify-items: start;
  }

  .meeting-card {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  body.rtl main {
    direction: rtl;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
  }

  .nav-toggle {
    position: static;
    flex: 0 0 42px;
    order: 3;
  }

  body.rtl .nav-toggle {
    order: 1;
  }

  .header-actions {
    flex: 0 0 auto;
    order: 2;
    padding-right: 0;
  }

  body.rtl .header-actions {
    padding-left: 0;
  }

  .brand {
    flex: 0 0 auto;
    order: 1;
  }

  body.rtl .brand {
    order: 3;
  }

  section {
    padding: 64px 20px;
  }

  .hero,
  .hero-copy,
  .hero-visual,
  .main-panel,
  .split,
  .bridge,
  .people,
  .meeting {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero {
    display: block;
  }

  body.rtl .hero-copy {
    display: block;
    text-align: right;
  }

  h1 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    max-width: 340px;
    font-size: 18px;
  }

  body.rtl h1,
  body.rtl h2,
  body.rtl h3,
  body.rtl .brand,
  body.rtl .button,
  body.rtl .header-cta {
    font-family: "AnjomanFaNum", "IRANYekanFaNum", Arial, sans-serif;
  }

  body.rtl h1,
  body.rtl .lead {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  body.rtl h1 {
    font-size: 30px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  body.rtl h2 {
    font-size: 28px;
    line-height: 1.38;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow-wrap: anywhere;
  }

  body.rtl h3,
  body.rtl p,
  body.rtl span,
  body.rtl a {
    overflow-wrap: anywhere;
  }

  body.rtl .hero-copy,
  body.rtl .split-copy,
  body.rtl .bridge-copy,
  body.rtl .people-copy,
  body.rtl .section-heading,
  body.rtl .intro-grid article,
  body.rtl .price-card,
  body.rtl .faq-grid details,
  body.rtl .meeting > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.rtl .lead {
    font-size: 16px;
    line-height: 2;
  }

  body.rtl .hero-actions {
    justify-content: stretch;
  }

  .hero-visual {
    margin-top: 46px;
    min-height: 0;
  }

  .main-panel {
    padding: 16px;
  }

  .panel-top {
    display: grid;
    gap: 6px;
  }

  .work-map {
    min-height: 290px;
  }

  .node {
    min-width: 0;
    width: min(220px, 72vw);
  }

  .feature-list,
  .signal-row,
  .metrics {
    grid-template-columns: 1fr;
  }

  .europe {
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
  }

  .region {
    right: auto;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .side-panel {
    width: 100%;
    margin: 14px 0 0;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .language-switch button {
    min-width: 30px;
    padding-right: 7px;
    padding-left: 7px;
  }
}
