@font-face {
  font-family: "Inter Local";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/Nunito-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/Nunito-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Ping AR LT Local";
  src: url("../fonts/PingAR-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ping AR LT Local";
  src: url("../fonts/PingAR-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ping AR LT Local";
  src: url("../fonts/PingAR-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Ping AR LT Local";
  src: url("../fonts/PingAR-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --font-en: "Inter Local", Arial, sans-serif;
  --font-display: "Nunito Local", "Inter Local", Arial, sans-serif;
  --font-ar: "Ping AR LT Local", Tahoma, sans-serif;
  --ink: #171819;
  --ink-soft: #42474c;
  --muted: #727980;
  --line: rgba(23, 24, 25, 0.12);
  --paper: #ffffff;
  --cream: #f4f1eb;
  --sky: #e9f4fb;
  --accent: #16afe2;
  --accent-dark: #0d8ec2;
  --mint: #c8f2df;
  --yellow: #f4e8ad;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 22px 70px rgba(26, 38, 48, 0.1);
  --shadow-card: 0 10px 35px rgba(24, 35, 45, 0.08);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--font-en);
}

:lang(ar) {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  font-family: var(--font-ar);
}

html[lang="ar"] :lang(en) {
  font-family: var(--font-en);
}

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

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  color: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

button,
a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(22, 175, 226, 0.35);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #111;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 25px rgba(10, 12, 14, 0.14);
}

.button-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 13px 32px rgba(10, 12, 14, 0.2);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(23, 24, 25, 0.16);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(23, 24, 25, 0.28);
}

.button-light {
  color: #111;
  background: #fff;
}

.button-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #565d63;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(22, 175, 226, 0.14);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-block-end: 1px solid currentColor;
  padding-block-end: 4px;
  font-weight: 600;
}

.inline-link:hover span {
  transform: translate(2px, -2px);
}

.inline-link span {
  transition: transform 180ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Marketing page */

.marketing-page {
  position: relative;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #dcecf7 0, #eef6fb 18%, #f7f4ef 48%, #fff 75%);
}

.marketing-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  background:
    radial-gradient(circle at 23% 30%, rgba(255, 255, 255, 0.85), transparent 27%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.55), transparent 24%);
}

.ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.ambient-one {
  inset-block-start: 230px;
  inset-inline-start: -170px;
  width: 480px;
  height: 480px;
  background: rgba(112, 190, 235, 0.2);
}

.ambient-two {
  inset-block-start: 540px;
  inset-inline-end: -120px;
  width: 380px;
  height: 380px;
  background: rgba(245, 218, 151, 0.18);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  padding-block: 16px;
  border-block-end: 1px solid transparent;
}

.site-header.is-scrolled {
  border-color: rgba(23, 24, 25, 0.08);
  background: rgba(239, 247, 251, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 54px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #5d646a;
  font-size: 14px;
  font-weight: 500;
}

.primary-navigation a:hover,
.text-link:hover {
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: #111;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
  padding-block: 76px 92px;
}

.hero > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 620px;
  margin-block: 24px 22px;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 590px;
  color: #4e565d;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-arabic {
  width: max-content;
  max-width: 100%;
  margin-block-start: 14px;
  color: #33383c;
  font-size: 19px;
  font-weight: 500;
}

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

.play-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-block-start: 28px;
  color: #525a60;
  font-size: 13px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.dashboard-preview {
  position: relative;
  overflow: hidden;
  width: 108%;
  border: 1px solid rgba(23, 24, 25, 0.13);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 35px 80px rgba(41, 66, 83, 0.18);
  transform: rotateY(-5deg) rotateZ(1deg);
  transform-origin: center;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-block-end: 1px solid #e6eaed;
  color: #303439;
  font-size: 12px;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.dashboard-brand span {
  width: 11px;
  height: 11px;
  border-radius: 3px 7px 3px 7px;
  background: var(--accent);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6dcdf;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 460px;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-block: 24px;
  border-inline-end: 1px solid #edf0f2;
  background: #fbfcfc;
}

.dashboard-nav span {
  width: 19px;
  height: 19px;
  border: 1.5px solid #c9d0d4;
  border-radius: 6px;
}

.dashboard-nav span.active {
  border-color: #111;
  background: #111;
  box-shadow: 0 0 0 5px rgba(22, 175, 226, 0.14);
}

.dashboard-content {
  min-width: 0;
  padding: 26px;
  background: #f7f8f8;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-heading div {
  display: grid;
  gap: 2px;
}

.dashboard-heading small,
.card-title small {
  color: #939a9f;
  font-size: 10px;
}

.dashboard-heading strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.dashboard-heading button {
  padding: 9px 13px;
  border-radius: 9px;
  color: #fff;
  background: #18191a;
  font-size: 10px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
  margin-block-start: 22px;
}

.kpi-card {
  display: grid;
  min-height: 128px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid #e4e8ea;
  border-radius: 17px;
  background: #fff;
}

.kpi-featured {
  color: #fff;
  border-color: #1b1c1e;
  background: #1b1c1e;
}

.kpi-card span {
  color: #7f878d;
  font-size: 10px;
}

.kpi-featured span {
  color: rgba(255, 255, 255, 0.62);
}

.kpi-card strong {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.kpi-card strong small {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 500;
}

.kpi-card em {
  color: #6f777d;
  font-size: 9px;
  font-style: normal;
}

.kpi-featured em {
  width: max-content;
  padding: 4px 7px;
  border-radius: 999px;
  color: #173d2d;
  background: var(--mint);
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 12px;
  margin-block-start: 12px;
}

.chart-card,
.activity-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e4e8ea;
  border-radius: 17px;
  background: #fff;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.bar-chart {
  display: flex;
  height: 120px;
  align-items: end;
  gap: 8px;
  padding-block-start: 18px;
}

.bar-chart i {
  width: 100%;
  height: var(--bar);
  border-radius: 6px 6px 2px 2px;
  background: #cad7de;
}

.bar-chart i:nth-child(4),
.bar-chart i:nth-child(6) {
  background: var(--accent);
}

.activity-card {
  display: grid;
  gap: 10px;
}

.activity-row {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 8px;
}

.activity-row > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #334047;
  background: #e5eef2;
  font-size: 7px;
  font-weight: 600;
}

.activity-row:nth-child(3) > span {
  background: #f0e9cb;
}

.activity-row:nth-child(4) > span {
  background: #d8efdf;
}

.activity-row p {
  display: grid;
  min-width: 0;
}

.activity-row b,
.activity-row > strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-row small {
  color: #959ca1;
  font-size: 7px;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: grid;
  border: 1px solid rgba(23, 24, 25, 0.11);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(33, 51, 63, 0.14);
  backdrop-filter: blur(12px);
}

.floating-stat-one {
  inset-block-start: -40px;
  inset-inline-end: -22px;
  padding: 16px 20px;
  border-radius: 18px;
}

.floating-stat-one strong {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 24px;
}

.floating-stat-one span,
.floating-stat-two small {
  color: #70777d;
  font-size: 10px;
}

.floating-stat-two {
  inset-block-end: -34px;
  inset-inline-start: 38px;
  grid-template-columns: 10px 1fr;
  gap: 3px 9px;
  padding: 14px 17px;
  border-radius: 16px;
}

.floating-stat-two .pulse-dot {
  grid-row: 1 / span 2;
  align-self: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39c986;
  box-shadow: 0 0 0 5px rgba(57, 201, 134, 0.14);
}

.floating-stat-two strong {
  font-size: 11px;
}

.method-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(23, 24, 25, 0.1);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

.method-strip .shell {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.method-strip p {
  color: #6b7277;
  font-size: 13px;
  white-space: nowrap;
}

.method-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.method-list > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34383b;
  font-size: 12px;
  font-weight: 600;
}

.method-symbol {
  position: relative;
  display: block;
  width: 24px;
  height: 20px;
}

.card-symbol {
  border: 1.5px solid #111;
  border-radius: 4px;
}

.card-symbol::after {
  content: "";
  position: absolute;
  inset: 5px 0 auto;
  border-block-start: 1.5px solid #111;
}

.wallet-symbol {
  border: 1.5px solid #111;
  border-radius: 5px;
}

.wallet-symbol::after {
  content: "";
  position: absolute;
  inset-block-start: 5px;
  inset-inline-end: -3px;
  width: 10px;
  height: 8px;
  border: 1.5px solid #111;
  border-radius: 3px;
  background: #fff;
}

.cash-symbol::before,
.cash-symbol::after {
  content: "";
  position: absolute;
  border: 1.5px solid #111;
  border-radius: 4px;
}

.cash-symbol::before {
  inset: 2px 4px 3px 1px;
}

.cash-symbol::after {
  inset: 5px 1px 0 4px;
}

.bank-symbol {
  border-block-end: 1.5px solid #111;
}

.bank-symbol::before {
  content: "";
  position: absolute;
  inset: 6px 4px 2px;
  border-inline: 4px double #111;
}

.bank-symbol::after {
  content: "";
  position: absolute;
  inset: 1px 2px auto;
  border-inline: 10px solid transparent;
  border-block-end: 6px solid #111;
}

.split-symbol {
  border: 1.5px solid #111;
  border-radius: 50%;
}

.split-symbol::before,
.split-symbol::after {
  content: "";
  position: absolute;
  background: #111;
}

.split-symbol::before {
  inset: 4px 10px;
}

.split-symbol::after {
  inset: 9px 4px;
}

.stats-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-block: 84px 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.stats-section article {
  display: grid;
  gap: 5px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.stats-section strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.05em;
}

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

.section {
  position: relative;
  z-index: 1;
  padding-block: 120px;
}

.section-heading {
  max-width: 720px;
  margin-block-end: 54px;
}

.section-heading h2,
.security-copy h2,
.support-panel h2,
.cta-panel h2,
.proof-heading h2 {
  margin-block: 15px 18px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.security-copy > p,
.proof-heading > p,
.support-panel > div > p:last-child,
.cta-panel > p {
  color: #646c72;
  font-size: 18px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.feature-card-large {
  background: linear-gradient(150deg, #dff1fb, #fff 68%);
}

.feature-card:nth-child(2) {
  background: linear-gradient(150deg, #f5edcb, #fff 66%);
}

.feature-card:nth-child(3) {
  background: linear-gradient(150deg, #e0f2e8, #fff 66%);
}

.feature-card-wide {
  display: grid;
  min-height: 320px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr minmax(300px, 0.8fr);
  align-items: center;
  gap: 54px;
  background: #f4f1eb;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-block-end: 54px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.feature-icon svg {
  width: 24px;
  fill: none;
  stroke: #111;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-wide .feature-icon {
  margin-block-end: 30px;
}

.card-kicker {
  margin-block-end: 10px;
  color: #6f777d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 520px;
  margin-block-end: 15px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

.feature-card > p,
.feature-card > div > p {
  max-width: 540px;
  color: #676f75;
}

.link-builder {
  position: absolute;
  inset-inline: 38px;
  inset-block-end: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(23, 24, 25, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(33, 48, 59, 0.08);
}

.link-builder div {
  overflow: hidden;
  color: #8a9196;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-builder strong {
  color: #202326;
  font-weight: 500;
}

.link-builder button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 9px;
  color: #fff;
  background: #111;
  font-size: 11px;
}

.mini-chart {
  position: absolute;
  inset-inline: 38px;
  inset-block-end: 36px;
  display: flex;
  height: 105px;
  align-items: end;
  gap: 10px;
  padding: 16px 18px 0;
  border-block-end: 1px solid rgba(23, 24, 25, 0.13);
}

.mini-chart i {
  width: 100%;
  border-radius: 8px 8px 0 0;
  background: rgba(23, 24, 25, 0.15);
}

.mini-chart i:nth-child(1) { height: 24%; }
.mini-chart i:nth-child(2) { height: 48%; }
.mini-chart i:nth-child(3) { height: 38%; }
.mini-chart i:nth-child(4) { height: 74%; background: #111; }
.mini-chart i:nth-child(5) { height: 62%; }
.mini-chart i:nth-child(6) { height: 92%; background: var(--accent); }

.monochrome-marks {
  position: absolute;
  inset-inline: 38px;
  inset-block-end: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.monochrome-marks span {
  display: grid;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.support-bubble {
  display: grid;
  grid-template-columns: 48px 1fr 9px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(23, 24, 25, 0.13);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.support-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: #111;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
}

.support-bubble p {
  display: grid;
  gap: 3px;
}

.support-bubble strong {
  font-size: 17px;
}

.support-bubble small {
  color: #7b8288;
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35c47b;
  box-shadow: 0 0 0 5px rgba(53, 196, 123, 0.13);
}

.solutions-section {
  border-block: 1px solid var(--line);
  background: #f3f0e9;
}

.solution-board {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.78fr 1.22fr;
  border: 1px solid rgba(23, 24, 25, 0.15);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.solution-intro {
  display: flex;
  min-height: 600px;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px;
  color: #fff;
  background: #18191a;
}

.solution-number {
  display: grid;
  width: 72px;
  height: 72px;
  margin-block-end: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.solution-intro h3 {
  max-width: 340px;
  margin-block-end: 18px;
  font-size: 42px;
}

.solution-intro p {
  max-width: 380px;
  margin-block-end: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.solution-list {
  padding: 16px 34px;
}

.solution-list article {
  display: grid;
  min-height: 96px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 18px;
  border-block-end: 1px solid var(--line);
}

.solution-list article:last-child {
  border-block-end: 0;
}

.solution-list > article > span {
  color: #a3a9ad;
  font-size: 11px;
}

.solution-list h3 {
  margin-block-end: 3px;
  font-size: 22px;
}

.solution-list p {
  color: #7c8388;
  font-size: 13px;
}

.solution-list i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

.solution-list article:hover i {
  color: #fff;
  border-color: #111;
  background: #111;
  transform: rotate(45deg);
}

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

.steps-grid li {
  min-width: 0;
}

.steps-grid li > span {
  display: block;
  margin-block-end: 20px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.step-line {
  position: relative;
  height: 1px;
  margin-block-end: 28px;
  background: var(--line);
}

.step-line::before {
  content: "";
  position: absolute;
  inset-block-start: -4px;
  inset-inline-start: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
}

.steps-grid h3 {
  margin-block-end: 12px;
  font-size: 26px;
}

.steps-grid p {
  color: #6e767c;
}

.proof-section {
  overflow: hidden;
  background: #dcecf4;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.quote-stack {
  position: relative;
  min-height: 510px;
}

.quote-card {
  position: absolute;
  width: min(460px, 90%);
  padding: 38px;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.quote-card-primary {
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
  color: #fff;
  background: #18191a;
  transform: rotate(-2deg);
}

.quote-card-ar {
  inset-inline-end: 0;
  inset-block-end: 0;
  z-index: 1;
  background: #fff;
  transform: rotate(2deg);
}

.quote-card > p {
  margin-block-end: 38px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quote-card-ar > p {
  font-family: var(--font-ar);
  line-height: 1.7;
  letter-spacing: 0;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-card footer > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #111;
  background: var(--accent);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.quote-card-ar footer > span {
  background: var(--yellow);
}

.quote-card footer div {
  display: grid;
}

.quote-card footer strong {
  font-size: 13px;
}

.quote-card footer small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.quote-card-ar footer small {
  color: #858c91;
}

.security-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.security-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(23, 24, 25, 0.055) 40px),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(23, 24, 25, 0.055) 40px),
    #eef5f7;
}

.shield-disc {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 25px 60px rgba(36, 57, 69, 0.14);
}

.shield-disc svg {
  width: 76px;
  fill: none;
  stroke: #111;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card {
  position: absolute;
  inset-inline-end: 34px;
  inset-block-end: 34px;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 20px;
  border-radius: 18px;
  color: #fff;
  background: #18191a;
  box-shadow: 0 18px 40px rgba(10, 12, 14, 0.2);
}

.security-card span,
.security-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.security-card strong {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.06em;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-block-start: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3f464b;
  font-weight: 500;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.support-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  padding: 64px;
  border-radius: 34px;
  color: #fff;
  background: #18191a;
}

.support-panel h2 {
  max-width: 720px;
  margin-block-end: 16px;
  font-size: clamp(38px, 4vw, 58px);
}

.support-panel > div > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.support-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.support-actions span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 88px 28px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: linear-gradient(145deg, #d9eef8, #f5f0e6 70%);
  text-align: center;
}

.cta-panel > *:not(.cta-orbit) {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  margin-block: 16px;
}

.cta-panel > p {
  max-width: 620px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-block-start: 30px;
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 50%;
}

.cta-orbit-one {
  inset-block-start: -220px;
  inset-inline-start: -80px;
  width: 480px;
  height: 480px;
}

.cta-orbit-two {
  inset-inline-end: -120px;
  inset-block-end: -260px;
  width: 560px;
  height: 560px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding-block: 68px 24px;
  border-block-start: 1px solid var(--line);
  background: #f4f1eb;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.65fr);
  gap: 55px;
}

.footer-brand > p {
  max-width: 380px;
  margin-block-start: 16px;
  color: #6f767b;
  font-size: 14px;
}

.footer-brand > p[lang="ar"] {
  width: max-content;
  max-width: 100%;
  margin-block-start: 7px;
  color: #32373b;
  font-size: 15px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #70777c;
  font-size: 13px;
}

.footer-column strong {
  margin-block-end: 8px;
  color: #222527;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: #111;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 64px;
  padding-block-start: 22px;
  border-block-start: 1px solid var(--line);
  color: #858c91;
  font-size: 11px;
}

/* Checkout page */

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 13% 8%, rgba(22, 175, 226, 0.13), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(241, 224, 161, 0.2), transparent 24%),
    #f4f1eb;
}

.checkout-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.checkout-topbar {
  padding-block: 18px;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
}

.checkout-back {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  color: #5e656a;
  font-size: 13px;
  font-weight: 500;
}

.checkout-back:hover {
  color: #111;
  transform: translateX(-2px);
}

html[dir="rtl"] .checkout-back:hover {
  transform: translateX(2px);
}

.checkout-back svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[dir="rtl"] .checkout-back svg {
  transform: rotate(180deg);
}

.checkout-brand {
  justify-self: center;
}

.checkout-brand img {
  width: 142px;
}

.checkout-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #656c71;
  font-size: 12px;
}

.secure-label svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.language-toggle:hover {
  border-color: #111;
  background: #fff;
}

.language-current {
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
}

.checkout-main {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 760px;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  margin-block: 20px 50px;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(32, 43, 51, 0.12);
}

.checkout-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(8px);
}

.is-loading .checkout-loading {
  display: grid;
}

.checkout-loading span {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(23, 24, 25, 0.13);
  border-block-start-color: #111;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.checkout-loading p {
  color: #697075;
  font-size: 13px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.order-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 54px 48px 40px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(22, 175, 226, 0.17), transparent 30%),
    radial-gradient(circle at 100% 76%, rgba(198, 241, 221, 0.09), transparent 28%),
    #18191a;
}

.checkout-kicker {
  color: #858d93;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-panel .checkout-kicker {
  color: rgba(255, 255, 255, 0.48);
}

.order-panel h1 {
  max-width: 430px;
  margin-block: 14px 18px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 700;
}

.order-intro {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.order-arabic {
  width: max-content;
  max-width: 100%;
  margin-block-start: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.merchant-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-block-start: 36px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.merchant-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #111;
  background: var(--accent);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.merchant-card > div:nth-child(2) {
  display: grid;
}

.merchant-card > div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.merchant-card > div:nth-child(2) strong {
  font-size: 13px;
}

.verified-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.amount-block {
  display: grid;
  gap: 4px;
  margin-block: 42px 28px;
}

.amount-block > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.amount-block strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 500;
}

.amount-block strong b {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.05em;
}

.amount-block small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

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

.summary-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.summary-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.summary-list .summary-total {
  margin-block-start: 8px;
  padding-block-start: 16px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.summary-total dd {
  color: var(--accent);
  font-size: 17px;
}

.order-assurance {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  margin-block-start: auto;
  padding-block-start: 34px;
}

.order-assurance img {
  width: 31px;
  filter: invert(1);
  opacity: 0.72;
}

.order-assurance p {
  display: grid;
  gap: 4px;
}

.order-assurance strong {
  font-size: 11px;
}

.order-assurance p span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  line-height: 1.5;
}

.payment-panel {
  min-width: 0;
  padding: 54px 54px 34px;
  background: #fff;
}

.payment-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.payment-heading-row h2 {
  margin-block-start: 10px;
  font-size: clamp(30px, 3.3vw, 43px);
  font-weight: 700;
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #7b8287;
  font-size: 10px;
  white-space: nowrap;
}

.step-badge b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 9px;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-block: 32px 24px;
  padding: 5px;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 14px;
  background: #f6f5f2;
}

.payment-tabs button {
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #72797e;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
}

.payment-tabs button:hover {
  color: #111;
}

.payment-tabs button[aria-selected="true"] {
  color: #fff;
  background: #18191a;
  box-shadow: 0 6px 16px rgba(14, 16, 17, 0.16);
}

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

.method-panel[hidden] {
  display: none;
}

.method-card {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 16px;
  background: #fff;
  text-align: start;
  cursor: pointer;
}

.method-card:hover {
  border-color: rgba(23, 24, 25, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 9px 25px rgba(31, 42, 49, 0.07);
}

.method-card.is-selected {
  border-color: #111;
  background: #f7fbfd;
  box-shadow: 0 0 0 1px #111;
}

.method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #f1f0ed;
}

.method-icon img {
  width: 26px;
  height: 26px;
}

.method-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.method-copy strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.method-copy small {
  color: #858c91;
  font-size: 9px;
  line-height: 1.35;
}

.method-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid #c7cccf;
  border-radius: 50%;
}

.method-card.is-selected .method-mark {
  border-color: #111;
  background: #111;
}

.method-card.is-selected .method-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.payment-details {
  margin-block-start: 24px;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--line);
}

.payment-details[hidden],
.card-fields[hidden],
.alternative-details[hidden] {
  display: none;
}

.details-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block-end: 18px;
}

.details-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.details-step {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 10px;
  font-weight: 700;
}

.details-heading h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.details-heading button {
  padding: 6px 0;
  border-block-end: 1px solid #111;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.card-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  color: #585f64;
  font-size: 10px;
  font-weight: 600;
}

.field-full {
  grid-column: 1 / -1;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 24, 25, 0.15);
  border-radius: 11px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(22, 175, 226, 0.12);
}

.field input::placeholder {
  color: #b3b8bb;
}

.field input.is-invalid {
  border-color: #c94747;
  box-shadow: 0 0 0 3px rgba(201, 71, 71, 0.09);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-card-mark {
  position: absolute;
  inset-inline-end: 13px;
  width: 22px;
  height: 15px;
  border: 1.5px solid #111;
  border-radius: 3px;
  pointer-events: none;
}

.input-card-mark::after {
  content: "";
  position: absolute;
  inset: 4px 0 auto;
  border-block-start: 1.5px solid #111;
}

.field-error {
  min-height: 0;
  color: #b93a3a;
  font-size: 9px;
  font-weight: 500;
}

.field-error:empty {
  display: none;
}

.alternative-details {
  display: grid;
  gap: 14px;
}

.phone-input b {
  position: absolute;
  inset-inline-start: 14px;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
}

.phone-input input {
  padding-inline-start: 52px;
}

.method-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-radius: 12px;
  background: #f4f3f0;
}

.method-note img {
  width: 28px;
}

.method-note p {
  display: grid;
  gap: 2px;
}

.method-note strong {
  font-size: 10px;
}

.method-note span {
  color: #7c8388;
  font-size: 9px;
}

.mobile-total {
  display: none;
}

.pay-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-block-start: 24px;
  border-radius: 13px;
  color: #fff;
  background: #171819;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pay-button:disabled {
  color: #9ba0a4;
  background: #ecebe8;
  cursor: not-allowed;
}

.pay-button:not(:disabled):hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-block-start-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.pay-button.is-processing .pay-button-label {
  display: none;
}

.pay-button.is-processing .button-spinner {
  display: block;
}

.demo-note {
  margin-block-start: 11px;
  color: #93999d;
  font-size: 9px;
  text-align: center;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-block-start: 24px;
  color: #a0a5a8;
  font-size: 9px;
}

.powered-by img {
  width: 71px;
  height: auto;
  filter: grayscale(1);
  opacity: 0.72;
}

.checkout-success {
  position: fixed;
  z-index: 100;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  display: grid;
  max-width: 410px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: #fff;
  background: #18191a;
  box-shadow: 0 20px 50px rgba(12, 14, 15, 0.25);
}

.checkout-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #111;
  background: var(--mint);
  font-weight: 800;
}

.checkout-success > div {
  display: grid;
  gap: 2px;
}

.checkout-success strong {
  font-size: 12px;
}

.checkout-success p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.checkout-success button {
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
  }

  .primary-navigation {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 38px;
  }

  .dashboard-preview {
    width: 100%;
  }

  .dashboard-body {
    min-height: 410px;
  }

  .method-list {
    gap: 16px;
  }

  .feature-card {
    min-height: 405px;
  }

  .checkout-main {
    grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  }

  .order-panel,
  .payment-panel {
    padding-inline: 38px;
  }
}

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

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .primary-navigation {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-block: 18px 8px;
  }

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

  .primary-navigation a {
    padding-block: 12px;
    border-block-end: 1px solid rgba(23, 24, 25, 0.08);
  }

  .header-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 100%;
    justify-items: stretch;
    gap: 88px;
    padding-block-start: 70px;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead,
  .hero-arabic {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .dashboard-preview {
    transform: rotateZ(1deg);
  }

  .method-strip .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-block: 24px;
  }

  .method-list {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-block-end: 4px;
  }

  .method-list > span {
    flex: 0 0 auto;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide,
  .solution-board,
  .proof-grid,
  .security-section,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    gap: 36px;
  }

  .solution-intro {
    min-height: 470px;
  }

  .solution-number {
    margin-block-end: 100px;
  }

  .proof-grid,
  .security-section {
    gap: 55px;
  }

  .quote-stack {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .security-visual {
    order: 2;
  }

  .support-panel {
    gap: 35px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }

  .checkout-main {
    grid-template-columns: 1fr;
  }

  .order-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 40px;
  }

  .order-panel-top,
  .merchant-card,
  .order-assurance {
    grid-column: 1 / -1;
  }

  .merchant-card {
    margin-block-start: 0;
  }

  .amount-block {
    margin-block: 14px 0;
  }

  .summary-list {
    align-self: center;
  }

  .order-assurance {
    margin-block-start: 0;
    padding-block-start: 0;
  }
}

@media (max-width: 700px) {
  .shell,
  .checkout-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-block-start: 48px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .dashboard-body {
    grid-template-columns: 39px 1fr;
    min-height: 370px;
  }

  .dashboard-preview {
    transform: none;
  }

  .dashboard-nav {
    gap: 13px;
  }

  .dashboard-nav span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .dashboard-content {
    padding: 17px;
  }

  .kpi-card {
    min-height: 108px;
    padding: 14px;
  }

  .kpi-card strong {
    font-size: 20px;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

  .bar-chart {
    height: 98px;
  }

  .floating-stat-one {
    inset-block-start: -48px;
    inset-inline-end: -6px;
  }

  .floating-stat-two {
    inset-inline-start: 12px;
  }

  .stats-section {
    margin-block-start: 72px;
  }

  .stats-section article {
    padding: 22px;
  }

  .section {
    padding-block: 86px;
  }

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

  .feature-card,
  .feature-card-wide {
    min-height: 390px;
    grid-column: auto;
    padding: 28px;
  }

  .feature-card-wide {
    min-height: auto;
  }

  .link-builder,
  .mini-chart,
  .monochrome-marks {
    inset-inline: 28px;
    inset-block-end: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quote-stack {
    min-height: 600px;
  }

  .quote-card {
    width: 92%;
    padding: 28px;
  }

  .support-panel {
    padding: 42px 28px;
  }

  .cta-panel {
    padding-block: 70px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .checkout-back span,
  .secure-label {
    display: none;
  }

  .checkout-brand {
    justify-self: center;
  }

  .checkout-main {
    width: min(100% - 20px, 1180px);
    margin-block-start: 6px;
    border-radius: 24px;
  }

  .order-panel {
    grid-template-columns: 1fr;
    padding: 38px 26px 30px;
  }

  .order-panel-top,
  .merchant-card,
  .order-assurance {
    grid-column: auto;
  }

  .order-panel h1 {
    font-size: 42px;
  }

  .amount-block {
    margin-block: 12px 0;
  }

  .summary-list {
    display: none;
  }

  .payment-panel {
    padding: 38px 26px 28px;
  }

  .payment-heading-row {
    align-items: center;
  }

  .payment-heading-row h2 {
    font-size: 32px;
  }

  .payment-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-tabs button {
    min-height: 48px;
  }

  .method-panel {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 88px;
  }

  .mobile-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-block-start: 22px;
    padding-block-start: 18px;
    border-block-start: 1px solid var(--line);
    font-size: 12px;
  }

  .mobile-total strong {
    font-family: var(--font-display);
    font-size: 20px;
  }

  .pay-button {
    position: sticky;
    z-index: 10;
    inset-block-end: 10px;
    box-shadow: 0 8px 20px rgba(10, 12, 14, 0.18);
  }

  .pay-button:disabled {
    box-shadow: none;
  }

  .checkout-success {
    inset-inline: 12px;
    inset-block-end: 12px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-points {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .security-copy h2,
  .proof-heading h2,
  .cta-panel h2 {
    font-size: 39px;
  }

  .solution-intro,
  .solution-list {
    padding-inline: 26px;
  }

  .solution-list article {
    grid-template-columns: 28px 1fr auto;
  }

  .security-visual {
    min-height: 390px;
  }

  .security-card {
    inset-inline: 20px;
    min-width: 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .field-full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Revision: restore the supplied sky-led visual direction */

.shell {
  width: min(1280px, calc(100% - 96px));
}

.marketing-page {
  isolation: isolate;
  background: #f6f4f0;
}

.marketing-page::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(166, 203, 232, 0.2), rgba(191, 217, 239, 0.38) 48%, rgba(234, 227, 214, 0.96) 100%),
    url("../images/sky-background.png") center top / cover no-repeat;
}

.marketing-page > main,
.marketing-page > .site-footer {
  position: relative;
  z-index: 1;
}

.ambient {
  z-index: 0;
  border-radius: 45% 55% 58% 42%;
  filter: blur(65px);
}

.ambient-one {
  inset-block-start: 180px;
  inset-inline-start: -120px;
  width: 520px;
  height: 280px;
  background: rgba(255, 255, 255, 0.38);
}

.ambient-two {
  inset-block-start: 520px;
  inset-inline-end: -90px;
  width: 430px;
  height: 240px;
  background: rgba(255, 242, 225, 0.32);
}

.site-header {
  padding-block: 18px;
  background: transparent;
}

.site-header .brand img {
  width: 168px;
}

.site-header.is-scrolled {
  border-color: rgba(23, 24, 25, 0.08);
  background: rgba(238, 245, 247, 0.76);
  backdrop-filter: blur(20px);
}

.hero {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-block: 64px 82px;
}

.hero-copy {
  width: min(896px, 100%);
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero h1 {
  max-width: none;
  margin-block: 24px 28px;
  font-size: clamp(64px, 7vw, 92px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 680px;
  margin-inline: auto;
  color: #475569;
  font-size: 19px;
}

.hero-arabic {
  margin-inline: auto;
}

.hero-actions,
.hero-points {
  justify-content: center;
}

.hero-visual {
  width: 100%;
  max-width: 1280px;
  perspective: none;
}

.dashboard-preview {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.68);
  border-radius: 32px 32px 0 0;
  background: #fdfbf9;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15), 0 30px 60px -30px rgba(0, 0, 0, 0.1);
  transform: none;
}

.floating-stat {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.method-strip {
  border-block-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
}

.stats-section {
  margin-block: 72px 34px;
  border-color: rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 60px rgba(35, 59, 74, 0.08);
  backdrop-filter: blur(16px);
}

.stats-section article {
  background: rgba(255, 255, 255, 0.72);
}

.section {
  padding-block: 96px;
}

.feature-card {
  border-color: rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(43, 63, 75, 0.09);
  backdrop-filter: blur(14px);
}

.feature-card-large,
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  background: rgba(255, 255, 255, 0.76);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -45% 48% 58% -25%;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 70%);
  transform: rotate(-12deg);
}

.feature-card-wide {
  background: rgba(242, 235, 229, 0.83);
}

/* Revision: faithful payment-method content with clear monochrome icons */

.checkout-page-v2 {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(166, 203, 232, 0.18), rgba(191, 217, 239, 0.42), rgba(234, 227, 214, 0.9)),
    url("../images/sky-background.png") center / cover fixed no-repeat;
}

.checkout-page-v2 .checkout-topbar {
  position: relative;
  z-index: 5;
  background: transparent;
}

.checkout-page-v2 .checkout-shell {
  width: min(1040px, calc(100% - 96px));
}

.checkout-page-v2 .topbar-inner {
  min-height: 62px;
}

.checkout-page-v2 .checkout-brand img {
  width: 156px;
}

.checkout-redesign {
  display: block;
  overflow: hidden;
  min-height: 0;
  margin-block: 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(253, 251, 249, 0.9);
  box-shadow: 0 34px 90px rgba(41, 60, 73, 0.16);
  backdrop-filter: blur(24px);
}

.payment-panel-v2 {
  padding: 42px;
  background: transparent;
}

.checkout-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-block-end: 30px;
  border-block-end: 1px solid rgba(23, 24, 25, 0.1);
}

.checkout-title-row h1 {
  margin-block-start: 8px;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
}

.checkout-amount-pill {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  text-align: end;
}

.checkout-amount-pill span {
  color: #7b8287;
  font-size: 10px;
}

.checkout-amount-pill strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.checkout-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  align-items: start;
  gap: 30px;
  margin-block-start: 30px;
}

.method-area {
  min-width: 0;
}

.selector-label,
.summary-heading {
  color: #4f575d;
  font-size: 12px;
  font-weight: 600;
}

.payment-tabs-v2 {
  margin-block: 14px 20px;
  padding: 5px;
  border-color: rgba(23, 24, 25, 0.09);
  background: rgba(239, 237, 232, 0.82);
}

.payment-tabs-v2 button {
  min-height: 50px;
  font-size: 11px;
}

.payment-tabs-v2 button[aria-selected="true"] {
  color: #111;
  background: #fff;
  box-shadow: 0 6px 18px rgba(25, 31, 35, 0.09);
}

.method-panel-v2 {
  gap: 12px;
}

.method-panel-v2 .method-card {
  min-height: 92px;
  padding: 14px;
  border-color: rgba(23, 24, 25, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.method-panel-v2 .method-card:hover {
  background: #fff;
}

.method-panel-v2 .method-card.is-selected {
  border-color: #111;
  background: #f0f8ff;
  box-shadow: 0 0 0 1px #111;
}

.method-panel-v2 .method-icon {
  border: 1px solid rgba(23, 24, 25, 0.08);
  background: #f6f4f0;
}

.method-panel-v2 .method-copy strong {
  overflow: visible;
  color: #171819;
  font-size: 12px;
  text-overflow: clip;
  white-space: normal;
}

.method-panel-v2 .method-copy small {
  font-size: 9px;
}

.method-panel-v2 .method-card.is-selected .method-mark::after {
  background: #fff;
}

#panel-installments .method-card {
  min-height: 154px;
  grid-template-columns: minmax(0, 1fr) 18px;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 12px;
}

.provider-logo-box {
  display: grid;
  width: 100%;
  height: 62px;
  grid-column: 1 / -1;
  align-items: center;
  justify-items: start;
  padding: 7px 12px;
  border: 1px solid rgba(23, 24, 25, 0.08);
  border-radius: 11px;
  background: #f7f5f1;
}

.provider-logo {
  display: block;
  width: auto;
  max-width: 168px;
  height: 46px;
  object-fit: contain;
}

#panel-installments .method-copy {
  grid-column: 1;
  grid-row: 2;
}

#panel-installments .method-mark {
  grid-column: 2;
  grid-row: 2;
}

.checkout-summary-card {
  position: sticky;
  inset-block-start: 24px;
  padding: 24px;
  border: 1px solid rgba(23, 24, 25, 0.09);
  border-radius: 20px;
  background: rgba(242, 235, 229, 0.74);
}

.summary-list-v2 {
  display: grid;
  gap: 12px;
  margin-block-start: 20px;
}

.summary-list-v2 > div {
  color: #6f777d;
  font-size: 11px;
}

.summary-list-v2 dd {
  color: #303539;
}

.summary-list-v2 .summary-total {
  margin-block-start: 6px;
  padding-block-start: 16px;
  border-block-start-color: rgba(23, 24, 25, 0.12);
  color: #171819;
  font-size: 13px;
}

.summary-list-v2 .summary-total dd {
  color: #171819;
  font-size: 17px;
}

.selected-method-line {
  display: grid;
  gap: 3px;
  margin-block-start: 24px;
  padding: 12px;
  border: 1px solid rgba(23, 24, 25, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.selected-method-line span {
  color: #858c91;
  font-size: 9px;
}

.selected-method-line strong {
  font-size: 11px;
}

.payment-panel-v2 .pay-button {
  margin-block-start: 14px;
}

.payment-panel-v2 .powered-by {
  margin-block-start: 20px;
}

.payment-panel-v2 .powered-by img {
  width: 86px;
  filter: none;
  opacity: 1;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 48px, 1280px);
  }

  .hero {
    display: flex;
    gap: 76px;
  }

  .dashboard-preview {
    transform: none;
  }

  .checkout-page-v2 .checkout-shell {
    width: min(100% - 40px, 1040px);
  }

  .checkout-content-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1280px);
  }

  .hero {
    gap: 56px;
    padding-block: 42px 70px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .section {
    padding-block: 82px;
  }

  .checkout-page-v2 .checkout-shell,
  .checkout-redesign {
    width: min(100% - 20px, 1040px);
  }

  .checkout-redesign {
    border-radius: 24px;
  }

  .payment-panel-v2 {
    padding: 28px 20px 22px;
  }

  .checkout-title-row {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .checkout-title-row h1 {
    font-size: 42px;
  }

  .checkout-amount-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
  }

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

  .payment-tabs-v2 button {
    min-height: 52px;
  }

  .method-panel-v2 {
    grid-template-columns: 1fr;
  }

  .method-panel-v2 .method-card {
    min-height: 82px;
  }

  #panel-installments .method-card {
    min-height: 148px;
    grid-template-columns: minmax(0, 1fr) 18px;
  }

  .provider-logo-box {
    width: 100%;
    height: 58px;
  }

  .provider-logo {
    max-width: 156px;
    height: 42px;
  }

  .checkout-summary-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .checkout-page-v2 .checkout-brand img {
    width: 126px;
  }

  .payment-tabs-v2 button {
    font-size: 10px;
  }
}

/* Restored EasyKash content sections */

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

.integration-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(43, 63, 75, 0.08);
  backdrop-filter: blur(14px);
}

.integration-code {
  display: grid;
  width: 58px;
  height: 58px;
  margin-block-end: 54px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 16px;
  color: #111;
  background: #f6f4f0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.integration-card h3,
.marketplace-preview h3,
.egypt-payment-card h3,
.operations-card h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.integration-card > p,
.egypt-payment-card > p,
.operations-card > p {
  margin-block-start: 12px;
  color: #687077;
  font-size: 14px;
}

.integration-card .inline-link {
  margin-block-start: auto;
  font-size: 12px;
}

.marketplace-section {
  overflow: hidden;
  background: rgba(242, 235, 229, 0.78);
}

.marketplace-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 76px;
}

.marketplace-copy h2 {
  max-width: 600px;
  margin-block: 16px 20px;
  font-size: clamp(44px, 5vw, 68px);
}

.marketplace-copy > p {
  max-width: 600px;
  color: #646c72;
  font-size: 17px;
}

.marketplace-benefits {
  display: grid;
  gap: 12px;
  margin-block: 28px 34px;
}

.marketplace-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #42484d;
  font-size: 13px;
}

.marketplace-benefits li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.marketplace-preview {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: rgba(253, 251, 249, 0.84);
  box-shadow: 0 30px 70px rgba(45, 55, 62, 0.13);
  backdrop-filter: blur(16px);
}

.marketplace-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block-end: 20px;
  border-block-end: 1px solid rgba(23, 24, 25, 0.1);
}

.marketplace-preview-header span {
  color: #7d8489;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketplace-preview-header strong {
  font-family: var(--font-display);
}

.marketplace-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-block: 22px;
}

.marketplace-product-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(23, 24, 25, 0.09);
  border-radius: 20px;
  background: linear-gradient(150deg, #e7f3fb, #fff 70%);
}

.marketplace-product-grid article:nth-child(2) {
  background: linear-gradient(150deg, #eee7db, #fff 70%);
}

.marketplace-product-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-block-end: 62px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.marketplace-product-grid p {
  margin-block: 6px 14px;
  color: #858c91;
  font-size: 11px;
}

.marketplace-product-grid strong {
  font-family: var(--font-display);
  font-size: 18px;
}

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

.egypt-payment-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(43, 63, 75, 0.07);
  backdrop-filter: blur(14px);
}

.egypt-payment-card-wide {
  display: grid;
  min-height: 210px;
  grid-column: 1 / -1;
  grid-template-columns: 110px minmax(0, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 28px;
}

.payment-method-index,
.operations-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-block-end: 70px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.egypt-payment-card-wide .payment-method-index {
  margin: 0;
}

.egypt-payment-card-wide > p {
  margin: 0;
  font-size: 16px;
}

.operations-section {
  background: #f6f4f0;
}

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

.operations-card {
  min-height: 320px;
  padding: 36px;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 30px;
  background: #fdfbf9;
}

.operations-card:nth-child(2) {
  background: #18191a;
  color: #fff;
}

.operations-card:nth-child(2) > p {
  color: rgba(255, 255, 255, 0.58);
}

.operations-card:nth-child(2) .operations-number {
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #111;
}

@media (max-width: 1080px) {
  .header-actions {
    gap: 12px;
  }

  .primary-navigation {
    gap: 16px;
    font-size: 13px;
  }

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

  .integration-card {
    min-height: 300px;
  }

  .marketplace-layout {
    gap: 42px;
  }
}

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

  .marketplace-copy {
    max-width: 680px;
  }

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

@media (max-width: 700px) {
  .integration-grid,
  .egypt-payment-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .integration-card {
    min-height: 280px;
    padding: 28px;
  }

  .marketplace-layout {
    gap: 48px;
  }

  .marketplace-product-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-product-grid article {
    min-height: 210px;
  }

  .egypt-payment-card-wide {
    display: block;
    grid-column: auto;
  }

  .egypt-payment-card-wide .payment-method-index {
    margin-block-end: 70px;
  }

  .operations-card {
    min-height: 290px;
    padding: 30px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* Mobile payment-method strip */

@media (max-width: 700px) {
  .method-strip {
    border-block-color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(20px);
  }

  .method-strip .shell {
    min-height: 0;
    align-items: stretch;
    gap: 20px;
    padding-block: 30px 34px;
  }

  .method-strip p {
    color: #171819;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .method-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 0;
  }

  .method-list > span {
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 13px;
    border: 1px solid rgba(23, 24, 25, 0.1);
    border-radius: 15px;
    color: #222629;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 9px 24px rgba(34, 52, 63, 0.06);
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .method-list > span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .method-symbol {
    flex: 0 0 24px;
  }
}

/* Keep feature visuals in normal flow so they never cover copy */

.feature-card:not(.feature-card-wide) {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:not(.feature-card-wide) .link-builder,
.feature-card:not(.feature-card-wide) .mini-chart,
.feature-card:not(.feature-card-wide) .monochrome-marks {
  position: relative;
  inset: auto;
  width: 100%;
  margin-block-start: auto;
}

.feature-card:not(.feature-card-wide) .link-builder {
  margin-block-start: 54px;
}

.feature-card:not(.feature-card-wide) .mini-chart {
  height: 132px;
  margin-block-start: 46px;
  padding-block-start: 22px;
}

.feature-card:not(.feature-card-wide) .monochrome-marks {
  margin-block-start: 50px;
}

.quote-stack {
  display: grid;
  min-height: 0;
  gap: 18px;
}

.quote-card,
.quote-card-primary,
.quote-card-ar {
  position: relative;
  inset: auto;
  width: 100%;
  transform: none;
}

@media (max-width: 700px) {
  .feature-card:not(.feature-card-wide) {
    min-height: 480px;
  }

  .feature-card:not(.feature-card-wide) .link-builder,
  .feature-card:not(.feature-card-wide) .mini-chart,
  .feature-card:not(.feature-card-wide) .monochrome-marks {
    inset: auto;
  }

  .feature-card:not(.feature-card-wide) .link-builder {
    margin-block-start: 44px;
  }

  .feature-card:not(.feature-card-wide) .mini-chart {
    height: 120px;
    margin-block-start: 38px;
  }

  .feature-card:not(.feature-card-wide) .monochrome-marks {
    margin-block-start: 42px;
  }

  .quote-stack {
    min-height: 0;
    gap: 14px;
  }

  .quote-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .link-builder {
    align-items: stretch;
    flex-direction: column;
  }

  .link-builder button {
    width: 100%;
  }

  .monochrome-marks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Expanded long-form homepage content */

.about-platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 76px;
}

.about-platform-copy h2,
.dashboard-reports-copy h2,
.faq-heading h2 {
  margin-block: 16px 20px;
  font-size: clamp(44px, 5vw, 68px);
}

.about-platform-copy > p:not(.eyebrow),
.dashboard-reports-copy > p,
.faq-heading > p {
  color: #646c72;
  font-size: 17px;
}

.about-platform-copy > p + p {
  margin-block-start: 14px;
}

.about-platform-copy .inline-link {
  margin-block-start: 30px;
}

.about-service-board {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(23, 24, 25, 0.08);
  box-shadow: 0 24px 60px rgba(41, 59, 69, 0.1);
  backdrop-filter: blur(16px);
}

.about-service-board article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 24px;
  background: rgba(253, 251, 249, 0.85);
}

.about-service-board article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 11px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
}

.about-service-board article div {
  display: grid;
  gap: 7px;
}

.about-service-board strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.about-service-board p {
  color: #747c82;
  font-size: 12px;
}

.merchant-use-cases {
  padding-block-start: 70px;
}

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

.use-case-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(43, 63, 75, 0.08);
  backdrop-filter: blur(14px);
}

.use-case-card:nth-child(2),
.use-case-card:nth-child(3) {
  background: rgba(242, 235, 229, 0.8);
}

.use-case-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-block-end: 70px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 15px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.use-case-card h3 {
  max-width: 430px;
  margin-block-end: 12px;
  font-size: 28px;
}

.use-case-card > p:not(.card-kicker) {
  max-width: 540px;
  color: #687077;
}

.use-case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: 26px;
}

.use-case-card li {
  padding: 7px 10px;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 600;
}

.method-provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-block-start: 24px;
}

.method-provider-list span {
  padding: 7px 9px;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 9px;
  color: #202326;
  background: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.method-provider-list-wide {
  justify-content: flex-start;
  margin: 0;
}

.method-provider-list-wide span {
  min-width: 82px;
  padding: 12px 13px;
  color: #111;
  background: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  text-align: center;
}

.dashboard-reports-section {
  overflow: hidden;
  background: rgba(242, 235, 229, 0.82);
}

.dashboard-reports-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  align-items: center;
  gap: 72px;
}

.report-points {
  display: grid;
  gap: 18px;
  margin-block-start: 34px;
}

.report-points li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
}

.report-points li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
}

.report-points li div {
  display: grid;
  gap: 3px;
}

.report-points strong {
  font-size: 13px;
}

.report-points p {
  color: #777f84;
  font-size: 12px;
}

.reports-window {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(253, 251, 249, 0.9);
  box-shadow: 0 34px 80px rgba(43, 54, 61, 0.14);
  backdrop-filter: blur(18px);
}

.reports-window-top,
.reports-chart-heading,
.reports-table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reports-window-top {
  padding-block-end: 18px;
  border-block-end: 1px solid rgba(23, 24, 25, 0.09);
}

.reports-window-top strong {
  font-family: var(--font-display);
}

.reports-window-top span,
.reports-chart-heading span,
.reports-table-heading span {
  color: #8b9297;
  font-size: 9px;
}

.reports-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-block: 18px 10px;
}

.reports-kpis article {
  display: grid;
  min-height: 104px;
  align-content: space-between;
  padding: 14px;
  border: 1px solid rgba(23, 24, 25, 0.08);
  border-radius: 14px;
  background: #fff;
}

.reports-kpis article:first-child {
  color: #fff;
  background: #18191a;
}

.reports-kpis span,
.reports-kpis em {
  color: #81888d;
  font-size: 8px;
  font-style: normal;
}

.reports-kpis article:first-child span,
.reports-kpis article:first-child em {
  color: rgba(255, 255, 255, 0.56);
}

.reports-kpis strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.reports-kpis small {
  font-family: var(--font-en);
  font-size: 7px;
}

.reports-chart-card,
.reports-table {
  padding: 16px;
  border: 1px solid rgba(23, 24, 25, 0.08);
  border-radius: 16px;
  background: #fff;
}

.reports-chart {
  display: flex;
  height: 150px;
  align-items: end;
  gap: 9px;
  padding-block-start: 22px;
}

.reports-chart i {
  width: 100%;
  height: var(--report-bar);
  border-radius: 6px 6px 2px 2px;
  background: #d5e1e7;
}

.reports-chart i:nth-child(4),
.reports-chart i:nth-child(6),
.reports-chart i:nth-child(8) {
  background: var(--accent);
}

.reports-table {
  display: grid;
  gap: 10px;
  margin-block-start: 10px;
}

.reports-table-heading {
  padding-block-end: 7px;
}

.reports-table article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto 52px;
  align-items: center;
  gap: 9px;
  padding-block-start: 10px;
  border-block-start: 1px solid rgba(23, 24, 25, 0.07);
}

.report-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #e8f2f7;
  font-size: 7px;
  font-weight: 700;
}

.reports-table article p {
  display: grid;
}

.reports-table article strong,
.reports-table article b {
  font-size: 9px;
}

.reports-table article small {
  color: #979da1;
  font-size: 7px;
}

.reports-table article em {
  padding: 4px 6px;
  border-radius: 999px;
  color: #166841;
  background: #dff5e9;
  font-size: 7px;
  font-style: normal;
  text-align: center;
}

.reports-table article .status-pending {
  color: #785d13;
  background: #f8efce;
}

.support-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-block-end: 22px;
}

.support-service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(43, 63, 75, 0.07);
  backdrop-filter: blur(14px);
}

.support-service-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-block-end: 54px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.11);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
}

.support-service-card h3 {
  margin-block-end: 10px;
  font-size: 23px;
}

.support-service-card p {
  color: #70787d;
  font-size: 13px;
}

.faq-section {
  border-block: 1px solid rgba(23, 24, 25, 0.08);
  background: #f6f4f0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  inset-block-start: 120px;
}

.faq-heading .inline-link {
  margin-block-start: 30px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 18px;
  background: #fdfbf9;
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid rgba(23, 24, 25, 0.12);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 16px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  padding: 0 22px 22px;
  color: #6f777c;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .about-platform-layout,
  .dashboard-reports-layout {
    gap: 44px;
  }

  .dashboard-reports-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-reports-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .about-platform-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-platform-copy,
  .faq-heading {
    max-width: 720px;
  }

  .faq-heading {
    position: static;
  }

  .support-service-grid {
    grid-template-columns: 1fr;
  }

  .support-service-card {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .about-service-board,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .about-service-board article {
    min-height: 132px;
    padding: 20px;
  }

  .use-case-card {
    min-height: 360px;
    padding: 28px;
  }

  .use-case-number {
    margin-block-end: 52px;
  }

  .egypt-payment-card-wide {
    display: block;
  }

  .method-provider-list-wide {
    margin-block-start: 24px;
  }

  .reports-window {
    padding: 16px;
    border-radius: 24px;
  }

  .reports-kpis {
    grid-template-columns: 1fr;
  }

  .reports-kpis article {
    min-height: 92px;
  }

  .reports-table article {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .reports-table article em {
    display: none;
  }

  .support-service-card {
    min-height: 230px;
    padding: 26px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-list summary {
    min-height: 70px;
    padding: 18px;
    font-size: 15px;
  }

  .faq-list details > p {
    padding: 0 18px 18px;
  }
}
