:root {
  --blue: #2447f5;
  --blue-dark: #102995;
  --blue-deep: #09134d;
  --blue-soft: #edf0ff;
  --yellow: #ffcb10;
  --ink: #0a1c51;
  --muted: #667085;
  --line: #e7e9f2;
  --cream: #f7f6f2;
  --white: #fff;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 44px;
  --shadow: 0 24px 70px rgba(31, 46, 122, 0.12);
  --font-display: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;
}

html[lang="ar"] {
  --font-display: "IBM Plex Sans Arabic", sans-serif;
  --font-body: "IBM Plex Sans Arabic", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
p {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.89);
  border-bottom: 1px solid rgba(21, 26, 58, 0.07);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1200px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  width: 125px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}
.brand-logo-ar {
  display: none;
}
html[lang="ar"] .brand-logo-en {
  display: none;
}
html[lang="ar"] .brand-logo-ar {
  display: block;
  width: 145px;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.desktop-nav a,
.text-link {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  transition: color 0.2s ease;
}
.desktop-nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.language-switch {
  min-width: 68px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(36, 71, 245, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  font: 600 12px var(--font-body);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.language-switch:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #fff;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--blue-soft);
  border-radius: 50%;
  padding: 0 11px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s ease;
}
.mobile-nav {
  display: none;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 32px rgba(36, 71, 245, 0.2);
}
.button-primary:hover {
  background: #1738de;
  box-shadow: 0 18px 38px rgba(36, 71, 245, 0.28);
}
.button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(255, 203, 16, 0.2);
}
.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
}

.hero {
  min-height: 790px;
  padding: 148px max(24px, calc((100vw - 1200px) / 2)) 70px;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 48%, #eef1ff 100%);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 90px;
  background: radial-gradient(
    circle,
    rgba(255, 203, 16, 0.28),
    rgba(255, 203, 16, 0) 68%
  );
}
.hero-glow-two {
  width: 430px;
  height: 430px;
  left: -250px;
  bottom: -160px;
  background: radial-gradient(
    circle,
    rgba(36, 71, 245, 0.18),
    rgba(36, 71, 245, 0) 70%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  margin-bottom: 24px;
}
.eyebrow-dot,
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 203, 16, 0.18);
}
.eyebrow-soft {
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--blue-soft);
}
.eyebrow-light {
  color: #fff;
  opacity: 0.75;
}
.hero h1 {
  font-size: clamp(55px, 5vw, 78px);
  margin-bottom: 26px;
  max-width: 680px;
}
.hero h1 span {
  color: var(--blue);
}
.phone-hero {
  width: 360px;
  height: 620px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}
.phone-hero img {
  object-fit: contain;
}
.shop-bubble-four {
  left: 0;
  bottom: 80px;
  transform: rotate(-5deg);
}
.hero-lede {
  font-size: 19px;
  max-width: 590px;
  margin-bottom: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-promises {
  display: flex;
  gap: 14px 26px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-promises span {
  color: #3a4055;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 9px;
  align-items: center;
}
.mini-benefit {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  background: url("/welcome/assets/benefits-3d.png") no-repeat;
  background-size: 300% 100%;
  filter: drop-shadow(0 6px 8px rgba(24, 43, 133, 0.12));
}
.mini-benefit-price {
  background-position: 0 center;
}
.mini-benefit-delivery {
  background-position: 50% center;
}
.mini-benefit-order {
  background-position: 100% center;
}
.hero-stage {
  height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
}
.phone-frame {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: drop-shadow(0 28px 36px rgba(7, 18, 83, 0.2));
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.screen-phone {
  overflow: hidden;
  padding: 5px;
  border-radius: 58px;
  background: linear-gradient(145deg, #6687ff, #132257 48%, #4774ff);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 28px 48px rgba(10, 23, 93, 0.28);
}
.screen-phone img {
  border-radius: 51px;
  object-fit: cover;
}
.asset-phone {
  filter: drop-shadow(0 26px 34px rgba(7, 18, 83, 0.22));
}
.phone-hero {
  width: 360px;
  height: 620px;
  transform: rotate(-2deg);
  position: relative;
  z-index: 3;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(36, 71, 245, 0.14);
  border-radius: 50%;
}
.orbit-one {
  width: 520px;
  height: 520px;
}
.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: spin 30s linear infinite;
}
.floating-note {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  display: flex;
  align-items: center;
}
.note-top {
  right: 6px;
  top: 88px;
  padding: 14px 17px;
  flex-direction: column;
  align-items: flex-start;
}
.note-top {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  min-width: 86px;
  align-items: center;
}
.note-top strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--blue);
}
.note-top span {
  font-size: 11px;
  color: var(--muted);
}
.note-bottom {
  left: 0;
  bottom: 100px;
  gap: 12px;
  padding: 14px 17px;
  font-size: 13px;
}
.shop-bubble {
  width: 86px;
  height: 102px;
  padding: 8px;
  border-radius: 22px;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  z-index: 4;
  text-align: center;
}
.shop-bubble img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: -3px auto 0;
}
.shop-bubble span {
  display: block;
  font-weight: 700;
  font-size: 10px;
  margin-top: -1px;
}
.shop-bubble-one {
  right: 10px;
  bottom: 115px;
  transform: rotate(5deg);
}
.shop-bubble-two {
  left: 15px;
  top: 100px;
  transform: rotate(-7deg);
}
.shop-bubble-three {
  right: 22px;
  top: 230px;
  transform: rotate(7deg);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.trust-strip {
  min-height: 146px;
  padding: 24px max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(90deg, #fff, #f8f9ff);
}
.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-items span {
  color: #525a72;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust-visual {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  background-repeat: no-repeat;
  filter: drop-shadow(0 6px 8px rgba(24, 43, 133, 0.12));
}
.trust-shops {
  background-image: url("/welcome/assets/process-sprite-3d.png");
  background-size: 300% 200%;
  background-position: 0 0;
}
.trust-prices {
  background-image: url("/welcome/assets/benefits-3d.png");
  background-size: 300% 100%;
  background-position: 0 center;
}
.trust-essentials {
  background-image: url("/welcome/assets/benefits-3d.png");
  background-size: 300% 100%;
  background-position: 100% center;
}
.trust-delivery {
  background-image: url("/welcome/assets/delivery-3d.png");
  background-size: contain;
  background-position: center;
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}
.split-section,
.local-section,
.shop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.visual-panel {
  min-height: 630px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.blue-panel {
  background: var(--blue);
}
.clean-panel {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.panel-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.04),
    0 0 0 140px rgba(255, 255, 255, 0.03);
}
.phone-card {
  width: 300px;
  height: 600px;
  border-radius: 53px;
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}
.phone-card img {
  border-radius: 46px;
}
.metric-card {
  position: absolute;
  z-index: 4;
  padding: 15px 17px;
  min-width: 130px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(4, 16, 86, 0.24);
  display: flex;
  flex-direction: column;
}
.metric-card small {
  font-size: 10px;
  color: var(--muted);
}
.metric-card strong {
  font-family: var(--font-display);
  font-size: 17px;
}
.metric-card span {
  font-size: 10px;
  color: #16a34a;
  font-weight: 700;
}
.metric-price {
  left: 22px;
  top: 90px;
  transform: rotate(-4deg);
}
.metric-delivery {
  right: 18px;
  bottom: 95px;
  transform: rotate(4deg);
}
.section-copy h2,
.section-heading h2,
.manage-intro h2,
.digital-copy h2,
.start-copy h2 {
  font-size: clamp(42px, 4.3vw, 64px);
  margin-bottom: 24px;
}
.section-copy h2 span,
.section-heading h2 span,
.shop-hero-copy h2 span,
.brand-finale h2 span {
  color: var(--blue);
}
.section-lede {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}
.title-dark {
  color: #0a1c51 !important;
}
.whatsapp-green {
  color: #25d366 !important;
}
.title-dark {
  color: #0a1c51 !important;
}
.whatsapp-green {
  color: #25d366 !important;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
}
.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.feature-list li > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}
.feature-list strong {
  font-family: var(--font-display);
  font-size: 17px;
}
.feature-list p {
  margin: 6px 0 0;
  font-size: 14px;
}
.arrow-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}
.arrow-link span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  transition: transform 0.2s ease;
}
.arrow-link:hover span {
  transform: rotate(45deg);
}

.value-section {
  width: 100%;
  max-width: none;
  background: var(--cream);
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}
.section-heading.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-heading.centered p {
  font-size: 17px;
}
.value-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}
.value-card {
  min-height: 470px;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(20, 27, 75, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.value-card-main {
  background: var(--blue);
  color: #fff;
}
.value-card-main p {
  color: rgba(255, 255, 255, 0.7);
}
.yellow-card {
  background: var(--yellow);
  color: var(--ink);
}
.value-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.white-card .value-index {
  background: var(--blue-soft);
  color: var(--blue);
}
.value-index.dark {
  background: rgba(17, 21, 40, 0.1);
}
.mini-label {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
  opacity: 0.7;
}
.value-card h3 {
  font-size: 35px;
  font-weight: 600;
  margin: 11px 0 16px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
}
.benefit-visual {
  width: 116px;
  height: 116px;
  margin: 10px 0 4px;
  background: url("/welcome/assets/benefits-3d.png") no-repeat;
  background-size: 300% 100%;
  filter: drop-shadow(0 12px 14px rgba(10, 23, 93, 0.16));
}
.benefit-price {
  background-position: 0 center;
}
.benefit-delivery {
  background-image: url("/welcome/assets/delivery-3d.png");
  background-size: contain;
  background-position: center;
}
.benefit-order {
  background-position: 100% center;
}
.price-compare {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 15px;
}
.price-compare div:not(.equals) {
  display: flex;
  flex-direction: column;
}
.price-compare small {
  color: var(--muted);
  font-size: 9px;
}
.price-compare strong {
  font-family: var(--font-display);
  font-size: 14px;
}
.equals {
  color: var(--blue);
  font-weight: 800;
  text-align: center;
}
.big-stat {
  font: 800 27px var(--font-display);
}
.big-stat span {
  display: block;
  font: 600 11px var(--font-body);
  color: rgba(17, 21, 40, 0.55);
}
.one-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.one-item-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.one-item div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.one-item small {
  color: var(--muted);
}
.check {
  color: #16a34a;
  font-weight: 800;
}

.neighborhood-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 65px;
  align-items: center;
}
.neighborhood-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  color: var(--blue);
}
.neighborhood-copy p {
  font-size: 17px;
}
.neighborhood-copy > p {
  color: #000;
  font-weight: 400;
}
.neighborhood-copy > strong {
  display: block;
  max-width: 390px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: #000;
  margin-top: 25px;
}
.category-grid {
  width: min(100%, 690px);
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}
.category-card {
  background: var(--cream);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eff0f3;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: transform 0.35s ease;
}
.category-large {
  overflow: visible;
  background: transparent;
  border: 0;
}
.category-large img {
  width: 112%;
  height: 112%;
  margin: -6%;
}
.category-card:hover img {
  transform: scale(1.15) rotate(2deg);
}
.category-card span {
  position: absolute;
  left: 14px;
  bottom: 13px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.category-large {
  grid-row: auto;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  background: linear-gradient(#fff, #f7f8ff);
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  gap: 34px;
}
.process-column {
  display: grid;
  gap: 15px;
}
.process-card {
  min-height: 128px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22, 39, 111, 0.08);
}
.process-icon {
  width: 54px;
  height: 54px;
  display: block;
  background: url("/welcome/assets/process-sprite-3d.png") no-repeat;
  background-size: 300% 200%;
  filter: drop-shadow(0 8px 10px rgba(13, 33, 126, 0.14));
}
.process-one {
  background-position: 0 0;
}
.process-two {
  background-position: 50% 0;
}
.process-three {
  background-position: 100% 0;
}
.process-four {
  background-position: 0 100%;
}
.process-five {
  background-position: 50% 100%;
}
.process-six {
  background-position: 100% 100%;
}
.process-card strong {
  font-family: var(--font-display);
  font-size: 15px;
}
.process-card p {
  font-size: 12px;
  margin: 7px 0 0;
  line-height: 1.5;
}
.process-section .section-heading h2 > span {
  color: var(--blue);
}
.process-section .section-heading h2 > .title-dark {
  color: #0a1c51 !important;
}
.process-card-finale {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.process-card-finale p {
  color: var(--muted);
}
.process-phone {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
}
.phone-process {
  width: 268px;
  height: 540px;
  position: relative;
  z-index: 2;
}
.phone-process img {
  object-position: top;
}
.process-phone::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.9;
}

.whatsapp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.whatsapp-copy h2,
.digital-copy h2 {
  font-size: clamp(42px, 4.4vw, 62px);
}
.whatsapp-copy > p {
  font-size: 17px;
}
.whatsapp-art {
  min-height: 500px;
  display: grid;
  place-items: center;
}
.whatsapp-art img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(20, 43, 145, 0.13));
}
.word-sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  font: 800 19px var(--font-display);
}
.word-sequence span,
.word-sequence strong {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--blue-soft);
}
.word-sequence strong {
  color: #fff;
  background: var(--blue);
}
.chat-compare {
  min-height: 480px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: center;
  gap: 13px;
}
.chat-side,
.order-side {
  min-height: 350px;
  border-radius: 24px;
  background: #fff;
  padding: 20px;
}
.chat-side > small,
.order-side > small {
  color: var(--muted);
  font-weight: 700;
}
.bubble {
  font-size: 11px;
  padding: 9px 11px;
  margin-top: 14px;
  width: fit-content;
  max-width: 90%;
  border-radius: 14px;
}
.bubble-left {
  background: #edf0f5;
}
.bubble-right {
  background: #d9fdd3;
  margin-left: auto;
}
.message-count {
  font-size: 10px;
  color: #ed4f4f;
  text-align: center;
  margin-top: 24px;
}
.chat-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.order-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.order-check {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 25px;
  box-shadow: 0 12px 30px rgba(36, 71, 245, 0.2);
  margin: 35px 0 22px;
}
.order-side strong {
  font-family: var(--font-display);
  font-size: 20px;
}
.order-side p {
  margin: 7px 0;
  font-size: 12px;
}
.order-side span {
  font-size: 10px;
  color: #16a34a;
  font-weight: 800;
}

.local-photo {
  position: relative;
}
.local-photo > img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.local-3d {
  min-height: 570px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    circle at 50% 42%,
    #ffffff 0,
    #f0f3ff 58%,
    #e4e9ff 100%
  );
  display: grid;
  place-items: center;
  overflow: hidden;
}
.local-3d > img {
  width: 108%;
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 28px 30px rgba(17, 36, 134, 0.16));
}
.photo-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
}
.statement {
  font: 800 25px/1.2 var(--font-display);
  margin-top: 38px;
}
.statement span {
  color: var(--blue);
}
.local-section .section-copy h2 {
  color: var(--blue);
}

.customer-cta {
  width: min(1200px, calc(100% - 48px));
  min-height: 520px;
  margin: 30px auto 120px;
  padding: 70px;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.customer-cta > div:first-child {
  max-width: 570px;
  position: relative;
  z-index: 4;
}
.customer-cta h2 {
  font-size: clamp(45px, 5vw, 70px);
  margin-bottom: 20px;
}
.customer-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-phone {
  position: absolute;
  width: 285px;
  height: 565px;
  right: 110px;
  top: 70px;
  overflow: hidden;
  border-radius: 58px;
  transform: rotate(6deg);
  z-index: 3;
}
.cta-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 51px;
}
.cta-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--yellow);
  right: -70px;
  bottom: -220px;
}

.shops-transition {
  min-height: 690px;
  padding: 110px 24px;
  background: linear-gradient(
    135deg,
    #1738dc 0%,
    var(--blue) 58%,
    #4162ff 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.transition-copy {
  position: relative;
  z-index: 2;
}
.transition-copy > p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 18px;
  margin-bottom: 12px;
}
.transition-copy h2 {
  font-size: clamp(50px, 7vw, 92px);
  margin: 0 0 44px;
}
.shops-platform-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.transition-orbit {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255, 203, 16, 0.28);
  box-shadow:
    0 0 0 100px rgba(255, 203, 16, 0.06),
    0 0 0 200px rgba(255, 255, 255, 0.03);
}

.shop-hero-copy h2 {
  font-size: clamp(44px, 4.5vw, 66px);
}
.shop-hero-copy > p {
  font-size: 17px;
  max-width: 520px;
}
.commission-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0 8px;
}
.commission-lockup strong {
  font: 800 66px var(--font-display);
  color: var(--blue);
  letter-spacing: -0.08em;
}
.commission-lockup span {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.keep-sale {
  color: #667085;
  font-size: 13px !important;
  font-weight: 400;
  margin-bottom: 28px;
}
.keep-sale b {
  font-weight: 400;
}
.shop-visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.shop-visual-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  transform: rotate(5deg);
}
.shop-app-image {
  position: relative;
  z-index: 2;
  max-height: 640px;
  width: auto;
  filter: drop-shadow(0 28px 32px rgba(14, 24, 68, 0.22));
}
.shop-stat {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 17px;
  padding: 14px 17px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.shop-stat small {
  color: var(--muted);
  font-size: 9px;
}
.shop-stat strong {
  font: 800 17px var(--font-display);
  color: var(--blue);
}
.stat-orders {
  top: 130px;
  left: 18px;
  transform: rotate(-5deg);
}
.stat-commission {
  bottom: 120px;
  right: 10px;
  transform: rotate(5deg);
}

.commission-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  background: #fff;
}
.commission-banner {
  min-height: 440px;
  padding: 50px;
  border-radius: 32px;
  background: #f8f9ff;
  color: var(--ink);
  border: 1px solid #dde3ff;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 34px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(24, 47, 170, 0.08);
}
.commission-banner::after {
  content: "";
  position: absolute;
  width: 12px;
  inset: 0 auto 0 0;
  background: linear-gradient(var(--blue), #5a75ff);
}
.commission-big {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font: 600 82px var(--font-display);
  letter-spacing: -0.06em;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(255, 203, 16, 0.22);
}
.commission-big span {
  font-size: 34px;
  margin: 12px 0 0;
  letter-spacing: 0;
}
.commission-banner h2 {
  max-width: 720px;
  font-size: clamp(36px, 3.6vw, 53px);
  font-weight: 600;
}
.commission-banner p {
  color: var(--muted);
}
.commission-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.commission-points span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dfe4f7;
  border-radius: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(24, 47, 170, 0.06);
}
.commission-points span::before {
  content: "✓";
  color: var(--blue);
  margin-right: 9px;
}

.storefront-section {
  padding-bottom: 140px;
}
.storefront-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 15px;
}
.store-card {
  padding: 28px;
  border-radius: 25px;
  background: var(--cream);
  border: 1px solid #ececf0;
  overflow: hidden;
}
.store-card > span {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 55px;
}
.store-card h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.store-card p {
  font-size: 13px;
}
.store-card-image {
  grid-row: 1 / 3;
  padding: 18px;
  background: radial-gradient(circle at 50% 42%, #fff, var(--blue-soft));
}
.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(25, 47, 158, 0.14));
}
.store-card-blue {
  background: var(--blue);
  color: #fff;
}
.store-card-blue > span {
  color: var(--yellow);
}
.store-card-blue p {
  color: rgba(255, 255, 255, 0.7);
}
.store-card.yellow-card > span {
  color: var(--ink);
}

.business-types {
  padding: 100px 0;
  background: linear-gradient(120deg, #1838d8, var(--blue) 58%, #3858f8);
  color: #fff;
  overflow: hidden;
}
.business-intro {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 70px;
}
.business-intro h2 {
  font-size: clamp(45px, 5vw, 72px);
}
.ticker {
  overflow: hidden;
  transform: rotate(-2deg);
  width: 105%;
  margin-left: -2%;
}
.ticker-track {
  width: max-content;
  display: flex;
  gap: 12px;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: 600 19px var(--font-display);
  white-space: nowrap;
}
.ticker-track span:nth-child(3n) {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.manage-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.manage-intro {
  position: sticky;
  top: 140px;
}
.manage-intro h2 {
  color: #0a1c51;
}
.manage-intro h2 span {
  color: var(--blue);
}
.manage-intro p {
  font-size: 17px;
  margin-bottom: 30px;
}
.manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.manage-card {
  min-height: 285px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid #ecedf2;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.manage-card > span {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}
.manage-icon {
  width: 94px;
  height: 94px;
  display: block;
  background: url("/welcome/assets/manage-sprite-3d.png") no-repeat;
  background-size: 300% 200%;
  filter: drop-shadow(0 10px 12px rgba(20, 42, 142, 0.14));
}
.manage-one {
  background-position: 0 0;
}
.manage-two {
  background-position: 50% 0;
}
.manage-three {
  background-position: 100% 0;
}
.manage-four {
  background-position: 0 100%;
}
.manage-five {
  background-position: 50% 100%;
}
.manage-six {
  background-position: 100% 100%;
}
.manage-card h3 {
  font-size: 25px;
  margin: auto 0 10px;
}
.manage-card p {
  font-size: 13px;
  margin: 0;
}
.manage-card-blue {
  background: var(--blue);
  color: #fff;
}
.manage-card-blue > span {
  background: var(--yellow);
  color: var(--ink);
}
.manage-card-blue p {
  color: rgba(255, 255, 255, 0.65);
}

.control-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.control-block {
  min-height: 590px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  display: flex;
  flex-direction: column;
}
.control-block h2 {
  font-size: clamp(42px, 4vw, 59px);
  color: var(--blue);
}
.control-block > p {
  color: rgba(17, 21, 40, 0.65);
  max-width: 480px;
}
.control-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.control-tags span {
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.control-block-dark {
  background: var(--blue);
  color: #fff;
}
.control-block-dark h2 {
  color: #fff;
}
.control-block-dark > p {
  color: rgba(255, 255, 255, 0.6);
}
.mock-order {
  margin-top: auto;
  background: #fff;
  color: var(--ink);
  padding: 24px;
  border-radius: 23px;
  display: grid;
}
.mock-order > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.mock-order strong {
  font: 800 29px var(--font-display);
  margin-top: 15px;
}
.mock-order small {
  color: var(--muted);
  margin: 4px 0 20px;
}
.mock-order button {
  border: 0;
  border-radius: 12px;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  font: 700 12px var(--font-body);
}

.digital-orders-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.digital-copy > p {
  font-size: 17px;
}
.triple-statement {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  font: 800 15px var(--font-display);
}
.triple-statement span,
.triple-statement strong {
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--blue-soft);
}
.triple-statement strong {
  color: #fff;
  background: var(--blue);
}
.digital-visual {
  min-height: 570px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  position: relative;
  display: grid;
  place-items: center;
}
.central-order {
  width: 280px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.central-order > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 21px;
}
.central-order h3 {
  font-size: 25px;
  margin: 22px 0 8px;
}
.central-order p {
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.central-order div {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}
.central-order small {
  color: var(--muted);
}
.scattered-note {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 15px 35px rgba(32, 41, 85, 0.09);
  color: var(--muted);
  font-size: 11px;
}
.note-a {
  top: 58px;
  left: 24px;
  transform: rotate(-6deg);
}
.note-b {
  right: 26px;
  top: 145px;
  transform: rotate(5deg);
}
.note-c {
  left: 33px;
  bottom: 80px;
  transform: rotate(4deg);
}

.reach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reach-card {
  min-height: 550px;
  padding: 47px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.reach-card h3 {
  font-size: clamp(37px, 3.5vw, 50px);
  margin-bottom: 22px;
}
.reach-card-blue {
  background: var(--blue);
  color: #fff;
}
.reach-card-blue p {
  color: rgba(255, 255, 255, 0.66);
}
.reach-card > p {
  max-width: 420px;
}
.reach-card ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.reach-card li {
  padding: 15px 0;
  border-bottom: 1px solid #dedfe7;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
}
.reach-card li b {
  color: #16a34a;
}
.radar {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  right: -20px;
  bottom: -20px;
  display: grid;
  place-items: center;
}
.radar i {
  position: absolute;
  width: 66%;
  height: 66%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.radar i:nth-child(2) {
  width: 34%;
  height: 34%;
}
.radar i:nth-child(3) {
  width: 130%;
  height: 130%;
}
.radar span {
  font-size: 35px;
}

.ecosystem-section {
  width: 100%;
  max-width: none;
  background: var(--cream);
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}
.ecosystem-diagram {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
}
.ecosystem-diagram article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 27px;
  text-align: center;
}
.ecosystem-diagram article > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.ecosystem-section > .section-heading .eyebrow {
  background: transparent;
  padding: 0;
}
.eco-art {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 28px auto 12px;
}
.eco-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--blue);
  color: #fff;
  font: 800 29px var(--font-display);
  margin: 45px auto 25px;
  transform: rotate(-5deg);
}
.eco-art {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 28px auto 12px;
}
.ecosystem-section > .section-heading .eyebrow {
  background: transparent;
  padding: 0;
}
.ecosystem-diagram h3 {
  font-size: 20px;
}
.ecosystem-diagram p {
  font-size: 12px;
}
.ecosystem-diagram .eco-main {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 28px 50px rgba(36, 71, 245, 0.2);
}
.eco-main .eco-icon {
  background: var(--yellow);
  color: var(--ink);
}
.eco-main p {
  color: rgba(255, 255, 255, 0.67);
}
.eco-main > span {
  color: rgba(255, 255, 255, 0.5) !important;
}
.eco-line {
  height: 1px;
  background: #cfd3e2;
  position: relative;
}
.eco-line i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  top: -3px;
  left: calc(50% - 4px);
}

.start-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.start-copy {
  position: sticky;
  top: 140px;
}
.start-copy h2 {
  color: #0a1c51;
}
.start-copy h2 span {
  color: var(--blue);
}
.start-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.start-steps li {
  display: grid;
  grid-template-columns: 75px 74px 1fr;
  gap: 20px;
  align-items: center;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.start-steps li > img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.start-steps li > span {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.start-steps h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.start-steps p {
  margin: 0;
}

.why-section .section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-grid article {
  min-height: 270px;
  padding: 29px;
  background: var(--cream);
  border-radius: 23px;
  border: 1px solid #eff0f4;
  display: flex;
  flex-direction: column;
}
.why-icon {
  width: 92px;
  height: 92px;
  display: block;
  background: url("/welcome/assets/manage-sprite-3d.png") no-repeat;
  background-size: 300% 200%;
  filter: drop-shadow(0 10px 12px rgba(20, 42, 142, 0.13));
}
.why-one {
  background-position: 100% 100%;
}
.why-two {
  background-position: 0 0;
}
.why-three {
  background-position: 100% 0;
}
.why-four {
  background-position: 50% 0;
}
.why-five {
  background-position: 0 100%;
}
.why-six {
  background-position: 50% 100%;
}
.why-grid h3 {
  font-size: 21px;
  margin: auto 0 9px;
}
.why-grid p {
  margin: 0;
  font-size: 13px;
}

.final-shop-cta {
  width: min(1200px, calc(100% - 48px));
  min-height: 600px;
  margin: 40px auto 120px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1738dc, var(--blue) 62%, #4564ff);
  color: #fff;
  padding: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.final-cta-copy {
  max-width: 650px;
  position: relative;
  z-index: 3;
}
.final-cta-copy h2 {
  font-size: clamp(54px, 6vw, 83px);
}
.final-cta-copy > p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 510px;
}
.final-commission {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
}
.final-commission strong {
  font: 800 58px var(--font-display);
  color: var(--yellow);
}
.final-commission span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}
.final-shop-cta > img {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: -35px;
  width: 455px;
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.22));
}
.final-cta-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  right: -80px;
  bottom: -150px;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025);
}

.brand-finale {
  padding: 60px max(24px, calc((100vw - 1200px) / 2)) 120px;
}
.brand-finale-heading {
  text-align: center;
  margin-bottom: 60px;
}
.brand-finale h2 {
  font-size: clamp(50px, 6vw, 82px);
}
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.audience-cards article {
  min-height: 360px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  display: flex;
  flex-direction: column;
}
.audience-cards .audience-shop {
  background: var(--blue);
  color: #fff;
}
.audience-cards small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.audience-cards h3 {
  font-size: clamp(37px, 3.5vw, 50px);
  margin: auto 0 16px;
}
.audience-cards p {
  max-width: 390px;
  color: rgba(17, 21, 40, 0.65);
}
.audience-shop p {
  color: rgba(255, 255, 255, 0.65);
}
.audience-cards a {
  font-weight: 800;
}
.generated-brand-art {
  margin: 22px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 28px 70px rgba(21, 31, 87, 0.09);
}
.generated-brand-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.brand-finale {
  background: linear-gradient(180deg, #fff 0%, #edf5ff 100%);
}
.final-lockup {
  margin-top: 100px;
  text-align: center;
}
.final-lockup img {
  width: 150px;
  height: 70px;
  object-fit: contain;
  margin: auto;
}
.final-lockup p {
  color: var(--blue);
  font: 400 21px var(--font-display);
}
.supply-finale {
  padding-top: 96px;
}
.supply-finale-card {
  position: relative;
  min-height: 560px;
  padding: 72px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 56%, #fff8df 100%);
  box-shadow: 0 28px 70px rgba(31, 71, 145, 0.13);
  color: var(--blue-deep);
}
.supply-finale-card::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -240px;
  bottom: -250px;
  border: 1px solid rgba(36, 71, 245, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(36, 71, 245, 0.025),
    0 0 0 150px rgba(36, 71, 245, 0.015);
}
.supply-finale-copy {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.supply-salla-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding: 11px 12px 11px 20px;
  border: 1px solid rgba(0, 143, 131, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #006d61;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(0, 109, 97, 0.08);
}
.supply-salla-logo {
  display: grid;
  width: 78px;
  height: 38px;
  place-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
}
.supply-salla-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.supply-finale-copy h2 {
  max-width: 980px;
  margin: 0 auto 26px;
  color: #102e70;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 1.08;
}
.supply-finale-copy h2 span {
  display: block;
}
.supply-title-metric {
  margin-top: 4px;
  background: linear-gradient(
    90deg,
    #102e70 8%,
    #ff7a00 38%,
    #8f7487 52%,
    #0860f5 72%,
    #102e70 96%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.supply-title-accent {
  margin-top: 8px;
  color: #0860f5;
}
.supply-finale-copy > p {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #526b95;
  font-size: 18px;
  line-height: 1.65;
}
.supply-finale-copy > .supply-finale-strong {
  margin-bottom: 30px;
  color: #102e70;
  font-size: 20px;
  font-weight: 600;
}

html[lang="ar"] body {
  letter-spacing: 0;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  letter-spacing: -0.015em;
}
html[lang="ar"] .eyebrow,
html[lang="ar"] .mini-label,
html[lang="ar"] .trust-strip p,
html[lang="ar"] .store-card > span {
  letter-spacing: 0.04em;
}
html[lang="ar"] .brand img {
  object-position: right center;
}
html[lang="ar"] .hero-copy,
html[lang="ar"] .section-copy,
html[lang="ar"] .shop-hero-copy,
html[lang="ar"] .transition-copy,
html[lang="ar"] .manage-intro,
html[lang="ar"] .digital-copy,
html[lang="ar"] .start-copy {
  text-align: right;
}
html[lang="ar"] .button span[aria-hidden="true"] {
  transform: scaleX(-1);
}
.interest-button {
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--blue);
  color: #fff;
  font: 600 14px var(--font-body);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(36, 71, 245, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(36, 71, 245, 0.28);
}
.interest-button span {
  margin-left: 10px;
}
.interest-dialog {
  width: min(460px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(9, 19, 77, 0.22);
}
.interest-dialog::backdrop {
  background: rgba(9, 19, 77, 0.42);
  backdrop-filter: blur(5px);
}
.interest-dialog[open] .interest-dialog-card {
  animation: interest-pop 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes interest-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.interest-dialog-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(36, 71, 245, 0.12);
  border-radius: 28px;
  background: #fff;
}
.interest-dialog-card h2 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.02;
}
.interest-dialog-card > p {
  margin-bottom: 24px;
  font-size: 15px;
}
.interest-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.interest-form {
  display: grid;
  gap: 15px;
}
.interest-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.interest-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dfe4f7;
  border-radius: 14px;
  padding: 0 15px;
  color: var(--ink);
  background: #fbfcff;
  font: 400 15px var(--font-body);
  outline: none;
}
.interest-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 71, 245, 0.12);
}
.mobile-field {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid #dfe4f7;
  border-radius: 14px;
  background: #fbfcff;
  overflow: hidden;
}
.mobile-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 71, 245, 0.12);
}
.mobile-country {
  flex: 0 0 112px;
  height: 48px;
  border: 0;
  padding: 0 5px 0 12px;
  color: var(--ink);
  background: transparent;
  font: 600 13px var(--font-body);
  cursor: pointer;
  outline: none;
}
.mobile-prefix {
  flex: 0 0 auto;
  padding: 0 10px 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.mobile-field input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  padding-left: 4px;
  background: transparent;
  box-shadow: none;
}
.mobile-field input:focus {
  box-shadow: none;
}
.interest-form .button {
  border: 0;
  cursor: pointer;
}
.interest-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.interest-status.success {
  color: #16834b;
}
.interest-status.error {
  color: #c43d3d;
}

/* Keep category art airy and smaller without the cream card containers. */
.category-grid .category-card {
  overflow: visible;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.category-grid .category-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  margin: 0;
}
.category-grid .category-large img {
  width: 84%;
  height: 84%;
  margin: 0;
}
.clean-panel .phone-card {
  width: min(520px, 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
}
.clean-panel .phone-card img {
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 780px) {
  .clean-panel .phone-card {
    width: min(92vw, 420px);
  }
}

@media (max-width: 520px) {
  .clean-panel .phone-card {
    width: min(92vw, 360px);
  }
}

footer {
  background: #edf5ff;
  padding: 80px max(24px, calc((100vw - 1200px) / 2)) 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 45px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-brand img {
  width: 135px;
  height: 54px;
  object-fit: contain;
  object-position: left;
}
.footer-brand p {
  max-width: 240px;
  font-size: 13px;
}
.footer-top h3 {
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.footer-top a {
  font-size: 12px;
  color: var(--muted);
}
.footer-top a:hover {
  color: var(--blue);
}
.socials {
  display: flex;
  gap: 7px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.socials a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.store-card-with-art {
  position: relative;
}
.store-card-with-art > img {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 86px;
  height: 86px;
  object-fit: contain;
}
.store-card-with-art > span,
.store-card-with-art > h3,
.store-card-with-art > p {
  position: relative;
  z-index: 1;
}
.footer-download {
  padding: 12px;
  background: #fff;
  border-radius: 13px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
}
.footer-download span {
  font-size: 9px;
}
.footer-download strong {
  color: var(--ink);
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #dcdee6;
  color: var(--muted);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .mobile-nav {
    position: fixed;
    top: 74px;
    left: 24px;
    right: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    border-radius: 20px;
    flex-direction: column;
    gap: 2px;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav a {
    padding: 12px 10px;
    font-weight: 700;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-copy {
    max-width: 760px;
    margin: auto;
  }
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-promises {
    justify-content: center;
  }
  .hero-stage {
    margin: 10px auto 0;
    width: min(600px, 100%);
  }
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-card-main {
    grid-column: 1 / 3;
  }
  .split-section,
  .local-section,
  .shop-hero,
  .whatsapp-section,
  .digital-orders-section {
    gap: 50px;
  }
  .process-layout {
    grid-template-columns: 1fr 270px 1fr;
    gap: 18px;
  }
  .phone-process {
    width: 235px;
    height: 480px;
  }
  .commission-banner {
    grid-template-columns: 170px minmax(0, 1fr);
  }
  .commission-points {
    grid-column: 1 / 3;
    grid-template-columns: repeat(3, 1fr);
  }
  .storefront-grid {
    grid-template-columns: 1fr 1fr;
  }
  .store-card-image {
    grid-row: 1 / 3;
  }
  .manage-section {
    gap: 45px;
  }
  .ecosystem-diagram {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
  }
  .final-shop-cta > img {
    opacity: 1;
    right: -35px;
  }
  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .nav-shell {
    width: calc(100% - 32px);
    height: 74px;
  }
  .brand img {
    width: 124px;
  }
  .text-link,
  .nav-actions .button {
    display: none;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(43px, 12vw, 64px);
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-stage {
    height: 540px;
    transform: scale(0.88);
    margin: -20px auto -40px;
  }
  .note-top {
    right: -10px;
  }
  .note-bottom {
    left: -10px;
  }
  .shop-bubble-three {
    right: -15px;
  }
  .shop-bubble-two {
    left: -14px;
  }
  .trust-strip {
    justify-content: center;
    text-align: center;
  }
  .trust-strip > p {
    display: none;
  }
  .trust-items {
    justify-content: center;
    gap: 15px 22px;
  }
  .section {
    width: calc(100% - 32px);
    padding: 82px 0;
  }
  .split-section,
  .local-section,
  .shop-hero,
  .whatsapp-section,
  .digital-orders-section,
  .neighborhood-section,
  .manage-section,
  .control-section,
  .reach-section,
  .start-section {
    grid-template-columns: 1fr;
  }
  .section-copy h2,
  .section-heading h2,
  .manage-intro h2,
  .digital-copy h2,
  .start-copy h2 {
    font-size: 42px;
  }
  .visual-panel {
    min-height: 560px;
  }
  .value-section,
  .process-section,
  .commission-section,
  .ecosystem-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-card-main {
    grid-column: auto;
  }
  .value-card {
    min-height: 380px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 145px);
  }
  .category-large {
    grid-row: auto;
  }
  .process-layout {
    grid-template-columns: 1fr;
  }
  .process-phone {
    grid-row: 1;
    min-height: 545px;
  }
  .whatsapp-art {
    min-height: 400px;
  }
  .customer-cta {
    width: calc(100% - 32px);
    min-height: 650px;
    padding: 38px 28px;
    align-items: flex-start;
    margin-bottom: 80px;
  }
  .customer-cta h2 {
    font-size: 46px;
  }
  .cta-phone {
    width: 220px;
    height: 440px;
    right: -15px;
    top: auto;
    bottom: -160px;
  }
  .cta-circle {
    right: -200px;
  }
  .shops-transition {
    min-height: 600px;
  }
  .transition-copy h2 {
    font-size: 49px;
  }
  .shop-hero-copy {
    order: 1;
  }
  .shop-visual {
    min-height: 570px;
  }
  .commission-banner {
    padding: 35px 26px;
    grid-template-columns: 1fr;
  }
  .commission-big {
    width: 150px;
    height: 150px;
    font-size: 72px;
    justify-self: center;
  }
  .commission-big span {
    font-size: 30px;
  }
  .commission-banner h2 {
    text-align: center;
  }
  .commission-banner p {
    text-align: center;
  }
  .commission-points {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .storefront-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 255px;
  }
  .store-card-image {
    grid-row: auto;
    min-height: 420px;
  }
  .manage-intro,
  .start-copy {
    position: static;
  }
  .manage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .manage-card {
    min-height: 220px;
  }
  .control-block,
  .reach-card {
    min-height: 520px;
    padding: 35px 27px;
  }
  .ecosystem-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .eco-line {
    width: 1px;
    height: 38px;
    margin: -20px auto;
  }
  .ecosystem-diagram .eco-main {
    transform: none;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .final-shop-cta {
    width: calc(100% - 32px);
    min-height: 720px;
    padding: 45px 28px;
    align-items: flex-start;
  }
  .final-cta-copy h2 {
    font-size: 55px;
  }
  .final-shop-cta > img {
    width: 330px;
    right: -55px;
    bottom: -30px;
    opacity: 0.8;
  }
  .audience-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / 3;
  }
  .supply-finale {
    padding: 72px 16px 82px;
  }
  .supply-finale-card {
    padding: 48px 34px;
    border-radius: 32px;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    transform: scale(0.78);
    width: 126%;
    margin-left: -13%;
    margin-top: -45px;
    margin-bottom: -70px;
  }
  .trust-items span {
    font-size: 11px;
  }
  .visual-panel {
    min-height: 520px;
  }
  .phone-card {
    width: 235px;
    height: 480px;
  }
  .metric-card {
    min-width: 112px;
  }
  .category-grid {
    grid-template-rows: repeat(3, 128px);
    gap: 9px;
  }
  .category-card {
    border-radius: 19px;
  }
  .category-card span {
    left: 9px;
    bottom: 9px;
    padding: 5px 8px;
    font-size: 9px;
  }
  .manage-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .control-block {
    min-height: 560px;
  }
  .reach-card {
    min-height: 540px;
  }
  .start-steps li {
    grid-template-columns: 54px 58px 1fr;
    gap: 15px;
  }
  .start-steps li > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
  .start-steps li > img {
    width: 54px;
    height: 54px;
  }
  .audience-cards article {
    min-height: 320px;
    padding: 30px;
  }
  .footer-top {
    gap: 40px 22px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .supply-finale-card {
    padding: 38px 24px;
  }
  .supply-finale-copy h2 {
    font-size: clamp(40px, 12vw, 52px);
  }
  .supply-finale-copy > p {
    font-size: 16px;
  }
  .supply-finale-copy > .supply-finale-strong {
    font-size: 18px;
  }
}

.phone-hero.screen-phone {
  width: min(520px, 100%);
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-hero.screen-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* Let the hero category artwork float freely instead of sitting in white cards. */
.hero-stage .shop-bubble {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-stage .shop-bubble span {
  color: var(--ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}

/* Keep the Outfit system light and readable, especially at display sizes. */
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.025em;
}
.hero h1,
.section-copy h2,
.section-heading h2,
.manage-intro h2,
.digital-copy h2,
.start-copy h2,
.neighborhood-copy h2,
.shop-hero-copy h2,
.transition-copy h2,
.brand-finale h2 {
  letter-spacing: -0.03em;
}

@media (max-width: 780px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: clamp(38px, 10.8vw, 56px);
    line-height: 0.99;
  }
  .hero-lede {
    max-width: 35rem;
    line-height: 1.5;
  }
  .hero-stage {
    width: 100%;
    height: 535px;
    transform: none;
    margin: 4px auto -26px;
  }
  .phone-hero.screen-phone {
    width: min(92vw, 430px);
    height: auto;
    aspect-ratio: 1;
  }
  .note-top {
    right: 2%;
    top: 72px;
  }
  .shop-bubble-two {
    left: 1%;
  }
  .shop-bubble-three {
    right: 1%;
  }
  .shop-bubble-four {
    left: 6%;
    bottom: 54px;
  }
  .section-copy h2,
  .section-heading h2,
  .manage-intro h2,
  .digital-copy h2,
  .start-copy h2,
  .neighborhood-copy h2,
  .shop-hero-copy h2 {
    font-size: clamp(36px, 9.5vw, 48px);
    line-height: 1;
  }
  .section-lede {
    font-size: 16px;
    line-height: 1.55;
  }
  .value-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    width: calc(100% - 28px);
  }
  .brand img {
    width: 108px;
  }
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.01;
  }
  .hero-stage {
    height: 500px;
    margin-bottom: -22px;
  }
  .phone-hero.screen-phone {
    width: min(92vw, 360px);
  }
  .floating-note {
    transform: scale(0.9);
    transform-origin: center;
  }
  .note-top {
    right: -2%;
  }
  .shop-bubble {
    transform: scale(0.88);
  }
  .shop-bubble-four {
    transform: rotate(-5deg) scale(0.88);
  }
  .section {
    width: calc(100% - 28px);
    padding: 66px 0;
  }
  .section-copy h2,
  .section-heading h2,
  .manage-intro h2,
  .digital-copy h2,
  .start-copy h2,
  .neighborhood-copy h2,
  .shop-hero-copy h2 {
    font-size: clamp(34px, 9.8vw, 44px);
  }
  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }
  .interest-dialog-card {
    padding: 28px 20px;
  }
  .mobile-country {
    flex-basis: 105px;
    padding-left: 8px;
    font-size: 12px;
  }
}

@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;
  }
}
