/* ===== CSS Custom Properties ===== */
:root {
  --primary: #6C70EB;
  --primary-dark: #5558d4;
  --primary-light: #8b8ef0;
  --accent: #C143D3;
  --accent-light: rgba(193, 67, 211, 0.1);
  --magenta: #D4337A;
  --magenta-light: #e84d91;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f0f8;
  --gray: #888;
  --dark: #1e1e3a;
  --dark-text: #2d2d5f;
  --body-text: #555;
  --gradient-hero: linear-gradient(135deg, #6C70EB 0%, #8b5cf6 50%, #a78bfa 100%);
  --gradient-cta: linear-gradient(135deg, #D4337A 0%, #e84d91 100%);
  --gradient-card: linear-gradient(135deg, #6C70EB 0%, #C143D3 100%);
  --shadow-sm: 0 2px 8px rgba(108, 112, 235, 0.08);
  --shadow-md: 0 8px 24px rgba(108, 112, 235, 0.12);
  --shadow-lg: 0 16px 48px rgba(108, 112, 235, 0.16);
  --shadow-xl: 0 24px 64px rgba(108, 112, 235, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ar);
  direction: rtl;
  background: var(--white);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Curve Swipe Overlay ===== */
.curve-swipe-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  filter: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar-links a:hover::after { width: 100%; }
.navbar.scrolled .navbar-links a { color: var(--dark-text); }
.navbar.scrolled .navbar-links a::after { background: var(--primary); }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-en);
  transition: var(--transition);
}
.nav-login:hover { opacity: 0.8; }
.navbar.scrolled .nav-login { color: var(--dark-text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-green {
  background: linear-gradient(135deg, #9B59B6 0%, #C143D3 100%);
  color: var(--white);
  font-family: var(--font-en);
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(156, 89, 182, 0.35);
  border: none;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 89, 182, 0.5);
  background: linear-gradient(135deg, #8E44AD 0%, #B035C0 100%);
}

.navbar.scrolled .btn-green {
  background: linear-gradient(135deg, #9B59B6 0%, #C143D3 100%);
  color: var(--white);
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 51, 122, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 51, 122, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .mobile-toggle span { background: var(--dark); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
}

.hero-vector {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 38%;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 0;
  max-width: 1400px;
}

.hero-content {
  flex: 1;
  text-align: start;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #383A47;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title .highlight {
  display: block;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-outline {
  background: var(--white);
  color: #C143D3;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.btn-hero-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #9B59B6 0%, #C143D3 100%);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(156, 89, 182, 0.35);
  transition: var(--transition);
  border: none;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 89, 182, 0.5);
  background: linear-gradient(135deg, #8E44AD 0%, #B035C0 100%);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.hero-stat .number {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  font-family: var(--font-en);
  color: #383A47;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: #383A47;
}

.hero-stat .stars {
  color: #FF9800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.hero-image {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: -120px;
  align-self: flex-end;
  margin-bottom: -12%;
}

.hero-person {
  max-height: 640px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  object-fit: contain;
  display: block;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  width: 204.57px;
  height: 112.67px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-card .card-icon.green { background: #e8f8f0; color: #22c55e; }
.floating-card .card-icon.purple { background: #f0e8ff; color: var(--primary); }
.floating-card .card-icon.pink { background: #fce8ef; color: #e74c8b; }

.floating-card .card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #6C70EB;
  font-family: var(--font-en);
  line-height: 1;
}

.floating-card .card-value small {
  font-size: 0.85rem;
}

.floating-card .card-label {
  font-size: 0.65rem;
  color: #a0a3bd;
  font-family: var(--font-en);
  letter-spacing: 0.3px;
}

.floating-card .card-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.55rem;
  color: #22c55e;
  font-family: var(--font-en);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1px;
}

.orders-badge {
  box-sizing: border-box;
  width: 190px;
  height: 100px;
  position: absolute;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  direction: ltr;
}

.orders-badge-bg {
  background: var(--white, #ffffff);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 190px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0px 4px 10.7px 0px rgba(0, 0, 0, 0.11);
}

.orders-badge-value {
  color: #9deac0;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  left: 75px;
  top: 25px;
}

.orders-badge-label {
  color: #8a96bc;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  left: 75px;
  top: 66px;
  white-space: nowrap;
}

.orders-badge-icon-bg {
  background: rgba(157, 234, 192, 0.2);
  border-radius: 50%;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 15px;
  top: 24px;
}

.orders-badge-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 29px;
  top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.orders-badge-trend {
  position: absolute;
  left: 137px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.orders-badge-trend .trend-value {
  color: #00b69b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
}

.revenue-badge {
  box-sizing: border-box;
  width: 189px;
  height: 100px;
  position: absolute;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  direction: ltr;
}

.revenue-badge-bg {
  background: var(--white, #ffffff);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 189px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0px 4px 10.7px 0px rgba(0, 0, 0, 0.11);
}

.revenue-badge-value {
  color: #ff9a9a;
  position: absolute;
  left: 73px;
  top: 26px;
  font-family: var(--font-en);
  display: flex;
  align-items: baseline;
}

.revenue-badge-value .val {
  font-size: 24px;
  font-weight: 600;
}

.revenue-badge-value .currency {
  font-size: 20px;
  font-weight: 600;
}

.revenue-badge-label {
  color: #8a96bc;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  left: 73px;
  top: 66px;
  white-space: nowrap;
}

.revenue-badge-icon-bg {
  background: rgba(255, 154, 154, 0.2);
  border-radius: 50%;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 13px;
  top: 24px;
}

.revenue-badge-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 27px;
  top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.revenue-badge-trend {
  position: absolute;
  left: 140px;
  top: 9px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.revenue-badge-trend .trend-value {
  color: #00b69b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
}

.growth-badge {
  box-sizing: border-box;
  width: 190px;
  height: 100px;
  position: absolute;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  direction: ltr;
}

.growth-badge-bg {
  background: var(--white, #ffffff);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 190px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0px 4px 10.7px 0px rgba(0, 0, 0, 0.11);
}

.growth-badge-value {
  color: #b28cff;
  font-family: var(--font-en);
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  left: 75px;
  top: 24px;
}

.growth-badge-label {
  color: #a0a5ba;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  left: 75px;
  top: 62px;
  white-space: nowrap;
}

.growth-badge-icon-bg {
  background: rgba(178, 140, 255, 0.2);
  border-radius: 50%;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 15px;
  top: 24px;
}

.growth-badge-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 29px;
  top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.growth-badge-trend {
  position: absolute;
  left: 143px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.growth-badge-trend .trend-value {
  color: #00b69b;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
}

.card-badge.red {
  color: #ef4444;
}

/* Floating card positions matching the design screenshot */
.card-orders {
  top: 5%;
  left: 4%;
  transform: rotate(-3deg);
  animation-delay: 0s;
}

.card-growth {
  bottom: 32%;
  left: 65%;
  transform: rotate(2deg);
  animation-delay: -2s;
}

.card-revenue {
  bottom: 18%;
  left: -2%;
  transform: rotate(-4deg);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.section-title h2 .colored {
  color: var(--primary);
}

.section-title p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Features / How NQLA Solves ===== */
.features {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.features > .container {
  max-width: 1400px;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.8;
}

.feature-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-image .phone-mockup {
  max-width: 100%;
  max-height: 450px;
  height: auto;
  object-fit: contain;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6C70EB 0%, #8B7FE8 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 600;
}

.check-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C143D3 0%, #9B59B6 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== All-in-one Section ===== */
.all-in-one {
  padding: 80px 0;
  background: var(--white);
}

.allinone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.allinone-card {
  background-color: #6C70EB;
  background-image: url('/landing/web/images/card-bg.svg');
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.allinone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(139, 156, 247, 0.35);
}

.allinone-icon {
  width: 63px;
  height: 63px;
  border-radius: 14px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.allinone-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.allinone-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ===== Steps Section ===== */
.steps {
  padding: 0 0 80px 0;
  background: var(--white);
}

.steps-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.steps-image-side {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-image-container {
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  overflow: visible;
  background: url('/landing/web/images/steps-bg.svg') center bottom / 100% 100% no-repeat;
  position: relative;
  padding: 0 20px;
}

.steps-image-container img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -20px;
  border-radius: 0 0 20px 20px;
}

.steps-badge {
  background: var(--white);
  border-radius: 20px;
  padding: 14px 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  text-align: start;
  position: absolute;
  z-index: 2;
}

.steps-badge .badge-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #383A47;
}

.steps-badge .badge-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}

.rating-badge {
  left: -30px;
  top: 12%;
}

.rating-badge .badge-label {
  color: #FF9800;
}

.merchant-badge-img {
  right: -30px;
  bottom: 140px;
}

.steps-cta-wrapper {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: flex-end;
}

.steps-cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.steps-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.steps-heading {
  margin-bottom: 104px;
  text-align: center;
}

.steps-heading .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.steps-heading .section-title span {
  color: #6C70EB;
}

.steps-heading .section-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.steps-cards-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.steps-cards-layout {
  position: relative;
  width: 570px;
  min-height: 820px;
}

.step-card {
  background: white;
  border-radius: 38px;
  padding: 24px 28px;
  box-shadow: 0 1px 28px rgba(0,0,0,0.08);
  width: 297px;
  height: 276px;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.step-card-1 {
  top: -90px;
  right: 0;
}

.step-card-2 {
  top: 170px;
  left: -20px;
}

.step-card-3 {
  top: 430px;
  right: 0;
}

.step-num {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #fdf3ff;
  color: #C143D3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #383A47;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(56, 58, 71, 0.7);
  line-height: 1.9;
}

.steps-line-svg {
  position: absolute;
  top: 60px;
  left: 142px;
  width: 338px;
  height: 578px;
  z-index: 0;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 100px 0;
  background: url('/landing/web/images/pricing-bg.svg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.pricing .section-title h2,
.pricing .section-title p {
  color: var(--white);
}

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-toggle {
  background: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 6px;
}

.pricing-toggle .toggle-btn {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle .toggle-btn.active {
  background: #C143D3;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1050px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 32px;
  padding: 40px 28px 28px 28px;
  text-align: center;
  width: 310px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: #CA4AD2;
  color: var(--white);
  transform: scale(1.08);
}

.pricing-card .plan-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.pricing-card .plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.pricing-card.featured .plan-name { 
  color: var(--white); 
}

.plan-price-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
}

.pricing-card .plan-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark-text);
  font-family: var(--font-en);
  line-height: 1;
}

.pricing-card.featured .plan-price { 
  color: var(--white); 
}

.pricing-card .plan-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  transform: translateY(-12px);
}

.pricing-card.featured .plan-currency {
  color: var(--white); 
}

.pricing-card .plan-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}

.pricing-card.featured .plan-period {
  color: rgba(255, 255, 255, 0.9);
}

.save-badge {
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  margin-top: 4px;
  font-family: var(--font-en);
}

.pricing-card .plan-features {
  margin: 0;
  padding: 20px 24px;
  text-align: start;
  background: #FAFAFD;
  border-radius: 20px;
  margin-bottom: 24px;
  flex: 1;
  list-style: none;
}

.pricing-card.featured .plan-features {
  background: white;
}

.pricing-card .plan-features li {
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style-type: none;
  line-height: 1.6;
}

.pricing-card.featured .plan-features li {
  color: var(--dark-text);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 22px;
  height: 22px;
}

.pricing-card .btn-plan {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  background: #fdfafd;
  color: var(--primary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.pricing-card .btn-plan:hover {
  background: var(--primary);
  color: var(--white);
}

.pricing-card.featured .btn-plan {
  background: #6C70EB;
  color: var(--white);
}

.pricing-card.featured .btn-plan:hover {
  background: var(--primary-dark);
}

/* ===== Testimonials / Reviews ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 10px;
}

.reviews-wrapper {
  width: 100%;
  overflow: hidden;
}

.reviews-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 40px 60px 40px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--primary);
  border-radius: 24px;
  padding: 30px;
  transition: var(--transition);
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(108, 112, 235, 0.15);
  display: flex;
  flex-direction: column;
}

.review-card.featured {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(108, 112, 235, 0.3);
  z-index: 2;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.review-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5); /* Matching the subtle faded header text */
  margin: 0;
  font-family: var(--font-en);
}

.review-card .review-text {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: var(--font-en);
  flex-grow: 1;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-en);
}

.reviewer-info .reviewer-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-en);
}

.reviewer-info .reviewer-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-en);
}

/* ===== Mobile Tilt Section ===== */
.mobile-showcase {
  padding: 100px 0;
  background: var(--off-white);
}

.mobile-showcase .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.mobile-content {
  flex: 1;
}

.mobile-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.mobile-content p {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.app-buttons {
  display: flex;
  gap: 12px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.app-btn.google {
  background: var(--dark);
  color: var(--white);
}

.app-btn.apple {
  background: var(--primary);
  color: var(--white);
}

.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.tilt-phone {
  width: 300px;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #d1d5db; /* Light gray-purple border */
  border-radius: 20px;
  background: var(--white);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: start;
}

.faq-item.active {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  width: 100%;
  color: var(--dark-text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: start;
  border: none;
  background: transparent;
  font-family: inherit;
}

.faq-item.active .faq-question {
  color: var(--white);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 16px;
  font-weight: normal;
  font-family: var(--font-en);
}

.faq-item.active .faq-icon {
  background: var(--white);
  color: var(--primary);
}

.faq-icon .minus {
  display: none;
}

.faq-item.active .faq-icon .plus {
  display: none;
}

.faq-item.active .faq-icon .minus {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body-text);
  margin: 0;
}

.faq-item.active .faq-answer p {
  padding: 0 24px 24px 24px;
  color: var(--white);
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--white);
  text-align: start;
  display: flex;
  justify-content: center;
}

.cta-wrapper {
  background: #CA4AD2; /* Vivid purple */
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 40px;
  color: white;
  box-shadow: 0 10px 40px rgba(188, 66, 209, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store-img img {
  height: 46px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 8px; /* Smooth out sharp image edges just in case */
}

.btn-store-img:hover img {
  transform: translateY(-2px);
}

.cta-qr {
  background: white;
  padding: 12px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.cta-qr img.qr-image {
  width: 170px;
  height: 170px;
  border-radius: 20px;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 30px;
  background: #6c70eb; /* Match the vibrant solid purple from testimonial cards or image */
  border-top: none;
  font-family: var(--font-en);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 250px;
  font-family: var(--font-ar);
  text-align: start;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col.get-app-col .follow-us {
  margin-top: 36px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-badge img {
  height: 40px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: var(--white);
  display: flex;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.8);
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-right a:hover {
  color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content { text-align: center; padding-right: 0; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { margin-left: 0; justify-content: center; }

  .feature-block,
  .feature-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .steps-wrapper { flex-direction: column; }

  .mobile-showcase .container { flex-direction: column; text-align: center; }
  .mobile-content { text-align: center; }
  .app-buttons { justify-content: center; }

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

  .navbar-links { display: none; }
  .mobile-toggle { display: flex; }

  .floating-card { display: none; }
}

@media (max-width: 768px) {
  .steps-cards-layout {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
  }
  
  .steps-cards-layout::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    background: #FF7622;
    border-radius: 4px;
    z-index: 0;
  }

  .step-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 90%;
    max-width: 320px;
    z-index: 1;
  }

  .steps-line-svg {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
