/*
Theme Name: My Blank Theme
Version: 1.0
*/

:root {
  /* Obsidian ink — near-black with a cool indigo cast */
  --bg: #04040c;
  --bg-elevated: #0b0b16;
  --surface: #11111c;
  --surface-2: #181824;
  --border: rgba(160, 170, 200, 0.11);
  --text: #fdfdff;
  --muted: #9aa3b5;
  --blue: #29449f;
  --blue-soft: #3d5bb5;
  --orange: #f38420;
  --orange-dim: #ff9a40;
  --accent: var(--orange);
  --accent-dim: var(--orange-dim);
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --container: 72rem;
  --header-h: 4.25rem;
  --font: "YekanBakh", "Vazirmatn", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

main {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero,
.intro,
.customers,
.features,
.statement,
.questions,
.consult-cta,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Side rails — layered scan / comet motion in gutters */
.side-rails {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.side-rail {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 2px;
  overflow: hidden;
}

.side-rail--start {
  left: clamp(0.65rem, 3vw, 2.25rem);
  --rail-accent: #f38420;
  --rail-accent-rgb: 243, 132, 32;
  --rail-soft: rgba(255, 200, 150, 0.22);
}

.side-rail--end {
  right: clamp(0.65rem, 3vw, 2.25rem);
  --rail-accent: #29449f;
  --rail-accent-rgb: 41, 68, 159;
  --rail-soft: rgba(180, 195, 255, 0.18);
}

/* Soft ambient column behind the line */
.side-rail-glow {
  position: absolute;
  inset: 0 -14px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--rail-accent-rgb), 0.07) 22%,
    rgba(var(--rail-accent-rgb), 0.12) 50%,
    rgba(var(--rail-accent-rgb), 0.07) 78%,
    transparent 100%
  );
  filter: blur(10px);
  opacity: 0.85;
  animation: railGlowPulse 5.5s ease-in-out infinite;
}

.side-rail--end .side-rail-glow {
  animation-delay: -2.6s;
}

/* Hairline track with traveling sheen */
.side-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      var(--rail-soft) 12%,
      rgba(255, 255, 255, 0.28) 48%,
      var(--rail-soft) 88%,
      transparent 100%
    );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.side-rail::after {
  content: "";
  position: absolute;
  inset: -8% 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    180deg,
    transparent 0 10px,
    rgba(var(--rail-accent-rgb), 0.55) 10px 12px
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 18%,
    #000 42%,
    transparent 58%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 18%,
    #000 42%,
    transparent 58%,
    transparent 100%
  );
  mask-size: 100% 220%;
  -webkit-mask-size: 100% 220%;
  animation: railDashScan 4.8s linear infinite;
  opacity: 0.55;
}

.side-rail--end::after {
  animation-direction: reverse;
  animation-duration: 5.6s;
}

/* Primary comet + bloom */
.side-rail-beam {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 7.5rem;
  transform: translate3d(-50%, -100%, 0);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--rail-accent-rgb), 0.15) 18%,
    rgba(var(--rail-accent-rgb), 0.95) 52%,
    #fff 68%,
    rgba(var(--rail-accent-rgb), 0.35) 82%,
    transparent 100%
  );
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(var(--rail-accent-rgb), 0.85))
    drop-shadow(0 0 16px rgba(var(--rail-accent-rgb), 0.35));
  opacity: 0;
  animation: railComet 6.2s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
  will-change: top, opacity;
}

.side-rail-beam::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff 0%,
    rgba(var(--rail-accent-rgb), 0.75) 35%,
    transparent 72%
  );
  filter: blur(1px);
  opacity: 0.9;
}

.side-rail-beam::after {
  content: "";
  position: absolute;
  inset: -20% -220%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(var(--rail-accent-rgb), 0.22),
    transparent
  );
  filter: blur(8px);
  opacity: 0.7;
}

.side-rail--end .side-rail-beam {
  animation-delay: -3.1s;
}

/* Fast secondary spark */
.side-rail-spark {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 2.4rem;
  transform: translate3d(-50%, -100%, 0);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  box-shadow: 0 0 10px rgba(var(--rail-accent-rgb), 0.7);
  opacity: 0;
  animation: railSpark 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.1s;
  will-change: top, opacity;
}

.side-rail--end .side-rail-spark {
  animation-delay: 2.4s;
  animation-duration: 3.9s;
}

/* Breathing nodes along the rail */
.side-rail-node {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--rail-accent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 12px rgba(var(--rail-accent-rgb), 0.65);
  opacity: 0.35;
  animation: railNodePulse 3.2s ease-in-out infinite;
}

.side-rail-node--a {
  top: 28%;
}

.side-rail-node--b {
  top: 68%;
  animation-delay: 1.5s;
}

.side-rail--end .side-rail-node--a {
  animation-delay: 0.7s;
}

.side-rail--end .side-rail-node--b {
  animation-delay: 2.1s;
}

@keyframes railGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.15);
  }
}

@keyframes railDashScan {
  0% {
    mask-position: 0 -40%;
    -webkit-mask-position: 0 -40%;
  }
  100% {
    mask-position: 0 140%;
    -webkit-mask-position: 0 140%;
  }
}

@keyframes railComet {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes railSpark {
  0% {
    top: 0;
    opacity: 0;
  }
  14% {
    opacity: 0.95;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes railNodePulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) scale(0.85);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15),
      0 0 8px rgba(var(--rail-accent-rgb), 0.35);
  }
  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.15);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.35),
      0 0 16px rgba(var(--rail-accent-rgb), 0.8);
  }
}

@media (max-width: 900px) {
  .side-rails {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-rail-glow,
  .side-rail::after,
  .side-rail-beam,
  .side-rail-spark,
  .side-rail-node {
    animation: none;
  }

  .side-rail-beam {
    top: 38%;
    opacity: 0.55;
    transform: translate3d(-50%, 0, 0);
  }

  .side-rail-spark {
    opacity: 0;
  }

  .side-rail-node {
    opacity: 0.55;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  --header-progress: 0;
  background: rgba(4, 4, 12, calc(0.92 * var(--header-progress)));
  backdrop-filter: blur(calc(16px * var(--header-progress)));
  -webkit-backdrop-filter: blur(calc(16px * var(--header-progress)));
  border-bottom: 1px solid rgba(160, 170, 200, calc(0.1 * var(--header-progress)));
  box-shadow: 0 8px 30px rgba(0, 0, 0, calc(0.45 * var(--header-progress)));
  transition: none;
}

.site-header.is-scrolled {
  /* class kept for compatibility; progress drives visuals */
}

.site-header .nav-links a {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.site-header .nav-cta {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  text-shadow: none;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(41, 68, 159, 0.25);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 72%
  );
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-header .nav-cta:hover {
  color: #ffffff;
  background: #3558b8;
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(41, 68, 159, 0.4),
    0 3px 8px rgba(0, 0, 0, 0.16);
}

.site-header .nav-cta:hover::before {
  transform: translateX(130%) skewX(-12deg);
}

.site-header .nav-cta:active {
  background: #203a88;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(41, 68, 159, 0.28);
}

.site-header.is-scrolled .nav-links a {
  color: rgba(253, 253, 255, 0.82);
  text-shadow: none;
}

.site-header.is-scrolled .nav-links a:hover {
  color: #fff;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-home {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.nav-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo .logo-img {
  height: 2.35rem;
  width: auto;
  display: block;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 72%
  );
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(130%) skewX(-12deg);
}

.btn:active {
  transform: translateY(-1px) scale(0.985);
  transition-duration: 0.15s;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(41, 68, 159, 0.28);
}

.btn-primary:hover {
  background: #3558b8;
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(41, 68, 159, 0.42),
    0 4px 10px rgba(0, 0, 0, 0.18);
  filter: saturate(1.05);
}

.btn-primary:active {
  background: #203a88;
  box-shadow: 0 4px 12px rgba(41, 68, 159, 0.3);
  filter: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-ghost:active {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(243, 132, 32, 0.28);
}

.btn-accent:hover {
  background: #ff9435;
  color: #fff;
  box-shadow:
    0 12px 28px rgba(243, 132, 32, 0.42),
    0 4px 10px rgba(0, 0, 0, 0.18);
  filter: saturate(1.05);
}

.btn-accent:active {
  background: #e57618;
  box-shadow: 0 4px 12px rgba(243, 132, 32, 0.3);
  filter: none;
}

.btn:focus-visible,
.site-header .nav-cta:focus-visible,
.consult-form__submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.btn-block, .btn-block {
  width: 100%;
}

/* Distinct per-section consultation CTAs */
.call-cta {
  margin-top: 2.5rem;
}

.call-cta__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.call-cta__eyebrow {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Why — minimal text action on dark media */
.call-cta--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}

.call-cta--link .call-cta__note {
  color: rgba(255, 255, 255, 0.72);
}

.call-cta__text-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  border-bottom: 1.5px solid rgba(243, 132, 32, 0.55);
  padding-bottom: 0.15rem;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.call-cta__text-btn svg {
  transition: transform 0.25s var(--ease);
}

.call-cta__text-btn:hover {
  color: var(--orange-dim);
  border-color: var(--orange);
  gap: 0.55rem;
}

.call-cta__text-btn:hover svg {
  transform: translateX(-3px);
}

/* Customers — horizontal strip */
.call-cta--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.1rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(243, 132, 32, 0.22);
  background:
    linear-gradient(90deg, rgba(243, 132, 32, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.call-cta--row .call-cta__note {
  flex: 1 1 14rem;
  text-align: start;
  color: var(--text);
  font-weight: 600;
}

/* Statement — quiet ghost action */
.call-cta--ghost {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.call-cta--ghost .btn {
  min-width: 11rem;
}

.call-cta--ghost .btn svg {
  transform: none;
}

/* Prices — advisory rail */
.call-cta--advise {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(91, 120, 212, 0.28);
  background:
    radial-gradient(ellipse 80% 120% at 100% 50%, rgba(41, 68, 159, 0.22), transparent 60%),
    var(--surface);
}

.call-cta__advise-copy {
  flex: 1 1 16rem;
  text-align: start;
}

.call-cta--advise .call-cta__note {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

/* FAQ — outline chat-style control */
.call-cta--faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  text-align: center;
}

.call-cta--faq p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.call-cta__outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 120, 212, 0.45);
  background: rgba(41, 68, 159, 0.12);
  color: #c5d0f5;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.call-cta__outline:hover {
  background: rgba(41, 68, 159, 0.28);
  border-color: rgba(142, 164, 239, 0.7);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(41, 68, 159, 0.25);
}

.call-cta__outline:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .call-cta--row,
  .call-cta--advise {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .call-cta--row .call-cta__note,
  .call-cta__advise-copy {
    text-align: center;
  }

  .call-cta--row .btn,
  .call-cta--advise .btn {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3.5rem) 0 5.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 22s var(--ease) infinite alternate;
  image-rendering: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 18%, rgba(41, 68, 159, 0.28), transparent 58%),
    linear-gradient(
      180deg,
      rgba(4, 4, 12, 0.52) 0%,
      rgba(4, 4, 12, 0.72) 48%,
      rgba(4, 4, 12, 0.96) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-mark {
  margin: 0 0 1.15rem;
  font-size: clamp(3.1rem, 9vw, 5.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 10px 48px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 22ch;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.hero-sub {
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.9;
  max-width: 26rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-cta .btn {
  min-width: 10.5rem;
  padding: 0.85rem 1.55rem;
}

.hero-cta .btn-primary {
  box-shadow: 0 8px 22px rgba(41, 68, 159, 0.32);
}

.hero-cta .btn-primary:hover {
  box-shadow:
    0 14px 32px rgba(41, 68, 159, 0.48),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.4rem;
  padding-inline-end: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  background: rgba(8, 10, 18, 0.45);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: right;
  width: fit-content;
  max-width: min(100%, 22rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-play:hover {
  background: rgba(243, 132, 32, 0.18);
  border-color: rgba(243, 132, 32, 0.5);
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(243, 132, 32, 0.15);
}

.hero-play:hover .hero-play-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(243, 132, 32, 0.55);
}

.hero-play:active {
  transform: translateY(-1px);
}

.hero-play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero-play-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  background: var(--orange);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(243, 132, 32, 0.45);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-play-icon svg {
  margin-inline-start: 2px;
}

.hero-play-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  text-align: right;
}

.hero-play-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.hero-play-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  width: 1.65rem;
  height: 2.45rem;
  margin-left: -0.825rem;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
  opacity: 0.75;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.hero-scroll:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #fff;
  animation: heroScrollDot 1.6s var(--ease) infinite;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

@keyframes heroScrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(0.85rem);
    opacity: 0.15;
  }
  100% {
    transform: translateY(0.85rem);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
    align-items: flex-end;
  }

  .hero-content {
    width: min(100%, 36rem);
  }

  .hero-cta {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-play {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
  }

  .hero-scroll span {
    animation: none;
  }
}

/* Intro */
.intro {
  position: relative;
  padding: 5.75rem 0 5.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 70% 0%, rgba(41, 68, 159, 0.08), transparent 55%),
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(40, 68, 158, 0.16), transparent 58%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 72%);
  overflow: hidden;
}

.intro-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.25rem;
}

.intro-eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(65, 77, 170, 0.22);
  color: #9aacff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.intro-title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.65rem, 3.4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--text);
}

.intro-lead {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.intro-uses {
  list-style: none;
  margin: 0 auto 2.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 64rem;
}

.intro-uses li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 1.65rem 1.15rem 1.55rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(24, 24, 36, 0.95), rgba(17, 17, 28, 0.92));
  border: 1px solid rgba(160, 170, 200, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.intro-uses li:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 68, 159, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(41, 68, 159, 0.12);
}

.intro-uses li:hover .intro-use-icon {
  color: #c5d0ff;
  background: rgba(41, 68, 159, 0.28);
  border-color: rgba(91, 120, 212, 0.45);
}

.intro-use-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.35rem;
  border-radius: 1rem;
  color: #9aacff;
  background: rgba(65, 77, 170, 0.22);
  border: 1px solid rgba(124, 136, 221, 0.28);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.intro-use-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.intro-uses strong {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}

.intro-use-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 14rem;
}

.intro-promises {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 64rem;
}

.intro-promises li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.2rem 0.9rem;
  position: relative;
  border-radius: 0.95rem;
  background: rgba(65, 77, 170, 0.12);
  border: 1px solid rgba(124, 136, 221, 0.18);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s var(--ease);
}

.intro-promises li:hover {
  background: rgba(65, 77, 170, 0.2);
  border-color: rgba(41, 68, 159, 0.35);
  transform: translateY(-2px);
}

.intro-promises strong {
  font-size: 1.02rem;
  font-weight: 800;
  color: #8ea4ef;
  letter-spacing: -0.01em;
}

.intro-promises span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Section titles */
.section-title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title-center {
  text-align: center;
}

/* Character video — poster first, file loads on view/play */
.story-video {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.story-video-head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.story-video-head .section-title {
  margin-bottom: 0.75rem;
}

.story-video-eyebrow {
  margin: 0 0 0.65rem;
  color: #8ea4ef;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.story-video-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.story-video-player {
  position: relative;
  width: min(100%, 52rem);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(91, 120, 212, 0.22);
  background: #000;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.story-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
}

.story-video-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 12, 0.15) 0%, rgba(4, 4, 12, 0.55) 100%);
}

.story-video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(243, 132, 32, 0.45),
    0 0 0 12px rgba(243, 132, 32, 0.16);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.story-video-play svg {
  margin-inline-start: 3px;
}

.story-video-poster-label {
  position: absolute;
  bottom: 1.15rem;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.story-video-poster:hover .story-video-play {
  transform: scale(1.08);
  box-shadow:
    0 16px 32px rgba(243, 132, 32, 0.55),
    0 0 0 16px rgba(243, 132, 32, 0.2);
}

.story-video-poster:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.story-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.story-video-player.is-playing .story-video-poster {
  display: none;
}

@media (max-width: 640px) {
  .story-video {
    padding: 3.25rem 0 3.75rem;
  }

  .story-video-play {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* Why Us — one continuous visual section */
.why {
  padding: 0;
  background: var(--bg);
}

.why-visual {
  position: relative;
  overflow: hidden;
  min-height: min(46rem, 92vh);
  display: flex;
  align-items: flex-end;
}

.why-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: blur(5px);
  transform: scale(1.04);
}

.why-visual-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(41, 68, 159, 0.28), transparent 62%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.48) 24%,
      rgba(0, 0, 0, 0.68) 52%,
      rgba(0, 0, 0, 0.88) 78%,
      rgba(0, 0, 0, 0.96) 100%
    );
  pointer-events: none;
}

.why-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(5.5rem, 12vh, 8rem);
  padding-bottom: clamp(2.75rem, 6vh, 4rem);
}

.why-visual-copy {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  padding: 0;
  text-align: center;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.why-eyebrow {
  margin: 0 0 0.75rem;
  color: #8ea4ef;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.why-title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.why-lead {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.9;
  max-width: 32rem;
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-grid li {
  position: relative;
  padding: 1.2rem 1.15rem 1.25rem;
  border: 1px solid rgba(91, 120, 212, 0.22);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.why-grid li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.why-num {
  display: block;
  margin: 0.55rem 0 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #8ea4ef;
}

.why-grid strong {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
}

.why-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Customers */
.customers {
  position: relative;
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(41, 68, 159, 0.14), transparent 65%),
    var(--bg);
  overflow: hidden;
}

.customers .container {
  position: relative;
  z-index: 1;
}

.customers-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 0.35rem;
  padding: 1.65rem 0;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(41, 68, 159, 0.16) 0%, rgba(18, 22, 36, 0.92) 100%),
    var(--surface);
  border: 1px solid rgba(160, 170, 200, 0.12);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  mask-image: none;
  -webkit-mask-image: none;
}

.customers-track-wrap::before,
.customers-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  z-index: 2;
  pointer-events: none;
}

.customers-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 22, 36, 0.98), transparent);
}

.customers-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(18, 22, 36, 0.98), transparent);
}

.customers-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.customers-group {
  display: flex;
  align-items: center;
  gap: 4.75rem;
  padding: 0.65rem 4.75rem 0.65rem 0;
  flex-shrink: 0;
}

.customer-logo {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: 4.25rem;
  max-width: 11.5rem;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: brightness(1.08) contrast(1.05);
  transition:
    opacity 0.45s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.customer-logo.is-loaded {
  opacity: 0.92;
}

.customer-logo:hover {
  transform: scale(1.04);
  filter: brightness(1.18) contrast(1.08);
  opacity: 1;
}

@media (max-width: 640px) {
  .customers-group {
    gap: 3rem;
    padding-right: 3rem;
  }

  .customer-logo {
    height: 3.25rem;
    max-width: 8.75rem;
  }

  .customers-track-wrap {
    padding: 1.25rem 0;
    border-radius: 1.1rem;
  }

  .customers-track-wrap::before,
  .customers-track-wrap::after {
    width: 2.5rem;
  }
}

/* Features bento */
.features {
  position: relative;
  padding: 5rem 0;
  background: var(--bg);
  overflow: hidden;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
  width: 100%;
}

.features-list li {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 9px,
      rgba(255, 255, 255, 0.025) 9px,
      rgba(255, 255, 255, 0.025) 10px
    );
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, transform 0.3s var(--ease), box-shadow 0.25s ease;
}

/* 3 rows — short texts in small boxes, long texts in wide boxes */
/* Row 1: short | long | short */
.features-list li:nth-child(1) { grid-column: span 2; }
.features-list li:nth-child(2) { grid-column: span 7; }
.features-list li:nth-child(3) { grid-column: span 3; }
/* Row 2: long | short */
.features-list li:nth-child(4) { grid-column: span 8; }
.features-list li:nth-child(5) { grid-column: span 4; }
/* Row 3: long | medium */
.features-list li:nth-child(6) { grid-column: span 7; }
.features-list li:nth-child(7) { grid-column: span 5; }

.features-list li:hover {
  border-color: rgba(41, 68, 159, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.feat-icon {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  color: #9aacff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feat-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.features-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

/* Statement — liquid glass panel */
.statement {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
  padding: 7rem 1.25rem;
  overflow: hidden;
  background: #1a3358;
}

.statement-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(1.08) brightness(0.78) contrast(1.08);
  will-change: transform, filter;
}

.statement-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(8, 12, 22, 0.2), rgba(4, 8, 16, 0.72) 72%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.4) 0%, rgba(6, 10, 18, 0.25) 40%, rgba(4, 8, 16, 0.6) 100%);
}

.statement-glass {
  position: relative;
  z-index: 1;
  width: min(100%, 46rem);
  padding: 2.85rem 2.6rem;
  border-radius: 1.75rem;
  text-align: center;
  color: #fdfdff;
  background:
    linear-gradient(
      155deg,
      rgba(24, 24, 36, 0.78) 0%,
      rgba(14, 14, 24, 0.72) 48%,
      rgba(4, 4, 12, 0.78) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(40, 68, 158, 0.12),
    inset 0 0 40px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  overflow: hidden;
  isolation: isolate;
}

.statement-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.12) 28%,
      transparent 52%,
      rgba(40, 68, 158, 0.06) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.statement-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.statement-title {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.statement-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 600;
  line-height: 2;
  color: rgba(253, 253, 255, 0.88);
  text-align: justify;
  text-align-last: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .statement-glass {
    background: rgba(12, 12, 18, 0.94);
  }
}

@media (max-width: 640px) {
  .statement {
    min-height: 26rem;
    padding: 4.5rem 1rem;
  }

  .statement-glass {
    padding: 1.85rem 1.3rem;
    border-radius: 1.25rem;
  }

  .statement-text {
    text-align: right;
    text-align-last: right;
    line-height: 1.9;
  }
}

/* Prices */
.prices {
  position: relative;
  padding: 5rem 0;
  background: var(--bg);
  overflow: hidden;
  max-width: 100%;
}

.prices-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.prices-head .section-title {
  margin-bottom: 0.75rem;
}

.prices-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.price-panels {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  filter: none;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 3.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.price-tab {
  background: none;
  border: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.15rem;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: color 0.2s ease;
}

.price-tab:hover {
  color: var(--text);
}

.price-tab.is-active {
  color: var(--text);
}

.price-tab::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -0.8rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.price-tab.is-active::after {
  transform: scaleX(1);
}

.price-panel {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  perspective: 1200px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.price-panel.is-active {
  display: flex;
}

.price-panel.is-active.is-entering .price-card {
  animation: priceCardEnter 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.price-panel.is-active.is-entering .price-card:nth-child(1) { animation-delay: 0.04s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) { animation-delay: 0.14s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) { animation-delay: 0.24s; }
.price-panel.is-active.is-entering .price-card:nth-child(4) { animation-delay: 0.34s; }

.price-panel.is-active.is-entering .price-card h3 {
  animation: priceLineIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: inherit;
}

.price-panel.is-active.is-entering .price-amount {
  animation: priceAmountIn 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  animation-delay: calc(0.12s + var(--card-delay, 0s));
}

.price-panel.is-active.is-entering .price-note,
.price-panel.is-active.is-entering .price-card li {
  animation: priceSpecIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.price-panel.is-active.is-entering .price-card:nth-child(1) .price-amount { --card-delay: 0.04s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) .price-amount { --card-delay: 0.14s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) .price-amount { --card-delay: 0.24s; }

.price-panel.is-active.is-entering .price-card:nth-child(1) .price-note,
.price-panel.is-active.is-entering .price-card:nth-child(1) li:nth-child(1) { animation-delay: 0.18s; }
.price-panel.is-active.is-entering .price-card:nth-child(1) li:nth-child(2) { animation-delay: 0.24s; }
.price-panel.is-active.is-entering .price-card:nth-child(1) li:nth-child(3) { animation-delay: 0.3s; }
.price-panel.is-active.is-entering .price-card:nth-child(1) li:nth-child(4) { animation-delay: 0.36s; }

.price-panel.is-active.is-entering .price-card:nth-child(2) .price-note,
.price-panel.is-active.is-entering .price-card:nth-child(2) li:nth-child(1) { animation-delay: 0.28s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) li:nth-child(2) { animation-delay: 0.34s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) li:nth-child(3) { animation-delay: 0.4s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) li:nth-child(4) { animation-delay: 0.46s; }

.price-panel.is-active.is-entering .price-card:nth-child(3) .price-note,
.price-panel.is-active.is-entering .price-card:nth-child(3) li:nth-child(1) { animation-delay: 0.38s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) li:nth-child(2) { animation-delay: 0.44s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) li:nth-child(3) { animation-delay: 0.5s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) li:nth-child(4) { animation-delay: 0.56s; }

.price-panel.is-active.is-entering .price-card .btn {
  animation: priceBtnIn 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.price-panel.is-active.is-entering .price-card:nth-child(1) .btn { animation-delay: 0.42s; }
.price-panel.is-active.is-entering .price-card:nth-child(2) .btn { animation-delay: 0.52s; }
.price-panel.is-active.is-entering .price-card:nth-child(3) .btn { animation-delay: 0.62s; }

.price-card {
  --price-lift: 0px;
  --price-scale: 1;
  position: relative;
  flex: 0 0 20rem;
  width: 20rem;
  max-width: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  transform-origin: center bottom;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
    height:100%;
    width:100%;
}
.price-card .head-cart :nth-child(2):not(:last-child) {
    margin: 1rem 0;
}

.price-card::before {
  content: "";
  position: absolute;
  inset-inline: 1.25rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(243, 132, 32, 0.14), transparent 55%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(243, 132, 32, 0.45);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(243, 132, 32, 0.18);
}

.price-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.price-card:hover::after {
  opacity: 1;
}

.price-card h3,.price-card .head-cart > :first-child {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    letter-spacing 0.35s ease;
}

.price-card:hover h3 {
  color: var(--accent-dim);
  border-color: rgba(243, 132, 32, 0.28);
}

.price-amount,.price-card .head-cart :nth-child(2) {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), color 0.3s ease;
  transform-origin: right center;
}

.price-card:hover .price-amount, .price-card:hover .price-card .head-cart :nth-child(2) {
  transform: scale(1.04);
  color: var(--accent-dim);
}

.price-amount span, .price-card .head-cart :nth-child(2) span{
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}



.price-note, .head-cart li:nth-child(3) {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}

.price-card:hover .price-note {
  color: var(--text);
}

.price-card ul{
    list-style: none;
    padding:0;
    margin:0;
}
/*.price-card ul ,*/
.footer-cart {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-card .footer-cart li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-inline-start: 1.1rem;
  position: relative;
  line-height: 1.55;
  transition:
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover li {
  color: var(--text);
  transform: translateX(-3px);
}

.price-card:hover li:nth-child(1) { transition-delay: 0.02s; }
.price-card:hover li:nth-child(2) { transition-delay: 0.05s; }
.price-card:hover li:nth-child(3) { transition-delay: 0.08s; }
.price-card:hover li:nth-child(4) { transition-delay: 0.11s; }


/*.price-card li::before, */
.price-card .footer-cart li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(243, 132, 32, 0);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.5, 0.64, 1),
    box-shadow 0.35s ease;
}

.price-card:hover li::before {
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(243, 132, 32, 0.18);
}

.price-card .btn-primary,.cart-button {
  --btn-shadow: rgba(243, 132, 32, 0.45);
  position: relative;
  z-index: 2;
  pointer-events: auto;
  margin-top: auto;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(243, 132, 32, 0.28);
  filter: none;
  margin-top:1rem !important;
}

.price-card .btn-primary:hover,
.price-card:hover .btn-primary {
  background: #ff9228;
  filter: brightness(1.04) saturate(1.05);
  transform: translateY(-3px);
  box-shadow:
    0 14px 28px rgba(243, 132, 32, 0.42),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

.price-card-featured {
  border-color: rgba(243, 132, 32, 0.4);
  background:
    linear-gradient(180deg, rgba(243, 132, 32, 0.12), transparent 40%),
    var(--surface);
}

.price-card-featured:hover {
  border-color: rgba(243, 132, 32, 0.65);
  box-shadow:
    0 24px 52px rgba(20, 24, 36, 0.14),
    0 10px 24px rgba(243, 132, 32, 0.2);
}

@keyframes priceCardEnter {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.92) rotateX(12deg);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  78% {
    transform: translateY(-4px) scale(1.015) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes priceLineIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes priceAmountIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.85);
    letter-spacing: 0.12em;
  }
  70% {
    transform: translateY(-2px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: normal;
  }
}

@keyframes priceSpecIn {
  from {
    opacity: 0;
    transform: translateX(16px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes priceBtnIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  70% {
    transform: translateY(-2px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ */
.questions {
  position: relative;
  padding: 2rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.faq-shell {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--accent);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  transition: transform 0.35s var(--ease), background-size 0.35s var(--ease);
}

.faq-item[open] summary::after,
.faq-item.is-animating-open summary::after {
  background-size: 100% 2px, 2px 0;
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item[open] .faq-answer,
.faq-item.is-animating-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    opacity 0.32s var(--ease),
    transform 0.4s var(--ease);
}

.faq-item[open] .faq-answer-inner,
.faq-item.is-animating-open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.04s;
}

.faq-item.is-animating-close .faq-answer {
  grid-template-rows: 0fr;
}

.faq-item.is-animating-close .faq-answer-inner {
  opacity: 0;
  transform: translateY(-0.25rem);
  transition-delay: 0s;
}

.faq-item.is-animating-close summary::after {
  background-size: 100% 2px, 2px 100%;
  transform: rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ footer CTA lives under .call-cta--faq */

/* Consult CTA — inspired by clear end-of-page conversion blocks */
.consult-cta {
  position: relative;
  padding: 1rem 0 4.5rem;
  background: var(--bg);
  overflow: hidden;
}

.consult-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(124, 136, 221, 0.22);
  background:
    radial-gradient(ellipse 70% 120% at 100% 0%, rgba(243, 132, 32, 0.14), transparent 55%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(41, 68, 159, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(65, 77, 170, 0.22), transparent 50%),
    var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.consult-cta-copy {
  max-width: 36rem;
}

.consult-cta-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
}

.consult-cta-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.consult-cta-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consult-cta-points li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(65, 77, 170, 0.18);
  border: 1px solid rgba(124, 136, 221, 0.22);
  color: rgba(253, 253, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
}

.consult-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.consult-cta-phone {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.consult-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer-inner,
  .faq-item summary::after {
    transition: none !important;
  }

  .btn:hover,
  .btn:active,
  .site-header .nav-cta:hover,
  .site-header .nav-cta:active,
  .consult-form__submit:hover,
  .consult-form__submit:active,
  .float-action:hover,
  .float-action:active,
  .hero-play:hover {
    transform: none;
  }

  .btn::before,
  .site-header .nav-cta::before,
  .consult-form__submit::before,
  .float-action::before,
  .btn:hover::before,
  .site-header .nav-cta:hover::before,
  .consult-form__submit:hover::before,
  .float-action:hover::before {
    transition: none;
    transform: none;
    opacity: 0;
  }
}

/* Footer — matched to sefrOyek-5G */
.site-footer {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background: var(--bg);
  border-top: none;
  margin-top: 2.5rem;
  padding: 5rem 0 3.5rem;
  color: var(--text);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 136, 221, 0.3) 22%,
    rgba(243, 132, 32, 0.65) 50%,
    rgba(41, 68, 159, 0.35) 78%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(243, 132, 32, 0.22);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr 1.35fr;
  gap: 2.5rem 2rem;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.footer-col a {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col--legal {
  padding-top: 0.15rem;
}

.footer-col--legal a {
  margin-bottom: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  text-decoration: none;
}

a.footer-contact-item:hover {
  color: var(--accent);
}

.footer-contact-icon {
  display: inline-flex;
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-address {
  margin: 0;
}

.footer-brand-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-brand-logo img {
  height: 3.25rem;
  width: auto;
}

.footer-license {
  margin: 0 0 1.25rem;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Modal — video modal only; NEVER style bare .modal (breaks Ghost #myModal) */
.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.video-modal .modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-modal .modal-close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 24, 36, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}

.video-modal .modal-body {
  aspect-ratio: 16 / 9;
  background: #000;
}

.intro-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/*
  Ghost Widget uses <div id="myModal" class="modal">.
  A bare `.modal { display: grid }` was forcing it open on page load.
  Design matches the dark landing modal (title, stacked fields, orange CTA).
*/
#myModal.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 1rem;
  overflow: auto;
  background: rgba(4, 4, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}

#myModal.modal[style*="flex"] {
  display: flex !important;
}

#myModal .modal-content {
  position: relative;
  width: min(100%, 440px);
  max-height: min(90vh, 760px);
  overflow: auto;
  margin: auto;
  padding: 2rem 1.65rem 1.65rem;
  border: 1px solid rgba(160, 170, 200, 0.12);
  border-radius: 1.25rem;
  background: #181824;
  color: #fdfdff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  direction: rtl;
  text-align: right;
  font-family: var(--font);
  animation: landingModalIn 0.25s ease;
}

#myModal .modal-content,
#myModal .modal-content label,
#myModal .modal-content input,
#myModal .modal-title,
#myModal p.modal-title,
#myModal .submit-form,
#myModal .close,
#myModal #ajax-result {
  font-family: "YekanBakh", "Vazirmatn", system-ui, sans-serif !important;
}

@keyframes landingModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#myModal .close {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  float: none;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease, background 0.15s ease;
}

#myModal .close:hover,
#myModal .close:focus {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

#myModal .modal-title,
#myModal p.modal-title {
  margin: 0 0 1.35rem;
  padding: 0 0 0 2rem;
  border: 0;
  text-align: right;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.7;
  color: #fff;
}

#myModal .modal-content > label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #9aa3b5;
  font-family: "YekanBakh", "Vazirmatn", system-ui, sans-serif !important;
}

#myModal .modal-content > label .req-star,
#myModal .modal-content > label i {
  font-style: normal;
  color: #fff;
  margin-left: 0.2rem;
}

#myModal .modal-content input {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(160, 170, 200, 0.14) !important;
  border-radius: 0.85rem !important;
  background: #0b0b16 !important;
  color: #fdfdff !important;
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: none !important;
  box-sizing: border-box;
}

#myModal .modal-content input::placeholder {
  color: #6b7280;
}

#myModal .modal-content input:focus {
  outline: none;
  border-color: rgba(243, 132, 32, 0.55) !important;
  background: #04040c !important;
  box-shadow: 0 0 0 3px rgba(243, 132, 32, 0.16) !important;
}

#myModal .modal-content input.error {
  border-color: rgba(239, 68, 68, 0.55) !important;
  background: rgba(239, 68, 68, 0.08) !important;
}

#myModal .modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

#myModal .footer-cta {
  display: flex;
  justify-content: stretch;
  align-items: center;
  gap: 0.75rem;
}

#myModal .footer-cta .submit-form,
#myModal .submit-form {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 0.95rem;
  background: #f38420;
  color: #111;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, filter 0.2s ease;
}

#myModal .footer-cta .submit-form:hover,
#myModal .submit-form:hover {
  background: #ff9a40;
  transform: translateY(-1px);
  filter: none;
}

#myModal .arcaptcha {
  display: flex;
  justify-content: center;
  margin: 0.15rem 0 0.15rem;
}

#myModal .arcaptcha > div {
  width: 100%;
  display: flex;
  justify-content: center;
}

#ajax-result {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
}

#ajax-result.error {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
}

#ajax-result.success {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
}

/* Consultation fallback modal — same dark design */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.consult-modal[hidden] {
  display: none !important;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.consult-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 2rem 1.65rem 1.65rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(160, 170, 200, 0.12);
  background: #181824;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  direction: rtl;
  text-align: right;
  animation: landingModalIn 0.25s ease;
}

.consult-modal__close {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: auto;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.consult-modal__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.consult-modal__title {
  margin: 0 0 0.5rem;
  padding: 0 0 0 2rem;
  text-align: right;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.7;
  color: #fff;
}

.consult-modal__lead {
  margin: 0 0 1.25rem;
  text-align: right;
  color: #9aa3b5;
  font-size: 0.9rem;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-form__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.consult-form__row > span {
  flex: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #9aa3b5;
  text-align: right;
}

.consult-form__row > span i {
  font-style: normal;
  color: #fff;
  margin-left: 0.15rem;
}

.consult-form__row input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(160, 170, 200, 0.14);
  border-radius: 0.85rem;
  background: #0b0b16;
  color: #fdfdff;
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.consult-form__row input::placeholder {
  color: #6b7280;
}

.consult-form__row input:focus {
  border-color: rgba(243, 132, 32, 0.55);
  background: #04040c;
  box-shadow: 0 0 0 3px rgba(243, 132, 32, 0.16);
}

.consult-form__captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.1rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.consult-form__captcha-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7c3aed;
}

.consult-form__captcha-brand em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
}

.consult-form__captcha-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
}

.consult-form__captcha-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consult-form__captcha-box {
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid #94a3b8;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.consult-form__captcha-check input:checked + .consult-form__captcha-box {
  border-color: var(--blue);
  background: var(--blue);
}

.consult-form__captcha-check input:checked + .consult-form__captcha-box::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.1rem;
  width: 0.28rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consult-form__captcha-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.consult-form__submit {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0.15rem 0 0;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 0.95rem;
  background: #f38420;
  color: #111;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.consult-form__submit::before {
  display: none;
}

.consult-form__submit:hover {
  background: #ff9a40;
  transform: translateY(-1px);
  filter: none;
  box-shadow: none;
}

.consult-form__submit:active {
  background: #e57618;
  transform: none;
  filter: none;
}

.consult-modal__success {
  text-align: center;
  padding: 0.35rem 0 0;
}

.consult-modal__success p {
  margin: 0 0 1.1rem;
  color: #9aa3b5;
  font-size: 0.98rem;
  line-height: 1.8;
}

body.consult-open {
  overflow: hidden;
}

/* Floating consult button */
.float-actions {
  position: fixed;
  right: 1.15rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-action {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 1.1rem;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 10px 26px rgba(243, 132, 32, 0.38),
    0 4px 10px rgba(0, 0, 0, 0.22);
  transform: translateY(0) scale(1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    filter 0.35s ease;
}

.float-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.float-action:hover {
  transform: translateY(-4px) scale(1.06);
  filter: brightness(1.05);
  box-shadow:
    0 16px 34px rgba(243, 132, 32, 0.5),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.float-action:hover::before {
  transform: translateX(130%);
}

.float-action:active {
  transform: translateY(-1px) scale(0.98);
  filter: none;
}

.float-action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.float-action--chat {
  background: linear-gradient(160deg, #ff9a40 0%, var(--orange) 55%, #e57618 100%);
}

.float-action--chat:hover {
  background: linear-gradient(160deg, #ffb066 0%, #f38420 50%, #de6f12 100%);
}

.float-action--chat svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

body.consult-open .float-actions {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .float-actions {
    right: 0.85rem;
    bottom: 0.95rem;
  }

  .float-action {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-action,
  .float-action:hover,
  .float-action:active {
    transition: none;
    transform: none;
  }

  .consult-form__submit:hover {
    transform: none;
  }
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  background: var(--bg);
}

.video-placeholder p {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.video-placeholder .muted {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
}

/* Reveal + page load animations */
body {
  opacity: 0;
}

body.is-ready {
  opacity: 1;
  transition: opacity 0.55s ease;
}

.site-header .nav-links > *,
.site-header .nav-cta {
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  filter: blur(4px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease,
    text-shadow 0.35s ease;
}

body.is-ready .site-header .nav-links > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.08s;
}

body.is-ready .site-header .nav-links > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.16s;
}

body.is-ready .site-header .nav-links > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.24s;
}

body.is-ready .site-header .nav-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.32s;
}

/* Base reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(5px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal-clip {
  transform: none;
  filter: none;
  clip-path: inset(14% 0 0 0);
  opacity: 0.15;
}

.reveal-clip.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.reveal-scale {
  transform: scale(0.9);
  filter: blur(8px);
}

.reveal-scale.is-visible {
  transform: scale(1);
  filter: blur(0);
}

.reveal-slide {
  transform: translateX(48px);
  filter: blur(4px);
}

.reveal-slide.is-visible {
  transform: translateX(0);
  filter: blur(0);
}

.reveal-slide-out {
  transform: translateX(-48px);
  filter: blur(4px);
}

.reveal-slide-out.is-visible {
  transform: translateX(0);
  filter: blur(0);
}

.reveal-mask {
  transform: scale(1.06);
  filter: blur(10px) saturate(0.7);
  opacity: 0;
}

.reveal-mask.is-visible {
  transform: scale(1);
  filter: blur(0) saturate(1);
  opacity: 1;
}

.reveal-media {
  transform: scale(1.08);
  filter: blur(2px);
  clip-path: inset(8% 8% 8% 8%);
  opacity: 0.35;
}

.reveal-media.is-visible {
  transform: scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.reveal-title {
  transform: translateY(24px);
  filter: blur(3px);
}

.reveal-title.is-visible {
  transform: translateY(0);
  filter: blur(0);
}

.reveal-title.section-title,
.reveal-title.why-title {
  position: relative;
}

.reveal-title.section-title::after,
.reveal-title.why-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-title-center.reveal-title::after {
  margin-inline: auto;
  transform-origin: center;
  background: var(--accent);
}

.why-title.reveal-title::after {
  margin-inline: auto;
  transform-origin: center;
  background: var(--blue);
}

.reveal-title.is-visible.section-title::after,
.reveal-title.is-visible.why-title::after {
  transform: scaleX(1);
}

.reveal.reveal-cascade,
.reveal.reveal-stagger,
.reveal.reveal-stagger-pop,
.reveal.reveal-stagger-slide,
.reveal.reveal-stagger-tilt {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
}

.reveal-cascade > * {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(5px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-cascade.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-cascade.is-visible > *:nth-child(1) { transition-delay: 0.06s; }
.reveal-cascade.is-visible > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-cascade.is-visible > *:nth-child(3) { transition-delay: 0.26s; }
.reveal-cascade.is-visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-cascade.is-visible > *:nth-child(5) { transition-delay: 0.46s; }
.reveal-cascade.is-visible > *:nth-child(6) { transition-delay: 0.56s; }
.reveal-cascade.is-visible > *:nth-child(7) { transition-delay: 0.66s; }
.reveal-cascade.is-visible > *:nth-child(8) { transition-delay: 0.76s; }

.hero-content.reveal-cascade > .brand-mark {
  transform: translateY(40px) scale(0.88);
  filter: blur(8px);
}

.hero-content.reveal-cascade.is-visible > .brand-mark {
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.1s;
}

.hero-content.reveal-cascade.is-visible > .hero-cta {
  transition-delay: 0.38s;
}

.hero-content.reveal-cascade > .hero-play {
  opacity: 0;
  transform: translateY(18px);
}

.hero-content.reveal-cascade.is-visible > .hero-play {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.intro-head.reveal-cascade > * {
  transform: none;
  filter: none;
  clip-path: inset(0 0 100% 0);
  opacity: 0.15;
  transition:
    clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease;
}

.intro-head.reveal-cascade.is-visible > * {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger-i, 0) * 0.07s);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-stagger-pop > * {
  opacity: 0;
  transform: scale(0.82) translateY(18px);
  filter: blur(6px);
  transition:
    opacity 0.65s cubic-bezier(0.34, 1.4, 0.64, 1),
    transform 0.65s cubic-bezier(0.34, 1.4, 0.64, 1),
    filter 0.55s ease;
  transition-delay: calc(var(--stagger-i, 0) * 0.06s);
}

.reveal-stagger-pop.is-visible > * {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.reveal-stagger-slide > * {
  opacity: 0;
  transform: translateX(36px);
  filter: blur(3px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger-i, 0) * 0.075s);
}

.reveal-stagger-slide.is-visible > * {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-stagger-tilt > * {
  opacity: 0;
  transform: perspective(600px) rotateY(-8deg) translateY(20px);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger-i, 0) * 0.08s);
}

.reveal-stagger-tilt.is-visible > * {
  opacity: 1;
  transform: perspective(600px) rotateY(0deg) translateY(0);
  filter: blur(0);
}

.price-tabs.reveal {
  transform: none;
  filter: none;
  opacity: 1;
  clip-path: none;
}

.price-tabs.reveal > .price-tab {
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  filter: blur(3px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.34, 1.35, 0.64, 1),
    filter 0.45s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.price-tabs.reveal.is-visible > .price-tab {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.price-tabs.reveal.is-visible > .price-tab:nth-child(1) { transition-delay: 0.05s; }
.price-tabs.reveal.is-visible > .price-tab:nth-child(2) { transition-delay: 0.1s; }
.price-tabs.reveal.is-visible > .price-tab:nth-child(3) { transition-delay: 0.15s; }
.price-tabs.reveal.is-visible > .price-tab:nth-child(4) { transition-delay: 0.2s; }
.price-tabs.reveal.is-visible > .price-tab:nth-child(5) { transition-delay: 0.25s; }
.price-tabs.reveal.is-visible > .price-tab:nth-child(6) { transition-delay: 0.3s; }

.faq-item {
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.faq-list.reveal-stagger.is-visible .faq-item,
.faq-list.reveal-stagger-slide.is-visible .faq-item {
  transition-delay: calc(var(--stagger-i, 0) * 0.08s);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Responsive */
@media (max-width: 960px) {
  .why-visual {
    min-height: 0;
  }

  .why-content {
    padding-top: 4.5rem;
    padding-bottom: 2.25rem;
  }

  .why-visual-copy {
    margin-bottom: 1.75rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .features-list li,
  .features-list li:nth-child(1),
  .features-list li:nth-child(2),
  .features-list li:nth-child(3),
  .features-list li:nth-child(4),
  .features-list li:nth-child(5),
  .features-list li:nth-child(6),
  .features-list li:nth-child(7) {
    grid-column: auto;
  }

  .price-card {
    flex: 0 1 20rem;
    width: min(20rem, 100%);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .intro-uses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .intro-promises {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a:not(.nav-logo) {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 85vh;
    padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  }

  .intro {
    padding: 4.25rem 0 4rem;
  }

  .intro-uses {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .intro-promises {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-visual {
    min-height: 0;
  }

  .consult-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  .consult-cta-points {
    justify-content: center;
  }

  .consult-cta-actions {
    justify-content: center;
  }

  .intro-uses li {
    padding: 1.4rem 1.1rem 1.3rem;
  }

  .price-tabs {
    gap: 0.45rem 1.75rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .price-tab {
    flex-shrink: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col--brand {
    order: -1;
  }

  .faq-shell {
    padding: 1.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    opacity: 1 !important;
  }

  .site-header .nav-links > *,
  .site-header .nav-cta,
  .hero-img,
  .reveal,
  .reveal-cascade > *,
  .reveal-stagger > *,
  .reveal-stagger-pop > *,
  .reveal-stagger-slide > *,
  .reveal-stagger-tilt > *,
  .price-tabs.reveal > .price-tab,
  .price-panel.is-active .price-card,
  .price-panel.is-entering .price-card,
  .price-panel.is-entering .price-card *,
  .statement-bg img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .reveal-title.section-title::after,
  .reveal-title.why-title::after {
    transform: scaleX(1) !important;
  }

  .price-card:hover {
    transform: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  .price-card:hover::before,
  .price-card:hover::after {
    opacity: 0;
    transform: none;
  }

  .price-card:hover li,
  .price-card:hover .price-amount,
  .price-card:hover .btn-primary {
    transform: none;
  }

  .price-card:hover li::before {
    transform: none;
    box-shadow: none;
  }

  .statement-bg img {
    transform: scale(1.04) !important;
    filter: saturate(1.08) brightness(0.78) contrast(1.08) !important;
  }

  .customer-logo {
    opacity: 1 !important;
  }
}





















/* Ghost Widget swiper nav buttons */
.sliders,
.my_slides_container,
.prices .swiper {
  max-width: 100%;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: 0;
  border: 1px solid rgba(20, 24, 36, 0.1);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  color: var(--blue);
  font-family: var(--font) !important;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.swiper-button-next {
  right: 4px;
  left: auto;
}

.swiper-button-prev {
  left: 4px;
  right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: var(--font) !important;
  font-size: 1.05rem !important;
  font-weight: 800;
  line-height: 1;
  color: inherit;
}

.swiper-button-next:after {
  content: "‹" !important;
}

.swiper-button-prev:after {
  content: "›" !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 24px rgba(243, 132, 32, 0.28);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-wrapper {
    transform: translate3d(0, 0, 0) !important;
  }
}
