/* Kasheer POS landing — matched to Figma POS-01 (1920px artboard) */

:root {
  --kasheer-brand: #010f84;
  --kasheer-navy: #010f84;
  --kasheer-navy-mid: #0c1f4a;
  --kasheer-navy-deep: #081633;
  --kasheer-gold: #e1b400;
  --kasheer-gold-dark: #c59d00;
  --kasheer-gold-gradient: linear-gradient(180deg, #e1b400 0%, #c59d00 100%);
  --kasheer-text: #0c1f4a;
  --kasheer-muted: #6b7280;
  --kasheer-muted-2: #8a94a6;
  --kasheer-border: #e5e7eb;
  --kasheer-bg: #f3f4f8;
  --kasheer-bg-soft: #f8f9fc;
  --kasheer-white: #ffffff;
  --kasheer-black: #111111;
  --kasheer-header-h: 103px;
  --kasheer-wrap: 1856px;
  --kasheer-pad: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kasheer-header-h) + 12px);
  overflow-x: hidden;
  max-width: 100%;
}

body.kasheer-landing {
  margin: 0;
  font-family: "Outfit", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--kasheer-text);
  background: var(--kasheer-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.kasheer-landing img { max-width: 100%; display: block; }

.kasheer-wrap {
  width: min(var(--kasheer-wrap), calc(100% - (var(--kasheer-pad) * 2)));
  margin-inline: auto;
}

/* ── Header (Figma: 103px, logo left, nav center, dark CTA right) ── */
.kasheer-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--kasheer-header-h);
  background: var(--kasheer-white);
  border-bottom: none;
}

.kasheer-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.kasheer-header__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 47px;
  text-decoration: none;
}

.kasheer-header__logo-img {
  height: 47px;
  width: auto;
  max-width: 204px;
  display: block;
  flex: 0 0 auto;
}

.kasheer-nav-wrap { justify-self: center; }

.kasheer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kasheer-nav a {
  color: #0e0d14;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.02em;
}

.kasheer-nav a:hover,
.kasheer-nav a.is-active { color: var(--kasheer-brand); }

.kasheer-nav__mobile-only { display: none; }

.kasheer-header__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Language switcher */
.kasheer-lang { position: relative; }

.kasheer-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid var(--kasheer-border);
  border-radius: 40px;
  background: #fff;
  color: var(--kasheer-navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kasheer-lang__toggle:hover { border-color: var(--kasheer-navy); }

.kasheer-lang__globe { color: var(--kasheer-navy); flex-shrink: 0; }

.kasheer-lang__caret { font-size: 10px; line-height: 1; color: var(--kasheer-muted); }

.kasheer-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 150px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--kasheer-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(1, 15, 132, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.kasheer-lang.is-open .kasheer-lang__menu,
.kasheer-lang:hover .kasheer-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kasheer-lang__option {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--kasheer-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.kasheer-lang__option:hover { background: var(--kasheer-bg); color: var(--kasheer-navy); }

.kasheer-lang__option.is-active {
  background: var(--kasheer-navy);
  color: #fff;
}

.kasheer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.kasheer-btn--header {
  background: var(--kasheer-brand);
  color: #f6f7fa;
  border-radius: 40px;
  padding: 12px 18px;
  min-width: 160px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  gap: 12px;
}

.kasheer-btn--header:hover {
  background: #0218a8;
  color: #fff;
}

.kasheer-btn--header .kasheer-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.kasheer-icon--login-arrow {
  display: block;
  transform: rotate(-90deg);
}

.kasheer-btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kasheer-btn--with-icon .kasheer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.kasheer-icon {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.kasheer-icon--demo {
  flex-shrink: 0;
}

.kasheer-icon--arrow-right {
  transform: rotate(-90deg);
}

.kasheer-icon--accordion {
  transition: transform 0.2s ease;
}

.kasheer-icon--billing {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(8%) sepia(99%) saturate(5000%) hue-rotate(230deg);
}

.kasheer-icon--social {
  display: block;
}

.kasheer-icon--tick,
.kasheer-ai-bullets .kasheer-icon--bullet {
  filter: brightness(0) saturate(100%) invert(84%) sepia(28%) saturate(1123%) hue-rotate(6deg) brightness(101%) contrast(93%);
}

.kasheer-btn--dark {
  background: var(--kasheer-brand);
  color: var(--kasheer-white);
}

.kasheer-btn--dark:hover { background: #0218a8; color: #fff; }

.kasheer-btn--gold {
  background: var(--kasheer-gold-gradient);
  color: var(--kasheer-navy);
}

.kasheer-btn--phone {
  background: var(--kasheer-gold-gradient);
  color: var(--kasheer-navy);
  border-radius: 8px;
}

.kasheer-btn--phone-dark {
  background: var(--kasheer-navy);
  color: var(--kasheer-white);
}

.kasheer-btn--outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--kasheer-white);
  border-radius: 40px;
  padding: 14px 24px;
}

.kasheer-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--kasheer-white);
}

.kasheer-icon--phone-light {
  filter: brightness(0) invert(1);
}

.kasheer-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--kasheer-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.kasheer-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--kasheer-navy);
}

/* ── Hero (Figma POS-01) ── */
.kasheer-hero {
  padding-top: var(--kasheer-header-h);
  background: var(--kasheer-white);
  overflow: hidden;
}

.kasheer-hero__intro {
  text-align: center;
  padding: 40px var(--kasheer-pad) 28px;
}

.kasheer-hero__title {
  margin: 0 auto 20px;
  max-width: 1027px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111111;
}

.kasheer-hero__title-brand {
  color: var(--kasheer-brand);
}

.kasheer-hero__subtitle {
  margin: 0 auto 28px;
  max-width: min(820px, 94vw);
}

.kasheer-hero__subtitle-viewport {
  overflow: hidden;
}

.kasheer-hero__subtitle:not(.is-ticker-ready) .kasheer-hero__subtitle-line ~ .kasheer-hero__subtitle-line {
  display: none;
}

.kasheer-hero__subtitle-track {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.kasheer-hero__subtitle-line {
  margin: 0;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #3d3d3d;
  font-weight: 400;
}

.kasheer-hero__contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.kasheer-hero__phone-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px 10px 16px;
  border-radius: 40px;
  background: var(--kasheer-brand);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(1, 15, 132, 0.22);
}

.kasheer-hero__phone-pill::before {
  content: "";
  position: absolute;
  inset: 6px 12px;
  border-radius: 32px;
  background: rgba(1, 15, 132, 0.45);
  filter: blur(10px);
  z-index: -1;
}

.kasheer-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kasheer-hero__icon .kasheer-icon {
  width: 20px;
  height: 20px;
}

.kasheer-hero__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e0d14;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.kasheer-hero__phone-pill:hover,
.kasheer-hero__email:hover {
  opacity: 0.92;
}

.kasheer-hero__stage {
  padding: 0 var(--kasheer-pad) 48px;
  --hero-side-w: min(475px, 26vw);
  --hero-side-h: calc(var(--hero-side-w) * 723 / 475);
  --hero-gap: clamp(18px, 2.2vw, 32px);
  --hero-devices-w: min(1220px, calc(100% - (2 * var(--hero-side-w)) + 314px));
  --hero-overlay-left: #010f84;
  --hero-overlay-right: #e1b400;
}

.kasheer-hero__stage-inner {
  position: relative;
  display: grid;
  grid-template-columns: var(--hero-side-w) 1fr var(--hero-side-w);
  align-items: end;
  justify-content: center;
  max-width: 1856px;
  min-height: var(--hero-side-h);
  margin: 0 auto;
}

.kasheer-hero__side-wrap {
  position: relative;
  z-index: 1;
  width: var(--hero-side-w);
  max-width: 475px;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
}

.kasheer-hero__side-wrap--left::after,
.kasheer-hero__side-wrap--right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  mix-blend-mode: color;
}

.kasheer-hero__side-wrap--left::after {
  background: var(--hero-overlay-left);
}

.kasheer-hero__side-wrap--right::after {
  background: var(--hero-overlay-right);
}

.kasheer-hero__side-wrap--left {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.kasheer-hero__side-wrap--right {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.kasheer-hero__side {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 475 / 723;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  background: #eef1f8;
}

.kasheer-hero__side picture,
.kasheer-hero__devices-wrap picture {
  display: block;
  width: 100%;
}

.kasheer-hero__devices-wrap {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  width: var(--hero-devices-w);
  max-width: 1220px;
  min-width: 0;
  z-index: 2;
  pointer-events: none;
}

.kasheer-hero__devices {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 20px 44px rgba(12, 31, 74, 0.14));
}

/* ── Trust ── */
.kasheer-trust {
  padding: 36px 0 44px;
  border-top: 1px solid var(--kasheer-border);
  border-bottom: 1px solid var(--kasheer-border);
  overflow: hidden;
}

.kasheer-trust__label {
  margin: 0 0 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kasheer-muted-2);
}

.kasheer-trust__marquee {
  width: 100%;
  overflow: hidden;
  /* Force LTR so the overflow track anchors to the left edge. In RTL (Arabic)
     the track would otherwise anchor right, leaving a growing empty gap on the
     right as it scrolls (breaking the seamless loop). */
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.kasheer-trust__track {
  display: flex;
  align-items: center;
  width: max-content;
  direction: ltr;
  animation: kasheer-trust-scroll var(--kasheer-trust-duration, 38s) linear infinite;
  will-change: transform;
}

.kasheer-trust__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(56px, 7vw, 104px);
  padding-inline-end: clamp(56px, 7vw, 104px);
  padding-right: clamp(56px, 7vw, 104px);
}

.kasheer-trust__logo {
  display: inline-block;
  flex: 0 0 auto;
  height: 67px;
  width: var(--logo-w);
  background-image: var(--trust-logo-src);
  background-position: var(--logo-x) 0;
  background-repeat: no-repeat;
  background-size: 1860px 67px;
}

@keyframes kasheer-trust-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--kasheer-trust-offset, -50%), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .kasheer-trust__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }

  .kasheer-trust__group[aria-hidden="true"] {
    display: none;
  }
}

/* ── Shared section styles ── */
.kasheer-section {
  padding: 72px 0;
}

.kasheer-section--gray { background: var(--kasheer-bg-soft); }

.kasheer-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #eef1f8;
  color: var(--kasheer-navy-mid);
  font-size: 13px;
  font-weight: 600;
}

.kasheer-badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--kasheer-gold);
}

.kasheer-section__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--kasheer-navy);
}

.kasheer-section__title--center { text-align: center; }

.kasheer-section__title--light { color: var(--kasheer-white); }

.kasheer-section__lead {
  margin: 0 0 40px;
  max-width: 632px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--kasheer-muted);
}

.kasheer-section__lead--center {
  text-align: center;
  margin-inline: auto;
  max-width: 958px;
}

.kasheer-section__lead--light { color: rgba(255, 255, 255, 0.78); }

/* ── Core POS: unified 4-col layout ── */
.kasheer-section--pos { background: var(--kasheer-white); }

.kasheer-pos-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
  align-items: start;
}

.kasheer-pos-intro {
  grid-column: 1 / 3;
  grid-row: 1;
}

.kasheer-pos-intro .kasheer-section__lead {
  margin-bottom: 0;
  max-width: 620px;
}

.kasheer-pos-head__visual {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  align-self: stretch;
}

.kasheer-pos-head__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kasheer-pos-layout > .kasheer-pos-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.kasheer-pos-layout > .kasheer-pos-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.kasheer-pos-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.kasheer-pos-item > div {
  min-width: 0;
}

.kasheer-pos-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.kasheer-pos-item__icon .kasheer-icon {
  width: 32px;
  height: 32px;
}

.kasheer-pos-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--kasheer-navy);
}

.kasheer-pos-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--kasheer-muted);
}

/* ── Inventory: banner + overlapping card ── */
.kasheer-section--inventory {
  --inventory-banner-h: clamp(320px, 39.27vw, 754px);
  --inventory-card-overlap: clamp(200px, 20.96vw, 403px);
  padding: 0 0 80px;
  background: var(--kasheer-bg);
}

.kasheer-inventory-banner {
  height: var(--inventory-banner-h);
  overflow: hidden;
}

.kasheer-inventory-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.kasheer-inventory-stage {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--inventory-card-overlap));
}

.kasheer-inventory-card {
  padding: 40px 48px 48px;
  background: var(--kasheer-white);
  border: 1px solid #e1b400;
  border-radius: 36px;
  box-shadow: 0 8px 40px rgba(12, 31, 74, 0.08);
}

.kasheer-inventory-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 32px 24px;
  align-items: start;
}

.kasheer-inventory-intro {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: start;
}

.kasheer-inventory-intro .kasheer-section__lead {
  margin-bottom: 0;
  max-width: 620px;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
  align-self: center;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
}

/* ── Split sections (Accounting / Staff) ── */
.kasheer-stack-scroll {
  position: relative;
  isolation: isolate;
}

.kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--base {
  position: sticky;
  top: var(--stack-sticky-top, var(--kasheer-header-h));
  z-index: 1;
  background: var(--kasheer-white);
}

.kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--overlay {
  position: sticky;
  top: var(--kasheer-header-h);
  margin-top: calc(-1 * var(--stack-runway, 0px));
  z-index: 2;
  background: var(--kasheer-bg-soft);
  box-shadow: 0 -20px 48px rgba(12, 31, 74, 0.1);
}

/* Collapse the bottom runway so the AI section sits flush after the stack */
.kasheer-stack-scroll.is-stack-active {
  margin-bottom: calc(-1 * var(--stack-runway, 0px));
}

.kasheer-stack-panel--base {
  background: var(--kasheer-white);
}

@media (prefers-reduced-motion: reduce) {
  .kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--base,
  .kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--overlay {
    position: relative;
    top: auto;
    margin-top: 0;
    box-shadow: none;
  }
}

.kasheer-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.kasheer-split-block__visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(12, 31, 74, 0.08);
}

.kasheer-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--kasheer-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--kasheer-white);
}

.kasheer-feature-list__item {
  border-bottom: 1px solid var(--kasheer-border);
}

.kasheer-feature-list__item:last-child { border-bottom: none; }

.kasheer-feature-list__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.kasheer-feature-list__item summary::-webkit-details-marker { display: none; }

.kasheer-feature-list__arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kasheer-feature-list__item[open] .kasheer-icon--accordion {
  transform: rotate(180deg);
}

.kasheer-feature-list__item p {
  margin: 0;
  padding: 0 20px 18px 64px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--kasheer-muted);
}

/* ── AI section ── */
.kasheer-section--ai {
  --ai-shell-max: 1200px;
  --ai-chat-w: 400px;
  --ai-band-h: 440px;
  --ai-chat-overflow: 48px;
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  overflow: visible;
}

.kasheer-ai-shell {
  position: relative;
  width: 100%;
  min-height: var(--ai-band-h);
  overflow: visible;
}

.kasheer-ai-shell__band {
  position: absolute;
  inset: 0;
  background: var(--kasheer-brand);
  z-index: 0;
}

.kasheer-ai-shell__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--ai-chat-w);
  align-items: center;
  gap: 40px;
  width: min(var(--ai-shell-max), calc(100% - (var(--kasheer-pad) * 2)));
  max-width: var(--ai-shell-max);
  margin-inline: auto;
  min-height: var(--ai-band-h);
}

.kasheer-ai-shell__content {
  max-width: 560px;
  padding: 48px 0;
}

.kasheer-ai-shell__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 var(--ai-chat-w);
  width: var(--ai-chat-w);
  max-width: var(--ai-chat-w);
  overflow: visible;
}

.kasheer-ai-shell__visual img {
  display: block;
  position: relative;
  z-index: 2;
  width: var(--ai-chat-w);
  max-width: var(--ai-chat-w);
  height: auto;
  margin-block: calc(-1 * var(--ai-chat-overflow));
  filter: drop-shadow(0 20px 44px rgba(8, 22, 51, 0.16));
}

.kasheer-badge--ai {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--kasheer-white);
  color: var(--kasheer-brand);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.kasheer-ai-layout__title {
  margin: 0 0 14px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--kasheer-white);
}

.kasheer-ai-layout__title-mark {
  display: inline;
}

.kasheer-ai-layout__lead {
  margin: 0 0 16px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.kasheer-ai-layout__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kasheer-ai-layout__list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.kasheer-ai-layout__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%);
}

.kasheer-ai-layout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.kasheer-ai-layout__actions .kasheer-btn--gold,
.kasheer-ai-layout__actions .kasheer-btn--outline-light {
  min-width: 240px;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  padding: 14px 22px;
  font-size: 15px;
}

.kasheer-ai-layout__actions .kasheer-btn--gold {
  color: var(--kasheer-brand);
}

/* ── How it works ── */
.kasheer-section--how {
  background: var(--kasheer-white);
  position: relative;
  z-index: 0;
}

.kasheer-how .kasheer-section__title--center {
  margin-bottom: 20px;
}

.kasheer-how .kasheer-section__lead--center {
  max-width: 958px;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--kasheer-muted);
}

.kasheer-how-cards {
  --how-card-w: 360px;
  --how-card-gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, var(--how-card-w)));
  gap: var(--how-card-gap);
  width: min(100%, calc(var(--how-card-w) * 3 + var(--how-card-gap) * 2));
  max-width: calc(100% - clamp(64px, 14vw, 280px));
  margin: 0 auto 40px;
  padding-inline: clamp(16px, 4vw, 40px);
  box-sizing: content-box;
}

.kasheer-how-card {
  min-height: 250px;
  padding: 32px;
  background: var(--kasheer-white);
  border: 1px solid var(--kasheer-gold);
  border-radius: 16px;
  box-shadow: none;
}

.kasheer-how-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.kasheer-how-card__icon .kasheer-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.kasheer-how-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--kasheer-brand);
}

.kasheer-how-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--kasheer-muted);
}

.kasheer-how-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
}

.kasheer-how-ctas .kasheer-btn--gold,
.kasheer-how-ctas .kasheer-btn--phone-dark {
  min-width: 288px;
  border-radius: 40px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
}

.kasheer-how-ctas .kasheer-btn--phone-dark {
  background: var(--kasheer-brand);
  color: var(--kasheer-white);
}

.kasheer-how-ctas .kasheer-btn--phone-dark .kasheer-icon {
  filter: brightness(0) invert(1);
}

/* ── Integrations (3-col card grid) ── */
.kasheer-section--integrations {
  background: var(--kasheer-bg-soft);
  padding-top: 72px;
  padding-bottom: 88px;
  overflow: visible;
}

.kasheer-section-composite {
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.kasheer-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.kasheer-integration-tile {
  padding: 28px 20px 24px;
  background: var(--kasheer-white);
  border: 1px solid var(--kasheer-gold);
  border-radius: 12px;
  text-align: center;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(12, 31, 74, 0.04);
}

.kasheer-integration-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 16px;
}

.kasheer-integration-tile__logo img {
  max-width: 200px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.kasheer-integration-tile__logo img[alt="MyFatoorah"] {
  max-width: 240px;
  max-height: 96px;
}

.kasheer-integration-tile h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--kasheer-navy);
}

/* ── Pricing ── */
.kasheer-section--pricing { background: var(--kasheer-white); }

.kasheer-pricing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px clamp(28px, 5vw, 72px);
  max-width: 1100px;
  margin: 28px auto 32px;
}

.kasheer-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--kasheer-navy);
  white-space: nowrap;
}

.kasheer-pricing-badge--support {
  flex: 0 0 100%;
  justify-content: center;
}

.kasheer-pricing-badge__icon {
  display: block;
  width: auto;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.kasheer-pricing-badge__icon--zatca {
  height: 36px;
}

.kasheer-pricing-badge__icon--support {
  height: 32px;
  width: auto;
  max-width: 84px;
}

.kasheer-billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.kasheer-billing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kasheer-billing-note {
  margin: 0;
  font-size: 14px;
  color: #7c3aed;
  font-weight: 600;
}

.kasheer-billing-note span {
  display: block;
  font-size: 12px;
  color: var(--kasheer-muted);
  font-weight: 500;
}

.kasheer-billing-toggle {
  display: inline-flex;
  padding: 5px;
  background: var(--kasheer-bg);
  border: 1px solid var(--kasheer-border);
  border-radius: 12px;
}

.kasheer-billing-toggle .payment_type {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kasheer-muted);
  text-decoration: none;
}

.kasheer-billing-toggle .payment_type.div_active {
  background: var(--kasheer-white);
  color: var(--kasheer-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kasheer-billing-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--kasheer-muted);
}


.kasheer-billing-help a {
  color: var(--kasheer-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kasheer-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.kasheer-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  background: #f3f4f6;
  border: 1px solid var(--kasheer-border);
  border-radius: 16px;
}

.kasheer-plan.is-recommended {
  border: 2px solid var(--kasheer-gold);
  box-shadow: 0 12px 40px rgba(225, 180, 0, 0.12);
  background: #f8f9fb;
}

.kasheer-plan__ribbon {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--kasheer-gold-dark);
}

.kasheer-plan h3 {
  margin: 12px 0 8px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.kasheer-plan__tagline {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--kasheer-muted);
  min-height: 42px;
}

.kasheer-plan__price {
  text-align: center;
  margin-bottom: 20px;
}

.kasheer-plan__currency {
  font-size: 18px;
  font-weight: 600;
  vertical-align: super;
}

.kasheer-plan__amount {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--kasheer-navy);
}

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

.kasheer-plan__was {
  display: block;
  font-size: 14px;
  color: var(--kasheer-muted);
  margin-bottom: 4px;
}

.kasheer-plan__btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid var(--kasheer-navy);
  background: var(--kasheer-white);
  color: var(--kasheer-navy);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.kasheer-plan.is-recommended .kasheer-plan__btn {
  background: var(--kasheer-navy);
  color: var(--kasheer-white);
  border-color: var(--kasheer-navy);
}

.kasheer-plan__features h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.kasheer-plan__features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kasheer-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--kasheer-border);
}

.kasheer-plan__features li .kasheer-icon--feature {
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Pricing comparison table ── */
.kasheer-compare {
  margin-top: 56px;
  max-width: 1200px;
  margin-inline: auto;
}

.kasheer-compare__title {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 700;
  color: var(--kasheer-navy);
}

.kasheer-compare__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--kasheer-border);
  border-radius: 12px;
  background: var(--kasheer-white);
}

.kasheer-compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.kasheer-compare__table th,
.kasheer-compare__table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--kasheer-border);
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}

.kasheer-compare__table thead th:not(:first-child),
.kasheer-compare__table tbody td {
  width: calc(60% / var(--compare-plan-cols, 3));
}

.kasheer-compare__table tbody td .kasheer-icon {
  display: inline-block;
  vertical-align: middle;
}

.kasheer-compare__table thead th {
  background: #f8f9fc;
  font-weight: 700;
  color: var(--kasheer-navy);
  vertical-align: bottom;
}

.kasheer-compare__table thead th span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--kasheer-muted);
}

.kasheer-compare__table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--kasheer-text);
  width: 40%;
}

.kasheer-compare__table tbody tr:last-child th,
.kasheer-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.kasheer-pricing-testimonial {
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
  border-top: 1px solid var(--kasheer-border);
}

.kasheer-pricing-testimonial p {
  margin: 0 0 16px;
  color: var(--kasheer-muted);
  font-size: 15px;
}

.kasheer-pricing-testimonial__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  font-weight: 600;
  color: var(--kasheer-navy);
}

/* ── Contact ── */
.kasheer-section--contact {
  background: var(--kasheer-bg);
  padding: 56px 0 72px;
}

.kasheer-contact-form {
  max-width: 520px;
  margin-inline: auto;
  padding: 32px 36px 36px;
  background: var(--kasheer-white);
  border-radius: 28px;
  box-shadow: 0 10px 44px rgba(12, 31, 74, 0.08);
}

.kasheer-contact-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.kasheer-contact-form__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #181818;
}

.kasheer-contact-form__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.kasheer-contact-form__field {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: #181818;
  background: var(--kasheer-white);
  transition: border-color 0.2s ease;
}

.kasheer-contact-form__field::placeholder {
  color: #9ca3af;
}

.kasheer-contact-form__field:focus {
  outline: none;
  border-color: var(--kasheer-brand);
}

.kasheer-contact-form__field--message {
  min-height: 140px;
  margin-bottom: 20px;
  resize: vertical;
}

.kasheer-contact-form__submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--kasheer-white);
  background: linear-gradient(180deg, #0c1a9a 0%, var(--kasheer-brand) 100%);
  box-shadow: 0 8px 20px rgba(1, 15, 132, 0.22);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.kasheer-contact-form__submit:hover {
  opacity: 0.92;
}

/* ── Footer (white, Figma page footer) ── */
.kasheer-footer {
  padding: 40px 0 24px;
  background: var(--kasheer-white);
  color: #181818;
}

.kasheer-footer__shell {
  width: 100%;
}

.kasheer-footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

.kasheer-footer__brand {
  flex: 0 1 320px;
  max-width: 320px;
}

.kasheer-footer__col {
  flex: 0 1 auto;
  min-width: 150px;
}

.kasheer-footer__brand-logo {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}

.kasheer-footer__brand img {
  height: 47px;
  width: auto;
  max-width: 188px;
}

.kasheer-footer__brand p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: #46484d;
}

.kasheer-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kasheer-footer__social a {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.kasheer-footer__social a:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.kasheer-footer__social .kasheer-icon--social {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.kasheer-footer h4 {
  margin: 0 0 14px;
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.kasheer-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kasheer-footer li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #181818;
}

.kasheer-footer li:last-child {
  margin-bottom: 0;
}

.kasheer-footer a {
  color: #181818;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
}

.kasheer-footer a:hover { color: var(--kasheer-brand); }

.kasheer-footer__copyright {
  margin-top: 28px;
  padding-top: 0;
  text-align: center;
}

.kasheer-footer__copyright p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

.kasheer-footer__stars {
  color: var(--kasheer-gold);
  letter-spacing: 6px;
  margin-bottom: 8px;
  font-size: 20px;
}

/* ── Scroll reveal animations ── */
@media (prefers-reduced-motion: no-preference) {
  .kasheer-reveal {
    opacity: 0;
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .kasheer-reveal--fade { transform: none; }
  .kasheer-reveal--up { transform: translate3d(0, 28px, 0); }
  .kasheer-reveal--down { transform: translate3d(0, -28px, 0); }
  .kasheer-reveal--left { transform: translate3d(-36px, 0, 0); }
  .kasheer-reveal--right { transform: translate3d(36px, 0, 0); }

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

  .kasheer-reveal--delay-1 { transition-delay: 0.08s; }
  .kasheer-reveal--delay-2 { transition-delay: 0.16s; }
  .kasheer-reveal--delay-3 { transition-delay: 0.24s; }
  .kasheer-reveal--delay-4 { transition-delay: 0.32s; }
  .kasheer-reveal--delay-5 { transition-delay: 0.4s; }
  .kasheer-reveal--delay-6 { transition-delay: 0.48s; }

  .kasheer-hero .kasheer-reveal {
    transition-duration: 0.85s;
  }

  .kasheer-hero .kasheer-reveal--delay-1 { transition-delay: 0.1s; }
  .kasheer-hero .kasheer-reveal--delay-2 { transition-delay: 0.22s; }
  .kasheer-hero .kasheer-reveal--delay-3 { transition-delay: 0.36s; }
  .kasheer-hero .kasheer-reveal--delay-4 { transition-delay: 0.52s; }
}

@media (prefers-reduced-motion: reduce) {
  .kasheer-reveal {
    opacity: 1;
    transform: none;
  }
}

.kasheer-btn--outline {
  background: transparent;
  border: 1px solid var(--kasheer-border);
  color: var(--kasheer-navy);
}

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

/* ── Modal ── */
.kasheer-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 22, 51, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.kasheer-modal-overlay.is-open { opacity: 1; visibility: visible; }

.kasheer-modal {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.kasheer-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--kasheer-navy);
  color: #fff;
}

.kasheer-modal__head h2 { margin: 0; font-size: 20px; }

.kasheer-modal__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.kasheer-modal__body { padding: 24px; }

.kasheer-modal__body select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--kasheer-border);
  border-radius: 8px;
}

.kasheer-modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 24px 24px;
}

/* ── Responsive ── */
@media (min-width: 768px) and (max-width: 1199px) {
  .kasheer-section--ai {
    --ai-shell-max: 100%;
    --ai-chat-w: min(400px, 32vw);
    --ai-band-h: min(440px, 38vw);
    --ai-chat-overflow: min(48px, 4vw);
    padding: clamp(48px, 5vw, 72px) 0 clamp(56px, 6vw, 88px);
  }

  .kasheer-ai-shell__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, var(--ai-chat-w));
    gap: clamp(24px, 3vw, 40px);
  }

  .kasheer-ai-shell__visual {
    flex: 0 1 var(--ai-chat-w);
    width: auto;
    max-width: var(--ai-chat-w);
  }

  .kasheer-ai-shell__visual img {
    width: 100%;
    max-width: 100%;
  }

  .kasheer-ai-layout__title {
    font-size: clamp(28px, 3.2vw, 36px);
  }

  .kasheer-ai-shell__content {
    padding: clamp(28px, 3vw, 48px) 0;
  }
}

@media (max-width: 767px) {
  .kasheer-section--ai {
    --ai-chat-w: min(100%, 340px);
    --ai-chat-overflow: 0px;
    --ai-band-h: auto;
    padding: clamp(40px, 6vw, 56px) 0;
  }

  .kasheer-ai-shell {
    min-height: 0;
  }

  .kasheer-ai-shell__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 32px;
    max-width: none;
  }

  .kasheer-ai-shell__content {
    max-width: none;
    padding: clamp(24px, 4vw, 40px) 0 0;
  }

  .kasheer-ai-shell__visual {
    justify-content: center;
    flex: none;
    width: 100%;
    max-width: none;
    padding-bottom: clamp(8px, 2vw, 16px);
  }

  .kasheer-ai-shell__visual img {
    width: min(100%, 400px);
    max-width: min(100%, 400px);
    margin-block: 0;
    margin-inline: auto;
  }

  .kasheer-ai-layout__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .kasheer-ai-layout__actions .kasheer-btn--gold,
  .kasheer-ai-layout__actions .kasheer-btn--outline-light {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .kasheer-pos-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kasheer-pos-intro { grid-column: 1 / -1; }
  .kasheer-pos-head__visual {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
  .kasheer-pos-layout > .kasheer-pos-item:nth-child(3),
  .kasheer-pos-layout > .kasheer-pos-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .kasheer-inventory-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kasheer-inventory-intro { grid-column: 1 / -1; }
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(2),
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(3),
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(4),
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(5),
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(6),
  .kasheer-inventory-layout > .kasheer-inventory-feature:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
  }
  .kasheer-integration-grid { grid-template-columns: repeat(3, 1fr); }
  .kasheer-hero__stage {
    --hero-side-w: 0px;
    --hero-gap: 0px;
    --hero-devices-w: min(920px, 100%);
  }
  .kasheer-hero__stage-inner {
    display: block;
    min-height: auto;
  }
  .kasheer-hero__side-wrap { display: none; }
  .kasheer-hero__devices-wrap {
    width: min(920px, 100%);
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .kasheer-header__inner {
    grid-template-columns: 1fr auto;
  }
  .kasheer-nav-wrap {
    position: fixed;
    inset: var(--kasheer-header-h) 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--kasheer-border);
    padding: 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    justify-self: stretch;
    grid-column: 1 / -1;
  }
  .kasheer-nav-wrap.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .kasheer-nav { flex-direction: column; align-items: flex-start; gap: 8px; }
  .kasheer-nav__mobile-only { display: list-item; }
  .kasheer-menu-toggle { display: flex; }
  .kasheer-split-block {
    grid-template-columns: 1fr;
  }
  .kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--base,
  .kasheer-stack-scroll.is-stack-active .kasheer-stack-panel--overlay {
    position: relative;
    top: auto;
    margin-top: 0;
    box-shadow: none;
  }
  .kasheer-inventory-layout,
  .kasheer-integration-grid,
  .kasheer-pricing-grid { grid-template-columns: 1fr; }
  .kasheer-footer__main { flex-direction: column; align-items: center; }
  .kasheer-footer__brand,
  .kasheer-footer__col { max-width: 100%; width: 100%; }
  .kasheer-how-cards {
    --how-card-w: min(360px, calc((100% - var(--how-card-gap, 24px)) / 2));
    grid-template-columns: repeat(2, minmax(0, var(--how-card-w)));
    width: min(100%, calc(var(--how-card-w) * 2 + var(--how-card-gap, 24px)));
    max-width: calc(100% - clamp(32px, 8vw, 120px));
  }
}

@media (max-width: 640px) {
  .kasheer-pos-layout,
  .kasheer-inventory-layout,
  .kasheer-integration-grid,
  .kasheer-pricing-grid { grid-template-columns: 1fr; }
  .kasheer-contact-form {
    padding: 24px 20px 28px;
    border-radius: 22px;
  }
  .kasheer-contact-form__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }
  .kasheer-contact-form__badge {
    width: 40px;
    height: 40px;
  }
  .kasheer-footer__brand p { margin-bottom: 20px; }
  .kasheer-how-cards {
    --how-card-w: min(100%, 360px);
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    max-width: calc(100% - 32px);
  }
  .kasheer-how-ctas .kasheer-btn--gold,
  .kasheer-how-ctas .kasheer-btn--phone-dark {
    min-width: 0;
    width: 100%;
  }
  .kasheer-pricing-badge {
    white-space: normal;
  }
  .kasheer-billing-row { flex-direction: column; align-items: flex-start; }
}
