@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
:root {
  color-scheme: light;
  --ink: #092d37;
  --muted: #4f6770;
  --line: #dce7e9;
  --aqua: #12bdcc;
  --pill: #eaf8fa;
  --page: #f7fbfb;
  --header-height: 72px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Readex Pro", "IBM Plex Sans Arabic", "Noto Kufi Arabic",
    "Segoe UI", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
}

a,
button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #ffff;
  backdrop-filter: blur(16px);
}

.header-inner {
  direction: ltr;
  width: min(100%, var(--container));
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding-inline: 16px;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-button,
.language-pill {
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
}

.menu-button img {
  display: block;
  width: 18px;
  height: 16px;
}

.menu-button:hover,
.menu-button:focus-visible,
.menu-button[aria-expanded="true"] {
  background: rgba(0, 166, 178, 0.08);
}

.language-pill {
  height: 30px;
  display: none;
  align-items: center;
  gap: 7px;
  border: 1px solid #cfe2e5;
  border-radius: 999px;
  background: var(--pill);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding-inline: 10px;
}

.language-pill svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-pill img {
  display: block;
  width: 18px;
  height: 18px;
}

.language-pill .chevron {
  width: 15px;
  height: 15px;
}

.text-link,
.primary-action,
.site-nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.text-link {
  direction: rtl;
  display: none;
  color: var(--muted);
  padding: 10px 4px;
}

.primary-action {
  direction: rtl;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #00a4ae;
  font-weight: 400;
  white-space: nowrap;
}

.primary-action svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  direction: rtl;
  display: grid;
  align-items: center;
  justify-content: stretch;
  gap: 6px;
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  left: 16px;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px;
  border: 1px solid rgba(10, 58, 69, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 44, 54, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  white-space: nowrap;
  justify-content: flex-start;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  outline: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--aqua);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  color: var(--ink);
  max-width: 116px;
}

.brand img {
  display: block;
  width: 104px;
  height: auto;
}

.page-canvas {
  min-height: calc(100vh - var(--header-height));
  background: var(--page);
  overflow-x: hidden;
}

.site-nav a[aria-current="page"]::after {
  width: 0;
}

.article-page {
  background: #f4f8f8;
}

.article-main {
  min-height: calc(100vh - var(--header-height));
  background: #f4f8f8;
}

.article-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 18px;
}

.article-hero {
  overflow: hidden;
  padding: 48px 0 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 201, 92, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(199, 241, 242, 0.66) 0%, rgba(244, 248, 248, 1) 100%);
  text-align: center;
}

.article-hero h1 {
  width: min(100%, 820px);
  margin: 24px auto 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.article-hero p {
  width: min(100%, 720px);
  margin: 22px auto 0;
  color: #183f4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.article-body {
  padding: 38px 0 62px;
}

.article-content {
  display: grid;
  gap: 34px;
}

.article-section {
  display: grid;
  gap: 18px;
}

.article-section h2,
.article-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.article-section h3,
.article-audience h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.article-section p,
.article-panel p,
.article-summary p,
.article-steps p,
.article-audience p {
  margin: 0;
  color: #294a53;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.article-section-lead {
  width: min(100%, 760px);
}

.article-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #d9e8ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 44, 54, 0.06);
}

.article-intro {
  border-color: #bde9ea;
  background: linear-gradient(135deg, #ffffff 74%, #dff8f8 100%);
}

.article-steps {
  counter-reset: investment-step;
  display: grid;
  gap: 16px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.article-steps li {
  counter-increment: investment-step;
  position: relative;
  display: grid;
  gap: 10px;
  padding: 76px 20px 24px;
  border: 1px solid #d9e8ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 44, 54, 0.05);
}

.article-steps li::before {
  content: counter(investment-step);
  position: absolute;
  top: 22px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #6f9df9;
  background: #d8e7ff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.article-steps li:nth-child(4n + 2)::before {
  color: #b574ff;
  background: #e5c8ff;
}

.article-steps li:nth-child(4n + 3)::before {
  color: #00a4ae;
  background: #cdeeee;
}

.article-steps li:nth-child(4n + 4)::before {
  color: #c89315;
  background: #f4e3b6;
}

.article-benefits,
.article-risk-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-benefits {
  grid-template-columns: 1fr;
}

.article-benefits li,
.article-risk-list li {
  position: relative;
  padding: 16px 44px 16px 18px;
  border: 1px solid #d9e8ea;
  border-radius: 14px;
  background: #ffffff;
  color: #173c46;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.article-benefits li::before,
.article-risk-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12bdcc;
}

.article-audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.article-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.article-audience > div,
.article-principles > div {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #d9e8ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 44, 54, 0.05);
}

.article-risk-panel {
  border-color: #f0d89b;
  background: #fffdf7;
}

.article-risk-list li {
  border-color: #efdca8;
  background: #ffffff;
}

.article-risk-list li::before {
  background: #c89315;
}

.article-summary {
  display: grid;
  justify-items: stretch;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(200deg, #0c3b4a 60%, #178c91 100%);
}

.article-summary h2,
.article-summary p {
  color: #ffffff;
}

.article-cta {
  direction: rtl;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  color: #0c3b4a;
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
}

.article-cta svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero {
  background:
    radial-gradient(circle at 80% 8%, rgba(18, 189, 204, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 248, 248, 1) 100%);
}

.contact-content {
  gap: 28px;
}

.contact-grid {
  display: grid;
  gap: 20px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d9e8ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 44, 54, 0.06);
}

.contact-panel > .section-tag {
  width: auto;
  justify-self: right;
}

.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-panel p {
  margin: 0;
  color: #294a53;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-method {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid #d9e8ea;
  border-radius: 14px;
  color: var(--ink);
  background: #f8fbfb;
}

.contact-method span {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: #294a53;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-method strong {
  color: #00a4ae;
  font-size: 14px;
  font-weight: 600;
}

.contact-method svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #00a4ae;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  align-content: start;
}

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9e8ea;
  border-radius: 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  padding: 13px 14px;
}

.contact-field select {
  appearance: none;
  padding-left: 38px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23092d37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 14px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.contact-choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice-field legend {
  margin: 0 0 8px;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

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

.contact-choice {
  position: relative;
  min-width: 0;
  display: block;
}

.contact-choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-choice span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e8ea;
  border-radius: 13px;
  color: var(--ink);
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.contact-choice input:checked + span {
  border-color: #00a4ae;
  color: #00a4ae;
  background: #e8ffff;
  box-shadow: 0 0 0 3px rgba(0, 164, 174, 0.1);
}

.contact-choice input:focus-visible + span {
  border-color: #00a4ae;
  box-shadow: 0 0 0 3px rgba(0, 164, 174, 0.12);
}

.contact-field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #00a4ae;
  box-shadow: 0 0 0 3px rgba(0, 164, 174, 0.12);
}

.contact-submit {
  direction: rtl;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: #00a4ae;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-submit svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form .contact-status {
  min-height: 22px;
  margin: 0;
  color: #294a53;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-form .contact-status:empty {
  display: none;
}

.contact-form .contact-status.is-success {
  color: #008f78;
}

.contact-form .contact-status.is-error {
  color: #b42318;
}

.contact-summary {
  background: linear-gradient(242.95deg, #0C3B4A 58.44%, #21888F 99.81%);
}

.reveal-item {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-section {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 58px 18px 34px;
  text-align: center;
  background:
    linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0.00) 12%, rgba(109, 190, 232, 0.34) 42%, rgba(255, 255, 255, 0.12) 100%),
    url("./assets/hero-center-background.svg") center center / 100% auto no-repeat,
    #ffffff;
}

.hero-tags {
  direction: ltr;
  width: min(100%, 140px);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.hero-tag {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid #d5e2e6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #15191f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-tag img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-copy {
  width: min(100%, 358px);
  margin-top: 26px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy p {
  width: min(100%, 350px);
  margin: 24px auto 0;
  color: #183f4a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

.rega-notice {
  width: min(100%, 356px);
  min-height: 36px;
  display: grid;
  place-items: center;
  margin-top: 22px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  font-family: "Almarai", sans-serif;
  line-height: 1.35;
  text-align: center;
}

.investor-avatars {
  direction: ltr;
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 27px;
  padding-inline: 12px;
}

.investor-avatars img {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border-radius: 50%;
  object-fit: cover;
}

.investor-avatars img:first-child {
  margin-left: 0;
}

.investor-avatars img:nth-child(1) {
  z-index: 7;
}

.investor-avatars img:nth-child(2) {
  z-index: 6;
}

.investor-avatars img:nth-child(3) {
  z-index: 5;
}

.investor-avatars img:nth-child(4) {
  z-index: 4;
}

.investor-avatars img:nth-child(5) {
  z-index: 3;
}

.investor-avatars img:nth-child(6) {
  z-index: 2;
}

.investor-avatars img:nth-child(7) {
  z-index: 1;
}

.investor-proof {
  margin: 13px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  display: none;
}

.store-actions {
  direction: ltr;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 15px;
  margin-top: 28px;
}

.store-action {
  display: block;
  border-radius: 14px;
}

.store-action img {
  display: block;
  width: 100%;
  height: auto;
}

.partners-section {
  display: grid;
  justify-items: center;
  padding: 0px 20px;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}

.partners-section > p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.partners-logos {
  direction: ltr;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
}

.partners-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 46px;
  object-fit: contain;
}

.phone-mockup {
  justify-self: center;
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  height: auto;
  margin: 28px -20px 0;
  object-position: center;
}

.phone-mockup-desktop {
  display: none;
}

.phone-download-cta {
  width: min(100%, 640px);
  display: grid;
  justify-items: center;
  gap: 24px;
}

.phone-download-copy {
  width: min(100%, 560px);
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--ink);
  text-align: center;
}

.phone-download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.phone-download-copy h2 span {
  color: #00a4ae;
}

.phone-download-copy p {
  width: min(100%, 520px);
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.phone-download-button {
  direction: rtl;
  width: 100%;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 22px;
  border: 1.5px solid #0c3b4a;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(14deg, #178c91 1%, #0c3b4a 40%);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}
.phone-download-button span {
  font-size: 16px;
}
.phone-download-button svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-start-section {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 58px 20px 40px;
  background-image: url("./assets/how-start-background.svg");
  background-position: calc(100% - 0px) calc(100% - -200px);
  background-size: 338px auto;
  background-repeat: no-repeat;
  background-color: #ffffff;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 7px 15px;
  border: 2px solid #afd4d4;
  border-radius: 50px;
  background: rgba(232, 255, 255, 1);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.how-start-section h2,
.investment-section h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.investment-section {
  display: grid;
  justify-items: center;
  padding: 58px 20px 70px;
  background: #f1f5f5;
  text-align: center;
}

.investment-feature-row {
  width: 100%;
  display: grid;
  justify-items: center;
}

.why-card {
  width: min(100%, 900px);
  height: 450px;
  display: flex;
  justify-items: center;
  justify-content: top;
  flex-direction: column;
  align-items: center;
  margin-top: 34px;
  padding: 32px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(5, 44, 54, 0.08) 0%, rgba(5, 44, 54, 0.38) 100%),
    url("./assets/why-card-background.png") center / cover no-repeat,
    #0c3b4a;
  color: #ffffff;
  text-align: center;
}

.why-card img {
  display: block;
  width: 48px;
  height: 48px;
}

.why-card h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.why-card p {
  width: min(100%, 720px);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.regulatory-logos {
  direction: ltr;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.regulatory-logo-card {
  min-height: 145px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid #dce8ea;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(230, 236, 240, 1);
}

.regulatory-logo-card-wide {
  direction: rtl;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 112px;
  color: #15191f;
  font-family: "Almarai", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.regulatory-logo-card img {
  display: block;
  width: min(100%, 185px);
  max-height: 70px;
  object-fit: contain;
}

.regulatory-logo-card-wide img {
  width: 34px;
  height: 34px;
}

.regulatory-logo-card:first-child img {
  width: min(100%, 100px);
}

.regulatory-logo-card:nth-child(2) img {
  width: min(100%, 210px);
}

.success-card {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  margin-top: 34px;
  margin-inline: auto;
  padding: 28px 20px 32px;
  border: 1px solid #dce8ea;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(230, 236, 240, 1);
  text-align: center;
}

.success-card h2 {
  margin-top: 20px;
  font-size: 22px;
}

.success-gallery {
  direction: ltr;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.success-gallery img {
  display: block;
  grid-column: span 2;
  width: 100%;
  aspect-ratio: 0.725;
  border-radius: 14px;
  object-fit: cover;
}

.success-gallery img:nth-child(5) {
  grid-column: 2 / span 2;
}

.success-gallery img:nth-child(6) {
  grid-column: 4 / span 2;
}

.success-gallery img:nth-child(7) {
  grid-column: 6 / span 2;
}

.testimonial-carousel {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
}

.testimonial-track {
  direction: ltr;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  padding: 2px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  direction: rtl;
  flex: 0 0 100%;
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 360px;
  padding: 28px 22px 30px;
  border: 1.5px solid #e1e5e6;
  border-radius: 24px;
  background: #ffffff;
  scroll-snap-align: center;
  text-align: right;
}

.testimonial-content {
  display: grid;
  gap: 20px;
}

.testimonial-stars {
  direction: ltr;
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  line-height: 1;
}

.testimonial-stars img {
  display: block;
  width: 22px;
  height: 22px;
}

.testimonial-card p {
  margin: 0;
  color: #0d0d0d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.testimonial-card footer {
  align-self: end;
  width: 100%;
  display: grid;
  gap: 6px;
  justify-items: start;
  color: #0d0d0d;
  font-size: 16px;
  line-height: 1.25;
  text-align: right;
}

.testimonial-card strong {
  font-weight: 700;
}

.testimonial-card footer span {
  color: #00a4ae;
  font-weight: 400;
}

.success-copy {
  width: min(100%, 540px);
  display: grid;
  justify-items: center;
  margin-top: 32px;
}

.success-copy h3 {
  margin: 0;
  color: #303737;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.success-copy p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.download-app-button {
  direction: rtl;
  width: min(100%, 560px);
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 22px;
  border: 1.5px solid #0c3b4a;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(14deg, #178c91 1%, #0c3b4a 40%);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 24px;
}

.download-app-button svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rega-spotlight-section {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 46px 20px;
  overflow: hidden;
  background: #f1f5f5;
}

.rega-spotlight-card {
  width: min(100%, 420px);
  display: grid;
  justify-items: stretch;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0b3c48;
  box-shadow: none;
  text-align: center;
}

.rega-spotlight-copy {
  order: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px 24px 38px;
}

.rega-spotlight-media {
  order: 1;
  display: block;
  min-height: 260px;
  background:
    linear-gradient(0deg, rgba(8, 54, 64, 0.42), rgba(8, 54, 64, 0.42)),
    url("./assets/rega-building-section.png") center / cover no-repeat;
}

.verified-badge {
  width: 72px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 189, 204, 0.18);
}

.verified-badge img {
  display: block;
  width: 22px;
  height: auto;
}

.rega-spotlight-card p {
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.rega-spotlight-accent {
  color: var(--aqua);
}

.faq-section {
  display: grid;
  justify-items: center;
  padding: 40px 20px 58px;
  background: #f1f5f5;
}

.faq-panel {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  padding: 42px 18px 42px;
  border: 1px solid #dce8ea;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(230, 236, 240, 1);
  text-align: center;
}

.faq-panel h2 {
  margin: 24px 0 0;
  color: #303737;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.faq-list {
  width: 100%;
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.faq-item {
  padding: 23px 14px;
  border: 3px solid rgba(218, 239, 240, 1);
  border-radius: 20px;
  background: linear-gradient(130.24deg, #FFFFFF 76.96%, rgba(235, 254, 255, 1));
  text-align: right;
}

.faq-item-desktop-only {
  display: none;
}

.faq-item h3 {
  margin: 0;
  color: #303737;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.faq-item ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0 22px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.faq-more-button {
  direction: rtl;
  width: auto;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-more-button svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-cta-section {
  display: grid;
  justify-items: center;
  padding: 8px 18px 58px;
  background: #f1f5f5;
}

.app-cta-card {
  position: relative;
  width: min(100%, 420px);
  min-height: 820px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 50px 20px 40px 20px;
  overflow: hidden;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(242.95deg, #0C3B4A 58.44%, #21888F 99.81%);
  text-align: center;
}

.app-cta-card > * {
  min-width: 0;
  max-width: 100%;
}

.app-cta-card h2 {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.32;
  overflow-wrap: break-word;
  max-width: 300px;
}

.app-cta-card > p {
  width: min(100%, 330px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  overflow-wrap: break-word;
}

.app-cta-stores {
  direction: ltr;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.app-cta-stores a {
  display: block;
  min-width: 0;
  border-radius: 11px;
  width: 100%;
}

.app-cta-stores img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.qr-panel {
  width: 100%;
  display: grid;
  justify-items: center;
  margin-top: 28px;
  padding: 17px 15px 15px;
  border: 1px solid #176a82;
  border-radius: 15px;
  background: rgba(16, 74, 94, 0.4);
}

.qr-panel img {
  display: block;
  width: 98px;
  height: auto;
  border-radius: 8px;
}

.qr-panel p {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.qr-panel p span {
  display: block;
}

.app-cta-phone {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 14px;
  margin-bottom: -70px;
}

.site-footer {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 100%, rgba(223, 220, 255, 0.48), transparent 32%),
    #ffffff;
  padding: 34px 20px 20px;
}

.footer-shell {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

.footer-logo-block {
  display: grid;
  justify-items: center;
}

.footer-logo-block a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-block picture {
  display: inline-flex;
}

.footer-logo-block img {
  display: block;
  width: 150px;
  height: auto;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: #d9e8ea;
}

.footer-contact {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-contact > a:not(.footer-whatsapp) {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f5f5;
}

.footer-socials img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(13%) saturate(1360%) hue-rotate(148deg) brightness(93%) contrast(92%);
}

.footer-whatsapp {
  direction: rtl;
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: 15px;
  color: var(--ink);
  background: #f1f5f5;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.footer-whatsapp > span:nth-child(2) {
  flex: 1;
  text-align: center;
}

.footer-whatsapp-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.footer-arrow {
  flex: 0 0 20px;
  display: block;
  width: 20px;
  height: 20px;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-whatsapp-icon img {
  display: block;
  width: 21px;
  height: 21px;
}

.footer-menu-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 22px;
  text-align: right;
}

.footer-menu-group {
  width: 100%;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
}

.footer-menu-group h3 {
  margin: 0;
  color: #00a4ae;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-menu-group a {
  color: #303737;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-copyright {
  width: 100%;
  padding: 15px 16px;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: #303737;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.steps-slider {
  width: calc(100% + 40px);
  margin-inline: -20px;
  margin-top: 30px;
  overflow: hidden;
  padding-inline: 20px;
}

.steps-cards {
  direction: rtl;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.steps-cards::-webkit-scrollbar {
  display: none;
}

.step-card {
  direction: rtl;
  flex: 0 0 min(306px, 76%);
  min-height: 240px;
  display: grid;
  align-content: start;
  justify-items: start;
  scroll-snap-align: center;
  padding: 28px 24px;
  border: 1.5px solid #dfe6e8;
  border-radius: 20px;
  background: rgba(255, 255, 255);
  text-align: right;
}

.step-badge {
  direction: ltr;
  min-width: 102px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 8px;
}

.step-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-badge img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.step-badge-icon {
  display: block;
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask: url("./assets/step-building.svg") center / contain no-repeat;
  mask: url("./assets/step-building.svg") center / contain no-repeat;
}

.step-badge span {
  min-width: 34px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.step-card-blue .step-badge {
  color: #6f9df9;
  background: #d8e7ff;
}

.step-card-purple .step-badge {
  color: #b574ff;
  background: #e5c8ff;
}

.step-card-mint .step-badge {
  color: rgba(239, 167, 116, 1);
  background: rgba(255, 234, 219, 1);
}

.step-card-gold .step-badge {
  color: rgba(118, 213, 183, 1);
  background: rgba(219, 254, 255, 1);
}

.step-card h3 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.step-card p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

img,
svg {
  max-width: 100%;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a:active {
  border-color: rgba(0, 166, 178, 0.18);
  background: rgba(0, 166, 178, 0.08);
}

/* Tablet and above */
@media (min-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .article-shell {
    padding-inline: 34px;
  }

  .article-hero {
    padding-top: 74px;
    padding-bottom: 60px;
  }

  .article-hero h1 {
    line-height: 1.25;
  }

  .article-hero p,
  .article-section p,
  .article-panel p,
  .article-summary p,
  .article-steps p,
  .article-audience p {
    line-height: 2;
  }

  .article-body {
    padding-top: 61px;
    padding-bottom: 87px;
  }

  .article-section h2,
  .article-summary h2 {
    font-weight: 600;
  }

  .article-steps li {
    padding: 26px 82px 26px
      26px;
  }

  .article-steps li::before {
    top: 24px;
    right: 26px;
  }

  .article-benefits,
  .article-audience,
  .article-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-summary {
    justify-items: start;
  }

  .article-cta {
    width: auto;
  }

  .contact-content {
    gap: 34px;
  }

  .contact-panel {
    padding: 30px;
  }

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

  .contact-method {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .contact-submit {
    justify-self: start;
    min-width: 180px;
  }

  .header-inner {
    gap: 16px;
    padding-inline: 22px;
  }

  .text-link,
  .primary-action {
    display: none;
  }

  .brand {
    max-width: none;
  }

  .brand img {
    width: 104px;
  }

  .hero-section {
    padding-top: 72px;
    padding-bottom: 52px;
    background:
      linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0.00) 12%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0.12) 100%),
      url("./assets/hero-center-background.svg") center center / 80% auto no-repeat,
      #ffffff;
  }

  .hero-tags {
    width: min(100%, 190px);
    gap: 19px;
  }

  .hero-tag {
    min-height: auto;
    gap: 15px;
    padding: 4px 0px;
    border-width: 2px;
  }

  .hero-tag img {
    width: 26px;
    height: 26px;
  }

  .hero-copy {
    width: min(100%, 780px);
    margin-top: 34px;
  }

  .hero-copy h1 {
    line-height: 1.12;
  }

  .hero-copy p {
    width: min(100%, 640px);
    margin-top: 24px;
    line-height: 1.9;
  }

  .rega-notice {
    width: min(100%, 640px);
    min-height: 42px;
    margin-top: 26px;
    padding: 8px 20px;
    line-height: 1.45;
  }

  .investor-avatars {
    margin-top: 32px;
  }

  .investor-avatars img {
    width: 57px;
    height: 57px;
    margin-left: -17px;
  }

  .investor-proof {
    margin-top: 19px;
  }

  .store-actions {
    width: min(100%, 410px);
    margin-top: 30px;
  }

  .partners-logos {
    width: min(100%, 620px);
  }

  .partners-logos img {
    height: 34px;
  }

  .phone-mockup {
    width: min(100%, 0px);
    margin: 42px auto 0;
  }
  .phone-mockup-desktop {
    display: block;
    width: min(100%, var(--container));
    margin: 44px auto 44px;
}
  .phone-download-copy {
    gap: 16px;
  }

  .phone-download-copy h2 {
    line-height: 1.3;
  }

  .phone-download-copy p {
    line-height: 1.9;
  }

  .phone-download-button {
    width: min(100%, 560px);
    border-radius: 16px;
  }

  .how-start-section {
    padding-top: 77px;
    background-size: 338px auto;
  }

  .section-tag {
    min-height: 44px;
    padding: 8px 18px;
  }

  .how-start-section h2,
  .investment-section h2 {
    margin-top: 24px;
    line-height: 1.18;
  }

  .investment-section {
    padding-top: 77px;
  }

  .why-card {
    width: min(100%, 900px);
    margin-top: 44px;
    padding: 45px 47px;
  }

  .why-card h3 {
    margin-top: 24px;
    line-height: 1.2;
  }

  .why-card p {
    margin-top: 22px;
    line-height: 2;
  }

  .regulatory-logos {
    width: min(100%, 640px);
    gap: 29px;
    margin-top: 45px;
  }

  .regulatory-logo-card {
    min-height: 197px;
    padding: 35px;
    border-radius: 26px;
  }

  .regulatory-logo-card img {
    max-height: 96px;
  }

  .success-card {
    width: min(100%, var(--container));
    margin-top: 45px;
    padding: 32px 20px;
    border-radius: 32px;
  }

  .success-card h2 {
    margin-top: 18px;
    font-size: 28px;
    line-height: 1.2;
  }

  .success-gallery {
    width: min(100%, 520px);
    gap: 14px;
    margin-top: 37px;
  }

  .testimonial-carousel {
    margin-top: 28px;
  }

  .testimonial-track {
    gap: 14px;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .testimonial-card {
    flex-basis: calc((100% - 42px) / 3);
    gap: 18px;
    min-height: 286px;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .testimonial-content {
    gap: 14px;
  }

  .testimonial-stars {
    gap: 4px;
  }

  .testimonial-stars img {
    width: 16px;
    height: 16px;
  }

  .testimonial-card p {
    line-height: 1.65;
  }

  .testimonial-card footer {
    gap: 4px;
  }

  .success-copy {
    margin-top: 40px;
  }

  .success-copy p {
    margin-top: 23px;
    line-height: 1.85;
  }

  .download-app-button {
    margin-top: 29px;
    border-radius: 16px;
  }

  .rega-spotlight-section {
    padding: 58px 20px;
  }

  .rega-spotlight-card {
    width: min(100%, var(--container));
    border-radius: 24px;
  }

  .rega-spotlight-copy {
    padding: 48px 50px;
  }

  .rega-spotlight-media {
    min-height: 340px;
  }

  .rega-spotlight-card p {
    margin-top: 28px;
    line-height: 1.85;
  }

  .faq-section {
    padding: 61px 20px 75px;
  }

  .faq-panel {
    width: min(100%, var(--container));
    padding: 52px 37px;
    border-radius: 32px;
  }

  .faq-panel h2 {
    margin-top: 27px;
  }

  .faq-list {
    gap: 26px;
    margin-top: 50px;
  }

  .faq-item {
    padding: 27.5px 24px;
    border-radius: 22px;
  }

  .faq-item p {
    margin-top: 12px;
    line-height: 1.8;
  }

  .app-cta-section {
    padding: 26px 20px 79px;
  }

  .app-cta-card {
    width: min(100%, 720px);
    min-height: 890px;
    padding: 44px 28px 0;
    border-radius: 18px;
  }

  .app-cta-card h2 {
    width: min(100%, 320px);
    max-width: 100%;
    line-height: 1.22;
  }

  .app-cta-card > p {
    margin-top: 34px;
    line-height: 1.9;
  }

  .app-cta-stores {
    gap: 18px;
    margin-top: 30px;
  }

  .qr-panel {
    margin-top: 34px;
    padding: 22px 18px 18px;
  }

  .qr-panel img {
    width: min(100%, 126px);
  }

  .qr-panel p {
    margin-top: 15px;
    font-size: 15px;
  }

  .app-cta-phone {
    width: min(100%, 390px);
    margin-top: 18px;
    margin-bottom: 0px;
  }

  .site-footer {
    padding: 45px 20px 53px;
  }

  .footer-shell {
    width: min(100%, var(--container));
  }

  .footer-logo-block img {
    width: 170px;
  }

  .footer-divider {
    margin: 28px 0;
  }

  .footer-contact {
    width: min(100%, 390px);
  }

  .footer-socials {
    gap: 18px;
  }

  .footer-whatsapp {
    min-height: 50px;
    border-radius: 16px;
  }

  .footer-menu-grid {
    gap: 36px 38px;
  }

  .footer-copyright {
    padding: 17px 18px;
  }

  .steps-slider {
    width: min(100%, var(--container));
    margin-inline: auto;
    margin-top: 53px;
    padding-inline: 0;
  }

  .steps-cards {
    gap: 22px;
    scroll-padding-inline: 1px;
  }

  .step-card {
    flex-basis: calc((100% - 22px) / 3);
    min-height: 260px;
    padding: 30px 28px;
    border-radius: 22px;
  }

  .step-badge {
    min-width: 124px;
    min-height: 58px;
    gap: 18px;
    padding: 8px 12px;
    border-radius: 9px;
  }

  .step-badge svg,
  .step-badge img,
  .step-badge-icon {
    width: 33px;
    height: 33px;
  }

  .step-badge span {
    min-width: 43px;
    min-height: 40px;
    border-radius: 6px;
    font-size: 20px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-hero p {
    font-size: 18px;
  }

  .article-section h2,
  .article-summary h2 {
    font-size: 30px;
  }

  .article-section h3,
  .article-audience h3 {
    font-size: 20px;
  }

  .article-section p,
  .article-panel p,
  .article-summary p,
  .article-steps p,
  .article-audience p {
    font-size: 16px;
  }

  .article-benefits li,
  .article-risk-list li {
    font-size: 15px;
  }

  .hero-tag {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .rega-notice {
    font-size: 13px;
  }

  .investor-proof {
    font-size: 18px;
  }

  .partners-section > p {
    font-size: 16px;
  }

  .phone-download-copy h2 {
    font-size: 30px;
  }

  .phone-download-copy p {
    font-size: 17px;
  }

  .phone-download-button,
  .download-app-button {
    font-size: 15px;
  }

  .section-tag {
    font-size: 15px;
  }

  .how-start-section h2,
  .investment-section h2 {
    font-size: 40px;
  }

  .why-card h3 {
    font-size: 30px;
  }

  .why-card p {
    font-size: 16px;
  }

  .testimonial-card p,
  .testimonial-card footer {
    font-size: 17px;
  }

  .success-copy h3 {
    font-size: 32px;
  }

  .success-copy p {
    font-size: 18px;
  }

  .rega-spotlight-card p {
    font-size: 22px;
  }

  .faq-panel h2 {
    font-size: 34px;
  }

  .faq-item h3 {
    font-size: 20px;
  }

  .faq-item p,
  .faq-item ul {
    font-size: 16px;
  }

  .app-cta-card h2 {
    font-size: 32px;
  }

  .app-cta-card > p {
    font-size: 16px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .step-card p {
    font-size: 15px;
  }
} /* tablet and above */

/* Desktop and above */
@media (min-width: 1024px) {
  .header-inner {
    gap: 28px;
    padding-inline: 48px;
  }

  .menu-button {
    display: none;
  }

  .text-link {
    display: inline-flex;
    align-items: center;
  }

  .primary-action {
    display: inline-flex;
  }

  .language-pill {
    height: 52px;
    display: none;
    gap: 10px;
    padding-inline: 18px;
    font-size: 16px;
    border-radius: 999px;
  }

  .header-tools {
    gap: 12px;
  }

  .primary-action {
    min-height: 52px;
    padding: 0 24px;
    font-size: 16px;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-nav a {
    min-height: 40px;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #183d47;
    background: transparent;
  }

  .site-nav a[aria-current="page"]::after,
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    width: 0;
  }

  .site-nav a[aria-current="page"],
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a:active {
    color: #00a4ae;
    border-color: transparent;
    background: transparent;
  }

  .brand img {
    width: 116px;
  }

  .how-start-section {
    background-image: url("./assets/how-start-desktop-background.svg");
    background-position: center calc(100% + 550px);
    background-size: 1032px auto;
  }

  .investment-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f5 18%, #f1f5f5 100%);
  }

  .investment-feature-row {
    direction: rtl;
    width: min(100%, var(--container));
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    margin-top: 44px;
  }

  .investment-feature-row > .why-card,
  .investment-feature-row > .regulatory-logos {
    flex: 1 1 0;
    width: auto;
    margin-top: 0;
  }

  .investment-feature-row > .why-card {
    min-height: 360px;
    height: auto;
    padding: 42px 42px 58px;
  }

  .investment-feature-row > .regulatory-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    gap: 24px;
  }

  .investment-feature-row .regulatory-logo-card {
    min-height: 0;
  }

  .investment-feature-row .regulatory-logo-card-wide {
    gap: 18px;
    font-size: 15px;
  }

  .investment-feature-row .regulatory-logo-card-wide img {
    width: 42px;
    height: 42px;
  }

  .investment-feature-row .why-card h3 {
    font-size: 28px;
    line-height: 1.22;
  }

  .investment-feature-row .why-card p {
    width: min(100%, 520px);
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-tags {
    width: auto;
    max-width: 100%;
    grid-template-columns: auto;
    gap: 10px;
  }

  .hero-tag {
    width: auto;
    gap: 8px;
    padding: 8px 16px;
    border-width: 1px;
    font-size: 14px;
  }

  .hero-tag img {
    width: 26px;
    height: 26px;
  }

  .site-footer {
    color: var(--ink);
    background:
      radial-gradient(circle at 100% 100%, rgba(223, 220, 255, 0.6), transparent 28%),
      #ffffff;
    padding: 56px 20px 28px;
  }

  .footer-shell {
    direction: ltr;
    width: min(100%, var(--container));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 30px;
    grid-template-areas:
      "contact logo"
      "divider-top divider-top"
      "menu menu"
      "divider-bottom divider-bottom"
      "copyright copyright";
    align-items: center;
    justify-items: stretch;
  }

  .footer-logo-block {
    grid-area: logo;
    justify-self: end;
  }

  .footer-logo-block img {
    width: 150px;
  }

  .footer-contact {
    grid-area: contact;
    width: 100%;
    display: flex;
    direction: ltr;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    text-align: center;
  }

  .footer-contact > a:not(.footer-whatsapp) {
    color: var(--ink);
    font-size: 13px;
  }

  .footer-contact > a[href^="tel"] {
    order: 3;
    margin-left: auto;
  }

  .footer-contact > a[href^="mailto"] {
    order: 4;
  }

  .footer-socials {
    order: 2;
    gap: 14px;
    margin-top: 0;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    background: #f1f5f5;
  }

  .footer-socials img {
    width: 15px;
    height: 15px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(13%) saturate(1360%) hue-rotate(148deg) brightness(93%) contrast(92%);
  }

  .footer-whatsapp {
    order: 1;
    direction: rtl;
    width: 180px;
    min-height: 38px;
    gap: 10px;
    margin-top: 0;
    padding: 0 13px;
    border-radius: 16px;
    color: var(--ink);
    background: #f1f5f5;
    font-size: 12px;
  }

  .footer-whatsapp > span:nth-child(2) {
    flex: 0 0 auto;
  }

  .footer-arrow {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    color: var(--ink);
  }

  .footer-divider {
    margin: 32px 0 28px;
    background: #d9e8ea;
  }

  .footer-shell > .footer-divider:nth-of-type(2) {
    grid-area: divider-top;
  }

  .footer-shell > .footer-divider:nth-of-type(4) {
    display: none;
  }

  .footer-shell > .footer-divider:nth-of-type(5) {
    grid-area: divider-bottom;
    margin: 34px 0 24px;
  }

  .footer-menu-grid {
    direction: rtl;
    grid-area: menu;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 44px 70px;
    text-align: right;
  }

  .footer-menu-group {
    gap: 18px;
  }

  .footer-menu-group h3 {
    color: #00a4ae;
    font-size: 14px;
  }

  .footer-menu-group a {
    color: #303737;
    font-size: 13px;
    font-weight: 400;
  }

  .footer-copyright {
    grid-area: copyright;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 0;
    text-align: start;
  }

  .footer-copyright p {
    color: #303737;
    font-size: 12px;
  }

  .steps-slider {
    width: min(100%, var(--container));
  }

  .step-card {
    flex-basis: calc((100% - 66px) / 4);
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .step-badge {
    min-width: 96px;
    min-height: 44px;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 8px;
  }

  .step-badge svg,
  .step-badge img,
  .step-badge-icon {
    width: 24px;
    height: 24px;
  }

  .step-badge span {
    min-width: 32px;
    min-height: 30px;
    border-radius: 5px;
    font-size: 16px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-hero p {
    font-size: 18px;
  }

  .article-section h2,
  .article-summary h2 {
    font-size: 26px;
  }

  .article-section h3,
  .article-audience h3 {
    font-size: 22px;
  }

  .article-section p,
  .article-panel p,
  .article-summary p,
  .article-steps p,
  .article-audience p {
    font-size: 17px;
  }

  .article-benefits li,
  .article-risk-list li {
    font-size: 16px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .contact-panel {
    padding: 34px;
  }

  .contact-panel h2 {
    font-size: 27px;
  }

  .contact-panel p {
    font-size: 16px;
  }

  .contact-info-panel {
    align-content: start;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .contact-method {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    padding: 17px 18px;
  }

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

  .contact-form h2,
  .contact-form p,
  .contact-field-wide,
  .contact-submit {
    grid-column: 1 / -1;
  }

  .contact-field {
    font-size: 14px;
  }

  .contact-submit {
    min-width: 190px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .rega-notice {
    width: auto;
    max-width: 100%;
    font-size: 14px;
  }

  .investor-proof {
    font-size: 22px;
  }

  .partners-section > p {
    font-size: 18px;
  }

  .partners-logos img {
    height: 44px;
  }

  .phone-mockup-mobile {
    display: none;
  }

  .phone-mockup-desktop {
    display: block;
    width: min(100%, var(--container));
    margin: 44px auto 44px;
  }

  .phone-download-copy h2 {
    font-size: 32px;
    line-height: 1.28;
  }

  .phone-download-copy p {
    font-size: 18px;
  }

  .phone-download-button,
  .download-app-button {
    font-size: 16px;
  }

  .section-tag {
    min-height: 32px;
    padding: 6px 14px;
    font-size: 14px;
  }

  .how-start-section h2,
  .investment-section h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .why-card h3 {
    font-size: 34px;
    line-height: 1.22;
  }

  .why-card p {
    font-size: 18px;
  }

  .testimonial-card p,
  .testimonial-card footer {
    font-size: 13px;
  }

  .testimonial-card footer span {
    font-size: 12px;
  }
  .testimonial-card {
    flex-basis: calc((100% - 42px) / 4);
    gap: 18px;
    min-height: 286px;
    padding: 22px 18px;
    border-radius: 12px;
  }
  .success-copy h3 {
    font-size: 32px;
    line-height: 1.25;
  }

  .success-copy p {
    font-size: 22px;
  }

  .rega-spotlight-section {
    min-height: auto;
    align-items: center;
    padding: 0px 20px;
    background: #f1f5f5;
  }

  .rega-spotlight-card {
    direction: ltr;
    width: min(100%, var(--container));
    min-height: 460px;
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    align-items: stretch;
    justify-items: stretch;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #0b3c48;
    box-shadow: none;
  }

  .rega-spotlight-copy {
    direction: rtl;
    order: 0;
    align-content: center;
    justify-items: start;
    padding: 70px 82px;
    text-align: start;
  }

  .rega-spotlight-media {
    order: 0;
    display: block;
    min-height: 460px;
    background:
      linear-gradient(0deg, rgba(8, 54, 64, 0.42), rgba(8, 54, 64, 0.42)),
      url("./assets/rega-building-section.png") center / cover no-repeat;
  }

  .rega-spotlight-card p {
    margin-top: 44px;
    width: 80%;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 2.2;
  }

  .rega-spotlight-card .verified-badge {
    width: 76px;
    height: 48px;
    background: rgba(18, 189, 204, 0.18);
  }

  .faq-panel h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .faq-panel {
    width: min(100%, var(--container));
    padding: 52px 36px;
  }

  .faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  .faq-item,
  .faq-item-desktop-only {
    display: block;
  }

  .faq-item {
    padding: 22px 18px;
    border-width: 2px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 13px;
    line-height: 1.7;
  }

  .faq-item ul {
    font-size: 13px;
  }

  .faq-more-button {
    width: auto;
    min-height: 0;
    gap: 8px;
    margin-top: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: 15px;
  }

  .app-cta-section {
    padding: 72px 20px 80px;
  }

  .app-cta-card {
    direction: ltr;
    width: min(100%, var(--container));
    min-height: 390px;
    grid-template-columns: minmax(260px, 0.95fr) minmax(160px, 0.42fr) minmax(300px, 0.95fr);
    grid-template-rows: auto auto 1fr;
    align-items: center;
    justify-items: stretch;
    column-gap: 20px;
    row-gap: 18px;
    padding: 54px 44px 0;
    border-radius: 18px;
    text-align: right;
  }

  .app-cta-card h2 {
    grid-column: 2 / 4;
    grid-row: 1;
    justify-self: end;
    width: min(100%, 520px);
    max-width: none;
    direction: rtl;
  }

  .app-cta-card > p {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: end;
    width: min(100%, 600px);
    margin-top: 0;
    direction: rtl;
  }

  .app-cta-stores {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    width: 170px;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .qr-panel {
    grid-column: 3;
    grid-row: 3;
    align-self: start;
    width: 100%;
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    justify-items: stretch;
    gap: 18px;
    margin-top: 0;
    padding: 16px 20px;
    border-radius: 12px;
  }

  .qr-panel img {
    grid-column: 2;
    grid-row: 1;
    width: 92px;
  }

  .qr-panel p {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.55;
    text-align: right;
  }

  .app-cta-phone {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: end;
    justify-self: start;
    width: min(100%, 360px);
    margin: 0 0 0px;
  }

  .app-cta-card h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  .app-cta-card > p {
    font-size: 17px;
  }

  .step-card h3 {
    margin-top: 22px;
    font-size: 20px;
  }

  .step-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }
} /* desktop */
