/* ==========================================================================
   WebFront — Custom Styles
   Layered on top of Tailwind utilities
   ========================================================================== */

:root {
  --reveal-delay: 0ms;
  --c-navy-900: #0B1220;
  --c-navy-800: #10192E;
  --c-gold-400: #FBB024;
  --c-gold-500: #F59E0B;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body { font-feature-settings: "ss01", "cv11"; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FBB024 0%, #F59E0B 50%, #D97706 100%);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.6), 0 0 6px rgba(245, 158, 11, 0.4);
  z-index: 60;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
  will-change: transform;
}
[dir="rtl"] #scroll-progress { transform-origin: right center; }

/* Selection */
::selection { background: rgba(245, 158, 11, 0.25); color: #0B1220; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #FAF8F3; }
::-webkit-scrollbar-thumb { background: #C6D1E5; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #94A3C2; }

/* RTL helpers */
[dir="rtl"] .rtl-flip { transform: scaleX(-1); }
[dir="rtl"] .rtl-flip-sym { transform: scaleX(-1); }
html[lang="ar"] body { font-family: 'Tajawal', 'Plus Jakarta Sans', system-ui, sans-serif; }
html[lang="zh"] body { font-family: 'Noto Sans SC', 'Plus Jakarta Sans', system-ui, sans-serif; }

/* ==========================================================================
   HEADER
   ========================================================================== */

#site-header .header-inner {
  background: transparent;
  border: 1px solid transparent;
}
#site-header.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-color: rgba(11, 18, 32, 0.06);
  box-shadow: 0 10px 30px -12px rgba(11, 18, 32, 0.15);
}

/* Light text while over the dark hero (top of page) */
#site-header:not(.scrolled) .logo-text { color: #ffffff; }
#site-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.82); }
#site-header:not(.scrolled) .nav-link:hover { color: #ffffff; background: rgba(255, 255, 255, 0.08); }
#site-header:not(.scrolled) #lang-toggle { color: rgba(255, 255, 255, 0.85); }
#site-header:not(.scrolled) #lang-toggle:hover { color: #ffffff; background: rgba(255, 255, 255, 0.08); }
#site-header:not(.scrolled) #mobile-menu-btn { color: #ffffff; }
#site-header:not(.scrolled) #mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.08); }

/* Logo */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  transition: transform 250ms ease;
}
.logo-img:hover { transform: scale(1.04); }
@media (min-width: 1024px) {
  .logo-img { height: 52px; }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: transform 250ms ease;
}
.footer-logo-link:hover { transform: scale(1.03); }
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Nav links */
.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B2A47;
  transition: all 200ms ease;
  position: relative;
}
.nav-link:hover { color: #0B1220; background: rgba(11, 18, 32, 0.04); }
.nav-link-active {
  color: #B45309 !important;
  background: rgba(245, 158, 11, 0.1);
}
.mobile-link-active {
  color: #B45309 !important;
  background: rgba(245, 158, 11, 0.06);
}

.mobile-link {
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: #1B2A47;
  border-bottom: 1px solid rgba(11, 18, 32, 0.05);
}
.mobile-link:last-of-type { border-bottom: none; }

/* Inline language chips (text-based switcher) */
.lang-chips {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: background 250ms ease, border-color 250ms ease;
}
#site-header.scrolled .lang-chips {
  background: rgba(11, 18, 32, 0.03);
  border-color: rgba(11, 18, 32, 0.08);
}
.lang-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
#site-header.scrolled .lang-chip { background: rgba(11, 18, 32, 0.04); }
#site-header.scrolled .lang-chip { color: rgba(11, 18, 32, 0.6); }
.lang-chip span {
  display: inline-block;
  transition: transform 200ms ease;
}
.lang-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
#site-header.scrolled .lang-chip:hover {
  background: rgba(11, 18, 32, 0.06);
  color: #0B1220;
}
.lang-chip:hover span { transform: scale(1.08); }

.lang-chip[data-active="true"] {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.15));
  border-color: rgba(245, 158, 11, 0.6);
  color: #FCC74D;
  box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.35);
}
#site-header.scrolled .lang-chip[data-active="true"] {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  color: #B45309;
}

/* Per-language font */
.lang-chip-en, .lang-chip-ms { font-family: "Plus Jakarta Sans", system-ui, sans-serif; }
.lang-chip-zh { font-family: "Noto Sans SC", "Plus Jakarta Sans", sans-serif; font-size: 1.125rem; font-weight: 800; }
.lang-chip-ar { font-family: "Tajawal", "Plus Jakarta Sans", sans-serif; font-size: 1.25rem; font-weight: 800; padding-bottom: 2px; }

@media (max-width: 480px) {
  .lang-chips { gap: 5px; padding: 3px; }
  .lang-chip {
    min-width: 38px;
    height: 32px;
    padding: 0 8px;
    font-size: 0.875rem;
  }
  .lang-chip-zh { font-size: 1.0625rem; }
  .lang-chip-ar { font-size: 1.125rem; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #FBB024 0%, #F59E0B 50%, #D97706 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  box-shadow: 0 10px 30px -8px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(245, 158, 11, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 2; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-whatsapp:hover {
  background: #1FBE5C;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.32) 0%, transparent 70%);
  top: -120px; left: -120px;
}
.hero-glow-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
  bottom: -120px; right: -100px;
  animation-delay: -2s;
}
.hero-glow-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -4s;
}

/* Hero headline */
.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0;
}
.hero-headline > span:first-child {
  display: block;
  line-height: 1.05;
}
.hero-headline-gradient {
  background: linear-gradient(110deg, #FCC74D 0%, #FBB024 35%, #F59E0B 70%, #D97706 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-shine 6s linear infinite;
  line-height: 1.05;
  padding-bottom: 0.05em;
}
@keyframes hero-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
html[lang="ar"] .hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1.15;
}
html[lang="zh"] .hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: 0;
}

/* Hero mockup stage */
.mockup-stage {
  perspective: 1500px;
  min-height: 480px;
}

/* Laptop */
.laptop {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  transform: rotateX(2deg) rotateY(-4deg);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.4));
  animation: float 8s ease-in-out infinite;
}
.laptop-screen {
  background: #0B1220;
  border-radius: 14px 14px 4px 4px;
  padding: 8px 8px 14px;
  border: 2px solid #1B2A47;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.laptop-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #060A14;
  border-radius: 6px 6px 0 0;
}
.bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.bar-url {
  flex: 1;
  margin-inline-start: 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  background: #10192E;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
}
.laptop-content {
  position: relative;
  background: white;
  border-radius: 0 0 6px 6px;
  height: 280px;
  overflow: hidden;
}
.laptop-base {
  background: linear-gradient(180deg, #1B2A47 0%, #060A14 100%);
  height: 14px;
  border-radius: 0 0 14px 14px;
  position: relative;
}
.laptop-base::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #283A5C 0%, #1B2A47 50%, #060A14 100%);
  border-radius: 0 0 14px 14px;
}
.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #060A14;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

/* Business previews inside laptop */
.biz-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.biz-preview-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.bp-hero {
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
}
.bp-hero-icon {
  font-size: 32px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.bp-hero-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.bp-hero-sub {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 4px;
}
.bp-rows { padding: 14px 16px; flex: 1; }
.bp-row { display: flex; gap: 6px; margin-bottom: 12px; }
.bp-chip {
  background: #F1F5FC;
  color: #283A5C;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.bp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bp-card {
  height: 56px;
  background: linear-gradient(135deg, #F1F5FC 0%, #E2E8F4 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.bp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.7), transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 2.4s linear infinite;
}

/* Phone */
.phone {
  position: absolute;
  right: -8px;
  bottom: -20px;
  width: 145px;
  background: #0B1220;
  border-radius: 22px;
  padding: 6px;
  border: 2px solid #1B2A47;
  box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.5);
  transform: rotate(6deg);
  animation: float 7s ease-in-out infinite reverse;
  z-index: 4;
}
[dir="rtl"] .phone { right: auto; left: -8px; transform: rotate(-6deg); }

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  background: #060A14;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.phone-screen {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  position: relative;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 14px 8px;
  font-size: 9px;
  font-weight: 700;
  color: #0B1220;
}
.phone-content {
  padding: 0 10px;
}
.ph-hero {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  border-radius: 8px;
  padding: 14px 12px;
  color: white;
  text-align: center;
}
.ph-emoji { font-size: 22px; }
.ph-title { font-size: 11px; font-weight: 700; margin-top: 4px; }
.ph-rows { padding: 10px 4px; }
.ph-row {
  height: 6px;
  background: #E2E8F4;
  border-radius: 999px;
  margin-bottom: 6px;
}
.ph-row.short { width: 60%; }
.ph-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  background: #25D366;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  margin-top: 6px;
}

/* Floating cards around mockup */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 10px 14px;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fc-title { font-size: 12px; font-weight: 700; line-height: 1.2; }
.fc-sub { font-size: 10px; opacity: 0.65; margin-top: 1px; }

.floating-card-1 {
  top: 0;
  left: -20px;
  animation: float 6s ease-in-out infinite;
}
.floating-card-2 {
  top: 30%;
  right: -30px;
  animation: float 7s ease-in-out infinite -1.5s;
}
.floating-card-3 {
  bottom: 30%;
  left: -36px;
  animation: float 8s ease-in-out infinite -3s;
}
.floating-card-4 {
  top: 8%;
  right: -10px;
  animation: float 5.5s ease-in-out infinite -2s;
}

@media (max-width: 1024px) {
  .floating-card-1 { left: -8px; top: -10px; }
  .floating-card-2 { right: -8px; top: 18%; }
  .floating-card-3 { left: -8px; bottom: 24%; }
  .floating-card-4 { display: none; }
}
@media (max-width: 640px) {
  .floating-card { padding: 8px 10px; gap: 8px; }
  .fc-icon { width: 26px; height: 26px; }
  .fc-title { font-size: 11px; }
  .fc-sub { font-size: 9px; }
  .phone { width: 110px; right: 0; }
  [dir="rtl"] .phone { left: 0; right: auto; }
  .laptop-content { height: 220px; }
  .mockup-stage { min-height: 380px; }
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */

.section-eyebrow {
  display: inline-block;
  font-size: 2.4375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0B1220;
  margin-bottom: 1.125rem;
}
.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #3D5278;
  line-height: 1.65;
  max-width: 42rem;
  margin-inline: auto;
}

/* Dark sections need light subtitle */
#multilingual .section-subtitle,
#final-cta .section-subtitle,
section.bg-navy-900 .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}
#multilingual .section-title,
section.bg-navy-900 .section-title {
  color: white;
}
[dir="ltr"] .section-subtitle.text-start, [dir="rtl"] .section-subtitle.text-start { margin-inline-start: 0; }
.section-title.text-start { margin-inline-start: 0; }

/* ==========================================================================
   PROBLEM CARDS
   ========================================================================== */

.problem-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #FFF6F6;
  border: 1px solid rgba(225, 29, 72, 0.15);
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1B2A47;
  transition: all 250ms ease;
}
.problem-card:hover {
  background: #FFEEEE;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(225, 29, 72, 0.2);
}
.x-mark {
  flex: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 72, 0.12);
  color: #E11D48;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
}

/* ==========================================================================
   SOLUTION FEATURE PILLS
   ========================================================================== */

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1B2A47;
  transition: all 250ms ease;
}
.feature-pill:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(16, 185, 129, 0.25);
}
.check {
  flex: none;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
}

/* ==========================================================================
   WHO WE HELP CARDS
   ========================================================================== */

.biz-card {
  position: relative;
  padding: 28px 24px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px -15px rgba(11, 18, 32, 0.1);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}
.biz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: -1;
}
.biz-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 24px 50px -15px rgba(11, 18, 32, 0.18), 0 0 0 1px rgba(245, 158, 11, 0.15);
}
.biz-card:hover::before { opacity: 1; }
.biz-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FFFAEB 0%, #FEF1C7 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: transform 300ms ease;
}
.biz-card:hover .biz-icon { transform: scale(1.06) rotate(-3deg); }
.biz-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B1220;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.biz-desc {
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.6;
}
.biz-card-wide .biz-desc { max-width: 38rem; }

/* ==========================================================================
   MULTILINGUAL TABS
   ========================================================================== */

.ml-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.ml-tab {
  flex: 1;
  min-width: max-content;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all 200ms ease;
}
.ml-tab:hover { color: rgba(255, 255, 255, 0.9); }
.ml-tab-active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  box-shadow: 0 6px 18px -6px rgba(245, 158, 11, 0.5);
}

.ml-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.ml-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F1F5FC;
  border-bottom: 1px solid rgba(11, 18, 32, 0.05);
}
.ml-dot { width: 12px; height: 12px; border-radius: 50%; }
.ml-url {
  flex: 1;
  margin-inline-start: 14px;
  background: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #5E7397;
  font-family: 'Inter', sans-serif;
}
.ml-content {
  padding: 36px 28px 32px;
  color: #0B1220;
  text-align: center;
  min-height: 220px;
  transition: opacity 300ms ease;
}
.ml-content.fading { opacity: 0; }
.ml-emoji { font-size: 40px; margin-bottom: 14px; }
.ml-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #1B2A47;
  max-width: 32rem;
  margin: 0 auto;
}
html[lang="ar"] .ml-text { font-family: 'Tajawal', sans-serif; font-size: 1.1875rem; }
html[lang="zh"] .ml-text { font-family: 'Noto Sans SC', sans-serif; }
.ml-buttons {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.ml-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.ml-btn-primary { background: #F59E0B; color: white; }
.ml-btn-secondary { background: #25D366; color: white; }

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */

.feature-card {
  padding: 22px 20px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 16px 36px -16px rgba(11, 18, 32, 0.18);
}
.fcard-ic {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFFAEB 0%, #FEF1C7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0B1220;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.feature-card p {
  font-size: 0.8125rem;
  color: #3D5278;
  line-height: 1.5;
}

/* ==========================================================================
   DEMO CARDS
   ========================================================================== */

.demo-card {
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(11, 18, 32, 0.2);
  border-color: rgba(245, 158, 11, 0.25);
}
.demo-thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-thumb-restaurant { background: linear-gradient(135deg, #f97316 0%, #dc2626 100%); }
.demo-thumb-clinic { background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%); }
.demo-thumb-salon { background: linear-gradient(135deg, #ec4899 0%, #a21caf 100%); }
.demo-thumb-shop { background: linear-gradient(135deg, #10b981 0%, #0f766e 100%); }
.demo-thumb-laundry { background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%); }
.demo-thumb-repair { background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%); }
.demo-thumb-tuition { background: linear-gradient(135deg, #f59e0b 0%, #c2410c 100%); }
.demo-thumb-consulting { background: linear-gradient(135deg, #475569 0%, #0f172a 100%); }

.demo-thumb-overlay {
  position: relative;
  width: 80%;
  height: 70%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-card:hover .demo-thumb-overlay { transform: translateY(-4px) scale(1.02); }
.dt-pill {
  align-self: flex-start;
  background: #0B1220;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}
.dt-bars { display: flex; flex-direction: column; gap: 6px; }
.dt-bars span {
  height: 8px;
  background: #E2E8F4;
  border-radius: 999px;
}
.dt-bars span:nth-child(1) { width: 100%; }
.dt-bars span:nth-child(2) { width: 80%; }
.dt-bars span:nth-child(3) { width: 60%; }

.demo-body { padding: 20px 22px 22px; }
.demo-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B45309;
  background: #FFFAEB;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.demo-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1220;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.demo-desc {
  font-size: 0.875rem;
  color: #3D5278;
  line-height: 1.55;
  margin-bottom: 14px;
}
.demo-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #B45309;
  transition: gap 250ms ease;
}
.demo-link:hover { color: #92400E; gap: 6px; }

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */

/* Before / After dramatic stage */
.ba-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .ba-stage {
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
  }
}

.ba-side {
  position: relative;
  padding: 38px 28px 28px;
  border-radius: 24px;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.ba-side:hover { transform: translateY(-4px); }

.ba-before {
  background: linear-gradient(165deg, #FFF1F2 0%, #FEE2E2 100%);
  border: 1px solid rgba(225, 29, 72, 0.2);
  box-shadow: 0 18px 45px -20px rgba(225, 29, 72, 0.2);
}
.ba-after {
  background: linear-gradient(165deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 22px 55px -20px rgba(16, 185, 129, 0.3);
}

.ba-badge {
  position: absolute;
  top: -14px;
  inset-inline-start: 28px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.ba-badge-before { background: linear-gradient(135deg, #F43F5E, #BE123C); color: white; }
.ba-badge-after { background: linear-gradient(135deg, #10B981, #047857); color: white; }

/* Arrow between sides (desktop only) */
.ba-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: #94A3C2;
  font-size: 0;
}
.ba-arrow svg { width: 40px; height: 40px; }
@media (min-width: 900px) {
  .ba-arrow {
    display: flex;
    padding: 0 4px;
  }
  [dir="rtl"] .ba-arrow svg { transform: scaleX(-1); }
}

/* Mockups */
.ba-mockup {
  position: relative;
  height: 200px;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
}

/* Before: scattered shards */
.ba-mockup-before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  border: 1.5px dashed rgba(225, 29, 72, 0.25);
}
.ba-scatter {
  position: relative;
  width: 100%;
  height: 100%;
}
.ba-shard {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border: 1px solid rgba(225, 29, 72, 0.15);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1B2A47;
  box-shadow: 0 6px 16px -6px rgba(225, 29, 72, 0.15);
  white-space: nowrap;
}
.ba-shard-1 { top: 14%; left: 8%; transform: rotate(-6deg); }
.ba-shard-2 { top: 8%; left: 50%; transform: rotate(4deg); }
.ba-shard-3 { top: 38%; left: 28%; transform: rotate(-3deg); }
.ba-shard-4 { top: 32%; right: 8%; transform: rotate(7deg); }
.ba-shard-5 { bottom: 16%; left: 12%; transform: rotate(5deg); opacity: 0.7; }
.ba-shard-6 { bottom: 8%; right: 18%; transform: rotate(-4deg); opacity: 0.6; }

/* After: clean website mockup */
.ba-mockup-after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.ba-window {
  position: absolute;
  inset: 8px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.ba-window-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: #F1F5FC;
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.ba-dot { width: 7px; height: 7px; border-radius: 50%; }
.ba-url {
  flex: 1;
  margin-inline-start: 8px;
  background: white;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.625rem;
  color: #5E7397;
  font-family: 'Inter', sans-serif;
}
.ba-window-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-hero-row {
  height: 28px;
  background: linear-gradient(90deg, #10B981 0%, #047857 100%);
  border-radius: 6px;
}
.ba-chips {
  display: flex;
  gap: 4px;
}
.ba-chips span {
  flex: 1;
  height: 12px;
  background: #ECFDF5;
  border-radius: 999px;
}
.ba-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.ba-grid span {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-radius: 4px;
}
.ba-cta-bar {
  height: 14px;
  background: #25D366;
  border-radius: 6px;
}

.ba-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B1220;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ba-list { display: flex; flex-direction: column; gap: 10px; }
.ba-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1B2A47;
}

/* ==========================================================================
   WHY (cards)
   ========================================================================== */

.why-card {
  padding: 22px 20px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 16px;
  transition: all 250ms ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 18, 32, 0.12);
  box-shadow: 0 14px 30px -14px rgba(11, 18, 32, 0.15);
}
.why-ic {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #E2E8F4 0%, #F1F5FC 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1220;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.875rem;
  color: #3D5278;
  line-height: 1.55;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

/* Process — 7-step grid with meaningful icons */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 78rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  /* Last (7th) card centers itself in the row */
  .process-step-v2:nth-child(7) { grid-column: 2 / 3; }
}
@media (min-width: 1280px) {
  .process-grid { gap: 24px; }
}

.process-step-v2 {
  position: relative;
  padding: 28px 24px 26px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 20px;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  text-align: start;
  overflow: hidden;
  isolation: isolate;
}
.process-step-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 158, 11, 0.06));
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: -1;
}
.process-step-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 22px 50px -16px rgba(11, 18, 32, 0.2);
}
.process-step-v2:hover::before { opacity: 1; }

/* Step number — subtle badge in top corner */
.ps2-step {
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(245, 158, 11, 0.55);
  font-feature-settings: "tnum";
  z-index: 1;
}

/* Icon container — gold gradient circle */
.ps2-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFFAEB 0%, #FEF1C7 100%);
  color: #B45309;
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.ps2-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 350ms ease;
}
.process-step-v2:hover .ps2-icon {
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 12px 24px -8px rgba(245, 158, 11, 0.5);
}
.process-step-v2:hover .ps2-icon svg {
  transform: scale(1.1) rotate(-3deg);
}

.ps2-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1220;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ps2-desc {
  font-size: 0.875rem;
  color: #3D5278;
  line-height: 1.6;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-card {
  position: relative;
  padding: 36px 28px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  color: white;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 60px -20px rgba(11, 18, 32, 0.4);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.15), transparent 55%);
  pointer-events: none;
}
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: border-color 350ms ease, box-shadow 350ms ease;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card:hover::after { border-color: rgba(255, 255, 255, 0.18); }

/* Starter — emerald green */
.pricing-card-starter {
  background: linear-gradient(165deg, #059669 0%, #047857 40%, #064E3B 100%);
  border: 1px solid rgba(110, 231, 183, 0.35);
}
.pricing-card-starter:hover {
  box-shadow: 0 30px 70px -20px rgba(16, 185, 129, 0.45);
}

/* Professional — wine red (popular) */
.pricing-card-pro {
  background: linear-gradient(165deg, #9F1239 0%, #881337 40%, #4C0519 100%);
  border: 1px solid rgba(245, 158, 11, 0.55);
  transform: translateY(-10px);
  box-shadow: 0 32px 72px -20px rgba(159, 18, 57, 0.55);
}
.pricing-card-pro:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 80px -20px rgba(159, 18, 57, 0.7);
}

/* Premium — royal blue */
.pricing-card-premium {
  background: linear-gradient(165deg, #2563EB 0%, #1E40AF 40%, #1E1B4B 100%);
  border: 1px solid rgba(147, 197, 253, 0.4);
}
.pricing-card-premium:hover {
  box-shadow: 0 30px 70px -20px rgba(59, 130, 246, 0.45);
}

/* Top icon medallion */
.price-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.price-icon-starter {
  background: linear-gradient(135deg, #10B981, #047857);
  color: #ECFDF5;
}
.price-icon-pro {
  background: linear-gradient(135deg, #FBB024, #D97706);
  color: white;
}
.price-icon-premium {
  background: linear-gradient(135deg, #60A5FA, #1D4ED8);
  color: white;
}

/* Most Popular ribbon (replaces floating chip) */
.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px -6px rgba(245, 158, 11, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  z-index: 3;
}

.price-eyebrow {
  position: relative;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
}
.pricing-card-starter .price-eyebrow {
  color: #A7F3D0;
  background: rgba(16, 185, 129, 0.18);
}
.pricing-card-pro .price-eyebrow {
  color: #FCC74D;
  background: rgba(245, 158, 11, 0.18);
}
.pricing-card-premium .price-eyebrow {
  color: #BFDBFE;
  background: rgba(147, 197, 253, 0.18);
}

.price-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.price-sub {
  position: relative;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  min-height: 3em;
}

.price-amount {
  position: relative;
  padding: 22px 0 18px;
  margin: 20px 0 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.price-current {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1;
  font-feature-settings: "tnum";
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.price-current-custom { font-size: 2rem; font-weight: 800; }
.price-original {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-inline-start: 6px;
}
.price-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6EE7B7;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
}
.pricing-card-pro .price-savings {
  background: rgba(252, 199, 77, 0.15);
  border-color: rgba(252, 199, 77, 0.4);
  color: #FCC74D;
}
.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.price-discount {
  display: inline-block;
  padding: 5px 11px;
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 8px;
  box-shadow: 0 6px 14px -4px rgba(245, 158, 11, 0.5);
}
.price-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}
.price-badge-royal {
  background: rgba(147, 197, 253, 0.2);
  border-color: rgba(147, 197, 253, 0.35);
  color: #BFDBFE;
}
.price-sub-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.price-section-header {
  position: relative;
  margin: 8px 0 14px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-section-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.18), transparent);
}
[dir="rtl"] .price-section-header::after {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.18), transparent);
}

.price-list {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin: 0 0 22px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}
.price-list .check {
  margin-top: 2px;
  flex: none;
}
.pricing-card-starter .price-list .check {
  background: rgba(16, 185, 129, 0.25);
  color: #6EE7B7;
}
.pricing-card-pro .price-list .check {
  background: rgba(245, 158, 11, 0.22);
  color: #FCC74D;
}
.pricing-card-premium .price-list .check {
  background: rgba(147, 197, 253, 0.22);
  color: #93C5FD;
}
.price-list .check.star {
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  font-size: 0.75rem;
  box-shadow: 0 4px 10px -2px rgba(245, 158, 11, 0.5);
}

.price-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.price-cta-light {
  background: rgba(255, 255, 255, 0.95);
  color: #0B1220;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.price-cta-light:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
}
.price-cta-primary {
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  box-shadow: 0 12px 28px -6px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.price-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(245, 158, 11, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.price-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card-starter .price-trust svg { color: #6EE7B7; }
.pricing-card-pro .price-trust svg { color: #FCC74D; }
.pricing-card-premium .price-trust svg { color: #93C5FD; }

/* ==========================================================================
   PRICING REASSURANCE BAND (trust signals below pricing cards)
   ========================================================================== */

.pricing-reassurance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 64rem;
  margin: 50px auto 0;
}
@media (min-width: 768px) {
  .pricing-reassurance {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.reassurance-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px -20px rgba(11, 18, 32, 0.15);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}
.reassurance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245, 158, 11, 0.05));
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: -1;
}
.reassurance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 22px 50px -18px rgba(11, 18, 32, 0.22);
}
.reassurance-card:hover::before { opacity: 1; }

.reassurance-primary {
  background: linear-gradient(135deg, #FFFBEB 0%, white 60%, #FFFAEB 100%);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 18px 45px -18px rgba(245, 158, 11, 0.25);
}
.reassurance-primary:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 24px 55px -18px rgba(245, 158, 11, 0.35);
}

.reassurance-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: linear-gradient(135deg, #FFFAEB 0%, #FEF1C7 100%);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.reassurance-icon-blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: #1D4ED8;
  border-color: rgba(59, 130, 246, 0.25);
}

.reassurance-body { flex: 1; min-width: 0; }

.reassurance-eyebrow {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B45309;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  margin-bottom: 8px;
}
.reassurance-eyebrow-blue {
  color: #1D4ED8;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.reassurance-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0B1220;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reassurance-desc {
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.55;
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

.faq-hero {
  position: relative;
  padding: 130px 0 80px;
  background: #0B1220;
  color: white;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) {
  .faq-hero { padding: 160px 0 100px; }
}

.faq-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: all 200ms ease;
}
.faq-back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.faq-page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
}
html[lang="ar"] .faq-page-title { letter-spacing: 0; line-height: 1.2; }

.faq-page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.65;
}

.faq-content {
  padding: 70px 0 80px;
  background: #FAF8F3;
}

.faq-group {
  margin-bottom: 48px;
}
.faq-group-title {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #B45309;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-group-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #FBB024, #D97706);
  border-radius: 50%;
  flex: none;
}

/* Process page meta pills (under hero) */
.proc-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.proc-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.proc-meta-pill svg { color: #FCC74D; }

/* Detailed timeline */
.proc-timeline-section {
  padding: 70px 0 40px;
  background: #FAF8F3;
}
.proc-timeline {
  list-style: none;
  position: relative;
  padding-inline-start: 0;
}

.proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .proc-step {
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding-bottom: 56px;
  }
}

/* Vertical connecting line through markers */
.proc-step::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 0;
  inset-inline-start: 26px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(245, 158, 11, 0.35) 0,
    rgba(245, 158, 11, 0.35) 6px,
    transparent 6px,
    transparent 12px
  );
}
@media (min-width: 768px) {
  .proc-step::before { inset-inline-start: 38px; }
}
.proc-step:last-child::before { display: none; }

.proc-step-marker {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 768px) {
  .proc-step-marker {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.proc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #B45309;
  background: rgba(245, 158, 11, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-feature-settings: "tnum";
}

.proc-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  border-radius: 16px;
  box-shadow: 0 14px 28px -10px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  flex: none;
  position: relative;
  z-index: 1;
}
.proc-step-icon svg { width: 26px; height: 26px; }

.proc-step-content {
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 20px;
  padding: 28px 28px 26px;
  box-shadow: 0 16px 40px -20px rgba(11, 18, 32, 0.18);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.proc-step:hover .proc-step-content {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 24px 50px -18px rgba(11, 18, 32, 0.22);
  transform: translateY(-3px);
}

.proc-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.proc-step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B1220;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.proc-step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.proc-step-desc {
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.7;
  margin-bottom: 16px;
}

.proc-step-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #FAF8F3, #FFFAEB);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  margin-bottom: 16px;
}
.proc-step-items li {
  position: relative;
  font-size: 0.875rem;
  color: #1B2A47;
  line-height: 1.55;
  padding-inline-start: 22px;
}
.proc-step-items li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FBB024, #D97706);
  border-radius: 50%;
}

.proc-step-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #065F46;
  line-height: 1.5;
}
.proc-step-outcome svg { color: #10B981; margin-top: 2px; }

/* CTA at the end */
.proc-cta-section {
  padding: 60px 0 90px;
  background: #FAF8F3;
}
.proc-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0B1220;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.proc-cta-desc {
  font-size: 1rem;
  color: #3D5278;
  line-height: 1.65;
}

.faq-still-questions {
  margin-top: 60px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #FFFAEB 0%, white 60%, #FFF8E1 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(245, 158, 11, 0.25);
}
.faq-still-questions h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0B1220;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.faq-still-questions p {
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.6;
}

/* ==========================================================================
   CUSTOM DEVELOPMENT SECTION
   ========================================================================== */

.dev-card {
  position: relative;
  background: linear-gradient(135deg, #0B1220 0%, #10192E 40%, #1B2A47 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 24px;
  padding: 44px 36px;
  color: white;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 70px -20px rgba(11, 18, 32, 0.45);
}
.dev-card-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.dev-card-glow-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
  top: -120px;
  inset-inline-end: -80px;
}
.dev-card-glow-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
  bottom: -100px;
  inset-inline-start: -60px;
}

.dev-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) {
  .dev-card-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
}

.dev-card-text { max-width: 38rem; }

.dev-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FCC74D;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 999px;
}

.dev-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: white;
}

.dev-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.dev-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.dev-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.dev-feature-emoji { font-size: 1em; }

.dev-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #FBB024 0%, #D97706 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 14px;
  box-shadow: 0 14px 30px -8px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dev-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -8px rgba(245, 158, 11, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Code visual */
.dev-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dev-code-window {
  width: 100%;
  max-width: 420px;
  background: #060A14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px -15px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', 'Consolas', monospace;
}
.dev-code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #10192E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dev-code-dot { width: 10px; height: 10px; border-radius: 50%; }
.dev-code-body {
  padding: 16px 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  direction: ltr;
  text-align: left;
}
.dev-code-line { color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.dev-code-indent { padding-inline-start: 16px; }
.dev-code-kw { color: #C084FC; }
.dev-code-var { color: #93C5FD; }
.dev-code-str { color: #6EE7B7; }
.dev-code-prop { color: #FCC74D; }
.dev-code-bool { color: #FB7185; }
.dev-code-prompt { color: #FCC74D; animation: cursorBlink 1.2s steps(2) infinite; }
@keyframes cursorBlink { 50% { opacity: 0; } }

/* ==========================================================================
   WHY WEBFRONT CARDS
   ========================================================================== */

.wf-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  transition: all 250ms ease;
}
.wf-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
}
.wf-ic {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.wf-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wf-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testi-card {
  padding: 28px 26px 24px;
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 20px;
  transition: all 250ms ease;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(11, 18, 32, 0.18);
}
.testi-stars {
  color: #F59E0B;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #1B2A47;
  margin-bottom: 18px;
  font-weight: 500;
}
.testi-quote::before { content: "“"; color: #F59E0B; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-inline-end: 2px; }
.testi-quote::after { content: "”"; color: #F59E0B; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-inline-start: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
}
.testi-avatar-1 { background: linear-gradient(135deg, #f59e0b, #c2410c); }
.testi-avatar-2 { background: linear-gradient(135deg, #0ea5e9, #1d4ed8); }
.testi-avatar-3 { background: linear-gradient(135deg, #10b981, #0f766e); }
.testi-avatar-4 { background: linear-gradient(135deg, #ec4899, #a21caf); }
.testi-name { font-size: 0.9375rem; font-weight: 700; color: #0B1220; }
.testi-role { font-size: 0.8125rem; color: #5E7397; margin-top: 1px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item {
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 200ms ease;
}
.faq-item[open] {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 24px -10px rgba(11, 18, 32, 0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1220;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #B45309; }
.faq-chev {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}
.faq-chev::before, .faq-chev::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-chev::before { top: 9px; left: 0; right: 0; height: 2px; }
.faq-chev::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq-item[open] .faq-chev::after { transform: scaleY(0); }
.faq-a {
  padding: 0 22px 20px;
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 1.5px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}
.contact-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(245, 158, 11, 0.04) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 14px 30px -12px rgba(11, 18, 32, 0.18);
}
.contact-channel:hover::before { opacity: 1; }
.contact-channel:hover .cc-arrow { transform: translateX(4px); opacity: 1; }
[dir="rtl"] .contact-channel:hover .cc-arrow { transform: translateX(-4px); }

.contact-primary {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 60%, white 100%);
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 26px -10px rgba(37, 211, 102, 0.2);
}
.contact-primary:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 18px 36px -12px rgba(37, 211, 102, 0.3);
}
.contact-primary::before {
  background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(37, 211, 102, 0.08) 100%);
}

.cc-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cc-body { flex: 1; min-width: 0; }
.cc-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cc-title { font-size: 1.0625rem; font-weight: 700; color: #0B1220; letter-spacing: -0.01em; }
.cc-sub { font-size: 0.8125rem; color: #5E7397; margin-top: 3px; }

.cc-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.cc-badge-wa {
  background: rgba(37, 211, 102, 0.15);
  color: #06834A;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.cc-arrow {
  flex: none;
  color: #94A3C2;
  opacity: 0.5;
  transition: transform 250ms ease, opacity 250ms ease;
}
.contact-primary .cc-arrow { color: #06834A; opacity: 0.7; }

.contact-note {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #FFFAEB;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  font-size: 0.875rem;
  color: #92400E;
  line-height: 1.5;
}

/* =========================================
   WhatsApp message preview card
   ========================================= */
.wa-preview {
  background: white;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(11, 18, 32, 0.18);
}
.wa-preview-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: #F1F5FC;
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.wa-preview-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.wa-preview-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1B2A47;
}
.wa-preview-body {
  padding: 22px 24px 24px;
  background: #E5DDD5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.35) 0%, transparent 35%);
  position: relative;
}
.wa-preview-intro {
  font-size: 0.9375rem;
  color: #3D5278;
  line-height: 1.6;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.05);
}
.wa-preview-message {
  background: #DCF8C6;
  border-radius: 14px;
  border-top-end-radius: 4px;
  padding: 16px 18px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #0B1220;
  box-shadow: 0 6px 16px -6px rgba(11, 18, 32, 0.18);
  position: relative;
  margin-inline-start: auto;
  max-width: 95%;
}
[dir="rtl"] .wa-preview-message {
  border-top-end-radius: 4px;
  border-top-start-radius: 14px;
}
.wa-msg-greeting {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0B1220;
}
.wa-msg-text {
  margin-bottom: 12px;
  color: #1B2A47;
}
.wa-msg-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
}
.wa-msg-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #1B2A47;
}
.wa-msg-emoji {
  flex: none;
  font-size: 0.9em;
}
.wa-msg-thanks {
  font-size: 0.8125rem;
  color: #475569;
}
.wa-preview-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #25D366 0%, #1FBE5C 100%);
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.5);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-preview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.6);
}
.wa-preview-cta .ms-auto { margin-inline-start: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

/* Minimal footer */
.footer-min {
  background: linear-gradient(180deg, #060A14 0%, #0B1220 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 16px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.footer-min::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}
.footer-min-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-min-logo { display: inline-flex; margin-bottom: 18px; }
.footer-min-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.footer-min-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 28px;
  max-width: 480px;
}
.footer-min-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-min-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: all 200ms ease;
}
.footer-min-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.footer-min-wa svg { color: #25D366; }
.footer-min-wa:hover { border-color: rgba(37, 211, 102, 0.4); }
.footer-min-email svg { color: #FCC74D; }
.footer-min-email:hover { border-color: rgba(245, 158, 11, 0.35); }
.footer-min-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

/* ==========================================================================
   STICKY WHATSAPP
   ========================================================================== */

.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 6px rgba(37, 211, 102, 0.15);
  transition: all 250ms ease;
}
[dir="rtl"] .sticky-wa { right: auto; left: 20px; }
.sticky-wa:hover {
  transform: scale(1.08);
  background: #1FBE5C;
}
.sticky-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 640px) {
  .sticky-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  [dir="rtl"] .sticky-wa { left: 16px; right: auto; }
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
}

/* ==========================================================================
   LANGUAGE-SPECIFIC ADJUSTMENTS
   ========================================================================== */

html[lang="ar"] .section-title,
html[lang="ar"] .biz-title,
html[lang="ar"] .price-title,
html[lang="ar"] h1 {
  letter-spacing: 0;
  line-height: 1.25;
}
html[lang="ar"] h1 { line-height: 1.2; }
html[lang="zh"] .section-title,
html[lang="zh"] h1 {
  letter-spacing: 0;
}
