@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cairo:wght@300;400;600;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css");

/* ============================================================
   style-ar.css — Arabic (RTL) version
   ============================================================ */

:root {
  --primary: #0099ff;
  --secondary: #00ccff;
  --accent: #0066ff;
  --glow-1: rgba(0, 153, 255, 0.15);
  --glow-2: rgba(0, 204, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  /* Arabic uses Cairo as primary font */
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
  direction: rtl;
}

/* ===== TYPOGRAPHY — Arabic ===== */
.font-heading {
  font-family: "Plus Jakarta Sans", "Cairo", sans-serif;
  font-weight: 800;
}
.font-body {
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
}

/* Nav links in Arabic use Cairo */
.nav-link {
  font-family: "Cairo", sans-serif;
  font-weight: 600;
}

/* ===== TYPING CURSOR — RTL: margin-right instead of left ===== */
.typing-cursor {
  display: inline-block;
  width: 3px;
  background: var(--primary);
  animation: typing-cursor 0.8s infinite;
  margin-right: 2px; /* RTL — cursor goes to the right of text */
  vertical-align: baseline;
}

/* ===== HERO GRADIENT TEXT ===== */
.hero-gradient-text {
  background: linear-gradient(135deg, #0099ff 0%, #00ccff 50%, #0066ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 153, 255, 0.06);
  border: 1px solid rgba(0, 153, 255, 0.18);
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
}

/* ===== PRICING PRO ===== */
.pricing-pro {
  background: linear-gradient(135deg, #0055cc, #0099ff, #00ccff);
  border: none !important;
  box-shadow: 0 20px 60px rgba(0, 153, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* ===== HERO STAT NUMBER ===== */
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0099ff, #00ccff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ===== RING DECORATION ===== */
.ring-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 153, 255, 0.12);
  pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease,
    background 0.3s ease;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 153, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease,
    opacity 0.3s ease;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ===== LIQUID GLASS ===== */
.liquid-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 153, 255, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 153, 255, 0.25) 0%,
    rgba(0, 204, 255, 0.08) 20%,
    transparent 40%,
    transparent 60%,
    rgba(0, 204, 255, 0.08) 80%,
    rgba(0, 153, 255, 0.25) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: linear-gradient(
    135deg,
    rgba(0, 153, 255, 0.08),
    rgba(0, 204, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 153, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    180deg,
    rgba(0, 153, 255, 0.35) 0%,
    rgba(0, 204, 255, 0.12) 20%,
    transparent 40%,
    transparent 60%,
    rgba(0, 204, 255, 0.12) 80%,
    rgba(0, 153, 255, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, #0099ff, #00ccff);
  color: #fff;
  border-radius: 9999px;
  padding: 0.55rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 153, 255, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 153, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  top: 0 !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ===== MOBILE MENU — RTL ===== */
/* ===== MOBILE MENU — RTL with smooth animation ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  direction: rtl;
  /* Hidden state */
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Animate each menu item in staggered */
.mobile-menu a {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Cairo", sans-serif;
  color: #1a1a1a;
  transition: color 0.2s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s ease, opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open a:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.mobile-menu.open a:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}
.mobile-menu.open a:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.mobile-menu.open a:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.mobile-menu.open a:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.mobile-menu.open a:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.mobile-menu a:hover {
  color: var(--primary);
}

/* Decorative glow inside mobile menu */
.mobile-menu::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 153, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; /* hidden by default — shown only on mobile via media query */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 60;
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.hamburger:hover {
  background: rgba(0, 153, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.15);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--primary);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--primary);
}

/* Show hamburger only on mobile/tablet */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

/* ===== NAVBAR — always has background on mobile ===== */
@media (max-width: 767px) {
  .navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    top: 0 !important;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    border-radius: 0;
  }
}

/* ===== FORM INPUTS ===== */
.form-input {
  width: 100%;
  background: rgba(0, 153, 255, 0.04);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
  outline: none;
  text-align: right; /* RTL text alignment inside inputs */
  direction: rtl;
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.form-input:focus {
  border-color: rgba(0, 153, 255, 0.5);
  background: rgba(0, 153, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.08);
}

/* ===== PRICING TEXT FIXES ===== */
.pricing-card-text {
  color: #4a5568;
}
.pricing-card-text-light {
  color: #718096;
}
.pricing-pro-text {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-pro-text-light {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-basic li,
.pricing-enterprise li {
  color: #4b5563;
}
.pricing-pro li {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0099ff, #00ccff);
  z-index: 9997;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
}

/* ===== ICON COLORS ===== */
[data-lucide] {
  color: var(--primary);
}
.liquid-glass-strong [data-lucide] {
  color: var(--primary);
}

/* ===== MAGNETIC ===== */
.magnetic {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(24px);
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(1deg);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 153, 255, 0.5),
      0 0 100px rgba(0, 204, 255, 0.2);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes blob-morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 40% 30% 60% 50%;
  }
  75% {
    border-radius: 40% 60% 60% 30% / 60% 40% 30% 60%;
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes typing-cursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.9s ease-out forwards;
}
.animate-fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-blur-in {
  animation: blurIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-slide-right {
  animation: slideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-slide-left {
  animation: slideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}
.animate-blob {
  animation: blob-morph 8s ease-in-out infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}
.delay-800 {
  animation-delay: 0.8s;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* RTL: reveal-left slides from the right side (visually), reveal-right from left */
.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-children > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger-children > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-children > *:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger-children > *:nth-child(4) {
  transition-delay: 0.3s;
}

/* ===== PARTICLES / ORBS ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* ===== SHIMMER TEXT ===== */
.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ===== HERO STATS ===== */
.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 153, 255, 0.12);
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}

/* ===== DASHBOARD TILT ===== */
.dashboard-wrapper {
  position: relative;
  perspective: 1200px;
}
.dashboard-wrapper img {
  border-radius: 1rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.dashboard-wrapper:hover img {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.02);
}

/* ===== MARQUEE ===== */
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
}

/* ===== COLOR OVERRIDES ===== */
.text-gray-600 {
  color: #4b5563 !important;
}
.text-gray-400 {
  color: #9ca3af !important;
}

.text-primary {
  color: var(--primary) !important;
}
.img1   {
    background-image: url(../images/download.jfif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img2{
    background-image: url(../images/download\ \(1\).jfif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img3{
    background-image: url(../images/download\ \(2\).jfif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fill-star{
    fill: #0099ff;
}
.progegypt{
    color: #0099ff;
}
.progegypt:hover{
    color: #00ccff;
}
.contact{
  border-radius: 25px;
}
/* ===== PRICING TOGGLE ===== */
.pricing-toggle-wrap { cursor: pointer; }
.pricing-toggle-track {
  width: 52px; height: 28px;
  background: rgba(0,153,255,0.15);
  border: 1px solid rgba(0,153,255,0.25);
  border-radius: 9999px;
  position: relative;
  transition: background 0.3s;
}
.pricing-toggle-track.on { background: #0099ff; }
.pricing-toggle-thumb {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pricing-toggle-track.on .pricing-toggle-thumb {
  transform: translateX(-24px);
}
.save-pill {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 9999px;
  font-family: "Cairo", sans-serif;
  white-space: nowrap;
}

/* ===== COMPARE TABLE ===== */
.pricing-compare-table th, .pricing-compare-table td {
  font-family: "Cairo", sans-serif;
}
.pricing-compare-table .compare-row:hover td { background: rgba(0,153,255,0.02); }
