*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #f5f5f7;
  --color-surface: rgba(255, 255, 255, 0.7);
  --color-border: rgba(15, 44, 56, 0.14);
  --color-text: #0f2c38;
  --color-muted: #4d5a61;
  --color-primary: #0f2c38;
  --color-primary-soft: rgba(15, 44, 56, 0.16);
  --color-highlight: #d9e862;
  --color-highlight-soft: rgba(217, 232, 98, 0.25);
  --color-accent: var(--color-primary);
  --color-accent-soft: var(--color-primary-soft);
  --color-error: #d83a34;
  --color-error-soft: rgba(216, 58, 52, 0.12);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 40px rgba(17, 24, 39, 0.06);
  --shadow-subtle: 0 10px 24px rgba(17, 24, 39, 0.05);
  --font-sans: "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI", system-ui,
    -apple-system, sans-serif;
}

html {
  min-width: 360px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-width: 360px;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 40px;
}

.site-header .container:first-of-type {
  display: flex;
  justify-content: flex-end;
  padding-inline: 24px;
}

@media (min-width: 1025px) {
  .site-header > .container:nth-of-type(2) {
    margin-top: 10px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  unicode-bidi: isolate;
  margin-left: -4px;
}

.brand__name {
  font-family: "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI", system-ui,
    -apple-system, sans-serif;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 600;
  text-align: left;
}

.brand__line--primary {
  font-size: 18px;
  font-weight: 600;
}

.brand__line--secondary {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}


.brand__logo {
  width: 48px;
  height: auto;
}

.primary-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a {
  padding: 8px 0;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 16px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon {
  display: block;
  background: var(--color-text);
  border-radius: 999px;
  height: 2px;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle__icon::before {
  top: -4px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle__icon::after {
  top: 4px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: translateY(-4px) rotate(-45deg);
}

.toggles {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.toggle-group {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  overflow: visible;
}

[data-role="country-toggle-group"] {
  border: none;
  background: transparent;
  padding: 0;
  gap: 5px;
}

[data-role="country-toggle-group"] .toggle-button {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: rgba(15, 44, 56, 0.7);
  font-weight: 500;
  font-size: 12px;
}

[data-role="country-toggle-group"] .toggle-button:hover,
[data-role="country-toggle-group"] .toggle-button:focus,
[data-role="country-toggle-group"] .toggle-button:focus-visible,
[data-role="country-toggle-group"] .toggle-button:active {
  color: var(--color-primary);
  background: transparent;
  text-decoration: underline;
  outline: none;
}

[data-role="country-toggle-group"] .toggle-button.is-active {
  background: transparent;
  color: var(--color-primary);
  text-decoration: underline;
}

[data-role="country-toggle-group"] .toggle-button + .toggle-button::before {
  content: "|";
  margin: 0 6px 0 6px;
  color: rgba(15, 44, 56, 0.22);
  font-weight: 400;
}

[data-role="language-toggle-group"] {
  border: none;
  background: transparent;
  padding: 0;
  gap: 4px;
  align-items: center;
}

[data-role="language-toggle-group"] > .toggle-button,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: rgba(15, 44, 56, 0.7);
  font-weight: 500;
  font-size: 12px;
}

[data-role="language-toggle-group"] > .toggle-button:hover,
[data-role="language-toggle-group"] > .toggle-button:focus,
[data-role="language-toggle-group"] > .toggle-button:focus-visible,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button:hover,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button:focus,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button:focus-visible,
[data-role="language-toggle-group"] > .toggle-button:active,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button:active {
  color: var(--color-primary);
  background: transparent;
  text-decoration: underline;
  outline: none;
}

[data-role="language-toggle-group"] > .toggle-button.is-active,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button.is-active,
[data-role="language-toggle-group"] .toggle-button-group > .toggle-button.is-open {
  background: transparent !important;
  color: var(--color-primary);
  text-decoration: underline;
}

[data-role="language-toggle-group"] .toggle-button-group--chinese {
  border-radius: 0;
}

[data-role="language-toggle-group"] .toggle-button-group--chinese .toggle-button--dropdown {
  border-radius: 0;
  padding-right: 0;
}

[data-role="language-toggle-group"] > .toggle-button + .toggle-button::before,
[data-role="language-toggle-group"] .toggle-button-group::before {
  content: "|";
  margin: 0 6px 0 6px;
  color: rgba(15, 44, 56, 0.22);
  font-weight: 400;
}


[data-role="language-toggle-group"] .toggle-button-group--chinese .toggle-button--dropdown .toggle-button__arrow {
  margin-inline-start: 6px;
}

.toggle-button {
  padding: 8px 14px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: var(--font-sans), "Noto Sans Arabic", "Cairo", "Tahoma", sans-serif;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-group > .toggle-button {
  border-radius: 0;
}

.toggle-group > .toggle-button:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.toggle-group > .toggle-button:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

html[dir="rtl"] .toggle-group > .toggle-button:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

html[dir="rtl"] .toggle-group > .toggle-button:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.toggle-button-group {
  position: relative;
  display: inline-flex;
}

.toggle-button-group--chinese {
  position: relative;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.toggle-button-group--chinese .toggle-button--dropdown {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

html[dir="rtl"] .toggle-button-group--chinese .toggle-button--dropdown {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.toggle-button--dropdown {
  cursor: pointer;
}

.toggle-button__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
  margin-inline-start: 4px;
}

.toggle-button.is-open .toggle-button__arrow {
  transform: rotate(180deg);
}

.toggle-button__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
  padding: 4px 0;
  display: none;
  flex-direction: column;
  z-index: 40;
  overflow: hidden;
}

html[dir="rtl"] .toggle-button__dropdown {
  left: auto;
  right: 0;
}

.toggle-button__dropdown.is-open {
  display: flex;
}

.toggle-button--dropdown-option {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  gap: 6px;
  padding: 8px 16px;
}

html[dir="rtl"] .toggle-button--dropdown-option {
  justify-content: flex-end;
  text-align: right;
}

.toggle-button__check {
  display: inline-flex;
  width: 1em;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--color-primary);
  visibility: hidden;
}

.toggle-button--dropdown-option.is-active .toggle-button__check {
  visibility: visible;
}

.toggle-button__text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.toggle-button__label--short {
  display: none;
}

@media (max-width: 1152px) {
  .toggle-button--has-short .toggle-button__label--full {
    display: none;
  }

  .toggle-button--has-short .toggle-button__label--short {
    display: inline;
  }

  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--full,
  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--full,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--full {
    display: inline !important;
  }

  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--short,
  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--short,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--short {
    display: none !important;
  }
}

.toggle-button:hover,
.toggle-button:focus-visible {
  color: var(--color-text);
}

.toggle-button:focus-visible {
  outline: none;
}

.toggle-button__dropdown .toggle-button:hover,
.toggle-button__dropdown .toggle-button:focus-visible {
  background: transparent;
  color: var(--color-text);
}

.toggle-button.is-active {
  background: var(--color-highlight);
  color: var(--color-primary);
}

.toggle-button__dropdown .toggle-button.is-active {
  background: transparent;
  color: var(--color-primary);
}

section {
  padding: 12px 0;
}

.hero {
  position: relative;
  padding-top: 12px;
  /* padding-bottom: 48px; */
}

.hero__badge {
  display: inline-grid;
  gap: 6px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(217, 232, 98, 0.18);
  border: 1px solid var(--color-highlight);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
}

.hero__badge-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero__badge-airports {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__badge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero__badge-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 44, 56, 0.18);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__title {
  margin: 24px 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero__subtitle {
  max-width: 620px;
  font-size: 18px;
  color: var(--color-muted);
}

.hero__content {
  margin-top: 32px;
  max-width: 640px;
  display: grid;
  gap: 20px;
}

.hero__actions {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__note {
  font-size: 14px;
  color: var(--color-muted);
}

.section-header {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card__title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.card__text {
  margin: 0;
  color: var(--color-muted);
}

.coverage__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.coverage__card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 12px;
}

.coverage__card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.coverage__card p {
  margin: 0;
  color: var(--color-muted);
}

.process__steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-highlight);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.step__title {
  margin: 0 0 10px;
  font-size: 20px;
}

.step__text {
  margin: 0;
  color: var(--color-muted);
}

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

.assurance__list li {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header .container:first-of-type .header-tools {
  flex: 1 1 auto;
  justify-content: flex-end;
}

html[dir="rtl"] .site-header .container:first-of-type {
  justify-content: flex-start;
}

html[dir="rtl"] .site-header .container:first-of-type .header-tools {
  justify-content: flex-start;
}

html[dir="rtl"] .site-header .container:first-of-type .header-tools .toggles {
  justify-content: flex-start;
  flex-wrap: wrap;
  direction: ltr;
  gap: 16px;
}

html[dir="rtl"] .site-header .container:first-of-type [data-role="language-toggle-group"] {
  order: 1;
  margin-right: auto;
}

html[dir="rtl"] .site-header .container:first-of-type [data-role="country-toggle-group"] {
  order: 2;
}

.site-header .container:first-of-type .header-tools .toggles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 0px);
  /* margin-inline: 5px; */
  gap: 24px;
}

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

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px 0 18px;
  padding-inline-start: 18px;
  padding-inline-end: 22px;
  height: 38px;
  width: 169px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #f5f5f7;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-login:hover,
.header-login:focus-visible {
  background: var(--color-highlight);
  color: var(--color-primary);
  outline: none;
}

.header-login__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.header-login__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-inline-start: -19px;
  border-radius: 999px;
  background: var(--color-highlight);
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.header-login__icon::after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  transform: translateY(-1px);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 11h-1V9a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2zm-7-2a2 2 0 0 1 4 0v2h-4zm7 11H7v-7h10z'/%3E%3Cpath d='M12 15a1.5 1.5 0 0 0-1.133 2.457l-.349 1.394a.5.5 0 0 0 .487.626h2a.5.5 0 0 0 .487-.626l-.349-1.394A1.5 1.5 0 0 0 12 15z'/%3E%3C/svg%3E")
    center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 11h-1V9a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2zm-7-2a2 2 0 0 1 4 0v2h-4zm7 11H7v-7h10z'/%3E%3Cpath d='M12 15a1.5 1.5 0 0 0-1.133 2.457l-.349 1.394a.5.5 0 0 0 .487.626h2a.5.5 0 0 0 .487-.626l-.349-1.394A1.5 1.5 0 0 0 12 15z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.header-track {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  height: 38px;
  width: 385px;
  /* flex-direction: row-reverse; */
}

@media (max-width: 1148px) and (min-width: 1047px) {
  .header-track {
    width: 294px;
  }
}

@media (max-width: 1054px) and (min-width: 1024px) {
  .header-track {
    width: 242px;
  }
}

.header-track__input {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--color-text);
  padding: 8px 16px;
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
}

.header-track__input::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.header-track__input:focus {
  outline: none;
}

.header-track__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: auto;
  padding: 0 18px;
  border: none;
  /* border-left: 1px solid var(--color-border); */
  background: var(--color-highlight);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  gap: 8px;
  direction: ltr;
}

.header-track__label {
  display: inline-block;
  white-space: nowrap;
}

.header-track__button::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27a6.5 6.5 0 10-.71.71l.27.28v.79l4.25 4.24a1 1 0 001.42-1.42L15.5 14zm-6 0a4.5 4.5 0 114.5-4.5 4.5 4.5 0 01-4.5 4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27a6.5 6.5 0 10-.71.71l.27.28v.79l4.25 4.24a1 1 0 001.42-1.42L15.5 14zm-6 0a4.5 4.5 0 114.5-4.5 4.5 4.5 0 01-4.5 4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-track__button:hover,
.header-track__button:focus-visible {
  background: var(--color-primary);
  color: var(--color-bg);
  outline: none;
}

.header-track__button:hover::before,
.header-track__button:focus-visible::before {
  background: var(--color-bg);
}

@media (max-width: 430px) {
  .header-track__button {
    width: 44px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .header-track__button::before {
    margin: 0;
  }

  .header-track__label {
    display: none;
  }
}

.header-track__input:-webkit-autofill,
.header-track__input:-webkit-autofill:hover,
.header-track__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  transition: background-color 9999s ease-in-out 0s;
}

.header-login:hover .header-login__icon,
.header-login:focus-visible .header-login__icon {
  transform: scale(1.02);
  background: var(--color-primary);
}

.header-login:hover .header-login__icon::after,
.header-login:focus-visible .header-login__icon::after {
  background: var(--color-highlight);
}

html[dir="rtl"] .header-actions {
  flex-direction: row;
}

html[dir="rtl"] .header-login {
  padding-inline-start: 18px;
  padding-inline-end: 22px;
}

html[dir="rtl"] .header-track {
  /* flex-direction: row-reverse; */
}

html[dir="rtl"] .header-track__input {
  text-align: left;
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .header-track__button {
  border-left: none;
  /* border-right: 1px solid var(--color-border); */
}

html[dir="rtl"] .header-track {
  flex-direction: row;
}

html[dir="rtl"] .header-login__icon {
  margin-inline-start: -19px;
}

html[dir="rtl"] .cta-button {
  margin-right: 5px;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding: 0 26px 0 18px;
  padding-inline-start: 18px;
  padding-inline-end: 26px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #f5f5f7;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--color-highlight);
  color: var(--color-primary);
}

.cta-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-inline-start: -22px;
  border-radius: 999px;
  background: var(--color-highlight);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.cta-button__icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #0f2c38;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.062 28.228c-2.319 0-4.489-0.64-6.342-1.753l-0.395-0.234-4.731 1.24 1.247-4.559-0.294-0.467c-1.185-1.862-1.889-4.131-1.889-6.565 0-6.822 5.531-12.353 12.353-12.353s12.353 5.531 12.353 12.353-5.53 12.353-12.353 12.353zM22.838 18.977c-0.371-0.186-2.197-1.083-2.537-1.208s-0.589-0.185-0.837 0.187-0.958 1.207-1.175 1.455-0.434 0.279-0.805 0.094c-1.15-0.466-2.138-1.087-2.997-1.852-0.799-0.74-1.484-1.587-2.037-2.521-0.216-0.371-0.023-0.572 0.162-0.757 0.167-0.166 0.372-0.434 0.557-0.65 0.146-0.179 0.271-0.384 0.366-0.604s0.068-0.188 0.068-0.296-0.037-0.253-0.101-0.357c-0.094-0.186-0.836-2.014-1.145-2.758s-0.609-0.625-0.836-0.637-0.464-0.012-0.712-0.012c-0.395 0.010-0.746 0.188-0.988 0.463-0.802 0.761-1.3 1.834-1.3 3.023s0.681 2.784 1.527 3.857c1.604 2.379 3.742 4.282 6.251 5.564 0.548 0.248 1.25 0.513 1.968 0.74 0.442 0.14 0.951 0.221 1.479 0.221 0.303 0 0.601-0.027 0.889-0.078 1.069-0.223 1.956-0.868 2.497-1.749 0.165-0.366 0.261-0.793 0.261-1.242 0-0.185-0.016-0.366-0.047-0.542s-0.34-0.247-0.712-0.434z'/%3E%3C/svg%3E")
    center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.062 28.228c-2.319 0-4.489-0.64-6.342-1.753l-0.395-0.234-4.731 1.24 1.247-4.559-0.294-0.467c-1.185-1.862-1.889-4.131-1.889-6.565 0-6.822 5.531-12.353 12.353-12.353s12.353 5.531 12.353 12.353-5.53 12.353-12.353 12.353zM22.838 18.977c-0.371-0.186-2.197-1.083-2.537-1.208s-0.589-0.185-0.837 0.187-0.958 1.207-1.175 1.455-0.434 0.279-0.805 0.094c-1.15-0.466-2.138-1.087-2.997-1.852-0.799-0.74-1.484-1.587-2.037-2.521-0.216-0.371-0.023-0.572 0.162-0.757 0.167-0.166 0.372-0.434 0.557-0.65 0.146-0.179 0.271-0.384 0.366-0.604s0.068-0.188 0.068-0.296-0.037-0.253-0.101-0.357c-0.094-0.186-0.836-2.014-1.145-2.758s-0.609-0.625-0.836-0.637-0.464-0.012-0.712-0.012c-0.395 0.010-0.746 0.188-0.988 0.463-0.802 0.761-1.3 1.834-1.3 3.023s0.681 2.784 1.527 3.857c1.604 2.379 3.742 4.282 6.251 5.564 0.548 0.248 1.25 0.513 1.968 0.74 0.442 0.14 0.951 0.221 1.479 0.221 0.303 0 0.601-0.027 0.889-0.078 1.069-0.223 1.956-0.868 2.497-1.749 0.165-0.366 0.261-0.793 0.261-1.242 0-0.185-0.016-0.366-0.047-0.542s-0.34-0.247-0.712-0.434z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  position: absolute;
}

.cta-button:hover .cta-button__icon,
.cta-button:focus-visible .cta-button__icon {
  transform: scale(1.03);
  background: var(--color-primary);
}

.cta-button:hover .cta-button__icon::after,
.cta-button:focus-visible .cta-button__icon::after {
  background: var(--color-highlight);
}

.cta-button__label {
  display: inline-flex;
  align-items: center;
}

.site-footer {
  padding: 80px 0 60px;
  background: #0f2c38;
  color: rgba(245, 245, 247, 0.85);
}

.site-footer .container {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 1148px) {
  .site-footer .container {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .site-footer .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-brand {
  /* display: grid; */
  gap: 6px;
}

.footer-brand__mark {
  display: flex;
  /* align-items: center; */
  gap: 12px;
}

.footer-brand__link {
  display: inline-flex;
  width: fit-content;
  margin-top: -18px;
  margin-left: -6px;
}

.footer-brand__logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
  margin-top: -7px;
}

.footer-brand__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand__meta {
  margin: 0;
  line-height: 1.4;
}

.footer-brand__meta + .footer-brand__meta {
  margin-top: 6px;
}

.footer-brand__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  margin-top: 4px;
  text-align: left;
  margin-bottom: 30px;
}

.footer-brand__line {
  display: block;
}

.footer-brand__line--primary {
  font-size: 1.17em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.footer-brand__line--secondary {
  font-size: 1.17em;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
}

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

.footer-info__list li {
  display: grid;
  gap: 4px;
}

.footer-info__list li > span {
  display: block;
}

.footer-info__list a {
  color: rgba(217, 232, 98, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-self: flex-start;
  justify-self: start;
  width: max-content;
}

.footer-info__list a:hover {
  text-decoration: underline;
}

[data-role="footer-license-value"] {
  white-space: pre-line;
}

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

.footer-legal__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 2px 0;
}

.footer-legal__divider--soft {
  background: rgba(255, 255, 255, 0.08);
}

.footer-legal__hub a {
  color: rgba(217, 232, 98, 0.95);
  font-weight: 600;
}

.footer-legal__list a {
  color: rgba(217, 232, 98, 0.9);
  text-decoration: none;
}

.footer-legal__list a:hover {
  text-decoration: underline;
}

.footer-meta__link {
  color: inherit;
  text-decoration: none;
}

.footer-meta__link:hover {
  text-decoration: underline;
}

.footer-meta__item {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-legal__note {
  margin-top: 10px;
  /* white-space: pre-line; */
}

[data-role="footer-contact-title"],
[data-role="footer-legal-title"],
[data-role="footer-legal-contacts-title"] {
  font-weight: 500;
}

.footer-rights {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.footer-accordion {
  border: 0;
  padding: 0;
  margin: 0;
}

.footer-accordion__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  cursor: pointer;
}

.footer-accordion__summary::-webkit-details-marker {
  display: none;
}

.footer-accordion__summary h3 {
  margin: 0;
}

.footer-accordion__icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2px solid rgba(245, 245, 247, 0.7);
  border-bottom: 2px solid rgba(245, 245, 247, 0.7);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

html[dir="rtl"] .footer-accordion__icon {
  margin-left: 3px;
  margin-right: 0;
}

.footer-accordion[open] .footer-accordion__icon {
  transform: rotate(225deg);
}

@media (min-width: 1025px) {
  .footer-accordion__summary {
    cursor: default;
    pointer-events: none;
  }

  .footer-accordion__icon {
    display: none;
  }

  .footer-accordion__body {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 30px 0 20px;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
  }

  .footer-accordion {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-accordion:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html[dir="rtl"] body {
  direction: rtl;
  font-family: "Noto Sans Arabic", "Cairo", "Tahoma", var(--font-sans);
  text-align: right;
}

html[dir="rtl"] .container,
html[dir="rtl"] .card,
html[dir="rtl"] .coverage__card,
html[dir="rtl"] .assurance__list,
html[dir="rtl"] .footer-info__list {
  text-align: right;
}

html[dir="rtl"] .footer-info__list span {
  direction: rtl;
  /* unicode-bidi: isolate-override; */
}
html[dir="rtl"] .footer-legal__list {
  text-align: right;
}

html[dir="rtl"] .footer-brand__mark {
  /* flex-direction: row-reverse; */
  justify-content: flex-end;
  gap: 8px;
}

html[dir="rtl"] .footer-brand__name {
  /* align-items: flex-end; */
  /* text-align: right; */
}

html[dir="rtl"] .footer-brand__line--primary,
html[dir="rtl"] .footer-brand__line--secondary {
  font-family: var(--font-sans);
}

html[dir="rtl"] .primary-nav {
  direction: rtl;
}

html[dir="rtl"] .primary-nav a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .toggles {
  direction: rtl;
}

html[dir="rtl"] .hero__actions,
html[dir="rtl"] .section-header {
  text-align: right;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  direction: ltr;
  text-align: left;
}

@media (max-width: 1024px) {
  .site-header .container {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding-bottom: 10px;
  }

  .toggle-button--has-short .toggle-button__label--full {
    display: inline;
  }

  .toggle-button--has-short .toggle-button__label--short {
    display: none;
  }

  .site-header .container {
    grid-template-columns: max-content 1fr max-content;
    grid-template-areas:
      "brand language menu"
      "actions actions actions";
    column-gap: 12px;
    row-gap: 12px;
  }

  .primary-nav {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-tools {
    grid-area: tools;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    direction: ltr;
    unicode-bidi: isolate;
  }

  .header-tools .toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    direction: ltr;
  }

  [data-role="country-toggle-group"],
  [data-role="language-toggle-group"] {
    display: inline-flex;
  }

  [data-role="country-toggle-group"] {
    order: 1;
    gap: 4px;
  }

  [data-role="language-toggle-group"] {
    order: 2;
    gap: 4px;
  }

  .header-actions {
    grid-area: actions;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-login {
    width: 100%;
    justify-content: center;
  }

  .header-track {
    width: 100%;
  }

  .header-track__input {
    min-width: 0;
    width: 100%;
    flex: 1 1 auto;
  }

  .header-track__button {
    justify-content: center;
    padding: 0 14px;
  }

  html[dir="rtl"] .site-header .container {
    justify-items: end;
  }

html[dir="rtl"] .brand,
html[dir="rtl"] .primary-nav {
  justify-self: end;
}

html[dir="rtl"] .brand {
  direction: ltr;
  margin-left: auto;
}

  html[dir="rtl"] .header-tools {
    justify-self: start;
  }

  html[dir="rtl"] .primary-nav {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
  }

  html[dir="rtl"] .primary-nav a {
    text-align: right;
    /* align-self: flex-end; */
    width: auto;
  }

html[dir="rtl"] [data-role="country-toggle-group"],
html[dir="rtl"] [data-role="language-toggle-group"] {
  justify-content: flex-start;
}

html[dir="rtl"] [data-role="country-toggle-group"] {
  justify-self: start;
}

html[dir="rtl"] [data-role="language-toggle-group"] {
  direction: ltr;
  justify-self: center;
}
}

@media (max-width: 1024px) and (min-width: 769px) {
  .site-header > .container:nth-of-type(2) {
    grid-template-columns: max-content 1fr auto;
    grid-template-areas:
      "brand brand brand"
      "nav nav actions";
    row-gap: 4px;
    align-items: start;
  }

  .site-header > .container:nth-of-type(2) .header-tools {
    grid-area: actions;
    justify-content: flex-end;
    gap: 16px;
    /* padding-right: 5px; */
  }

  .site-header > .container:nth-of-type(2) .header-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .site-header > .container:nth-of-type(2) .header-track {
    width: 385px;
  }

  .site-header > .container:nth-of-type(2) .header-login {
    width: auto;
  }

  .site-header > .container:nth-of-type(2) .primary-nav {
    justify-content: flex-start;
    /* padding-left: 5px; */
    width: 100%;
  }
}

@media (max-width: 908px) and (min-width: 768px) {
  .header-track {
    width: 294px;
  }

  .site-header > .container:nth-of-type(2) .header-track {
    width: 294px;
  }
}

@media (max-width: 818px) and (min-width: 768px) {
  .header-track {
    width: 242px;
  }

  .site-header > .container:nth-of-type(2) .header-track {
    width: 242px;
  }
}

@media (max-width: 1024px) and (min-width: 721px) {
  html[dir="rtl"] .primary-nav,
  html[dir="rtl"] .header-tools {
    justify-self: start;
  }

  html[dir="rtl"] .primary-nav,
  html[dir="rtl"] .header-tools,
  html[dir="rtl"] .header-tools .toggles {
    justify-content: flex-start;
  }

  html[dir="rtl"] .primary-nav {
    direction: rtl;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .toggle-button--has-short .toggle-button__label--full {
    display: none;
  }

  .toggle-button--has-short .toggle-button__label--short {
    display: inline;
  }

  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--full {
    display: inline !important;
  }

  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--short {
    display: none !important;
  }

  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--full,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--full {
    display: inline !important;
  }

  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--short,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--short {
    display: none !important;
  }

  section {
    padding: 20px 0;
  }

  .site-header > .container:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    column-gap: 12px;
    row-gap: 10px;
  }

  html[dir="rtl"] .site-header > .container:nth-of-type(2) {
    justify-content: flex-start;
  }

  .site-header > .container:nth-of-type(2) .brand {
    order: 0;
    flex: 0 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
    margin-inline-start: auto;
    align-self: flex-start;
  }

  .primary-nav {
    order: 4;
    width: 100%;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 5px;
    display: none;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  html[dir="rtl"] .primary-nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: right;
    width: 100%;
    align-self: stretch;
    margin: 0;
    direction: rtl;
    padding-left: 0;
    padding-right: 0;
  }

  html[dir="rtl"] .primary-nav a {
    text-align: right;
  }

  .header-tools {
    display: contents;
  }

  .header-actions {
    order: 3;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .header-login {
    width: 160px;
    flex: 0 0 160px;
    justify-content: center;
    padding-inline-start: 18px;
    padding-inline-end: 18px;
  }

  .header-track {
    flex: 1 1 auto;
    width: auto;
  }

  .is-mobile-language {
    order: 1;
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-inline: auto;
  }

  html[dir="rtl"] .brand {
    margin-inline-start: auto;
  }

  .header-tools .toggles {
    display: contents;
  }

  [data-role="country-toggle-group"] {
    order: 1;
    width: auto;
    justify-content: flex-start;
    margin-inline: 0;
  }

  html[dir="rtl"] [data-role="language-toggle-group"] {
    justify-self: center;
    justify-content: center;
    margin-inline: auto;
  }

  [data-role="country-toggle-group"] {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
  }

  [data-role="country-toggle-group"] .toggle-button {
    flex: 0 0 auto;
    text-align: center;
    padding: 8px 0;
  }

  [data-role="language-toggle-group"] > .toggle-button,
  [data-role="language-toggle-group"] .toggle-button-group > .toggle-button {
    padding: 8px 0;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .hero__content {
    margin-top: 36px;
    gap: 20px;
  }

  .hero__badge {
    width: 100%;
  }

  .contact-options {
    flex-direction: column;
    align-items: stretch;
  }

}

@media (max-width: 1024px) {
  .site-footer .container {
    grid-auto-flow: row;
    gap: 20px;
  }

  .site-footer .footer-meta__link,
  .site-footer .footer-brand__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    width: fit-content;
  }

  .site-footer .footer-brand {
    margin-top: 14px;
  }

  .site-footer .container > .footer-brand {
    grid-column: 1 / -1;
    order: 99;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin-top: 14px;
  }

  .site-footer .footer-brand__mark {
    justify-content: center;
  }

  .site-footer .footer-brand__meta {
    text-align: center;
  }
}

@media (min-width: 501px) {
  .brand__name {
    flex-direction: row;
    gap: 6px;
    line-height: 1.1;
  }

  .brand__line--primary {
    font-size: 18px;
    font-weight: 600;
  }

  .brand__line--secondary {
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: inherit;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .site-header .container:first-of-type {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .card,
  .step,
  .coverage__card,
  .assurance__list li {
    padding: 24px;
  }

  .contact-fieldset {
    padding: 18px;
  }

  .cta-button {
    width: auto;
  }

  .hero__content {
    margin-top: 32px;
    gap: 18px;
  }
}

@media (max-width: 414px) {
  .brand__line--secondary {
    display: none;
  }

  .brand__name {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 384px) {
  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--full,
  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--full,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--full {
    display: none !important;
  }

  .toggle-button--has-short[data-country-switch="ae"] .toggle-button__label--short,
  .toggle-button--has-short[data-country-switch="uk"] .toggle-button__label--short,
  .toggle-button--has-short[data-country-switch="hk"] .toggle-button__label--short {
    display: inline !important;
  }

}

[data-role="language-toggle-group"] .toggle-button-group::before {
  align-self: center;
}


/* Legal hub overrides */

.legal-header {
  background: var(--color-bg);
  border-bottom: 1px solid rgba(15, 44, 56, 0.08);
  padding: 18px 0;
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header__tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.legal-header__tools .toggle-group {
  order: 1;
}

.legal-header__note {
  order: 2;
}

.legal-header__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(15, 44, 56, 0.6);
  white-space: nowrap;
}

.legal-header__note-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(15, 44, 56, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: rgba(15, 44, 56, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  unicode-bidi: isolate;
  margin-left: -4px;
}

.legal-scope {
  background: rgba(15, 44, 56, 0.04);
  border-bottom: 1px solid rgba(15, 44, 56, 0.08);
  padding: 18px 0;
}

.legal-scope__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 12px;
  align-items: start;
}

.legal-scope__primary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-scope__info {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: flex-start;
  column-gap: 20px;
  row-gap: 12px;
  align-items: start;
}

.legal-scope__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.legal-scope__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: rgba(15, 44, 56, 0.6);
}

.legal-scope__value {
  font-weight: 600;
  color: #0f2c38;
  white-space: nowrap;
}

.legal-scope__pack-note {
  font-size: 10px;
  color: rgba(15, 44, 56, 0.55);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  width: 100%;
}

.legal-scope__pack-note:empty {
  display: none;
}
.legal-scope__action {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  align-self: center;
  width: 240px;
}

.legal-scope__action .legal-button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.legal-doc-page .legal-scope__action {
  width: 112px;
}

.legal-doc-page .legal-scope__pack-note {
  display: none;
}

.legal-main {
  padding: 40px 0 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 32px;
}

.legal-content,
.legal-doc,
.legal-doc__body {
  min-width: 0;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-nav__overlay {
  display: none;
}

.legal-nav__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 44, 56, 0.14);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.legal-nav__close-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.legal-nav__close-icon::before,
.legal-nav__close-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  background: #0f2c38;
  transform-origin: center;
}

.legal-nav__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.legal-nav__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.legal-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 44, 56, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #0f2c38;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.legal-nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.legal-nav-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #0f2c38;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  align-self: flex-start;
  font-size: 13px;
  color: rgba(15, 44, 56, 0.7);
  text-decoration: none !important;
}

.legal-back:hover {
  text-decoration: none !important;
}

.legal-back__text {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
}

.legal-back__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.legal-back:hover .legal-back__text::after {
  opacity: 1;
}

.legal-back__icon {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: rgba(15, 44, 56, 0.7);
}

.legal-nav__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 44, 56, 0.6);
  margin: 0;
}

.legal-nav__title--spaced {
  margin-top: 18px;
}

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

.legal-nav__list a {
  text-decoration: none;
  color: #0f2c38;
  font-weight: 500;
}

.legal-nav__list a:hover {
  text-decoration: underline;
}

.legal-content__intro {
  max-width: none;
  margin-bottom: 24px;
  margin-top: 0;
}

.legal-content__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 12px;
}

.legal-content__header h1 {
  width: 100%;
  margin: 0;
  font-size: 32px;
}

.legal-content__header .legal-nav-toggle {
  align-self: flex-end;
}

.legal-content__intro p {
  max-width: 720px;
  color: rgba(15, 44, 56, 0.7);
}

.legal-doc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-doc__intro .legal-content__header h1 {
  font-size: 30px;
}

.legal-doc__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 44, 56, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.legal-doc__meta dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 44, 56, 0.55);
  margin-bottom: 6px;
}

.legal-doc__meta dd {
  margin: 0;
  font-weight: 600;
  color: #0f2c38;
}

.legal-doc__body h2 {
  font-size: 18px;
  margin: 24px 0 10px;
}

.legal-doc__body h3 {
  font-size: 15px;
  margin: 18px 0 8px 12px;
}

.legal-doc__body h3 + ul,
.legal-doc__body h3 + ol,
.legal-doc__body h3 + p {
  margin-left: 30px;
}

.legal-doc__body p {
  margin: 0 0 12px;
  color: #445158;
}

.legal-doc__body a {
  color: #0f2c38;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc__body a:hover {
  text-decoration: none;
}

.legal-doc__body ul {
  margin: 0 0 12px 18px;
  padding: 0;
  color: #445158;
}

.legal-doc__body li {
  margin-bottom: 6px;
}

.legal-doc__body table {
  /* width: max-content; */
  min-width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  color: #445158;
}

.legal-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 12px;
}

.legal-doc__body {
  overflow-x: hidden;
}

.legal-doc__body th,
.legal-doc__body td {
  border: 1px solid rgba(15, 44, 56, 0.12);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.legal-doc__body th {
  background: rgba(15, 44, 56, 0.06);
  color: #0f2c38;
  font-weight: 600;
}

.legal-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.legal-filters__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 44, 56, 0.55);
}

.legal-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 44, 56, 0.08);
  font-size: 12px;
  color: rgba(15, 44, 56, 0.8);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.legal-tag.is-active {
  background: rgba(15, 44, 56, 0.18);
  color: #0f2c38;
  font-weight: 600;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.legal-card {
  border: 1px solid rgba(15, 44, 56, 0.08);
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(15, 44, 56, 0.06);
  position: relative;
}

.legal-card__chips {
  position: absolute;
  top: -3px;
  right: 0px;
}

.legal-chip {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 0 16px 0 12px;
  background: rgba(15, 44, 56, 0.16);
  font-size: 11px;
  color: rgba(15, 44, 56, 0.8);
  font-weight: 600;
}

.legal-card--highlight {
  border-color: rgba(217, 232, 98, 0.7);
  box-shadow: 0 18px 36px rgba(15, 44, 56, 0.12);
}

.legal-card__header h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-card__header p {
  margin: 0;
  color: rgba(15, 44, 56, 0.7);
  font-size: 13px;
}

.legal-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
  font-size: 12px;
}

.legal-card__meta dt {
  font-weight: 600;
  color: rgba(15, 44, 56, 0.6);
}

.legal-card__meta dd {
  margin: 4px 0 0;
  color: #0f2c38;
}

.legal-card__meta a {
  color: inherit;
  text-decoration: none;
}

.legal-card__meta a:hover {
  text-decoration: underline;
}

.legal-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: auto;
}

.legal-card__actions .legal-button {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  font-size: 11px;
  padding: 7px 6px;
}

.legal-card__verify {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-button {
  border-radius: 999px;
  padding: 8px 16px;
  background: #0f2c38;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #0f2c38;
}

.legal-button--ghost {
  background: transparent;
  color: #0f2c38;
}

.legal-button--compact {
  padding: 6px 12px;
  font-size: 12px;
}

.legal-conflict-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(15, 44, 56, 0.6);
}

.legal-conflict-note__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(15, 44, 56, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: rgba(15, 44, 56, 0.6);
}

.legal-scope__disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(15, 44, 56, 0.6);
  padding-top: 10px;
}

.legal-scope__disclaimer a {
  color: rgba(15, 44, 56, 0.85);
  text-decoration: none;
}

.legal-scope__disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .legal-scope__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-scope__info {
    /* grid-template-columns: 1fr; */
  }

  .legal-scope__action {
    width: 100%;
    align-items: flex-start;
  }

  .legal-doc-page .legal-scope__action {
    width: 100%;
  }

  .legal-scope__action .legal-button {
    width: 100%;
  }

  .legal-scope__pack-note {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .legal-scope__info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .legal-page .site-footer .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: 10px;
  }

  .legal-content__header {
    gap: 10px;
  }

  .legal-nav-toggle {
    display: inline-flex;
  }

  .legal-page .site-footer .container {
    grid-auto-flow: row;
    gap: 20px;
  }

  .legal-page .site-footer .footer-brand {
    margin-top: 14px;
  }

  .legal-page .site-footer .container > .footer-brand {
    grid-column: 1 / -1;
    order: 99;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin-top: 14px;
  }

  .legal-page .footer-brand__mark {
    justify-content: center;
  }

  .legal-page .footer-brand__meta {
    text-align: center;
  }

  .legal-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 44, 56, 0.3);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1990;
  }

  .legal-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 90vw;
    padding: 24px;
    background: #fff;
    box-shadow: none;
    transform: translateX(100%);
    transition: none;
    z-index: 2000;
    overflow-y: auto;
  }

  .legal-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    padding: 6px 10px;
    border: 1px solid rgba(15, 44, 56, 0.14);
    border-radius: 999px;
    background: #fff;
    color: rgba(15, 44, 56, 0.7);
    font-size: 12px;
    cursor: pointer;
  }

  body.legal-nav-open .legal-nav {
    transform: translateX(0);
    transition: transform 0.2s ease;
    box-shadow: 0 24px 60px rgba(15, 44, 56, 0.18);
  }

  body.legal-nav-open .legal-nav__overlay {
    display: block;
  }
}

.legal-header .toggle-button--has-short .toggle-button__label--short {
  display: none;
}

@media (max-width: 582px) {
  .legal-header .toggle-button--has-short .toggle-button__label--full {
    display: none !important;
  }

  .legal-header .toggle-button--has-short .toggle-button__label--short {
    display: inline !important;
  }
}
.legal-header [data-role="country-toggle-group"] .toggle-button {
  flex: 0 0 auto;
  text-align: center;
  padding: 0;
}
.legal-header,
.legal-scope,
.legal-layout,
.legal-doc,
.legal-doc-page {
  /* min-width: 360px; */
}

body {
  min-width: 360px;
}

.footer-accordion {
  border: 0;
  padding: 0;
  margin: 0;
}

.footer-brand__link {
  display: inline-flex;
  width: fit-content;
  margin-top: -18px;
  margin-left: -6px;
}

.footer-accordion__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  cursor: pointer;
}

.footer-accordion__summary::-webkit-details-marker {
  display: none;
}

.footer-accordion__summary h3 {
  margin: 0;
}

.footer-accordion__icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2px solid rgba(245, 245, 247, 0.7);
  border-bottom: 2px solid rgba(245, 245, 247, 0.7);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

html[dir="rtl"] .footer-accordion__icon {
  margin-left: 3px;
  margin-right: 0;
}

.footer-accordion[open] .footer-accordion__icon {
  transform: rotate(225deg);
}

@media (min-width: 1025px) {
  .footer-accordion__summary {
    cursor: default;
    pointer-events: none;
  }

  .footer-accordion__icon {
    display: none;
  }

  .footer-accordion__body {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 30px 0 20px;
  }

  .legal-page .site-footer .container {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-meta__link,
  .site-footer .footer-brand__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    width: fit-content;
  }

  .footer-accordion {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-accordion:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
