/* ===================================================================
   اگزار — تطور | نقشهٔ رنگ و متغیرهای طرح (بدون گرادینت)
=================================================================== */
:root {
  --navy-950: #050f28;
  --navy-900: #0a1c40;
  --navy-800: #0d2f74;
  --navy-700: #123f96;
  --blue-600: #0064ea;
  --blue-500: #01a8f4;
  --blue-100: #e5f2ff;
  --accent-600: #02a58f;
  --accent-500: #03c99f;
  --accent-400: #35eec7;
  --accent-100: #e0fbf3;
  --ink: #0e1a30;
  --slate-600: #4d5b74;
  --slate-500: #6a7893;
  --slate-300: #c4cddd;
  --line: #e3e8f2;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 28, 61, 0.06);
  --shadow-md: 0 14px 34px rgba(11, 28, 61, 0.1);
  --shadow-lg: 0 26px 60px rgba(11, 28, 61, 0.16);
  --ease: cubic-bezier(0.22, 0.8, 0.28, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: "Vazirmatn", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[dir="rtl"] body {
  direction: rtl;
}
html[dir="ltr"] body {
  direction: ltr;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.eng-num {
  font-variant-numeric: tabular-nums;
}

/* ---------- typography ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-600);
  background: var(--accent-100);
  border: 1px solid #a6ecdc;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-500);
  flex: none;
}
.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.section-head p {
  color: var(--slate-600);
  font-size: 1.02rem;
  margin-top: 14px;
}

section {
  position: relative;
}
.section-pad {
  padding-block: 88px;
}
@media (max-width: 768px) {
  .section-pad {
    padding-block: 60px;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}
html[dir="ltr"] .btn svg {
  transform: scaleX(-1);
}
.btn-primary {
  background: var(--accent-500);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-600);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--navy-700);
  background: var(--blue-100);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.02rem;
}
.btn-block {
  width: 100%;
}

/* ---------- shared card base (one look, reused everywhere) ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d7e0f5;
}

/* ---------- screenshot frame (one component, used everywhere a product image appears) ---------- */
.shot-frame {
  display: flex;
  justify-content: center;
}
.shot-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.4));
}
.shot-caption {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--slate-600);
  text-align: center;
  line-height: 1.7;
}

/* ===================================================================
   HEADER
=================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding-block: 16px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  padding-block: 11px;
  box-shadow: 0 6px 24px rgba(4, 10, 26, 0.22);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-mark {
  width: auto;
  height: 34px;
  flex: none;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text b {
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
}
.brand-text span {
  font-size: 0.7rem;
  color: var(--accent-400);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

/* language switcher */
.lang-switch {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lang-btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.lang-btn .chev {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}
.lang-switch.is-open .lang-btn .chev {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 150px;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s var(--ease);
  z-index: 50;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: start;
}
.lang-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lang-menu button.is-active {
  color: var(--accent-400);
}
.lang-menu button.is-active svg {
  opacity: 1;
}
.lang-menu button svg {
  width: 15px;
  height: 15px;
  opacity: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.header-cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.header-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===================================================================
   HERO — flat navy, one screenshot, no decoration
=================================================================== */
.hero {
  background: var(--navy-900);
  color: #fff;
  padding-top: 132px;
  padding-bottom: 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #fff;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--accent-400);
}
.hero-copy p {
  margin-top: 20px;
  font-size: 1.08rem;
  color: rgba(228, 233, 246, 0.8);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trustline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(228, 233, 246, 0.65);
  font-size: 0.86rem;
}
.hero-trustline .dots {
  display: flex;
}
.hero-trustline .dots img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  background: #fff;
  object-fit: cover;
  margin-inline-start: -9px;
  display: block;
}
.hero-trustline .dots img:first-child {
  margin-inline-start: 0;
}
.hero-shot {
  display: flex;
  justify-content: center;
}
.hero-shot img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.4));
}
.hero-visual .shot-caption {
  color: rgba(228, 233, 246, 0.6);
}

/* ===================================================================
   STATS STRIP — flat navy
=================================================================== */
.stats-strip {
  background: var(--navy-900);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 52px;
}
.stat-item {
  text-align: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:first-child {
  border-inline-start: none;
}
.stat-item b {
  display: block;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-400);
}
.stat-item span {
  color: rgba(228, 233, 246, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

/* ===================================================================
   PROBLEM / SOLUTION NARRATIVE
=================================================================== */
.narrative {
  background: var(--bg-soft);
}
.chapters {
  display: grid;
  gap: 16px;
}
.chapter {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.chapter-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--navy-800);
}
.chapter.is-solution .chapter-num {
  background: var(--accent-500);
}
.chapter h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.chapter p {
  color: var(--slate-600);
}
.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chapter-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-800);
  background: var(--blue-100);
  padding: 5px 12px;
  border-radius: 100px;
}
.chapter.is-solution .chapter-tags span {
  color: var(--accent-600);
  background: var(--accent-100);
}
.chapter-arrow {
  display: flex;
  justify-content: center;
  color: var(--slate-300);
}
.chapter-arrow svg {
  width: 20px;
  height: 20px;
}

/* ===================================================================
   FEATURES — one uniform grid, one card style, one icon treatment
=================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 26px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--blue-100);
  color: var(--navy-800);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--slate-600);
  font-size: 0.9rem;
}

/* ===================================================================
   PRODUCT SHOWCASE — flat navy, real screenshots
=================================================================== */
.showcase {
  background: var(--navy-900);
  color: #fff;
}
.showcase .section-head h2,
.showcase .section-head p {
  color: #fff;
}
.showcase .section-head p {
  color: rgba(228, 233, 246, 0.72);
}
.tab-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.tab-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.tab-btn.is-active {
  background: var(--accent-500);
  color: #fff;
  border-color: var(--accent-500);
}
.tab-panel {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: center;
}
.tab-panel.is-active {
  display: grid;
}
.tab-panel h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.tab-panel .tab-desc {
  color: rgba(228, 233, 246, 0.75);
  margin-bottom: 18px;
}
.tab-panel ul {
  display: grid;
  gap: 10px;
}
.tab-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(228, 233, 246, 0.9);
  font-size: 0.92rem;
}
.tab-panel ul li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-400);
  flex: none;
  margin-top: 2px;
}
.tab-panel .shot-caption {
  color: rgba(228, 233, 246, 0.55);
}

/* ===================================================================
   ABOUT / WHY US
=================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-points {
  display: grid;
  gap: 20px;
}
.about-point {
  display: flex;
  gap: 16px;
}
.about-point .num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-600);
  background: var(--accent-100);
}
.about-point h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.about-point p {
  color: var(--slate-600);
  font-size: 0.92rem;
}

/* ===================================================================
   ONBOARDING STEPS
=================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  padding: 26px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-800);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--slate-600);
  font-size: 0.9rem;
}

/* ===================================================================
   APP DOWNLOAD
=================================================================== */
.app-download {
  background: var(--navy-900);
}
.app-download-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.app-download-inner .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--accent-400);
}
.app-download-inner h2 {
  color: #fff;
}
.app-download-inner p {
  color: rgba(228, 233, 246, 0.75);
  margin-top: 14px;
}
.store-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.store-btn svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  text-align: start;
  line-height: 1.35;
}
.store-btn small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
}
.store-btn b {
  font-size: 0.98rem;
  font-weight: 700;
}

/* ===================================================================
   TRUSTED BY (EXCHANGE HOUSES)
=================================================================== */
.trusted-body {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.trusted-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  min-width: 0;
}
.trusted-logo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.trusted-logo-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.trusted-logo-btn.is-active {
  border-color: var(--accent-500);
  box-shadow: var(--shadow-md);
}
.trusted-logo-btn img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bg-soft);
}
.trusted-logo-btn span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  text-align: center;
  line-height: 1.4;
}
.trusted-quote {
  flex: 0 0 320px;
  max-width: 320px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: start;
  position: sticky;
  top: 100px;
}
.trusted-quote .quote-mark {
  width: 22px;
  height: 22px;
  color: var(--accent-500);
  margin-bottom: 12px;
}
.trusted-quote-text {
  font-size: 0.98rem;
  color: var(--navy-900);
  line-height: 1.8;
}
.trusted-quote-text.is-empty {
  color: var(--slate-500);
  font-style: italic;
}
.trusted-quote-name {
  margin-top: 18px;
  font-weight: 800;
  color: var(--navy-800);
  font-size: 0.92rem;
}

/* ===================================================================
   PRICING
=================================================================== */
.pricing-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 26px;
  border-radius: 100px;
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
.pricing-banner svg {
  width: 18px;
  height: 18px;
  color: var(--accent-400);
  flex: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.is-featured {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.price-badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 32px;
  background: var(--accent-500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 15px;
  border-radius: 100px;
}
.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.price-card.is-featured h3 {
  color: #fff;
}
.price-card .p-desc {
  color: var(--slate-600);
  font-size: 0.87rem;
  margin-bottom: 20px;
}
.price-card.is-featured .p-desc {
  color: rgba(228, 233, 246, 0.75);
}
.price-amt {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.price-amt b {
  font-size: 2.1rem;
  font-weight: 800;
}
.price-amt span {
  color: var(--slate-500);
  font-size: 0.86rem;
}
.price-card.is-featured .price-amt span {
  color: rgba(228, 233, 246, 0.65);
}
.price-feats {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}
.price-feats li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-500);
  flex: none;
  margin-top: 3px;
}
.price-card.is-featured .price-feats li svg {
  color: var(--accent-400);
}

/* automation block */
.automation-block {
  margin-top: 60px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.automation-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.automation-head h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.automation-head p {
  color: var(--slate-600);
  font-size: 0.92rem;
}
.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.automation-card {
  padding: 24px;
  background: #fff;
}
.automation-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--blue-100);
  color: var(--navy-800);
}
.automation-icon svg {
  width: 20px;
  height: 20px;
}
.automation-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.automation-card ul {
  display: grid;
  gap: 8px;
}
.automation-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-600);
}
.automation-card ul li svg {
  width: 15px;
  height: 15px;
  color: var(--accent-500);
  flex: none;
  margin-top: 2px;
}
.automation-note {
  text-align: center;
  margin-top: 28px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.92rem;
}
.automation-freq {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.automation-freq span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 6px 16px;
  border-radius: 100px;
}

/* pricing info strip */
.pricing-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.info-strip-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.info-strip-card h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.info-strip-card > b {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-600);
  margin-bottom: 6px;
}
.info-strip-card p {
  color: var(--slate-600);
  font-size: 0.85rem;
}
.info-strip-card ul {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.info-strip-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--slate-600);
}
.info-strip-card ul li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-500);
  flex: none;
  margin-top: 2px;
}

/* ===================================================================
   FAQ
=================================================================== */
.faq-wrap {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  text-align: start;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy-900);
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  flex: none;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease);
}
.faq-q .plus svg {
  width: 13px;
  height: 13px;
  color: var(--navy-800);
}
.faq-item.is-open .faq-q .plus {
  background: var(--accent-500);
  transform: rotate(135deg);
}
.faq-item.is-open .faq-q .plus svg {
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--slate-600);
  font-size: 0.91rem;
  max-width: 660px;
}

/* ===================================================================
   FINAL CTA — flat navy, accent top rule only
=================================================================== */
.final-cta {
  background: var(--navy-900);
  border-top: 3px solid var(--accent-500);
  padding: 56px 44px;
  text-align: center;
  color: #fff;
  margin-inline: 24px;
  border-radius: var(--radius-lg);
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 620px;
  margin-inline: auto;
}
.final-cta p {
  color: rgba(228, 233, 246, 0.78);
  margin-top: 14px;
  max-width: 500px;
  margin-inline: auto;
}
.final-cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* ===================================================================
   FOOTER
=================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(228, 233, 246, 0.75);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.89rem;
  color: rgba(228, 233, 246, 0.6);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}
.footer-social a:hover {
  background: var(--accent-500);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.footer-col ul {
  display: grid;
  gap: 11px;
}
.footer-col a {
  font-size: 0.89rem;
  color: rgba(228, 233, 246, 0.65);
}
.footer-col a:hover {
  color: var(--accent-400);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--accent-400);
  flex: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  font-size: 0.82rem;
  color: rgba(228, 233, 246, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 18px;
}

/* ===================================================================
   WHATSAPP FLOAT
=================================================================== */
.whatsapp-float {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  z-index: 900;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 640px) {
  .whatsapp-float {
    inset-inline-end: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===================================================================
   REVEAL ANIM
=================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
[data-reveal-group].in-view > * {
  opacity: 1;
  transform: none;
}
[data-reveal-group].in-view > *:nth-child(1) {
  transition-delay: 0.04s;
}
[data-reveal-group].in-view > *:nth-child(2) {
  transition-delay: 0.1s;
}
[data-reveal-group].in-view > *:nth-child(3) {
  transition-delay: 0.16s;
}
[data-reveal-group].in-view > *:nth-child(4) {
  transition-delay: 0.22s;
}
[data-reveal-group].in-view > *:nth-child(5) {
  transition-delay: 0.28s;
}
[data-reveal-group].in-view > *:nth-child(6) {
  transition-delay: 0.34s;
}
[data-reveal-group].in-view > *:nth-child(7) {
  transition-delay: 0.4s;
}
[data-reveal-group].in-view > *:nth-child(8) {
  transition-delay: 0.46s;
}

/* ===================================================================
   MOBILE MENU
=================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  padding: 104px 28px 40px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.mobile-lang button {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.88rem;
}
.mobile-lang button.is-active {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: #fff;
}
.mobile-menu .btn {
  margin-top: 14px;
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid .shot-frame {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .stat-item:nth-child(3) {
    border-inline-start: none;
  }
  .trusted-body {
    flex-direction: column;
    align-items: stretch;
  }
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-quote {
    flex: none;
    max-width: none;
    width: 100%;
    position: static;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .automation-grid,
  .pricing-info-strip {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
}
@media (max-width: 860px) {
  .nav-links,
  .header-cta .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tab-panel {
    grid-template-columns: 1fr;
  }
  .tab-panel .shot-frame {
    order: -1;
  }
}
@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }
  .section-pad {
    padding-block: 52px;
  }
  .chapter {
    grid-template-columns: 1fr;
    text-align: start;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .final-cta {
    padding: 40px 22px;
    margin-inline: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-right .lang-btn span.lang-label {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .automation-block {
    padding: 28px 20px;
  }
}
@media (max-width: 420px) {
  .trusted-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .trusted-logo-btn {
    padding: 14px 8px;
  }
  .trusted-logo-btn img {
    width: 42px;
    height: 42px;
  }
  .trusted-logo-btn span {
    font-size: 0.76rem;
  }
  .brand-text span {
    display: none;
  }
}
