/* ============================================================
   ADR — English landing page
   Brand-locked stylesheet
   ============================================================ */

:root {
  /* Brand colors */
  --deep-purple: #3B0270;
  --almost-black: #15173D;
  --vivid-purple: #6F00FF;
  --light-lavender: #E9B3FB;
  --white: #FFFFFF;

  /* Typography — Readex Pro (bilingual Latin + Arabic, single family) */
  --font-display: 'Readex Pro', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Readex Pro', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --gutter: 32px;
  --gutter-tablet: 24px;
  --gutter-mobile: 20px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --motion-fast: 180ms;
  --motion-base: 260ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--almost-black);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 1023px) { .container { padding-inline: var(--gutter-tablet); } }
@media (max-width: 639px)  { .container { padding-inline: var(--gutter-mobile); } }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vivid-purple);
  display: inline-block;
}
.eyebrow--light { color: var(--light-lavender); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 8px;
  transition:
    transform var(--motion-fast) var(--ease),
    box-shadow var(--motion-fast) var(--ease),
    background-color var(--motion-fast) var(--ease),
    border-color var(--motion-fast) var(--ease),
    color var(--motion-fast) var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 179, 251, 0.6);
}
.btn--primary {
  background: var(--vivid-purple);
  color: var(--white);
  padding: 16px 32px;
  font-size: 16px;
}
.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.4);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 14.5px 30px;
  font-size: 16px;
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}
.btn--nav {
  background: var(--vivid-purple);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 6px;
}
.btn--nav:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(111, 0, 255, 0.4);
}
.btn--large {
  padding: 18px 36px;
  font-size: 18px;
}
.btn--large:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.3);
}

/* ============================================================
   SECTION 1 — Top Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--motion-base) var(--ease),
    border-color var(--motion-base) var(--ease),
    backdrop-filter var(--motion-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(21, 23, 61, 0.95);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(233, 179, 251, 0.2);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  transition: color var(--motion-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  inset: auto 50% -2px 50%;
  height: 1px;
  background: var(--light-lavender);
  transition:
    inset var(--motion-fast) var(--ease),
    opacity var(--motion-fast) var(--ease);
  opacity: 0;
}
.nav__link:hover {
  color: var(--light-lavender);
}
.nav__link:hover::after { inset: auto 0 -2px 0; opacity: 1; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--motion-fast) var(--ease), background-color var(--motion-fast) var(--ease);
}
.lang-toggle__option {
  opacity: 0.55;
  transition: opacity var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}
.lang-toggle__option.is-active {
  opacity: 1;
  color: var(--light-lavender);
}
.lang-toggle__divider { opacity: 0.4; }
.lang-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.lang-toggle:hover .lang-toggle__option:not(.is-active) { opacity: 0.85; }
.lang-toggle--mobile { font-size: 14px; padding: 8px 12px; }

.nav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  position: relative;
}
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--motion-fast) var(--ease), top var(--motion-fast) var(--ease);
}
.nav__hamburger span::before { top: -7px; }
.nav__hamburger span::after  { top: 7px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep-purple);
  z-index: 60;
  padding: 24px;
  display: none;
  flex-direction: column;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.mobile-menu__top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}
.mobile-menu__links {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu__link {
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
}
.mobile-menu__cta {
  margin-top: auto;
  padding: 24px 0;
}

@media (max-width: 1023px) {
  .nav__links, .nav__right .btn--nav, .lang-toggle { display: none; }
  .nav__hamburger { display: flex; }
  .nav { height: 56px; }
}

/* ============================================================
   SECTION 2 — Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 700px;
  height: 100vh;
  background: var(--deep-purple);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero::before {
  /* top-right vivid purple glow */
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle at center, rgba(111, 0, 255, 0.25), rgba(111, 0, 255, 0) 60%);
  pointer-events: none;
}
.hero::after {
  /* bottom-left depth */
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle at center, rgba(21, 23, 61, 0.4), rgba(21, 23, 61, 0) 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
}
.hero__headline {
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--white);
}
.hero__pillars {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--light-lavender);
  margin: 0;
  letter-spacing: 0.01em;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Decorative radial element */
.hero__decor {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin-left: auto;
}
.hero__decor svg { width: 100%; height: 100%; }

@media (max-width: 1023px) {
  .hero { height: auto; min-height: 700px; padding-top: 88px; padding-bottom: 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__decor { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 639px) {
  .hero__actions .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
}

/* ============================================================
   SECTION 3 — Services (dominant)
   ============================================================ */
.services {
  background: var(--white);
  color: var(--almost-black);
  padding: 120px 0;
}
@media (max-width: 1023px) { .services { padding: 80px 0; } }
@media (max-width: 639px)  { .services { padding: 64px 0; } }

.services__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.services__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--almost-black);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0;
}
.services__sub {
  color: var(--deep-purple);
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .services__grid { grid-template-columns: 1fr; gap: 24px; }
}

.pkg {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(233, 179, 251, 0.6);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(59, 2, 112, 0.06);
  transition: border-color var(--motion-base) var(--ease);
}
.pkg:hover { border-color: rgba(233, 179, 251, 1); }
.pkg__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--almost-black);
  line-height: 1.15;
  margin: 0;
}
.pkg__title--md { font-size: 28px; }
.pkg__subline {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep-purple);
  margin: -16px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.pkg__subline--sm { font-size: 15px; }

.pkg__phases {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}
.pkg__phase {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg__phase-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--almost-black);
  letter-spacing: 0.01em;
}
.pkg__phase-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--almost-black);
  line-height: 1.6;
  opacity: 0.82;
}

.pkg__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pkg__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--almost-black);
}
.pkg__list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--vivid-purple);
}

.pkg__cta { margin-top: auto; }
.pkg__cta .btn { width: 100%; }

.services__custom {
  text-align: center;
  margin: 56px auto 0;
  max-width: 700px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--deep-purple);
  line-height: 1.6;
}

/* ============================================================
   SECTION 4 — How it works
   ============================================================ */
.how {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(233, 179, 251, 0.15) 100%);
}
@media (max-width: 1023px) { .how { padding: 80px 0; } }
@media (max-width: 639px)  { .how { padding: 64px 0; } }

.how__header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.how__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--almost-black);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin: 0;
  max-width: 720px;
}

.how__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how__timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: var(--light-lavender);
  z-index: 0;
}
.how__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.how__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vivid-purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(111, 0, 255, 0.25);
}
.how__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--almost-black);
  margin: 0;
}
.how__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--vivid-purple);
  margin: -8px 0 0;
}
.how__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--deep-purple);
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
}

@media (max-width: 1023px) {
  .how__timeline { grid-template-columns: 1fr; gap: 40px; }
  .how__timeline::before {
    top: 30px;
    bottom: 30px;
    left: calc(50% - 1px);
    right: auto;
    width: 2px;
    height: auto;
  }
  .how__desc { max-width: 480px; }
}

/* ============================================================
   SECTION 5 — Trust & ownership
   ============================================================ */
.trust {
  background: var(--almost-black);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(111, 0, 255, 0.18), rgba(111, 0, 255, 0) 60%);
  pointer-events: none;
}
@media (max-width: 1023px) { .trust { padding: 80px 0; } }
@media (max-width: 639px)  { .trust { padding: 64px 0; } }

.trust__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.trust__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  font-size: clamp(24px, 3.3vw, 36px);
  line-height: 1.15;
  margin: 0;
  max-width: 880px;
}

.trust__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  width: 100%;
  max-width: 720px;
}
.trust__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.trust__icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-lavender);
}
.trust__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.01em;
  margin: 0;
}

.trust__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--light-lavender);
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
}

@media (max-width: 639px) {
  .trust__badges { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   SECTION 6 — Meet Our Agent
   ============================================================ */
.agent {
  background: var(--white);
  color: var(--almost-black);
  padding: 120px 0;
}
@media (max-width: 1023px) { .agent { padding: 80px 0; } }
@media (max-width: 639px)  { .agent { padding: 64px 0; } }

.agent__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agent__content { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.agent__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--almost-black);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0;
}
.agent__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--deep-purple);
  line-height: 1.7;
  margin: 0;
}
.agent__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--deep-purple);
  margin: 4px 0 0;
}
.agent__cta { margin-top: 12px; align-self: flex-start; }

.agent__visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 1 / 1.05;
}
.agent__visual svg { width: 100%; height: 100%; }

@media (max-width: 1023px) {
  .agent__main { grid-template-columns: 1fr; gap: 56px; }
  .agent__visual { margin: 0 auto; max-width: 420px; }
}

.agent__capabilities {
  margin-top: 100px;
}
@media (max-width: 1023px) { .agent__capabilities { margin-top: 72px; } }

.agent__cap-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--almost-black);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 40px;
}
.agent__cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .agent__cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .agent__cap-grid { grid-template-columns: 1fr; } }

.cap {
  background: var(--white);
  border: 1px solid rgba(233, 179, 251, 0.4);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--motion-base) var(--ease), transform var(--motion-base) var(--ease);
}
.cap:hover {
  border-color: rgba(233, 179, 251, 1);
  transform: translateY(-2px);
}
.cap__icon {
  width: 40px;
  height: 40px;
  color: var(--vivid-purple);
}
.cap__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--almost-black);
  margin: 0;
  line-height: 1.25;
}
.cap__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--deep-purple);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SECTION 7 — Connected channels strip
   ============================================================ */
.channels {
  background: var(--deep-purple);
  padding: 88px 0;
  color: var(--white);
}
@media (max-width: 1023px) { .channels { padding: 64px 0; } }

.channels__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.channels__scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.channels__scroll::-webkit-scrollbar { display: none; }

.channels__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  min-width: max-content;
}
@media (max-width: 1023px) {
  .channels__row { justify-content: flex-start; padding-inline: 4px; }
}

.ch-card {
  flex: 0 0 auto;
  width: 120px;
  padding: 24px 16px 20px;
  background: var(--deep-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  scroll-snap-align: start;
  position: relative;
}
.ch-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ch-card__icon svg { width: 100%; height: 100%; }
.ch-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.ch-card__pill {
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--white);
  background: rgba(111, 0, 255, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 179, 251, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 639px) {
  .ch-card { width: 96px; padding: 18px 10px 16px; }
  .ch-card__icon { width: 32px; height: 32px; }
  .ch-card__name { font-size: 12px; }
}

/* ============================================================
   SECTION 8 — The unified dashboard
   ============================================================ */
.dashboard {
  background: var(--deep-purple);
  color: var(--white);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) { .dashboard { padding: 80px 0 96px; } }
@media (max-width: 639px)  { .dashboard { padding: 64px 0 80px; } }

.dashboard::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(111, 0, 255, 0.20), rgba(111, 0, 255, 0) 60%);
  pointer-events: none;
}

.dashboard__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.dashboard__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0;
  max-width: 800px;
}
.dashboard__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--light-lavender);
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}

/* Dashboard visual frame */
.dashboard__visual {
  width: 100%;
  max-width: 900px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.dash-frame {
  background: var(--almost-black);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(233, 179, 251, 0.1);
}
.dash-frame__chrome {
  background: var(--almost-black);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(233, 179, 251, 0.1);
}
.dash-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(233, 179, 251, 0.25);
}
.dash-frame__url {
  margin-left: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(233, 179, 251, 0.7);
  letter-spacing: 0.02em;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.dash-frame__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(233, 179, 251, 0.08);
  padding: 1px;
}
@media (max-width: 639px) { .dash-frame__grid { grid-template-columns: 1fr; } }

.dash-panel {
  background: #1B1D43;
  padding: 18px 18px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 168px;
}
.dash-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dash-panel__dot--live   { background: #17C964; box-shadow: 0 0 0 3px rgba(23, 201, 100, 0.18); }
.dash-panel__dot--lead   { background: var(--vivid-purple); }
.dash-panel__dot--threat { background: #FF3B30; box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.18); }
.dash-panel__dot--wait   { background: #F5A524; }

.dash-panel__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dash-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-panel__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(233, 179, 251, 0.06);
  font-size: 12px;
}
.dash-panel__list li:last-child { border-bottom: 0; }

.dash-ch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-ch--wa { background: #25D366; }
.dash-ch--ig { background: linear-gradient(135deg, #cc4082, #cd5a4e, #caa241); }
.dash-ch--tg { background: #26A5E4; }

.dash-msg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dash-msg__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--white);
}
.dash-msg__preview {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(233, 179, 251, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-msg__time {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(233, 179, 251, 0.55);
  flex-shrink: 0;
}
.dash-msg__time--warn { color: #F5A524; font-weight: 500; }

.dash-flag {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
  flex-shrink: 0;
}
.dash-pill {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.dash-pill--ready {
  background: rgba(111, 0, 255, 0.2);
  color: var(--light-lavender);
  border: 1px solid rgba(111, 0, 255, 0.4);
}

.dashboard__bullets {
  list-style: none;
  margin: 32px 0 16px;
  padding: 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  width: 100%;
}
.dashboard__bullets li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dashboard__bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-lavender);
  margin-top: 11px;
  flex-shrink: 0;
}

.btn--invert {
  background: var(--white);
  color: var(--deep-purple);
  padding: 18px 40px;
  font-size: 18px;
}
.btn--invert:hover {
  background: var(--light-lavender);
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.dashboard__cta { margin-top: 16px; }

@media (max-width: 639px) {
  .dashboard__bullets li { font-size: 16px; }
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq {
  background: var(--white);
  padding: 120px 0;
}
@media (max-width: 1023px) { .faq { padding: 80px 0; } }
@media (max-width: 639px)  { .faq { padding: 64px 0; } }

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--almost-black);
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.15;
  margin: 0 0 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid rgba(233, 179, 251, 0.5);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--almost-black);
  line-height: 1.4;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--motion-base) var(--ease);
  color: var(--vivid-purple);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before {
  inset: 50% 0 auto 0;
  height: 2px;
  margin-top: -1px;
}
.faq__icon::after {
  inset: 0 50% 0 50%;
  width: 2px;
  margin-left: -1px;
  transition: transform var(--motion-base) var(--ease), opacity var(--motion-base) var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item[open] > summary { padding-bottom: 12px; }

.faq__a {
  padding: 4px 0 24px;
  max-width: 700px;
}
.faq__a p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--deep-purple);
  line-height: 1.7;
  margin: 0;
}

.faq__item[open] .faq__a {
  animation: faqIn 240ms var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 10 — Final CTA (contact form)
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--almost-black) 100%);
  color: var(--white);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) { .contact { padding: 80px 0 96px; } }
@media (max-width: 639px)  { .contact { padding: 64px 0 88px; } }

.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(111, 0, 255, 0.20), rgba(111, 0, 255, 0) 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.contact__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.contact__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0;
  max-width: 800px;
}
.contact__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--light-lavender);
  margin: 0;
  max-width: 600px;
}

.contact__card {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media (max-width: 639px) { .contact__card { padding: 32px 24px; } }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--almost-black);
}
.field .req { color: var(--vivid-purple); margin-left: 2px; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-lavender);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--almost-black);
  background: var(--white);
  transition: border-color var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
}
.field input::placeholder { color: rgba(21, 23, 61, 0.4); }
.field input:focus {
  outline: none;
  border-color: var(--vivid-purple);
  box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.1);
}
.field.field--error input {
  border-color: #FF3B30;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.08);
}
.field__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #FF3B30;
  margin: 0;
  display: none;
  line-height: 1.4;
}
.field.field--error .field__error { display: block; }

.phone-group {
  display: flex;
  align-items: stretch;
}
.phone-group__prefix {
  background: rgba(233, 179, 251, 0.25);
  border: 1px solid var(--light-lavender);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 14px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-purple);
  white-space: nowrap;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
}
.phone-group input {
  border-radius: 0 8px 8px 0;
  flex: 1;
  min-width: 0;
}
.phone-group input:focus {
  position: relative;
  z-index: 1;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--almost-black);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--vivid-purple);
  cursor: pointer;
  flex-shrink: 0;
}
.consent a {
  color: var(--vivid-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent a:hover { color: var(--deep-purple); }

.btn--pill {
  background: var(--vivid-purple);
  color: var(--white);
  padding: 18px 48px;
  font-size: 18px;
  border-radius: 999px;
  align-self: center;
  margin-top: 8px;
  font-weight: 500;
}
.btn--pill:not(:disabled):hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(111, 0, 255, 0.4);
}
.btn--pill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}


.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--light-lavender);
  padding: 8px 4px;
  transition: color var(--motion-fast) var(--ease);
}
.contact__whatsapp svg { flex-shrink: 0; }
.contact__whatsapp:hover { color: var(--white); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--almost-black);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 1023px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
}

.footer__col { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { display: inline-block; height: 40px; }
.footer__logo img { height: 40px; width: auto; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
  max-width: 320px;
}
.footer__meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--light-lavender);
  margin: 0;
}
.footer__col-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--light-lavender);
  transition: color var(--motion-fast) var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__socials {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  gap: 14px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(233, 179, 251, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-lavender);
  transition:
    color var(--motion-fast) var(--ease),
    border-color var(--motion-fast) var(--ease),
    background-color var(--motion-fast) var(--ease);
}
.footer__socials a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.footer__bottom {
  border-top: 1px solid rgba(233, 179, 251, 0.2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--light-lavender);
}
.footer__bottom a {
  color: var(--light-lavender);
  transition: color var(--motion-fast) var(--ease);
}
.footer__bottom a:hover { color: var(--white); }
@media (max-width: 639px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vivid-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(111, 0, 255, 0.35);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.92);
  transition:
    opacity var(--motion-base) var(--ease),
    transform var(--motion-base) var(--ease),
    box-shadow var(--motion-fast) var(--ease);
}
.float-wa.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: waPulse 4s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.5);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@media (max-width: 639px) {
  .float-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ============================================================
   Sticky scroll CTA bottom bar
   ============================================================ */
.sticky-bar {
  position: fixed;
  inset: auto 0 0 0;
  height: 64px;
  background: rgba(21, 23, 61, 0.95);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-top: 1px solid rgba(233, 179, 251, 0.3);
  z-index: 35;
  display: none;
  transform: translateY(100%);
  transition: transform var(--motion-base) var(--ease);
}
.sticky-bar.is-visible {
  display: block;
  transform: translateY(0);
}
.sticky-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin: 0;
  flex: 1;
  min-width: 0;
}
.sticky-bar__cta { flex-shrink: 0; }
.sticky-bar__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--light-lavender);
  transition: color var(--motion-fast) var(--ease);
  flex-shrink: 0;
}
.sticky-bar__close:hover { color: var(--white); }

@media (max-width: 1023px) {
  .sticky-bar { display: none !important; }
}

/* Push content above sticky bar when visible */
body.has-sticky-bar { padding-bottom: 64px; }
@media (max-width: 1023px) { body.has-sticky-bar { padding-bottom: 0; } }

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--vivid-purple); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.35); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .float-wa.is-visible { animation: none; }
}

/* ============================================================
   ANIMATIONS — Hero radial diagram + Agent channel hub
   ============================================================ */

/* ---------- HERO ---------- */
.hero-anim { cursor: grab; touch-action: none; }
.hero-anim:active { cursor: grabbing; }

.hero-center {
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-center-pulse 3s ease-in-out infinite;
}
@keyframes hero-center-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

.hero-halo {
  opacity: 0;
  animation: hero-halo-breathe 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes hero-halo-breathe {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.6; }
}

.hero-pulse {
  opacity: 0;
  animation: hero-pulse-travel 4s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes hero-pulse-travel {
  0%   { transform: translate(0, 0); opacity: 0; }
  5%   { opacity: 0.95; }
  25%  { transform: translate(0, -190px); opacity: 0; }
  100% { transform: translate(0, -190px); opacity: 0; }
}

/* ---------- AGENT ---------- */
.agent-center-glow {
  opacity: 0;
  filter: blur(10px);
  transform-box: fill-box;
  transform-origin: center;
  animation: agent-glow 2s ease-in-out infinite;
}
@keyframes agent-glow {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%      { opacity: 0.6;  transform: scale(1.18); }
}

.agent-center {
  transform-box: fill-box;
  transform-origin: center;
  animation: agent-center-pulse 2s ease-in-out infinite;
}
@keyframes agent-center-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.agent-sonar {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: agent-sonar 4s ease-out infinite;
}
.agent-sonar--2 { animation-delay: 2s; }
@keyframes agent-sonar {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(3.75); opacity: 0;   }
}

.agent-pulse {
  opacity: 0;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
.pulse-wa { animation-name: pulse-wa; }
.pulse-ig { animation-name: pulse-ig; animation-delay: 0.5s; }
.pulse-fb { animation-name: pulse-fb; animation-delay: 1s;   }
.pulse-tt { animation-name: pulse-tt; animation-delay: 1.5s; }
.pulse-tg { animation-name: pulse-tg; animation-delay: 2s;   }
.pulse-li { animation-name: pulse-li; animation-delay: 2.5s; }

@keyframes pulse-wa {
  0%   { transform: translate(240px, 56px);  opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}
@keyframes pulse-ig {
  0%   { transform: translate(375px, 120px); opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}
@keyframes pulse-fb {
  0%   { transform: translate(375px, 280px); opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}
@keyframes pulse-tt {
  0%   { transform: translate(240px, 344px); opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}
@keyframes pulse-tg {
  0%   { transform: translate(105px, 280px); opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}
@keyframes pulse-li {
  0%   { transform: translate(105px, 120px); opacity: 0; }
  10%  { opacity: 0.95; }
  45%  { transform: translate(240px, 200px); opacity: 0.95; }
  55%, 100% { transform: translate(240px, 200px); opacity: 0; }
}

/* Reduced motion — kill cursor affordance + leave decorative circles static.
   (Animations themselves are already killed by the global reduced-motion rule above.) */
@media (prefers-reduced-motion: reduce) {
  .hero-anim, .hero-anim:active { cursor: default; }
  .hero-halo, .hero-pulse, .agent-pulse, .agent-sonar, .agent-center-glow { opacity: 0; }
}

/* ============================================================
   RTL — Arabic overrides
   The pre-paint script in <head> sets <html dir="rtl"> on
   Arabic, so everything below activates only in that mode.
   ============================================================ */

/* ---------- Typography: IBM Plex Sans Arabic for Arabic (vars set on html[lang="ar"]) ---------- */
[dir="rtl"] .display,
[dir="rtl"] .hero__headline,
[dir="rtl"] .services__heading,
[dir="rtl"] .how__heading,
[dir="rtl"] .trust__heading,
[dir="rtl"] .agent__heading,
[dir="rtl"] .agent__cap-heading,
[dir="rtl"] .pkg__title,
[dir="rtl"] .dashboard__heading,
[dir="rtl"] .faq__heading,
[dir="rtl"] .contact__heading,
[dir="rtl"] .footer__tagline,
[dir="rtl"] .services__custom,
[dir="rtl"] .agent__tagline,
[dir="rtl"] .mobile-menu__link,
[dir="rtl"] .how__circle {
  font-family: var(--font-display);
  /* Arabic doesn't have true italics — Mirza's italic face is the same as regular */
  font-style: normal;
}

/* Arabic display sizes (slightly smaller, more breathing line-height) */
[dir="rtl"] .hero__headline {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.4;
  font-weight: 600;
}
[dir="rtl"] .services__heading {
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.35;
}
[dir="rtl"] .how__heading {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.35;
}
[dir="rtl"] .trust__heading {
  font-size: clamp(22px, 2.9vw, 32px);
  line-height: 1.4;
}
[dir="rtl"] .agent__heading,
[dir="rtl"] .dashboard__heading,
[dir="rtl"] .contact__heading {
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.35;
}
[dir="rtl"] .agent__cap-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
}
[dir="rtl"] .faq__heading {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.35;
}
[dir="rtl"] .pkg__title--md { font-size: 26px; }
[dir="rtl"] .agent__tagline { font-size: 22px; }
[dir="rtl"] .mobile-menu__link { font-size: 32px; line-height: 1.3; }

/* Mirza tends to render large — bump weight on body display for ink balance */
[dir="rtl"] .display,
[dir="rtl"] .hero__headline,
[dir="rtl"] .services__heading,
[dir="rtl"] .how__heading,
[dir="rtl"] .trust__heading,
[dir="rtl"] .agent__heading,
[dir="rtl"] .agent__cap-heading,
[dir="rtl"] .pkg__title,
[dir="rtl"] .dashboard__heading,
[dir="rtl"] .faq__heading,
[dir="rtl"] .contact__heading,
[dir="rtl"] .footer__tagline {
  letter-spacing: 0;
}

/* ---------- Body line-height: Arabic needs slightly more ---------- */
[dir="rtl"] body { line-height: 1.7; }
[dir="rtl"] .hero__pillars { letter-spacing: 0; }

/* ---------- Eyebrows: drop the wide tracking in Arabic ---------- */
[dir="rtl"] .eyebrow {
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 13px;
}

/* ---------- Phone group prefix swap ---------- */
[dir="rtl"] .phone-group__prefix {
  border-radius: 0 8px 8px 0;
  border-right: 1px solid var(--light-lavender);
  border-left: 0;
  /* SA +966 reads LTR even inside an RTL document */
  direction: ltr;
}
[dir="rtl"] .phone-group input {
  border-radius: 8px 0 0 8px;
  text-align: right;
}

/* ---------- Required asterisk margin ---------- */
[dir="rtl"] .field .req {
  margin-left: 0;
  margin-right: 2px;
}

/* ---------- External-link arrow icon: mirror horizontally ---------- */
[dir="rtl"] .icon-external {
  transform: scaleX(-1);
}

/* ---------- Hero decor + agent visual margin ---------- */
[dir="rtl"] .hero__decor {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .agent__visual {
  margin-left: 0;
  margin-right: auto;
}

/* ---------- Floating WhatsApp: mirror to bottom-left ---------- */
[dir="rtl"] .float-wa {
  right: auto;
  left: 24px;
}
@media (max-width: 639px) {
  [dir="rtl"] .float-wa { right: auto; left: 16px; }
}

/* ---------- Form text align ---------- */
[dir="rtl"] .contact__form { text-align: right; }
[dir="rtl"] .field input { text-align: right; }

/* ---------- Dashboard panels: align right ---------- */
[dir="rtl"] .dash-panel { text-align: right; }
[dir="rtl"] .dash-msg__preview { text-align: right; }

/* dashboard__bullets reads right naturally because flex follows dir;
   only text-align needs flipping */
[dir="rtl"] .dashboard__bullets { text-align: right; }

/* ---------- Footer + bottom row ---------- */
[dir="rtl"] .footer__col-heading {
  letter-spacing: 0.06em;
  text-transform: none;
}
[dir="rtl"] .footer__bottom { text-align: start; }

/* ---------- Mobile menu: logo on right, controls on left ----------
   Flex with `space-between` already handles this — no override needed.
   But ensure the mobile-menu close stays clickable on the now-left side. */

/* ---------- Nav links underline animation: flip inset ---------- */
[dir="rtl"] .nav__link::after {
  inset: auto 50% -2px 50%;
}
[dir="rtl"] .nav__link:hover::after { inset: auto 0 -2px 0; }

/* ---------- Hamburger: ensure the line span doesn't shift ---------- */
[dir="rtl"] .nav__hamburger span::before,
[dir="rtl"] .nav__hamburger span::after {
  left: 0;
  right: auto;
}

/* ---------- How timeline: keep nodes in declared visual order (Diagnose-Design-Deploy-Manage)
   In RTL, grid columns auto-flow right-to-left.  That means node 1 (Diagnose)
   lands on the right, which IS the correct leading edge for Arabic reading.
   The number ١ on the right reads first — exactly what the brief asks for. */

/* ---------- Mirza renders thicker than expected at body weight,
   nudge the how__circle number balance ---------- */
[dir="rtl"] .how__circle {
  font-weight: 500;
  font-size: 26px;
}

/* ---------- pkg list bullets: gap handles natural flow,
   text needs to wrap right; ensure svg keeps top-aligned ---------- */
[dir="rtl"] .pkg__list li { text-align: right; }
[dir="rtl"] .pkg__list svg {
  /* In RTL, the check should sit on the leading (right) edge — flex already does this. */
  margin-top: 4px;
}

/* ---------- Sticky bar: keep close on trailing edge (left in RTL),
   CTA + text auto-flip via flex ---------- */
[dir="rtl"] .sticky-bar__close { margin-left: 0; margin-right: 0; }

/* ---------- Consent checkbox + label ---------- */
[dir="rtl"] .consent { text-align: right; }

/* ---------- Faqs: rotation icon stays centered;
   text wrapping reads RTL naturally ---------- */
[dir="rtl"] .faq__a { text-align: right; }
[dir="rtl"] .faq__q { text-align: right; }

/* ---------- WhatsApp contact-link gap ---------- */
[dir="rtl"] .contact__whatsapp { direction: rtl; }

/* ---------- Mobile menu top: in RTL flex naturally flips
   logo to right, close+lang to left ---------- */
[dir="rtl"] .mobile-menu__top-right { flex-direction: row-reverse; }

/* ---------- Title font-style override for italic Crimson rules ---------- */
[dir="rtl"] em, [dir="rtl"] i { font-style: normal; }

/* ---------- Channels: justify-content center already symmetric ---------- */
[dir="rtl"] .channels__row { /* no change needed for centered desktop */ }

/* ---------- Hero text content: ensure it doesn't push the decor down on RTL desktop ----------
   Grid auto-flips columns: 1.5fr (text) becomes right, 1fr (decor) becomes left.
   That places the heavier content on the right, which is correct leading edge. */

