.is-saas-landing {
  --is-ink: oklch(96% 0.012 178);
  --is-muted: oklch(79% 0.035 178);
  --is-soft: oklch(70% 0.08 178);
  --is-primary: #005F55;
  --is-primary-strong: #0b8a78;
  --is-gold: #F2A052;
  --is-orange: #F2A052;
  --is-green: #005F55;
  --is-bg: oklch(14% 0.035 178);
  --is-panel: oklch(20% 0.045 178);
  --is-panel-2: oklch(25% 0.055 178);
  --is-line: oklch(38% 0.055 178);
  --is-radius: 24px;
  color: var(--is-ink);
  background:
    radial-gradient(circle at 80% 4%, oklch(52% 0.16 178 / 0.42), transparent 30rem),
    radial-gradient(circle at 8% 34%, oklch(78% 0.12 62 / 0.18), transparent 24rem),
    linear-gradient(180deg, oklch(14% 0.035 178), oklch(18% 0.04 178) 48%, oklch(95% 0.01 178) 48%);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.is-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(16% 0.045 178 / 0.96);
  border-block-end: 1px solid oklch(88% 0.03 178 / 0.1);
  backdrop-filter: blur(16px);
}

.is-header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
}

.is-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--is-ink);
  font-weight: 900;
}

.is-header__brand:hover {
  color: var(--is-ink);
  text-decoration: none;
}

.is-header__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #F5F5F5;
  border: 1px solid oklch(88% 0.03 178 / 0.18);
  overflow: hidden;
}

.is-header__mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.is-header__name {
  max-width: 16ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-header__links {
  gap: 4px;
  align-items: center;
}

.is-header__links .nav-link {
  color: oklch(86% 0.035 178);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.is-header__links .nav-link:hover,
.is-header__links .nav-link:focus {
  color: var(--is-gold);
  background: oklch(100% 0.01 178 / 0.07);
}

.is-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}

.is-header__lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border-radius: 999px;
  background: oklch(100% 0.01 178 / 0.07);
  border: 1px solid oklch(88% 0.03 178 / 0.14);
}

.is-header__lang-toggle a {
  min-width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: oklch(84% 0.035 178);
  font-size: 0.86rem;
  font-weight: 900;
}

.is-header__lang-toggle a:hover,
.is-header__lang-toggle a:focus {
  color: var(--is-gold);
  text-decoration: none;
}

.is-header__lang-toggle a.is-active {
  color: oklch(20% 0.04 178);
  background: #F2A052;
}

.is-header__ghost,
.is-header__primary,
.is-header__toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.is-header__ghost {
  border: 1px solid oklch(88% 0.03 178 / 0.16);
  background: oklch(100% 0.01 178 / 0.06);
  color: oklch(88% 0.035 178);
  padding: 10px 15px;
}

.is-header__ghost:hover {
  color: var(--is-gold);
  text-decoration: none;
  border-color: oklch(78% 0.12 62 / 0.48);
}

.is-header .is-header__primary {
  background: #F2A052 !important;
  color: oklch(20% 0.04 178) !important;
  padding: 11px 18px;
  min-width: 104px;
  box-shadow: 0 14px 34px oklch(78% 0.12 62 / 0.22);
  white-space: nowrap;
}

.is-header .is-header__primary:hover {
  color: oklch(20% 0.04 178) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.is-header__toggle {
  margin-inline-start: auto;
  color: var(--is-ink);
  border: 1px solid oklch(88% 0.03 178 / 0.16);
  padding: 10px 13px;
}

.is-saas-landing *,
.is-saas-landing *::before,
.is-saas-landing *::after {
  box-sizing: border-box;
}

.is-hero {
  min-height: clamp(680px, calc(100vh - 82px), 940px);
  padding: clamp(44px, 8vw, 104px) clamp(18px, 4vw, 64px) clamp(36px, 6vw, 76px);
  display: grid;
  align-items: center;
}

.is-hero__shell,
.is-flow,
.is-solutions,
.is-showcase,
.is-pricing,
.is-final {
  width: min(1180px, calc(100vw - 36px));
  margin-inline: auto;
}

.is-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.is-kicker {
  margin: 0 0 14px;
  color: var(--is-gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.is-hero h1,
.is-section-heading h2,
.is-showcase h2,
.is-pricing h2,
.is-final h2 {
  margin: 0;
  color: var(--is-ink);
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.is-hero h1 {
  max-width: 15ch;
  font-size: clamp(3.1rem, 5.4vw, 5.9rem);
  line-height: 0.98;
}

.is-hero__lead {
  max-width: 63ch;
  margin: clamp(20px, 3vw, 30px) 0 0;
  color: var(--is-muted);
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.is-hero__actions,
.is-pricing__actions,
.is-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.is-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1), background 220ms cubic-bezier(.22, 1, .36, 1), border-color 220ms cubic-bezier(.22, 1, .36, 1);
}

.is-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.is-btn--primary {
  background: #F2A052;
  color: oklch(18% 0.04 178);
  box-shadow: 0 18px 42px oklch(78% 0.12 62 / 0.22);
}

.is-btn--secondary {
  color: var(--is-ink);
  border: 1px solid oklch(84% 0.04 178 / 0.34);
  background: oklch(100% 0.01 178 / 0.08);
}

.is-btn--text {
  color: var(--is-soft);
  padding-inline: 8px;
}

.is-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
  margin: 42px 0 0;
}

.is-proof div {
  border-block-start: 1px solid oklch(84% 0.04 178 / 0.2);
  padding-block-start: 16px;
}

.is-proof dt {
  color: var(--is-ink);
  font-size: 1.14rem;
  font-weight: 900;
}

.is-proof dd {
  margin: 6px 0 0;
  color: var(--is-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.is-hero__visual {
  position: relative;
  min-height: 580px;
}

.is-dashboard {
  position: absolute;
  inset-block-start: 8%;
  inset-inline-end: 0;
  width: min(560px, 100%);
  min-height: 390px;
  padding: 20px;
  border: 1px solid oklch(86% 0.04 178 / 0.22);
  border-radius: 34px;
  background: linear-gradient(145deg, oklch(24% 0.055 178 / 0.96), oklch(16% 0.04 178 / 0.96));
  box-shadow: 0 26px 90px oklch(6% 0.02 178 / 0.52);
}

.is-dashboard__top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--is-muted);
}

.is-dashboard__top span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--is-soft);
}

.is-dashboard__top strong {
  margin-inline-start: auto;
  color: var(--is-ink);
}

.is-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.is-stat,
.is-chart,
.is-ticket {
  min-height: 112px;
  border-radius: 18px;
  background: oklch(100% 0.01 178 / 0.07);
  border: 1px solid oklch(86% 0.04 178 / 0.12);
  padding: 18px;
}

.is-stat span,
.is-ticket span {
  display: block;
  color: var(--is-muted);
  font-size: 0.88rem;
}

.is-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--is-ink);
  font-size: 2rem;
  font-weight: 900;
}

.is-chart {
  grid-column: span 2;
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 144px;
}

.is-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--is-gold), var(--is-primary-strong));
}

.is-ticket {
  grid-column: span 2;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.is-ticket strong {
  color: var(--is-gold);
}

.is-phone {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: min(278px, 54vw);
  border: 10px solid oklch(8% 0.025 178);
  border-radius: 38px;
  background: oklch(95% 0.012 178);
  color: oklch(18% 0.04 178);
  box-shadow: 0 30px 90px oklch(6% 0.02 178 / 0.58);
  overflow: hidden;
  transform: rotate(-4deg);
  z-index: 2;
}

[dir="rtl"] .is-phone {
  transform: rotate(4deg);
}

.is-phone__bar {
  width: 72px;
  height: 5px;
  margin: 12px auto;
  border-radius: 99px;
  background: oklch(72% 0.02 178);
}

.is-phone img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  display: block;
}

.is-phone__body {
  padding: 18px;
}

.is-phone__body p {
  margin: 0;
  color: oklch(43% 0.08 178);
  font-weight: 800;
}

.is-phone__body h2 {
  margin: 6px 0 14px;
  color: oklch(18% 0.04 178);
  font-size: 1.56rem;
  font-weight: 900;
  line-height: 1.08;
}

.is-phone__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: oklch(28% 0.045 178);
}

.is-phone button {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 16px;
  background: var(--is-primary);
  color: var(--is-ink);
  font-weight: 900;
}

.is-strip {
  width: min(1180px, calc(100vw - 36px));
  margin: -10px auto 0;
  padding: 16px 0 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.is-strip span {
  color: var(--is-ink);
  border: 1px solid oklch(84% 0.04 178 / 0.2);
  border-radius: 999px;
  padding: 10px 15px;
  background: oklch(100% 0.01 178 / 0.07);
}

.is-flow,
.is-solutions,
.is-showcase,
.is-pricing,
.is-final {
  color: oklch(21% 0.035 178);
}

.is-flow {
  padding: clamp(58px, 9vw, 110px) 0 clamp(44px, 7vw, 84px);
  background: oklch(95% 0.01 178);
  box-shadow: 0 0 0 100vmax oklch(95% 0.01 178);
  clip-path: inset(0 -100vmax);
}

.is-section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.is-section-heading .is-kicker,
.is-showcase .is-kicker,
.is-pricing .is-kicker,
.is-final .is-kicker {
  color: var(--is-primary);
}

.is-section-heading h2,
.is-showcase h2,
.is-pricing h2,
.is-final h2 {
  color: oklch(21% 0.035 178);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.is-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.is-flow__steps article {
  padding-block-start: 20px;
  border-block-start: 1px solid oklch(70% 0.05 178 / 0.45);
}

.is-flow__steps span {
  color: var(--is-primary);
  font-weight: 900;
  font-size: 0.92rem;
}

.is-flow__steps h3,
.is-solution-grid h3 {
  margin: 12px 0 10px;
  color: oklch(21% 0.035 178);
  font-size: 1.35rem;
  font-weight: 900;
}

.is-flow__steps p,
.is-solution-grid p,
.is-showcase p,
.is-pricing p {
  color: oklch(42% 0.035 178);
  line-height: 1.78;
  margin: 0;
}

.is-solutions {
  padding: clamp(24px, 6vw, 70px) 0;
  background: oklch(95% 0.01 178);
  box-shadow: 0 0 0 100vmax oklch(95% 0.01 178);
  clip-path: inset(0 -100vmax);
}

.is-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.is-solution-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 22px;
  background: oklch(100% 0.006 178);
  border: 1px solid oklch(82% 0.025 178);
  box-shadow: 0 20px 58px oklch(30% 0.045 178 / 0.08);
}

.is-solution-grid i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: oklch(96% 0.012 178);
  background: var(--is-primary);
  font-size: 1.3rem;
}

.is-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  background: oklch(95% 0.01 178);
  box-shadow: 0 0 0 100vmax oklch(95% 0.01 178);
  clip-path: inset(0 -100vmax);
}

.is-showcase__image {
  border-radius: 32px;
  overflow: hidden;
  min-height: 440px;
  background: oklch(88% 0.018 178);
}

.is-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.is-showcase__copy p {
  margin-top: 22px;
  max-width: 62ch;
}

.is-showcase__copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.is-showcase__copy li {
  position: relative;
  padding-inline-start: 30px;
  color: oklch(30% 0.035 178);
  font-weight: 800;
}

.is-showcase__copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--is-gold);
  box-shadow: 0 0 0 5px oklch(78% 0.12 62 / 0.2);
}

.is-pricing,
.is-final {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 6vw, 60px);
  border-radius: 34px;
}

.is-pricing {
  background: oklch(100% 0.006 178);
  border: 1px solid oklch(82% 0.025 178);
}

.is-pricing .is-btn--secondary {
  color: oklch(23% 0.045 178);
  border-color: oklch(54% 0.08 178 / 0.38);
  background: oklch(96% 0.012 178);
}

.is-pricing .is-btn--secondary:hover,
.is-pricing .is-btn--secondary:focus {
  color: oklch(16% 0.04 178);
  border-color: var(--is-primary);
  background: oklch(91% 0.025 178);
}

.is-pricing p {
  max-width: 66ch;
  margin-top: 16px;
}

.is-final {
  margin-block: clamp(52px, 8vw, 100px);
  color: var(--is-ink);
  background:
    radial-gradient(circle at 82% 18%, oklch(78% 0.12 62 / 0.2), transparent 28rem),
    linear-gradient(135deg, oklch(17% 0.045 178), oklch(34% 0.12 178));
}

.is-final h2 {
  max-width: 760px;
  color: var(--is-ink);
}

.is-final .is-btn--secondary {
  background: oklch(100% 0.01 178 / 0.1);
}

@media (prefers-reduced-motion: no-preference) {
  .is-dashboard,
  .is-phone,
  .is-solution-grid article,
  .is-showcase__image {
    transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
  }

  .is-hero__visual:hover .is-phone {
    transform: rotate(-2deg) translateY(-6px);
  }

  [dir="rtl"] .is-hero__visual:hover .is-phone {
    transform: rotate(2deg) translateY(-6px);
  }

  .is-hero__visual:hover .is-dashboard {
    transform: translateY(6px);
  }

  .is-solution-grid article:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 991px) {
  .is-hero__shell,
  .is-showcase {
    grid-template-columns: 1fr;
  }

  .is-hero h1 {
    max-width: 14ch;
  }

  .is-hero__visual {
    min-height: 520px;
  }

  .is-dashboard {
    inset-inline: auto 0;
  }

  .is-flow__steps {
    grid-template-columns: 1fr;
  }

  .is-pricing,
  .is-final {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .is-saas-landing {
    background:
      radial-gradient(circle at 70% 0%, oklch(52% 0.16 178 / 0.36), transparent 22rem),
      linear-gradient(180deg, oklch(14% 0.035 178), oklch(18% 0.04 178) 42%, oklch(95% 0.01 178) 42%);
  }

  .is-hero {
    min-height: auto;
    padding-inline: 20px;
    padding-block: 56px 48px;
  }

  .is-hero__shell,
  .is-flow,
  .is-solutions,
  .is-showcase,
  .is-pricing,
  .is-final,
  .is-strip {
    width: 100%;
  }

  .is-hero__copy {
    width: min(100%, calc(100vw - 40px));
  }

  .is-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.45rem, 13vw, 3.45rem);
    line-height: 1.03;
  }

  .is-hero__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .is-hero__visual {
    min-height: 390px;
    margin-top: 8px;
  }

  .is-dashboard {
    width: 86%;
    min-height: 280px;
    inset-block-start: 48px;
    inset-inline-end: -10px;
    padding: 14px;
  }

  .is-phone {
    width: min(220px, 64vw);
    inset-inline-start: 4px;
  }

  .is-stat,
  .is-chart,
  .is-ticket {
    padding: 14px;
  }

  .is-stat strong {
    font-size: 1.5rem;
  }

  .is-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .is-strip {
    padding-bottom: 22px;
  }

  .is-showcase__image,
  .is-showcase__image img {
    min-height: 310px;
  }

  .is-pricing,
  .is-final {
    width: min(1180px, calc(100vw - 24px));
    padding: 28px 22px;
    border-radius: 26px;
  }

  .is-btn {
    width: 100%;
  }

  .is-header .container {
    min-height: 70px;
  }

  .is-header__actions {
    align-items: stretch;
    gap: 10px;
    padding: 16px 0 18px;
  }

  .is-header__lang-toggle,
  .is-header__ghost,
  .is-header .is-header__primary {
    width: 100%;
  }
}
