﻿:root {
  --primary: #ef521e;
  --primary-strong: #f54900;
  --primary-soft: #ffedd4;
  --dark: #0a1112;
  --text: #101828;
  --muted: #4a5565;
  --line: #f1f5f9;
  --white: #ffffff;
  --success: #00a63e;
  --page-gutter: clamp(16px, calc((100vw - 1312px) / 2), 64px);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Noto Sans Arabic", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: calc(100% - (var(--page-gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.title-stack {
  text-align: center;
  margin-bottom: 48px;
}

.title-stack h2 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

.subtitle {
  margin: 14px auto 0;
  max-width: 820px;
  font-size: 18px;
  line-height: 28px;
  color: var(--muted);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  margin: 0 0 14px;
  font-size: 16px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.section-tag.single::before {
  display: inline-block;
}

.section-tag.single::after {
  display: none;
}

.section-tag.light {
  color: #ffffff;
}

.section-tag.light::before,
.section-tag.light::after {
  background: #ffffff;
}

.badge {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(239, 82, 30, 0.4);
  border-radius: 999px;
  background: #ffffff;
  color: #d04700;
  padding: 8px 20px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.icon-svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.btn-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  width: 262px;
  min-height: 58px;
  font-weight: 500;
}

.btn-success {
  background: var(--success);
  color: #ffffff;
  min-height: 64px;
  min-width: 319px;
  border-radius: 14px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

.btn.large {
  min-width: 258px;
  min-height: 56px;
}

.icon {
  font-size: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: #ffffff;
  height: 80px;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: #f3f4f6;
  box-shadow: 0 12px 40px rgba(10, 17, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}

.logo img {
  width: 93px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: #364153;
  font-weight: 500;
  font-size: 16px;
}

.main-nav a.active {
  color: var(--primary-strong);
  background: #fff7ed;
  font-weight: 700;
}

.header-cta {
  width: 157px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #ef521e;
  color: #ffffff;
  font-weight: 500;
  line-height: 24px;
  box-shadow: none;
}

.header-cta:hover {
  transform: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 748px;
  padding-top: 128px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/hero_bg.jpg") center/cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 43, 0.25) 0%,
      rgba(15, 23, 43, 0.9) 100%
    ),
    linear-gradient(90deg, rgba(245, 73, 0, 0.24) 0%, rgba(0, 0, 0, 0) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-right: 0;
  margin-left: auto;
  margin-inline-start: 0;
  margin-inline-end: auto;
  width: min(595px, 100%);
  max-width: 595px;
  color: #ffffff;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.hero h1 {
  margin: 0;
  text-align: right;
  font-size: 48px;
  line-height: 66px;
  font-weight: 700;
}

.hero-number {
  font-family: "Noto Sans Arabic", sans-serif;
}

.hero p {
  margin: 0;
  max-width: 595px;
  text-align: right;
  font-size: 20px;
  line-height: 1.62;
}

.hero p strong {
  font-family: "Noto Sans Arabic", sans-serif;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 39px;
  margin-top: 22px;
}

.hero-stats article {
  text-align: center;
}

.hero-stats h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-family: "Noto Sans Arabic", sans-serif;
}

.hero-stats .stat-value {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  direction: ltr;
  unicode-bidi: isolate;
}

.hero-stats p {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.hero-alert {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  min-height: 46px;
  padding: 0.8px 20.8px;
  font-size: 16px;
  font-weight: 500;
}

.hero-alert-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.floating-whatsapp {
  position: fixed;
  right: max(var(--page-gutter), 16px);
  bottom: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #00a63e;
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
  z-index: 900;
  font-size: 0;
  transition: transform 0.2s ease;
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.whatsapp-popup {
  position: absolute;
  right: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(50%);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #101828;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  animation: whatsapp-popup-pulse 2.2s ease-in-out infinite;
}

.whatsapp-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 10px;
  height: 10px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@keyframes whatsapp-popup-pulse {
  0%,
  100% {
    opacity: 0.9;
    transform: translateX(50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(50%) translateY(-3px);
  }
}

.about {
  background: #ffffff;
  padding-top: 80px;
}

.about-grid {
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(260px, 476fr) minmax(0, 810fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}

.about-media {
  position: relative;
  width: min(502px, 100%);
  aspect-ratio: 502 / 496;
  height: auto;
}

.about-media .shape {
  position: absolute;
  width: 94.756%;
  height: 95.902%;
  top: 0;
  right: 0;
  background: #efc5b5;
  border-radius: 17.55px;
}

.about-media img {
  position: absolute;
  width: 94.756%;
  height: 95.902%;
  top: 3.98%;
  right: 5.24%;
  object-fit: cover;
  border-radius: 17.55px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.18);
}

.about-content {
  direction: rtl;
  text-align: right;
  width: 100%;
  min-width: 0;
}

.about-content h2 {
  margin: 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content .lead {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 29.25px;
  color: #364153;
}

.about-features {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  width: min(573px, 100%);
}

.about-features article {
  border: 0.8px solid #f3f4f6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24.8px;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
}

.about-features article > div:last-child {
  flex: 1;
  text-align: right;
}

.about-features .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6900, #f54900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}

.about-features h3 {
  margin: 0;
  font-size: 18px;
}

.about-features p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.mission {
  background: #ffffff;
}

.mission .title-stack {
  margin-bottom: 24px;
}

.mission .section-tag {
  font-size: 16px;
  font-weight: 500;
}

.mission .title-stack h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
}

.mission-banner {
  min-height: 180px;
  border-radius: 16px;
  background: linear-gradient(172deg, #e65f00 0%, #e04504 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mission-banner h3 {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}

.mission-banner .mission-from,
.mission-banner .mission-to {
  display: inline;
}

.mission-banner .arrow-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 8px;
  vertical-align: middle;
  padding: 8px;
  transform: rotate(180deg);
}

.mission-banner .arrow-chip .icon-svg {
  width: 32px;
  height: 32px;
}

.mission-banner p {
  margin: 0;
  color: var(--primary-soft);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.mission-subtitle {
  text-align: center;
  margin: 32px 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--text);
}

.mission-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  width: min(1108px, 100%);
  margin-inline: auto;
}

.mission-steps article {
  position: relative;
  border: 0.8px solid #ffedd4;
  border-radius: 16px;
  min-height: 210px;
  padding: 33px;
  text-align: center;
  background: linear-gradient(140deg, #f9fafb 0%, #fff7ed 100%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.mission-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: -32px;
  width: 32px;
  height: 2px;
  background: #f54900;
  transform: translateY(-50%);
}

.step-index {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff6900;
  color: #ffffff;
  font-weight: 700;
  line-height: 32px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #ff6900 0%, #f54900 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-icon .icon-svg,
.step-circle .icon-svg {
  width: 32px;
  height: 32px;
}

.mission-steps h4 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.mission-steps p {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--muted);
}

.products {
  background: #ffffff;
}

.products .container {
  position: relative;
}

.products .title-stack h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.products-nav {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.products-nav .carousel-btn {
  pointer-events: auto;
}

.products-shell {
  position: relative;
}

.carousel-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  box-shadow:
    0 20.833px 31.25px rgba(0, 0, 0, 0.1),
    0 8.333px 12.5px rgba(0, 0, 0, 0.1);
  color: #0f172b;
  font-size: 0;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.carousel-btn .icon-svg {
  width: 50px;
  height: 50px;
}

.carousel-btn.prev .icon-svg {
  transform: scaleX(-1);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.products-viewport {
  overflow: hidden;
  width: 100%;
  padding: 14px 0 76px;
}

.products-track {
  display: flex;
  gap: 33px;
  direction: rtl;
  transform: translateX(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 347px;
  direction: rtl;
  min-height: 317px;
  border-radius: 40px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 0;
}

.product-card::before {
  content: "";
  position: absolute;
  width: 347px;
  height: 320px;
  top: 0px;
  border-radius: 40px;
  background: linear-gradient(90deg, #f54900 0%, #ca3500 100%);
  z-index: -1;
  transform: rotate(-4.48deg) skewX(-4.26deg);
  box-shadow: 0 25px 50px rgba(245, 73, 0, 0.2);
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 0.8px solid #f1f5f9;
  background: #ffffff;
  box-shadow:
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.1);
  z-index: 0;
  pointer-events: none;
}

.product-card > img {
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  z-index: 1;
}

.product-card > img {
  width: 100%;
  height: 194px;
  object-fit: cover;
}

.product-top-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-body {
  padding: 22px 23px 23px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.product-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.product-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.golden {
  background: #fff6f3;
  position: relative;
  overflow: hidden;
}

.golden::before,
.golden::after {
  content: "";
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 100px;
  background: #ef805b;
  opacity: 0.42;
  filter: blur(100px);
  pointer-events: none;
}

.golden::before {
  top: -40px;
  right: -140px;
}

.golden::after {
  bottom: -80px;
  left: -90px;
}

.golden .badge {
  border-color: #ef805b;
  padding: 9px 21px;
}

.golden .title-stack h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 900;
}

.golden .title-stack .subtitle {
  max-width: 1165px;
  color: #000000;
  font-size: 24px;
  line-height: 36px;
}

.golden-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1165px;
  margin-inline: auto;
}

.golden-cards article {
  border: 0.8px solid #efad96;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  min-height: 167px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.golden-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 10px;
  background: #ef521e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.golden-cards h3 {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.golden-cards p {
  margin: 0;
  color: #0a1112;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.golden-note {
  margin-top: 16px;
  border-right: 4px solid var(--primary);
  border-radius: 24px 8px 24px 8px;
  background: rgba(255, 255, 255, 0.5);
  min-height: 73px;
  max-width: 1165px;
  margin-inline: auto;
  padding: 20px 24px 0 28px;
  text-align: right;
  font-size: 20px;
  line-height: 29.25px;
  font-weight: 600;
}

.selective {
  background: #ffffff;
}

.selective .title-stack h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.selective .title-stack .subtitle {
  font-size: 20px;
  line-height: 32.5px;
}

.selective-grid {
  display: grid;
  grid-template-columns: minmax(0, 644fr) minmax(0, 551fr);
  gap: 24px;
  align-items: start;
  direction: ltr;
}

.selective-left,
.selective-right {
  direction: rtl;
}

.black-card {
  background: #0a1112;
  border-radius: 16px;
  padding: 24px 32px;
  color: #ffffff;
  text-align: right;
  position: relative;
  overflow: hidden;
  min-height: 228px;
}

.black-card .check {
  position: absolute;
  top: 24px;
  right: 32px;
  left: auto;
  width: 48px;
  height: 48px;
  background: transparent;
  padding: 0;
  z-index: 2;
}

.black-card .check .icon-svg {
  width: 48px;
  height: 48px;
}

.selective-watermark {
  position: absolute;
  left: 21px;
  top: 14px;
  width: 139px;
  opacity: 0.1;
}

.black-card h3 {
  margin: 72px 0 8px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.black-card p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #f1f2f3;
}

.stat-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  direction: ltr;
}

.stat {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  direction: rtl;
}

.stat-ellipse {
  position: absolute;
  width: 130px;
  height: 115px;
  pointer-events: none;
}

.stat-ellipse.e1 {
  top: -58px;
  right: -6px;
}

.stat-ellipse.e2 {
  top: -69px;
  right: -16px;
}

.stat h4 {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-family: "Noto Sans Arabic", sans-serif;
}

.stat p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.stat.orange {
  background: #dd5d03;
  color: #ffffff;
}

.stat.soft {
  background: rgba(239, 173, 150, 0.36);
  color: #ef521e;
}

.selective-right {
  border: 0.8px solid #ffded3;
  border-radius: 16px;
  background: rgba(239, 173, 150, 0.1);
  padding: 32.8px;
}

.selective-right h3 {
  margin: 0 0 24px;
  text-align: right;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.selective-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.selective-right li {
  min-height: 80px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1e2939;
  text-align: right;
  direction: rtl;
}

.selective-right li .selective-text {
  flex: 1;
  text-align: right;
}

.selective-right li .selective-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6900 0%, #f54900 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 10px;
}

.selective-right li .selective-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.benefits {
  background: #f9fafb;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  background: #ffedd4;
  filter: blur(64px);
  pointer-events: none;
  z-index: -1;
}

.benefits::before {
  top: 0;
  right: -120px;
  opacity: 0.6;
}

.benefits::after {
  bottom: -120px;
  left: -120px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  direction: rtl;
}

@media (min-width: 1201px) {
  .benefits-grid article:nth-child(1) {
    order: 1;
  }

  .benefits-grid article:nth-child(2) {
    order: 2;
  }

  .benefits-grid article:nth-child(3) {
    order: 3;
  }

  .benefits-grid article:nth-child(4) {
    order: 4;
  }

  .benefits-grid article:nth-child(5) {
    order: 5;
  }

  .benefits-grid article:nth-child(6) {
    order: 6;
  }

  .benefits-grid article:nth-child(7) {
    order: 7;
  }
}

.benefits-grid article {
  min-height: 176px;
  border: 0.8px solid #f3f4f6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: right;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 14px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-icon .icon-svg,
.discount-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.benefits-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.benefits-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.green {
  background: linear-gradient(135deg, #00c950 0%, #00a63e 100%);
}

.pink {
  background: linear-gradient(135deg, #f6339a 0%, #e60076 100%);
}

.blue {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.purple {
  background: linear-gradient(135deg, #ad46ff 0%, #9810fa 100%);
}

.cyan {
  background: linear-gradient(135deg, #00b8db 0%, #0092b8 100%);
}

.indigo {
  background: linear-gradient(135deg, #615fff 0%, #4f39f6 100%);
}

.discount-card {
  margin: 24px auto 0;
  max-width: 1108px;
  position: relative;
  border-radius: 16px;
  border: 0.8px solid #f1f5f9;
  background: #ffffff;
  box-shadow:
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 32px;
}

.discount-card::before {
  content: "";
  position: absolute;
  inset: -8px 2px 0 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f54900 0%, #ca3500 100%);
  transform: rotate(-0.9deg) skewX(0.22deg);
  box-shadow: 0 25px 50px rgba(245, 73, 0, 0.2);
  z-index: -1;
}

.discount-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount-card h3 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 36px;
  color: var(--primary);
  font-weight: 700;
}

.discount-card p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
}

.discount-card p strong {
  color: #f54900;
}

.showcase {
  background: linear-gradient(149deg, #101828 0%, #7e2a0c 50%, #101828 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase .container {
  width: calc(100% - (var(--page-gutter) * 2));
}

.showcase .title-stack {
  max-width: 800px;
  margin-inline: auto;
}

.showcase .subtitle {
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.showcase h2 {
  color: #ffffff;
}

.video-box {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(151deg, #1e2939 0%, #101828 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.video-box::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a1112;
  border-radius: inherit;
  z-index: 0;
}

.showcase-video {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 0;
  border-radius: 14px;
  z-index: 1;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-size: 0;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

.play-btn .icon-svg {
  width: 40px;
  height: 40px;
}

.play-btn.is-paused .icon-svg {
  opacity: 0;
}

.play-btn.is-paused::before,
.play-btn.is-paused::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 32px;
  background: #ffffff;
  border-radius: 999px;
}

.play-btn.is-paused::before {
  left: calc(50% - 12px);
}

.play-btn.is-paused::after {
  left: calc(50% + 4px);
}

.video-meta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-meta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb2c36;
  order: 3;
}

.video-meta span {
  font-size: 14px;
  color: #99a1af;
}

.video-box.is-playing::before {
  opacity: 0;
}

.video-box.is-playing .play-btn {
  background: var(--primary);
  color: #ffffff;
}

.eligibility {
  background: rgba(239, 173, 150, 0.1);
}

.eligibility .title-stack {
  width: min(417px, 100%);
  margin-inline: auto;
  margin-bottom: 88px;
}

.eligibility .title-stack h2 {
  font-size: 48px;
  line-height: 48px;
}

.eligibility-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  max-width: 1108px;
  margin-inline: auto;
}

.eligibility-steps article:nth-child(1) {
  order: 4;
}

.eligibility-steps article:nth-child(2) {
  order: 3;
}

.eligibility-steps article:nth-child(3) {
  order: 2;
}

.eligibility-steps article:nth-child(4) {
  order: 1;
}

.eligibility-steps article {
  position: relative;
  min-height: 272px;
  border: 0.8px solid #f3f4f6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  text-align: right;
  padding: 33px;
}

.eligibility-steps article:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 77px;
  inset-inline-end: -32px;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: #ef521e;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff6900 0%, #f54900 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.1);
}

.eligibility-steps h3 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.eligibility-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 26px;
}

.eligibility .large {
  margin: 64px auto 0;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 258px;
  min-height: 56px;
}

.eligibility-note {
  margin: 16px auto 0;
  max-width: 628px;
  text-align: center;
  color: #384b4d;
  font-size: 16px;
  line-height: 26px;
}

.final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(162deg, #101828 0%, #7e2a0c 50%, #101828 100%);
  color: #ffffff;
  text-align: center;
  padding: 69px 0;
}

.final-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ffffff;
  color: #00a63e;
  display: grid;
  place-items: center;
  font-size: 0;
  padding: 20px;
}

.final-icon .icon-svg {
  width: 40px;
  height: 40px;
}

.final-cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.final-cta p {
  margin: 14px auto 0;
  max-width: 930px;
  font-size: 20px;
  line-height: 28px;
}

.final-cta .btn-success {
  margin-top: 28px;
}

.badge .icon-svg {
  width: 16px;
  height: 16px;
}

.online-status {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  font-size: 14px;
}

.online-status span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7bf1a8;
  box-shadow: 0 0 16px rgba(123, 241, 168, 0.7);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero-content {
    max-width: 560px;
  }

  .about-grid,
  .selective-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 32px;
  }

  .about-media {
    order: 2;
    width: min(502px, 100%);
    height: auto;
    margin-inline: auto;
  }

  .about-media .shape {
    inset: -14px 26px 26px -14px;
    width: auto;
    height: auto;
    right: auto;
  }

  .about-media img {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    right: auto;
  }

  .about-content {
    order: 1;
    width: 100%;
  }

  .about-features {
    width: 100%;
  }

  .benefits-grid,
  .golden-cards,
  .eligibility-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 16px;
  }

  .mission-steps article::after {
    display: none;
  }

  .eligibility-steps article::after {
    display: none;
  }

  .product-card {
    flex-basis: 320px;
  }

  .carousel-btn {
    width: 72px;
    height: 72px;
    padding: 18px;
  }

  .carousel-btn .icon-svg {
    width: 36px;
    height: 36px;
  }

  .video-box {
    height: 460px;
  }

  .eligibility .title-stack {
    width: 100%;
    margin-bottom: 56px;
  }
}

@media (max-width: 992px) {
  .site-header {
    height: 76px;
  }

  .header-inner {
    height: 76px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: var(--page-gutter);
    right: var(--page-gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    text-align: right;
  }

  .hero {
    min-height: 790px;
    padding-top: 112px;
  }

  .hero-content {
    margin-right: 0;
    margin-left: auto;
    margin-inline-start: 0;
    margin-inline-end: auto;
    align-items: flex-start;
    width: min(595px, 100%);
  }

  .hero h1,
  .hero p {
    text-align: right;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-alert {
    width: auto;
    justify-content: flex-start;
    text-align: right;
  }

  .products-nav {
    top: 44px;
  }

  .carousel-btn {
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .carousel-btn .icon-svg {
    width: 28px;
    height: 28px;
  }

  .products-track {
    gap: 16px;
  }

  .product-card {
    flex-basis: 290px;
    border-radius: 26px;
  }

  .product-card::before {
    width: calc(100% + 1px);
    height: calc(100% - 16px);
    top: 4px;
    left: -0.5px;
    border-radius: inherit;
  }

  .product-body h3 {
    font-size: 26px;
  }

  .discount-card p {
    font-size: 24px;
    line-height: 1.3;
  }

  .eligibility-steps h3 {
    font-size: 28px;
  }

  .final-cta h2 {
    font-size: clamp(38px, 5vw, 48px);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 748px;
  }

  .hero-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-stats h3 {
    font-size: 24px;
  }

  .hero-stats p {
    font-size: 12px;
  }

  .hero-alert {
    font-size: 14px;
    padding: 8px 14px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    font-size: 21px;
    border-width: 3px;
    right: 16px;
    bottom: 16px;
  }

  .about {
    padding-bottom: 32px;
  }

  .showcase {
    padding-top: 32px;
  }

  .whatsapp-popup {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .mission-banner h3 {
    font-size: 34px;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .mission-banner .arrow-chip {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 7px;
    transform: rotate(90deg);
  }

  .mission-banner .arrow-chip .icon-svg {
    width: 26px;
    height: 26px;
  }

  .mission-banner .mission-from,
  .mission-banner .mission-to {
    display: block;
  }

  .mission-subtitle {
    font-size: 30px;
  }

  .mission-steps,
  .golden-cards,
  .benefits-grid,
  .eligibility-steps {
    grid-template-columns: 1fr;
  }

  .products-shell {
    align-items: stretch;
  }

  .products-nav {
    display: none;
  }

  .carousel-btn {
    display: none;
  }

  .products-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 10px;
  }

  .products-track {
    width: max-content;
  }

  .product-card {
    flex-basis: 320px;
    scroll-snap-align: center;
  }

  .selective-right {
    padding: 20px;
  }

  .black-card h3 {
    font-size: 32px;
  }

  .stat h4 {
    font-size: 38px;
  }

  .discount-card h3 {
    font-size: 36px;
  }

  .discount-card p {
    font-size: 20px;
  }

  .video-box {
    height: 320px;
  }

  .play-btn {
    width: 72px;
    height: 72px;
    padding: 21px;
  }

  .play-btn .icon-svg {
    width: 30px;
    height: 30px;
  }

  .video-meta {
    font-size: 14px;
    left: 12px;
    right: 12px;
    justify-content: space-between;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .final-icon .icon-svg {
    width: 32px;
    height: 32px;
  }

  .btn-success {
    min-width: 100%;
  }
}
