@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/cairo-arabic.woff2") format("woff2");
  unicode-range: U+0600-06ff, U+0750-077f, U+0870-088e, U+0890-0891, U+0897-08ff, U+200c-200e, U+fb50-fdff, U+fe70-fefc;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/cairo-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0100-024f, U+1e00-1eff, U+2000-206f, U+20ac, U+2122, U+2191-2193;
}

:root {
  --bg: #f5f8fe;
  --surface: #ffffff;
  --ink: #10141b;
  --muted: #465064;
  --soft: #768094;
  --accent: #2347ff;
  --accent-2: #5e7cff;
  --accent-bg: #eaedff;
  --brand: #2347ff;
  --brand-dark: #0f1b2e;
  --border: #e2e7f0;
  --dark: #151c31;
  --dark-2: #202d50;
  --green: #25d366;
  --green-dark: #128c49;
  --danger: #c1272d;
  --shadow: 0 24px 60px -32px rgba(16, 20, 27, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(70% 42% at 78% 0%, rgba(94, 124, 255, 0.18), transparent 65%),
    radial-gradient(52% 36% at 12% 3%, rgba(35, 71, 255, 0.08), transparent 70%),
    linear-gradient(180deg, #eaf1fb 0, var(--bg) 760px);
  background-repeat: no-repeat;
  font-family: "Cairo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[dir="rtl"] {
  text-align: right;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: -999px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  inset-inline-start: 0;
}

.topbar {
  position: relative;
  z-index: 70;
  overflow: hidden;
  border-bottom: 1px solid rgba(35, 71, 255, 0.12);
}

.topbar-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 8px 0;
  animation: ticker 126s linear infinite;
  direction: ltr;
}

.topbar:hover .topbar-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  color: #3e485b;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-item.hot {
  color: var(--accent);
  font-weight: 800;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(35, 71, 255, 0.38);
}

.tiny-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(16, 20, 27, 0.1);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(226, 231, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 30px -24px rgba(16, 20, 27, 0.5);
  backdrop-filter: saturate(140%) blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.brand-logo {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.brand strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--soft);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a {
  position: relative;
  color: #30394a;
  transition: color 0.2s;
}

.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s;
}

.desktop-nav > a:hover {
  color: var(--accent);
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
}

/* Services mega-dropdown */
.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: none;
  color: #30394a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dd:hover .nav-dd-btn,
.nav-dd:focus-within .nav-dd-btn,
.nav-dd.open .nav-dd-btn {
  color: var(--accent);
}

.nav-dd-caret {
  opacity: 0.55;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-dd:hover .nav-dd-caret,
.nav-dd:focus-within .nav-dd-caret,
.nav-dd.open .nav-dd-caret {
  transform: rotate(180deg);
}

.nav-dd-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 16px);
  left: 50%;
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 10px;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: saturate(150%) blur(18px);
  box-shadow: 0 30px 70px -30px rgba(16, 20, 27, 0.42);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.32, 0.72, 0, 1), transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-dd-menu::before {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  content: "";
}

.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.svc-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.svc-dd-item:hover {
  background: var(--accent-bg);
}

.svc-dd-ic {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--accent);
  background: #eef2ff;
}

.svc-dd-ic svg {
  width: 20px;
  height: 20px;
}

.svc-dd-tx strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.svc-dd-tx small {
  display: block;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.svc-dd-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  padding: 11px 12px;
  border-top: 1px solid #eef1f7;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.svc-dd-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.svc-dd-all:hover svg {
  transform: translateX(3px);
}

[dir="rtl"] .svc-dd-all:hover svg {
  transform: translateX(-3px);
}

.mobile-sub {
  display: block;
  margin-top: 10px;
  padding: 6px 0 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-menu .mobile-svc {
  padding-inline-start: 14px;
  font-weight: 700;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher — toggle button + light dropdown */
.lang-dd {
  position: relative;
  direction: ltr;
}

.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #dce4f1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-dd-btn:hover {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 22px -16px rgba(35, 71, 255, 0.7);
}

.lang-dd-btn img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16, 20, 27, 0.08);
}

.lang-caret {
  opacity: 0.55;
  transition: transform 0.25s ease;
}

.lang-dd-btn[aria-expanded="true"] .lang-caret {
  transform: rotate(180deg);
}

.lang-dd-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  min-width: 188px;
  padding: 7px;
  border: 1px solid #e6ecf6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 54px -24px rgba(16, 20, 27, 0.42);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[dir="rtl"] .lang-dd-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.lang-dd.open .lang-dd-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 9px;
  color: #3f495a;
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}

.lang-item img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16, 20, 27, 0.08);
}

.lang-item span {
  margin-inline-end: auto;
}

.lang-item:hover {
  background: var(--accent-bg);
  color: var(--accent);
}

.lang-item .lang-check {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
  opacity: 0;
}

.lang-item.active {
  background: #f3f6ff;
  color: var(--accent);
}

.lang-item.active .lang-check {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 30px -15px rgba(35, 71, 255, 0.88);
}

.button-secondary {
  border-color: var(--border);
  background: #fff;
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 14px 28px -14px rgba(18, 140, 73, 0.75);
}

.button-sm {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 13px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dce4f1;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.burger svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -190px;
  right: -140px;
  background: radial-gradient(circle, rgba(35, 71, 255, 0.18), transparent 68%);
}

.hero::after {
  bottom: -240px;
  left: -180px;
  background: radial-gradient(circle, rgba(94, 124, 255, 0.14), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
  min-height: 690px;
  padding-block: 72px 44px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid #e1e6ef;
  border-radius: 999px;
  background: #fff;
  color: #465064;
  box-shadow: 0 5px 16px -11px rgba(16, 20, 27, 0.3);
  font-size: 12.5px;
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}

.hero h1 {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.07;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-lead {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid #d7dfff;
  border-radius: 999px;
  background: linear-gradient(135deg, #eaf0ff, #f7f4ff);
  color: #3d485b;
  font-size: 13px;
  font-weight: 700;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof-ic {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--accent);
}

.proof-ic svg {
  width: 15px;
  height: 15px;
}

.proof-sep {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c2cdf0;
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3f495a;
  font-size: 14px;
  font-weight: 700;
}

.check-icon {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-bg);
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 0;
  width: 94%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 71, 255, 0.24), rgba(94, 124, 255, 0.09) 48%, transparent 70%);
  transform: translate(-50%, -50%);
}

.hero-person {
  position: absolute;
  right: 2%;
  bottom: -10px;
  left: 2%;
  z-index: 2;
  width: 96%;
  height: 610px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(16, 20, 27, 0.2));
}

.service-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid #e8ecf4;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 34px -18px rgba(16, 20, 27, 0.38);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.service-pill svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Pills hug the top + right; lower-left is reserved for the AI chat card. */
/* Logical insets → pills mirror in RTL (like the chat card) so the AR hero is a clean mirror of LTR */
.pill-1 { top: 6%; inset-inline-start: -3%; }
.pill-2 { top: 0; inset-inline-end: 16%; animation-delay: 0.7s; }
.pill-3 { top: 17%; inset-inline-end: -5%; animation-delay: 1.1s; }
.pill-4 { top: 39%; inset-inline-end: -7%; animation-delay: 1.6s; }
.pill-5 { top: 60%; inset-inline-end: -4%; animation-delay: 0.5s; }
.pill-6 { top: 80%; inset-inline-end: 7%; animation-delay: 1.2s; }

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

/* AI chatbot card floating beside the hero's knee */
.hero-chat {
  position: absolute;
  z-index: 5;
  bottom: 11%;
  left: -6%;
  width: 250px;
  max-width: 74%;
  padding: 13px 14px 14px;
  border: 1px solid #e7ecf5;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 26px 56px -24px rgba(16, 20, 27, 0.45);
  text-align: start;
  animation: floaty 6.5s ease-in-out infinite;
}

[dir="rtl"] .hero-chat {
  left: auto;
  right: -6%;
}

.hero-chat-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-chat-av {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-bg);
  flex: 0 0 auto;
}

.hero-chat-av img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-chat-head strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.hero-chat-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-inline-start: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
}

.hero-chat-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: chat-live 2s ease-in-out infinite;
}

.hero-chat-bubble {
  margin-top: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  background: #eef3fb;
}

.hero-chat-bubble small {
  display: block;
  color: #8b93a4;
  font-size: 11px;
  font-weight: 700;
}

.hero-chat-bubble p {
  display: flex;
  align-items: center;
  margin: 5px 0 0;
  min-height: 38px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-chat-caret {
  display: inline-block;
  width: 2px;
  height: 15px;
  margin-inline-start: 2px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: chat-caret 1s step-end infinite;
}

.hero-chat-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hero-chat-replies a {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}

.hero-chat-replies a:hover {
  background: #dfe5ff;
  transform: translateY(-1px);
}

@keyframes floaty {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes chat-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  60% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

@keyframes chat-caret {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chat,
  .service-pill,
  .hero-chat-live i { animation: none; }
  .hero-chat-caret { animation: none; opacity: 1; }
}

.marquee-section {
  padding-block: 38px 12px;
}

.section-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 84s linear infinite;
  direction: ltr;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  color: #495368;
  font-weight: 700;
  white-space: nowrap;
}

.platform img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.stats-grid,
.service-grid,
.pricing-grid,
.growth-grid,
.recurring-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-block: 32px 22px;
}

.stat-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stat-card:nth-child(2) strong,
.stat-card:nth-child(4) strong {
  color: var(--accent);
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 600;
}

.section {
  padding-block: 78px;
}

.section-tight {
  padding-block: 54px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  max-width: none;
  margin-inline: 0;
  text-align: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
}

.section-heading h2 span {
  color: var(--accent);
}

.section-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.left p {
  margin-inline: 0;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.growth-card,
.price-card,
.recurring-card,
.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px -42px rgba(16, 20, 27, 0.55);
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}

.service-card:hover,
.growth-card:hover,
.price-card:hover,
.recurring-card:hover {
  border-color: #cad6f6;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card {
  padding: 27px 24px;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-bg);
  place-items: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.growth-card h3,
.recurring-card h3 {
  margin: 17px 0 7px;
  font-size: 19px;
  font-weight: 800;
}

.service-card p,
.growth-card p,
.recurring-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.growth-band {
  background: linear-gradient(180deg, rgba(234, 240, 251, 0.35), rgba(255, 255, 255, 0.72));
}

.growth-grid {
  grid-template-columns: repeat(3, 1fr);
}

.growth-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
}

.growth-card .number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.growth-card .text-link {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, var(--dark), var(--dark-2));
}

.dark-section::before {
  position: absolute;
  top: -190px;
  left: 30%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 124, 255, 0.28), transparent 65%);
  content: "";
}

.dark-section .section-heading {
  position: relative;
}

.dark-section .section-heading p {
  color: #c1c9da;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.process-step {
  padding: 21px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.process-step .step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step .step-number {
  color: #91a5ff;
  font-size: 22px;
  font-weight: 800;
}

.process-step h3 {
  margin: 16px 0 5px;
  font-size: 16px;
}

.process-step p {
  margin: 0;
  color: #aeb8cd;
  font-size: 13px;
  line-height: 1.6;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 28px 70px -38px rgba(35, 71, 255, 0.7);
  transform: translateY(-8px);
}

.popular {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 5px 12px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

[dir="rtl"] .popular {
  right: auto;
  left: 24px;
}

.plan-name {
  margin: 0;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  direction: ltr;
  justify-content: flex-start;
}

[dir="rtl"] .plan-price {
  justify-content: flex-end;
}

.plan-price strong {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.plan-price span {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.plan-desc {
  min-height: 78px;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #313b4e;
  font-size: 13.5px;
  line-height: 1.5;
}

.feature-list .check-icon {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  font-size: 11px;
}

.price-card .button {
  margin-top: auto;
}

.recurring-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-inline: auto;
}

.recurring-card {
  padding: 28px 25px;
}

.recurring-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.recurring-card h3 {
  margin-top: 0;
}

.from-price {
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  direction: ltr;
}

.recurring-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.recurring-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #455065;
  font-size: 13.5px;
}

.proof-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.proof-card {
  padding: 32px 28px;
}

.proof-card.blue {
  color: #fff;
  border: 0;
  background: linear-gradient(150deg, #5e7cff, var(--accent));
}

.proof-card h3 {
  margin: 0 0 18px;
  font-size: 23px;
}

.proof-list {
  display: grid;
  gap: 10px;
}

.proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f6fb;
  color: #5f697c;
  font-size: 14px;
  font-weight: 700;
}

.blue .proof-row {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.proof-mark {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  place-items: center;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
  padding: 32px 0 0;
}

.client-strip img {
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.2s;
}

.client-strip img:hover {
  transform: translateY(-2px);
}

.faq-list {
  display: grid;
  max-width: 820px;
  gap: 11px;
  margin-inline: auto;
}

.faq-item {
  padding: 0 21px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.faq-item[open] {
  border-color: #c7d4f8;
  background: linear-gradient(180deg, #fff, #f3f7ff);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-plus {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-bg);
  font-size: 18px;
  transition: transform 0.2s;
  place-items: center;
}

.faq-item[open] .faq-plus {
  color: #fff;
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.contact-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
}

.lead-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #d6e1f6;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #eef4ff);
  box-shadow: 0 34px 80px -38px rgba(35, 71, 255, 0.5);
}

.lead-card::before {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 124, 255, 0.2), transparent 66%);
  content: "";
}

.lead-head,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lead-head .icon-box.brand-box {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px -14px rgba(35, 71, 255, 0.85);
}

.lead-head .icon-box.brand-box img {
  width: 22px;
  height: 22px;
  margin: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lead-head strong {
  display: block;
  font-size: 18px;
}

.lead-head span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #69758a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #d7e1f3;
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #f8faff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(35, 71, 255, 0.12);
}

.lead-note {
  margin: 0;
  color: var(--soft);
  font-size: 11.5px;
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 58px 38px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 580px;
  height: 360px;
  background: radial-gradient(circle, rgba(94, 124, 255, 0.42), transparent 66%);
  content: "";
  transform: translateX(-50%);
}

.final-cta > * {
  position: relative;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(29px, 4vw, 41px);
  line-height: 1.2;
}

.final-cta p {
  max-width: 600px;
  margin: 14px auto 25px;
  color: #bdc7db;
  line-height: 1.7;
}

.final-cta .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.final-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Service landing pages ── */
.svc-hero {
  padding-block: 58px 28px;
  text-align: center;
}

.svc-hero-inner {
  max-width: 760px;
  margin-inline: auto;
}

.svc-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.svc-hero .accent {
  color: var(--accent);
}

.svc-hero .hero-lead {
  margin-inline: auto;
}

.svc-hero .hero-actions {
  justify-content: center;
}

.svc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.svc-chip {
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.svc-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef2ff, #ffffff 70%);
  box-shadow: var(--shadow);
}

.svc-price-amount {
  margin-top: 4px;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--ink);
}

.svc-price-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-link {
  display: block;
}

.service-card-link:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 56px -30px rgba(35, 71, 255, 0.5);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 800;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

/* Service-page breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 18px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

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

.breadcrumb .bc-sep {
  color: var(--soft);
}

[dir="rtl"] .breadcrumb .bc-sep {
  transform: scaleX(-1);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

/* Related services (in-content cross-links) */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px -42px rgba(16, 20, 27, 0.55);
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 28px 56px -30px rgba(35, 71, 255, 0.45);
}

.related-card .icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.related-tx {
  flex: 1 1 auto;
  min-width: 0;
}

.related-tx strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.related-tx small {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.related-go {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.related-go svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}

.related-card:hover .related-go svg {
  transform: translateX(3px);
}

[dir="rtl"] .related-card:hover .related-go svg {
  transform: translateX(-3px);
}

@media (max-width: 860px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-go {
    margin-inline-start: auto;
  }
}

/* ── Legal pages ── */
.legal-page {
  padding-block: 36px 72px;
}

.legal-wrap {
  max-width: 820px;
  margin-top: 22px;
}

.legal-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.legal-updated {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 600;
}

.legal-content {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 36px 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  scroll-margin-top: 90px;
}

.legal-content h2:first-child {
  margin-top: 4px;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-inline-start: 22px;
}

.legal-content li {
  margin-bottom: 7px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #eaf1fb, #f4f8fe);
}

.footer-inner {
  padding-block: 58px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-about p,
.footer-contact p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 15px;
  color: #818a9b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #445065;
  font-size: 13.5px;
  font-weight: 600;
}

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

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  color: var(--dark);
  place-items: center;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 26px -14px rgba(35, 71, 255, 0.85);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--soft);
  font-size: 12.5px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.whatsapp-fab,
.back-top {
  position: fixed;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 32px -12px rgba(16, 20, 27, 0.45);
  place-items: center;
  transition: transform 0.2s;
}

.whatsapp-fab:hover,
.back-top:hover {
  transform: translateY(-3px);
}

.whatsapp-fab {
  right: 22px;
  background: var(--green);
}

.back-top {
  left: 22px;
  background: var(--accent);
}

[dir="rtl"] .whatsapp-fab {
  right: auto;
  left: 22px;
}

[dir="rtl"] .back-top {
  right: 22px;
  left: auto;
}

.whatsapp-fab svg,
.back-top svg {
  width: 25px;
  height: 25px;
}

.og-mode .whatsapp-fab,
.og-mode .back-top {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in {
  animation: reveal 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 44px -24px rgba(16, 20, 27, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 3px;
    border-bottom: 1px solid #eef1f6;
    font-weight: 700;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding-top: 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-checks {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 30px;
  }

  .lang-dd-btn {
    gap: 6px;
    padding: 8px 9px;
  }

  .lang-dd-btn .lang-current {
    display: none;
  }

  .hero-grid {
    gap: 4px;
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    justify-content: center;
    border-radius: 15px;
  }

  .hero-checks {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-visual {
    order: -1;
    min-height: 286px;
    margin-bottom: -6px;
  }

  .hero-person {
    right: 7%;
    bottom: -12px;
    left: 7%;
    width: 86%;
    height: 330px;
  }

  .service-pill {
    padding: 7px 9px;
    font-size: 10px;
  }

  .service-pill svg {
    width: 15px;
    height: 15px;
  }

  .pill-1 { top: 2%; inset-inline-start: 0; }
  .pill-2 { top: 1%; inset-inline-end: 3%; }
  .pill-3 { top: 16%; inset-inline-end: 0; }
  .pill-4,
  .pill-5,
  .pill-6 { display: none; }

  .hero-chat {
    width: 198px;
    bottom: -8px;
    left: -2%;
    padding: 10px 11px 11px;
  }

  [dir="rtl"] .hero-chat {
    left: auto;
    right: -2%;
  }

  .hero-chat-bubble {
    margin-top: 9px;
    padding: 9px 10px;
  }

  .hero-chat-bubble p {
    min-height: 32px;
    font-size: 12px;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-grid,
  .growth-grid,
  .recurring-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    padding: 18px 16px;
  }

  .stat-card strong {
    font-size: 27px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 23px 18px;
  }

  .final-cta {
    padding: 48px 22px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .whatsapp-fab,
  .back-top {
    bottom: 15px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-fab {
    right: 15px;
  }

  .back-top {
    left: 15px;
  }

  [dir="rtl"] .whatsapp-fab {
    left: 15px;
  }

  [dir="rtl"] .back-top {
    right: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
