:root {
  --bg: #0c0f14;
  --bg-soft: #141a22;
  --card: #1a222d;
  --text: #f3f5f7;
  --muted: #9aa7b8;
  --accent: #f5b800;
  --accent-dark: #c89400;
  --line: rgba(255, 255, 255, 0.08);
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 50% -10%, #1f2a3a, var(--bg));
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 8vw, 4.25rem) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border-block: 1px solid var(--line);
}

.section--hero {
  padding-top: 1.5rem;
}

.section--order {
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.06), transparent 55%);
}

.section--final {
  padding-bottom: clamp(4rem, 12vw, 5.5rem);
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffd86b;
}

.section-title {
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-title--sm {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.section-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 62ch;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.section-lead--flush {
  margin-bottom: 1.25rem;
}

.content-narrow {
  max-width: 40rem;
}

.section-cta-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 184, 0, 0.12);
  border: 1px solid rgba(245, 184, 0, 0.35);
  color: #ffe082;
  font-size: 0.85rem;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #1a1200;
  box-shadow: 0 10px 24px rgba(245, 184, 0, 0.25);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--compact {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.btn-cta-main {
  width: 100%;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
}

.demo-panel .btn-cta-main {
  margin-top: 0.65rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(12, 15, 20, 0.75);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  font-weight: 700;
  font-size: 0.95rem;
}

.hero {
  padding: 2rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.25rem 0 0.5rem;
}

.price-line strong {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  color: var(--accent);
}

.product-showcase {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 0.85rem;
  background: linear-gradient(155deg, #243041 0%, #161d27 48%, #10151c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.product-showcase__glow {
  position: absolute;
  inset: -30% auto auto -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.22), transparent 68%);
  pointer-events: none;
}

.product-showcase__stage {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  padding: clamp(0.65rem, 2vw, 1rem);
  background: linear-gradient(180deg, #f6f8fb 0%, #e9eef5 52%, #dde5ef 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-showcase__stage img {
  width: auto;
  max-width: 100%;
  max-height: min(340px, 62vw);
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.18));
}

.product-showcase__caption {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  text-align: center;
  color: #c5d0de;
  font-size: 0.88rem;
  font-weight: 600;
}

.product-showcase--hero {
  min-height: 280px;
}

.product-showcase--hero .product-showcase__stage {
  min-height: min(360px, 72vw);
}

.product-showcase--tile {
  margin: 0;
}

.product-showcase--tile figcaption {
  position: relative;
  z-index: 1;
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.product-showcase--thumb .product-showcase__stage {
  min-height: 180px;
  border-radius: 12px 12px 0 0;
  padding: 0.55rem;
}

.product-showcase--thumb .product-showcase__stage img {
  max-height: 200px;
  width: 100%;
  object-fit: contain;
}

.product-showcase--gallery {
  padding: 0.45rem;
}

.product-showcase--gallery .product-showcase__stage {
  min-height: 0;
  aspect-ratio: 1;
  padding: 0.45rem;
}

.product-showcase--gallery .product-showcase__stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-grid .product-showcase--tile:first-child {
  grid-column: 1 / -1;
}

.showcase-grid .product-showcase--tile:first-child .product-showcase__stage img {
  max-height: min(380px, 70vw);
}

.hero-product-loop {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-product-loop img {
  width: min(320px, 88%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-product-loop img.hero-alt {
  position: absolute;
  opacity: 0;
  animation: heroCrossfade 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroCrossfade {
  0%,
  45% {
    opacity: 0;
  }
  50%,
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.card--note,
.card--muted {
  background: rgba(255, 255, 255, 0.03);
}

.final-cta-panel {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(245, 184, 0, 0.25);
  background: linear-gradient(160deg, rgba(245, 184, 0, 0.1), rgba(255, 255, 255, 0.02));
}

.final-cta-panel .btn-cta-main {
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  overflow: hidden;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card figure {
  margin: 0;
}

.feature-card .product-showcase {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.feature-card figcaption {
  padding: 0.9rem 1rem 1rem;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card.crop-promo img {
  object-position: 70% 55%;
}

.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
}

.step-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(245, 184, 0, 0.15);
  color: #ffd86b;
  font-weight: 700;
  font-size: 0.9rem;
}

.safety-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(231, 76, 60, 0.35);
  background: rgba(231, 76, 60, 0.08);
  color: #ffc9c0;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-grid {
  display: grid;
  gap: 0.75rem;
}

.offer-option {
  position: relative;
}

.offer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.offer-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.offer-option input:checked + label {
  border-color: rgba(245, 184, 0, 0.65);
  background: rgba(245, 184, 0, 0.08);
}

.offer-option strong {
  color: var(--accent);
}

.offer-grid--promo {
  gap: 0.85rem;
}

.offer-grid--promo .offer-option label {
  flex-direction: column;
  align-items: stretch;
  text-align: start;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.offer-grid--promo .offer-option input:checked + label {
  border-color: rgba(245, 184, 0, 0.75);
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.14), rgba(245, 184, 0, 0.05));
  box-shadow: 0 12px 28px rgba(245, 184, 0, 0.12);
}

.offer-card__qty {
  font-weight: 700;
  font-size: 1.05rem;
}

.offer-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.offer-card__unit {
  font-size: 0.82rem;
  color: #c5d0de;
}

.offer-card__price {
  font-size: 1.35rem;
  margin-top: 0.15rem;
}

.offer-card__price small {
  font-size: 0.85rem;
  font-weight: 600;
}

.offer-grid--form {
  margin-top: 0.15rem;
}

.form-card {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.92rem;
  color: #dbe4ef;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f141b;
  color: var(--text);
  padding: 0.85rem 0.9rem;
  font: inherit;
}

.form-field textarea {
  min-height: 88px;
  resize: vertical;
}

.form-msg {
  min-height: 1.25rem;
  font-size: 0.92rem;
}

.form-msg.error {
  color: #ffb4aa;
}

.form-msg.success {
  color: #9cf0bd;
}

.order-confirmation {
  text-align: center;
  padding: 0.35rem 0 0.25rem;
}

.order-confirmation__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.order-confirmation__title {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.order-confirmation__lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
  margin-inline: auto;
}

.order-confirmation__details {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(156, 240, 189, 0.22);
  background: rgba(156, 240, 189, 0.06);
  text-align: start;
  display: grid;
  gap: 0.55rem;
}

.order-confirmation__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.order-confirmation__row dt {
  margin: 0;
  color: #b8c5d4;
  font-weight: 500;
}

.order-confirmation__row dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  text-align: end;
}

#confirmOrderId {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.order-confirmation__footnote {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.external-reviews-disclaimer {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 62ch;
}

.external-reviews-grid {
  display: grid;
  gap: 0.85rem;
}

.external-review-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.external-review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.external-review-card__platform {
  font-weight: 700;
  font-size: 1rem;
  color: #ffe082;
}

.external-review-card__score {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.external-review-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.external-review-card__product {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #dbe4ef;
}

.external-review-card__summary {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.external-review-card__link {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .external-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq details + details {
  margin-top: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.demo-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.demo-visual.product-showcase {
  padding: 0.65rem;
}

.demo-visual .product-showcase__stage {
  min-height: 240px;
}

.demo-visual .product-showcase__stage img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.screen-highlight {
  position: relative;
}

.screen-highlight::after {
  content: "";
  position: absolute;
  inset: 18% 34% 42% 42%;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(245, 184, 0, 0.55);
  animation: pulseGlow 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.footer {
  padding: 2rem 0 calc(2.5rem + env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

body.has-sticky-cta .footer {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.spec-list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.spec-list span {
  color: var(--muted);
  min-width: 6.5rem;
}

.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(12, 15, 20, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__btn {
  width: 100%;
  max-width: none;
  padding: 0.95rem 1rem;
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-grid .product-showcase--tile:first-child {
    grid-column: auto;
  }

  .btn-cta-main {
    width: auto;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-panel {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
}
