:root {
  --blue: #1268e8;
  --blue-dark: #073f91;
  --blue-deep: #052b64;
  --blue-soft: #eaf3ff;
  --ink: #0b1423;
  --muted: #687486;
  --line: #dfe6ef;
  --surface: #f5f8fc;
  --white: #fff;
  --shadow: 0 20px 60px rgba(15, 54, 104, .11);
  --panel-radius: 12px;
  --panel-radius-lg: 14px;
  --panel-line: rgba(11, 20, 35, .1);
  --container: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Alexandria", sans-serif;
}

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

img {
  display: block;
}

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

button,
input,
select,
textarea {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  right: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(11, 20, 35, .08);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  color: var(--white);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .2);
  backdrop-filter: none;
}

.nav-shell {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  width: 178px;
  height: 52px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 178px;
  height: 52px;
  object-fit: contain;
}

.home-page .site-header .brand {
  padding: 0;
  background: transparent;
}

.home-page .site-header .brand img,
.site-footer .brand img {
  filter: brightness(0) invert(1);
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: "Almarai", "Alexandria", sans-serif;
  font-size: .82rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  opacity: .78;
  transition: opacity .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  width: 18px;
  height: 2px;
  background: var(--blue);
}

.home-page .main-nav a.active::after {
  background: var(--white);
}

.header-actions {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 12px;
}

.btn {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover {
  background: #0759ce;
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-outline:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-white,
.btn-dark {
  color: var(--ink);
  background: var(--white);
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-button span {
  width: 17px;
  height: 1.5px;
  display: block;
  margin: 3px auto;
  background: var(--ink);
}

/* Home hero */
.hero {
  position: relative;
  padding: 0;
  background: var(--white);
}

.hero-grid {
  position: relative;
  width: 100%;
  height: min(820px, calc(100svh - 76px));
  min-height: 620px;
  overflow: hidden;
  border-radius: 0;
}

.hero-art,
.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(3, 13, 29, .92) 0%, rgba(4, 17, 38, .68) 35%, rgba(4, 17, 38, .12) 72%),
    linear-gradient(180deg, rgba(5, 16, 32, .5) 0%, rgba(5, 16, 32, .12) 25%, rgba(5, 16, 32, .15) 58%, rgba(5, 16, 32, .38));
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 52%;
  bottom: auto;
  right: clamp(32px, 6vw, 92px);
  left: auto;
  width: min(610px, 47%);
  color: var(--white);
  text-align: right;
  transform: translateY(-50%);
}

.kicker {
  margin-bottom: 17px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.home-page .about-grid .kicker {
  font-family: "Almarai", "Alexandria", sans-serif;
  font-size: 1rem;
}

.hero .kicker {
  color: #a9d2ff;
}

.display {
  margin: 0 0 4px;
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.display em,
.page-title em {
  color: #87c1ff;
  font-style: normal;
}

.lead {
  max-width: 610px;
  margin: 15px 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.95;
}

.hero-statement {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  direction: ltr;
}

.home-page .store-actions {
  direction: rtl;
}

.store-btn {
  width: 174px;
  min-height: 56px;
  padding: 7px 15px;
  border-radius: 12px;
  direction: ltr;
}

.store-btn.apple {
  color: var(--white);
  background: #080808;
}

.store-icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 auto;
}

.store-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}

.store-copy small {
  margin-bottom: 4px;
  font-size: .58rem;
  font-weight: 600;
  opacity: .74;
}

.store-copy strong {
  font-size: .94rem;
  white-space: nowrap;
}

.trust-strip {
  padding: 38px 0 8px;
  background: var(--white);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  border: 1px solid var(--line);
}

.trust-intro,
.trust-stat {
  min-height: 112px;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-intro {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.trust-stat {
  border-right: 1px solid var(--line);
}

.trust-stat strong {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: .86rem;
}

.trust-stat span {
  color: var(--muted);
  font-size: .67rem;
  line-height: 1.7;
}

/* Content */
.section {
  position: relative;
  padding: 110px 0;
}

.section-soft {
  background: var(--surface);
}

.section-dark {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, .72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

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

.section-heading.center .section-copy {
  margin-inline: auto;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.045em;
}

.section-copy {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 2;
}

.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(50px, 7vw, 105px);
}

.photo-panel,
.editorial-photo {
  position: relative;
  min-height: 530px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--panel-line);
  border-radius: var(--panel-radius-lg);
}

.photo-panel img,
.editorial-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5, 19, 40, .62));
}

.photo-panel figcaption,
.editorial-photo-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
}

.check-list {
  margin-top: 28px;
}

.check-item {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.check-item:last-child {
  border-bottom: 1px solid var(--line);
}

.check-item i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: .66rem;
  font-style: normal;
  font-weight: 800;
}

.check-item strong,
.check-item span {
  display: block;
}

.check-item strong {
  margin-bottom: 6px;
  font-size: .82rem;
}

.check-item span {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.7;
}

.journey-tabs {
  width: fit-content;
  margin: 0 auto 48px;
  padding: 5px;
  display: flex;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.journey-tab {
  min-width: 150px;
  padding: 12px 22px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
}

.journey-tab.active {
  color: var(--white);
  background: var(--blue);
}

.journey-panel {
  display: none;
}

.journey-panel.active {
  display: block;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: #cfd9e6;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}

.timeline-icon,
.card-icon,
.guarantee-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.timeline-icon svg,
.card-icon svg,
.guarantee-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: .9rem;
}

.timeline-step p {
  max-width: 270px;
  margin: auto;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.9;
}

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

.audience-card {
  min-height: 430px;
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fbff, #ebf3fb);
  border: 1px solid var(--panel-line);
  border-radius: var(--panel-radius-lg);
}

.audience-card.merchant {
  color: var(--white);
  background: linear-gradient(180deg, #0e63e0, #083a8a);
}

.audience-tag,
.shipping-label {
  padding: 8px 12px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(18, 104, 232, .18);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 800;
}

.audience-card h3 {
  margin: auto 0 18px;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.audience-card p {
  max-width: 500px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.9;
}

.audience-card.merchant p {
  color: rgba(255, 255, 255, .74);
}

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

.lux-card {
  min-height: 290px;
  padding: 32px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f7fafe);
  border: 1px solid var(--panel-line);
  border-radius: var(--panel-radius);
  box-shadow: none;
}

.lux-card.blue {
  color: var(--white);
  background: linear-gradient(180deg, #0e63e0, #083a8a);
  border-color: rgba(8, 58, 138, .2);
}

.lux-card .card-icon {
  margin: 0 0 52px;
}

.lux-card.blue .card-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .2);
}

.lux-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.lux-card p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.8;
}

.lux-card.blue p {
  color: rgba(255, 255, 255, .75);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: #081f47;
  border-color: rgba(255, 255, 255, .08);
}

.feature-card .card-media {
  position: absolute;
  inset: 0;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: #081f47;
  isolation: isolate;
}

.feature-card.blue .card-media {
  background: #062252;
}

.feature-card .card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(123, 196, 255, .24), transparent 34%),
    linear-gradient(180deg, rgba(4, 15, 35, .1) 0%, rgba(4, 15, 35, .36) 46%, rgba(4, 15, 35, .92) 100%);
  z-index: 2;
}

.feature-card .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 15, 35, .96) 0%, rgba(4, 15, 35, .72) 28%, rgba(4, 15, 35, .2) 62%, rgba(4, 15, 35, .04) 100%);
  z-index: 2;
}

.feature-card .card-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.03) brightness(.84);
}

.feature-card.blue .card-media img {
  filter: saturate(1.02) brightness(.82);
}

.feature-card.soft-blur .card-media img {
  transform: scale(1.07);
  filter: blur(1.2px) saturate(1.04) brightness(.8);
}

.feature-card.blue.soft-blur .card-media img {
  filter: blur(1.6px) saturate(1.02) brightness(.78);
}

.feature-card > *:not(.card-media) {
  position: relative;
  z-index: 3;
}

.feature-card h3,
.feature-card p {
  color: var(--white);
}

.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  max-width: 28ch;
  color: rgba(255, 255, 255, .84);
}

.feature-card .card-number {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .42);
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  color: var(--white);
  background: linear-gradient(115deg, var(--blue-deep), var(--blue));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--panel-radius-lg);
  box-shadow: none;
}

.download-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .05));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(1.9rem, 3.3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.04em;
}

.download-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  line-height: 1.9;
}

.download-panel .store-actions {
  position: relative;
  z-index: 1;
}

/* Inner page heroes */
.page-hero {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  margin: 0;
  padding: 76px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--blue-deep);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 42, .18), rgba(4, 18, 42, .88)),
    linear-gradient(180deg, rgba(4, 18, 42, .14), rgba(4, 18, 42, .32));
}

.about-page .page-hero {
  background-image: url("/assets/images/about-hero-dashboard-v1.png");
  background-position: center 30%;
}

.how-page .page-hero {
  background-image: url("/assets/images/how-hero-dashboard-v1.png");
  background-position: center 30%;
}

.benefits-page .page-hero {
  background-image: url("/assets/images/benefits-hero-dashboard-v1.png");
  background-position: center 30%;
}

.shipping-page .page-hero {
  background-image: url("/assets/images/shipping-hero-dashboard-v1.png");
  background-position: center 28%;
}

.contact-page .page-hero {
  background-image: url("/assets/images/contact-hero-dashboard-v1.png");
  background-position: center 26%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
}

.breadcrumb {
  margin-bottom: 20px;
  color: #a8d2ff;
  font-size: .67rem;
}

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

.breadcrumb a:hover {
  color: var(--white);
}

.page-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.15rem, 3.8vw, 4.15rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.055em;
}

.page-summary {
  margin: 0;
  padding-right: 20px;
  color: rgba(255, 255, 255, .76);
  border-right: 2px solid #76b6ff;
  font-size: .78rem;
  line-height: 2;
}

/* Value and benefits */
.value-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

.value-main,
.value-small {
  padding: 40px;
  border-radius: var(--panel-radius);
}

.value-main {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--blue);
}

.value-main .big-number {
  margin-bottom: auto;
  color: rgba(255, 255, 255, .25);
  font-size: 6rem;
  font-weight: 800;
}

.value-main h2,
.value-main h3,
.value-small h3 {
  margin: 0 0 12px;
}

.value-main p,
.value-small p {
  margin: 0;
  color: inherit;
  opacity: .76;
  font-size: .74rem;
  line-height: 1.9;
}

.value-stack {
  display: grid;
  gap: 18px;
}

.value-small {
  min-height: 206px;
  background: var(--surface);
  border: 1px solid var(--panel-line);
}

.value-feature {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.value-feature .value-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  border-radius: inherit;
  border: 0;
  background: #081f47;
  isolation: isolate;
}

.value-main.value-feature {
  justify-content: flex-end;
}

.value-main.value-feature .value-media {
  height: auto;
}

.value-small.value-feature .value-media {
  height: auto;
}

.value-feature .value-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(123, 196, 255, .24), transparent 34%),
    linear-gradient(180deg, rgba(4, 15, 35, .1) 0%, rgba(4, 15, 35, .38) 46%, rgba(4, 15, 35, .94) 100%);
  z-index: 2;
}

.value-feature .value-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 15, 35, .96) 0%, rgba(4, 15, 35, .7) 30%, rgba(4, 15, 35, .18) 62%, rgba(4, 15, 35, .04) 100%);
  z-index: 2;
}

.value-feature .value-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: saturate(1.03) brightness(.82);
}

.value-feature > *:not(.value-media) {
  position: relative;
  z-index: 3;
}

.value-feature h3,
.value-feature b,
.value-feature p {
  color: var(--white);
}

.value-main.value-feature .big-number {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .42);
  font-size: 4rem;
}

.value-small.value-feature b {
  display: block;
  margin: 0 0 10px;
  font-size: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid .lux-card {
  border-color: var(--line);
}

.about-principles .lux-card.blue {
  background: linear-gradient(145deg, #0f5bd1, #0a4aaa);
  border-color: rgba(10, 74, 170, .22);
  box-shadow: 0 22px 50px rgba(10, 74, 170, .14);
}

.about-principles .lux-card.blue h3,
.about-principles .lux-card.blue p {
  color: var(--white);
}

.about-principles .lux-card.blue p {
  opacity: .82;
}

.about-principles .lux-card.blue .card-number {
  color: rgba(255, 255, 255, .28);
}

.client-benefits .lux-card.blue {
  background: linear-gradient(145deg, #0f5bd1, #0a4aaa);
  border-color: rgba(10, 74, 170, .22);
  box-shadow: 0 22px 50px rgba(10, 74, 170, .14);
}

.client-benefits .lux-card.blue h3,
.client-benefits .lux-card.blue p {
  color: var(--white);
}

.client-benefits .lux-card.blue p {
  opacity: .82;
}

.client-benefits .lux-card.blue .card-number {
  color: rgba(255, 255, 255, .28);
}

.section-dark .lux-card:not(.feature-card) {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.section-dark .lux-card:not(.feature-card) p {
  color: rgba(255, 255, 255, .76);
}

.section-dark .lux-card:not(.feature-card) .card-number {
  color: rgba(255, 255, 255, .26);
}

.section-dark .lux-card:not(.feature-card) .card-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.section-dark .lux-card.blue:not(.feature-card) {
  background: rgba(255, 255, 255, .14);
}

.card-number {
  margin-bottom: 60px;
  color: #c4dbfa;
  font-size: 3.4rem;
  font-weight: 800;
}

/* Shipping */
.shipping-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--panel-line);
  border-radius: var(--panel-radius-lg);
}

.shipping-column {
  padding: clamp(32px, 5vw, 62px);
}

.shipping-column + .shipping-column {
  border-right: 1px solid var(--line);
}

.shipping-column h2 {
  margin: 24px 0 30px;
  font-size: 1.6rem;
}

.shipping-list {
  display: grid;
  gap: 24px;
}

.shipping-point {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.shipping-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
}

.shipping-point p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.8;
}

.editorial-photo {
  min-height: 600px;
}

.editorial-photo::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(4, 23, 54, .78));
}

.payment-card {
  min-height: 330px;
  padding: 38px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--panel-line);
  border-radius: var(--panel-radius);
}

.payment-visual {
  min-height: 115px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid rgba(11, 20, 35, .06);
  border-radius: 10px;
}

.cash-note {
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 800;
}

.payment-brands {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.payment-brand {
  min-height: 58px;
  padding: 8px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.payment-brand img {
  max-width: 74px;
  max-height: 34px;
}

.payment-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.payment-card p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.9;
}

.guarantee {
  padding: 42px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 28px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid #cfe3ff;
  border-radius: var(--panel-radius);
}

.guarantee-icon {
  margin: 0;
}

.guarantee h3 {
  margin: 0 0 10px;
}

.guarantee p {
  margin: 0;
  font-size: .74rem;
  line-height: 1.9;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.contact-info,
.contact-form {
  padding: clamp(32px, 5vw, 56px);
  border-radius: 20px;
}

.contact-info {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
}

.contact-info h2,
.contact-form h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.contact-info p {
  color: rgba(255, 255, 255, .73);
  font-size: .73rem;
  line-height: 1.9;
}

.contact-link {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  font-size: .72rem;
}

.contact-link i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .13);
  border-radius: 50%;
  font-style: normal;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: .68rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  font-size: .74rem;
}

.field textarea {
  min-height: 125px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 104, 232, .1);
}

.form-note {
  color: var(--muted);
  font-size: .64rem;
}

.faq-list {
  max-width: 900px;
  margin: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: right;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
}

.faq-question i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-style: normal;
  transition: transform .2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.9;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

/* Footer */
.site-footer {
  padding: 76px 0 26px;
  color: var(--white);
  background: var(--blue-deep);
}

.footer-grid {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.45fr .7fr .7fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
}

.footer-brand .brand {
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .7rem;
  line-height: 1.9;
}

.footer-col h3 {
  margin: 0 0 20px;
  font-size: .76rem;
}

.footer-col > a {
  width: fit-content;
  margin-bottom: 12px;
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: .69rem;
  transition: color .2s ease;
}

.footer-col > a:hover {
  color: var(--white);
}

.social-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  direction: ltr;
}

.social-row a,
.footer-col .social-row a {
  width: 38px;
  height: 38px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
}

.social-row a:hover {
  color: var(--blue);
  background: var(--white);
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .48);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .63rem;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 50%;
  bottom: 24px;
  min-width: min(380px, calc(100% - 32px));
  padding: 14px 20px;
  color: var(--white);
  text-align: center;
  background: var(--blue-deep);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: .72rem;
  opacity: 0;
  transform: translate(50%, 30px);
  pointer-events: none;
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform .65s ease;
}

.reveal.from-side {
  transform: translateY(22px);
}

.reveal.visible {
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 1240px);
  }

  .nav-shell {
    gap: 24px;
  }

  .main-nav {
    gap: 16px;
    font-size: .76rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr .7fr .7fr;
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header,
  .home-page .site-header {
    position: sticky;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .home-page .site-header .brand {
    padding: 0;
    background: transparent;
  }

  .home-page .site-header .brand img {
    filter: none;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 84px;
    right: 20px;
    left: 20px;
    padding: 18px;
    display: grid;
    gap: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.active::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    width: 100%;
    min-height: 620px;
  }

  .hero-copy {
    width: min(610px, 70%);
    right: 35px;
    left: auto;
  }

  .display { font-size: clamp(2.1rem, 5.8vw, 3.2rem); }

  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-intro {
    grid-column: 1 / -1;
    min-height: 80px;
    text-align: center;
  }

  .trust-stat:first-of-type {
    border-right: 0;
  }

  .about-grid,
  .split-grid,
  .page-hero-inner,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid .photo-panel {
    order: 2;
  }

  .page-hero-inner {
    gap: 30px;
  }

  .page-summary {
    max-width: 650px;
  }

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

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

  .contact-info {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1240px);
  }

  .site-header {
    height: 68px;
  }

  .brand,
  .brand img {
    width: 145px;
    height: 44px;
  }

  .header-actions .btn {
    display: none;
  }

  .main-nav {
    top: 76px;
    right: 14px;
    left: 14px;
  }

  .hero-grid {
    height: 72svh;
    min-height: 590px;
    max-height: 660px;
    border-radius: 0;
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-photo::after {
    background:
      linear-gradient(0deg, rgba(3, 13, 29, .94) 0%, rgba(4, 17, 38, .72) 53%, rgba(4, 17, 38, .08) 85%),
      linear-gradient(90deg, rgba(3, 13, 29, .3), transparent);
  }

  .hero-copy {
    right: 22px;
    left: 22px;
    width: auto;
  }

  .display {
    font-size: clamp(1.85rem, 8.2vw, 2.6rem);
  }

  .lead {
    margin: 11px 0 20px;
    font-size: .72rem;
    line-height: 1.8;
  }

  .hero-statement {
    margin-top: 12px;
    font-size: .82rem;
  }

  .store-actions {
    width: 100%;
    flex-wrap: nowrap;
  }

  .store-btn {
    width: 50%;
    min-width: 0;
    min-height: 52px;
    padding: 6px 10px;
  }

  .store-copy strong {
    font-size: .77rem;
  }

  .store-copy small {
    font-size: .5rem;
  }

  .store-icon {
    width: 22px;
    height: 22px;
  }

  .trust-strip {
    padding-top: 34px;
  }

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

  .trust-intro {
    text-align: right;
  }

  .trust-stat {
    min-height: 82px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .photo-panel,
  .editorial-photo {
    min-height: 380px;
    border-radius: var(--panel-radius);
  }

  .journey-tabs {
    width: 100%;
  }

  .journey-tab {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding: 0;
  }

  .audience-grid,
  .card-grid,
  .card-grid.two,
  .payment-grid,
  .shipping-split {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 390px;
  }

  .lux-card {
    min-height: 260px;
  }

  .feature-card .card-media {
    height: auto;
    margin-bottom: 0;
    border-radius: inherit;
  }

  .download-panel {
    padding: 34px 20px;
    gap: 28px;
  }

  .download-panel .store-actions {
    flex-wrap: wrap;
  }

  .download-panel .store-btn {
    width: 100%;
  }

  .page-hero {
    width: 100%;
    height: 460px;
    min-height: 460px;
    max-height: none;
    margin-top: 0;
    padding: 52px 0;
    border-radius: 0;
  }

  .page-hero::after {
    background: linear-gradient(0deg, rgba(4, 18, 42, .94), rgba(4, 18, 42, .18));
  }

  .page-title {
    font-size: clamp(1.9rem, 8.5vw, 2.85rem);
  }

  .value-main,
  .value-small,
  .shipping-column,
  .payment-card,
  .guarantee,
  .contact-info,
  .contact-form {
    padding: 28px 22px;
  }

  .shipping-column + .shipping-column {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

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

  .value-main.value-feature .value-media {
    height: 158px;
  }

  .value-small.value-feature .value-media {
    height: 136px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .footer-brand,
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

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