/* ============================================================
   E-FATOORA — Main Stylesheet
   Senior-level CSS architecture with custom properties
   ============================================================ */

/* ──────────────────────────────────────────
   1. FONT
   Primary: IBM Plex Sans Arabic (Google Fonts — confirmed from Figma)
   Loaded via <link> in HTML head.
   ────────────────────────────────────────── */

/* ──────────────────────────────────────────
   2. DESIGN TOKENS (CSS Custom Properties)
   ────────────────────────────────────────── */
:root {
  /* ── Brand Color Stops ── */
  --color-brand-darkest: #101828;
  --color-brand-dark: #3c0366;
  --color-brand-deep: #59168b;
  --color-brand-mid: #6e11b0;
  --color-brand-pink: #861043;

  /* ── Brand Gradients ── */
  --gradient-btn-primary: linear-gradient(90deg, #9810fa 0%, #8200db 100%);
  --gradient-bg-primary: linear-gradient(
    135deg,
    #59168b 0%,
    #6e11b0 50%,
    #3c0366 100%
  );
  --gradient-bg-secondary: linear-gradient(
    135deg,
    #59168b 0%,
    #6e11b0 50%,
    #861043 100%
  );
  --gradient-btn-secondary: linear-gradient(90deg, #9810fa 0%, #e60076 100%);
  --gradient-footer: linear-gradient(
    135deg,
    #101828 0%,
    #3c0366 50%,
    #101828 100%
  );
  --gradient-accent-text: linear-gradient(
    90deg,
    #ffdf20 0%,
    #fda5d5 50%,
    #dab2ff 100%
  );

  /* ── Solid Brand Colors ── */
  --color-primary: #9810fa;
  --color-primary-dark: #8200db;
  --color-primary-50: #f3e8ff;
  --color-secondary: #e60076;
  --color-white: #ffffff;
  --color-black: #000000;

  /* ── Semantic Colors ── */
  --color-success: #22c55e;
  --color-teal: #65c8cf;

  /* ── Hero Accent Color Stops ── */
  --color-accent-yellow: #ffdf20;
  --color-accent-pink: #fda5d5;
  --color-accent-lavender: #dab2ff;

  /* ── RGB Tokens (for rgba() usage) ── */
  --rgb-primary: 152, 16, 250;
  --rgb-secondary: 230, 0, 118;
  --rgb-white: 255, 255, 255;
  --rgb-black: 0, 0, 0;
  --rgb-success: 34, 197, 94;

  /* ── Neutral Palette ── */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #101828;

  /* ── Typography ── */
  --font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-loose: 1.75;

  /* ── Hero Typography (Figma-confirmed) ── */
  --hero-title-size: 3rem; /* 48px */
  --hero-title-weight: 700;
  --hero-title-line-height: 60px;
  --hero-title-size-tablet: 2.375rem; /* 38px */
  --hero-title-lh-tablet: 50px;
  --hero-title-size-mobile: 1.75rem; /* 28px */
  --hero-title-lh-mobile: 40px;
  --hero-title-size-xs: 1.5rem; /* 24px */
  --hero-title-lh-xs: 36px;

  /* ── UI Color Palette (icons, badges, states) ── */
  --color-blue: #3b82f6;
  --color-cyan: #06b6d4;
  --color-pink: #ec4899;
  --color-red: #ef4444;
  --color-violet: #8b5cf6;
  --color-emerald: #10b981;
  --color-amber: #f59e0b;

  /* ── Feature Icon Gradients ── */
  --gradient-icon-sales: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --gradient-icon-purchases: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
  --gradient-icon-accounting: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-icon-reports: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
  --gradient-icon-documents: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  --gradient-icon-pos: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  --gradient-promo-icon: linear-gradient(135deg, #ad46ff 0%, #f6339a 100%);

  /* ── Section Shared ── */
  --section-padding: 96px;
  --section-padding-mobile: 56px;
  --section-title-size: 2.5rem; /* 40px */
  --section-title-size-mob: var(--font-size-4xl); /* 36px */
  --section-subtitle-max-w: 520px;
  --gradient-promo-bg: linear-gradient(
    135deg,
    #faf5ff 0%,
    #fdf2f8 50%,
    #ffffff 100%
  );

  /* ── Layout ── */
  --navbar-height: 65px;
  --footer-height: 464px;
  --container-max-width: 1200px;
  --container-padding-x: 24px;

  /* ── Hero Layout ── */
  --hero-padding-top: 100px;
  --hero-padding-bottom: 90px;
  --hero-subtitle-max-width: 480px;
  --hero-visual-max-width: 500px;
  --hero-float-size: 178px;
  --hero-float-size-tablet: 148px;
  --hero-float-size-mobile: 130px;

  /* ── Footer Layout ── */
  --footer-padding-top: 56px;
  --footer-padding-bottom: 40px;
  --footer-grid-gap: 64px;
  --footer-description-max-w: 340px;
  --footer-social-size: 36px;
  --footer-logo-height: 46px;
  --footer-partners-img-h: 44px;
  --footer-contact-icon-size: 30px;

  /* ── Spacing Scale ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ── Border Radius ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 24px; /* Figma pricing card radius */
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-btn: 0 4px 20px rgba(var(--rgb-primary), 0.35);
  --shadow-btn-hover: 0 6px 28px rgba(var(--rgb-primary), 0.5);
  --shadow-btn-white: 0 4px 24px rgba(var(--rgb-black), 0.18);
  --shadow-btn-white-hover: 0 6px 32px rgba(var(--rgb-black), 0.22);
  --shadow-social-hover: 0 4px 14px rgba(var(--rgb-primary), 0.5);
  --shadow-device: drop-shadow(0 32px 64px rgba(var(--rgb-black), 0.4));
  --shadow-float: drop-shadow(0 8px 28px rgba(var(--rgb-black), 0.22));

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* ── Z-index Scale ── */
  --z-navbar: 1000;
  --z-dropdown: 1010;
  --z-overlay: 2000;
  --z-modal: 2100;
}

/* ──────────────────────────────────────────
   3. CSS RESET & BASE
   ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #9810fa #f3e8ff;
}

/* Webkit scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f3e8ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9810fa 0%, #e60076 100%);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8200db 0%, #c80068 100%);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  direction: inherit;
  text-align: start;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ──────────────────────────────────────────
   4. UTILITY CLASSES
   ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ──────────────────────────────────────────
   5. BUTTON SYSTEM
   ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  white-space: nowrap;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn:active {
  opacity: 1;
  transform: translateY(0);
}

/* Primary — purple gradient */
.btn--primary {
  background: var(--gradient-btn-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  box-shadow: var(--shadow-btn-hover);
}

/* Secondary — pink-purple gradient */
.btn--secondary {
  background: var(--gradient-btn-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(var(--rgb-secondary), 0.35);
}

/* White — for use on dark/gradient backgrounds */
.btn--white {
  background: var(--color-white);
  color: var(--color-brand-dark);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-btn-white);
  border: none;
}
.btn--white:hover {
  background: var(--color-primary-50);
  opacity: 1;
  box-shadow: var(--shadow-btn-white-hover);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  box-shadow: none;
}
.btn--outline:hover {
  background: rgba(var(--rgb-primary), 0.06);
}

/* Ghost / Text */
.btn--ghost {
  background: transparent;
  color: var(--color-gray-700);
  padding: 10px 16px;
}
.btn--ghost:hover {
  color: var(--color-primary);
  background: rgba(var(--rgb-primary), 0.06);
}

/* Sizes */
.btn--sm {
  padding: 7px 18px;
  font-size: var(--font-size-xs);
}
.btn--lg {
  padding: 14px 32px;
  font-size: var(--font-size-base);
}

/* ──────────────────────────────────────────
   6. NAVBAR
   ────────────────────────────────────────── */
#main-content {
  position: relative;
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-100);
  z-index: var(--z-navbar);
  transition: box-shadow var(--transition-normal);
}

.navbar.is-scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-6);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.navbar__logo:hover .navbar__logo-img {
  opacity: 0.85;
}

/* Nav Menu */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.navbar__nav-item {
  position: relative;
}

.navbar__nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  white-space: nowrap;
}

.navbar__nav-link:hover,
.navbar__nav-item.is-active .navbar__nav-link {
  color: var(--color-primary);
  background: rgba(var(--rgb-primary), 0.06);
}

.navbar__nav-item.is-active .navbar__nav-link {
  font-weight: var(--font-weight-bold);
}

.navbar__nav-link .fa-chevron-down {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.navbar__nav-item.is-open .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
  z-index: var(--z-dropdown);
}

.navbar__nav-item:hover .navbar__dropdown,
.navbar__nav-item.is-open .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-item a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.navbar__dropdown-item a:hover {
  color: var(--color-primary);
  background: rgba(var(--rgb-primary), 0.06);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Navbar CTA button override */
.navbar__actions .btn--primary.btn--sm {
  padding: 0 20px;
  height: 44px;
  min-width: 87px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #9810fa 0%, #8200db 100%);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar__actions .btn--primary.btn--sm:hover {
  box-shadow: 0 4px 16px rgba(152, 16, 250, 0.35);
}

.navbar__lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-gray-200);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.navbar__lang-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.navbar__login-btn {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  white-space: nowrap;
}

.navbar__login-btn:hover {
  color: var(--color-primary);
  background: rgba(var(--rgb-primary), 0.06);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gray-700);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.navbar__mobile-menu {
  position: fixed;
  top: var(--navbar-height);
  inset-inline: 0;
  background: var(--color-white);
  padding: 0 var(--container-padding-x);
  overflow-y: auto;
  max-height: 0;
  opacity: 0;
  z-index: var(--z-navbar);
  flex-direction: column;
  gap: var(--space-4);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    padding 0.35s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  pointer-events: none;
}

.navbar__mobile-menu.is-open {
  max-height: calc(100vh - var(--navbar-height) - 40px);
  max-height: min(480px, calc(100dvh - var(--navbar-height) - 40px));
  opacity: 1;
  padding: var(--space-5) var(--container-padding-x) var(--space-6);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar__mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: var(--radius-md);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.navbar__mobile-nav-link:hover,
.navbar__mobile-nav-link.is-active {
  color: var(--color-primary);
  background: rgba(var(--rgb-primary), 0.06);
}

.navbar__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-gray-100);
}

/* Body offset for fixed navbar */
body {
  padding-top: var(--navbar-height);
}

/* ──────────────────────────────────────────
   7. FOOTER
   ────────────────────────────────────────── */
.footer {
  background: var(--gradient-footer);
  color: var(--color-white);
  min-height: var(--footer-height);
  display: flex;
  flex-direction: column;
}

/* ── Main content area ── */
.footer__main {
  flex: 1;
  padding-block: var(--footer-padding-top) var(--footer-padding-bottom);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: var(--footer-grid-gap);
  align-items: start;
}

/* ── Brand Column ── */
.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.footer__logo-img {
  height: var(--footer-logo-height);
  width: auto;
  object-fit: contain;
}

.footer__description {
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.7);
  line-height: 1.9;
  max-width: var(--footer-description-max-w);
  margin-bottom: var(--space-7);
}

/* ── Social Icons ── */
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--footer-social-size);
  height: var(--footer-social-size);
  border-radius: var(--radius-full);
  background: rgba(var(--rgb-white), 0.08);
  border: 1px solid rgba(var(--rgb-white), 0.14);
  color: rgba(var(--rgb-white), 0.75);
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-social-hover);
}

/* ── Column shared ── */
.footer__col-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

/* ── Quick Links ── */
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links-list a {
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.6);
  transition:
    color var(--transition-fast),
    padding-right var(--transition-fast);
  display: inline-block;
  text-decoration: none;
}

.footer__links-list a:hover {
  color: var(--color-white);
  padding-inline-start: var(--space-2);
}

/* ── Contact List ── */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.65);
  text-decoration: none;
}

.footer__contact-item a {
  color: rgba(var(--rgb-white), 0.65);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__contact-icon {
  width: var(--footer-contact-icon-size);
  height: var(--footer-contact-icon-size);
  border-radius: var(--radius-sm);
  background: rgba(var(--rgb-white), 0.07);
  border: 1px solid rgba(var(--rgb-white), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: rgba(var(--rgb-white), 0.8);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Download App Buttons ── */
.footer__app-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(var(--rgb-white), 0.07);
  border: 1px solid rgba(var(--rgb-white), 0.15);
  color: var(--color-white);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer__app-btn:hover {
  background: rgba(var(--rgb-white), 0.14);
  border-color: var(--color-teal);
  transform: translateY(-2px);
}

.footer__app-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-white);
}

.footer__app-svg--gp {
  color: inherit;
}

.footer__app-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__app-small {
  font-size: 10px;
  color: rgba(var(--rgb-white), 0.6);
}

.footer__app-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
}

/* ── Payment Methods Strip ── */
.footer__payments {
  padding-block: var(--space-5);
}

.footer__payments-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer__pay-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  filter: brightness(1.3);
}

.footer__pay-img:hover {
  opacity: 1;
  filter: brightness(1.6);
}

.footer__pay-img--light {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__pay-img--light:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.footer__pay-img--stc {
  border-radius: 6px;
  opacity: 0.9;
  filter: none;
}

.footer__pay-img--stc:hover {
  opacity: 1;
  filter: none;
}

/* ── QR Code (inside Partners Strip) ── */
.footer__qr-link {
  text-decoration: none;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

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

.footer__qr-card {
  background: #fff;
  border-radius: 6px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow var(--transition-fast);
  line-height: 0;
}

.footer__qr-link:hover .footer__qr-card {
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}

.footer__qr-canvas {
  width: 60px;
  height: 60px;
  display: block;
}

/* ── Partners Strip ── */
.footer__partners {
  padding-block: var(--space-5);
  border-block: 1px solid rgba(var(--rgb-white), 0.08);
}

.footer__partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer__partners-inner--center {
  justify-content: center;
}

/* ── Payment + QR Row ── */
.footer__pay-qr {
  padding-block: var(--space-5);
  border-top: 1px solid rgba(var(--rgb-white), 0.08);
}

.footer__pay-qr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.footer__partners-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: rgba(var(--rgb-white), 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__partners-img {
  height: var(--footer-partners-img-h);
  width: auto;
  object-fit: contain;
}

/* ── Bottom Bar ── */
.footer__bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(var(--rgb-white), 0.07);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.4);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.footer__legal li {
  display: flex;
  align-items: center;
}

.footer__legal li + li::before {
  content: "|";
  color: rgba(var(--rgb-white), 0.15);
  margin-inline-end: var(--space-2);
}

.footer__legal a {
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.4);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__legal a:hover {
  color: rgba(var(--rgb-white), 0.85);
}

/* ──────────────────────────────────────────
   8. HERO SECTION
   ────────────────────────────────────────── */

/* ── Shell ── */
.hero {
  background: var(--gradient-bg-primary);
  overflow: hidden;
  position: relative;
  padding-block: var(--hero-padding-top) var(--hero-padding-bottom);
}

/* Radial glow blobs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(var(--rgb-primary), 0.22) 0%,
    transparent 65%
  );
  top: -280px;
  left: -180px;
}
.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(var(--rgb-secondary), 0.15) 0%,
    transparent 65%
  );
  bottom: -200px;
  right: -100px;
}

/* ── Two-column layout ── */
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* ── Text content ── */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Trust badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 18px;
  background: rgba(var(--rgb-white), 0.1);
  border: 1px solid rgba(var(--rgb-white), 0.18);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(var(--rgb-white), 0.9);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(var(--rgb-success), 0.28);
  flex-shrink: 0;
}

/* Headline */
.hero__title {
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  color: var(--color-white);
  line-height: var(--hero-title-line-height);
  letter-spacing: 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__title-accent {
  background: var(--gradient-accent-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 18px;
  align-self: flex-start;
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 100%;
  height: 14px;
  background-image: url("../assets/images/hero/line.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Subtitle */
.hero__subtitle {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: rgba(var(--rgb-white), 0.7);
  line-height: 1.9;
  margin-bottom: var(--space-8);
  max-width: var(--hero-subtitle-max-width);
}

/* CTA Buttons */
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

/* Outline button for hero (white) */
.btn--hero-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(var(--rgb-white), 0.85);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.btn--hero-outline:hover {
  background: rgba(var(--rgb-white), 0.12);
  border-color: var(--color-white);
  opacity: 1;
}

/* Trust indicators */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.65);
}

.hero__trust-item .fa-circle-check {
  color: var(--color-success);
  font-size: 15px;
}

/* Partners logos */
.hero__partners {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__partners-label {
  font-size: var(--font-size-xs);
  color: rgba(var(--rgb-white), 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__partners-img {
  height: var(--footer-logo-height);
  width: auto;
  object-fit: contain;
}

/* ── Visual Composition ── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__visual-inner {
  position: relative;
  width: 100%;
  max-width: var(--hero-visual-max-width);
  /* space for floating cards so they don't clip */
  padding: var(--space-10) 30px 60px 30px;
}

/* Main device */
.hero__device {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: var(--shadow-device);
}

/* Floating cards */
.hero__float {
  position: absolute;
  z-index: 3;
  filter: var(--shadow-float);
}

/* Revenue card — bottom left */
.hero__float--left {
  width: var(--hero-float-size);
  bottom: 18px;
  left: -14px;
  animation: heroFloatA 3.2s ease-in-out infinite;
}

/* Invoice sent card — overlapping device top area */
.hero__float--right {
  width: var(--hero-float-size);
  top: 22%;
  right: 2%;
  animation: heroFloatB 3.8s ease-in-out infinite;
}

@keyframes heroFloatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes heroFloatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ──────────────────────────────────────────
   9. SCROLL REVEAL
   ────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   10. SECTIONS — SHARED
   ────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(var(--rgb-primary), 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(var(--rgb-primary), 0.15);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--section-title-size);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  line-height: 1.25;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-1);
}

.section-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-gray-500);
  max-width: var(--section-subtitle-max-w);
  margin-inline: auto;
  line-height: var(--line-height-loose);
}

/*
 * u-wave-underline — Utility: wavy SVG underline beneath any inline text
 * Usage: <span class="u-wave-underline">الكلمة</span> — works anywhere in a sentence.
 * The wave is painted as a background so it always sits directly under the
 * wrapped text regardless of text-align, direction, or position in the line.
 * Alias .section-title__underline kept for backward compatibility.
 */
.u-wave-underline,
.section-title__underline {
  display: inline-block;
  width: max-content; /* force width = text content width, never full line */
  max-width: 100%; /* prevent overflow on small screens */
  padding-bottom: 20px; /* room for the wave below the text */
  background-image: url("../assets/images/hero/line.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 14px;
}

/* ──────────────────────────────────────────
   11. FEATURES SECTION
   ────────────────────────────────────────── */

.features {
  padding-block: var(--section-padding);
  background: var(--color-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

/* Card */
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    box-shadow var(--transition-normal),
    transform var(--transition-normal),
    border-color var(--transition-normal);
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(var(--rgb-black), 0.09);
  transform: translateY(-4px);
  border-color: rgba(var(--rgb-primary), 0.15);
}

/* Icon */
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  font-size: 22px;
  color: var(--color-white);
}

.feature-card__icon--sales {
  background: var(--gradient-icon-sales);
}
.feature-card__icon--purchases {
  background: var(--gradient-icon-purchases);
}
.feature-card__icon--accounting {
  background: var(--gradient-icon-accounting);
}
.feature-card__icon--reports {
  background: var(--gradient-icon-reports);
}
.feature-card__icon--documents {
  background: var(--gradient-icon-documents);
}
.feature-card__icon--pos {
  background: var(--gradient-icon-pos);
}

/* Text */
.feature-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}

.feature-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  line-height: var(--line-height-loose);
}

/* CTA */
.features__cta {
  text-align: center;
}

/* ──────────────────────────────────────────
   12. PROMO SECTION
   ────────────────────────────────────────── */

.promo {
  padding-block: var(--section-padding);
  background: var(--gradient-promo-bg);
  overflow: hidden;
}

/* Two-column grid */
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
}

/* ── Content ── */
.promo__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.promo__content .section-badge {
  margin-bottom: var(--space-4);
}

.promo__title {
  font-size: var(--section-title-size);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  line-height: 1.25;
  margin-bottom: var(--space-5);
}

.promo__desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-8);
  max-width: 440px;
}

/* Feature bullets */
.promo__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.promo__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.promo__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: var(--font-size-base);
  color: var(--color-white);
  flex-shrink: 0;
}

.promo__feature-icon--efficiency,
.promo__feature-icon--cloud,
.promo__feature-icon--support {
  background: var(--gradient-promo-icon);
}

.promo__feature-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-1);
}

.promo__feature-desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  line-height: var(--line-height-normal);
}

/* Stats */
.promo__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--space-8);
  width: 100%;
}

.promo__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  padding-inline-end: var(--space-8);
}

.promo__stat + .promo__stat {
  padding-inline-start: var(--space-8);
  padding-inline-end: var(--space-8);
  border-inline-start: 1px solid var(--color-gray-200);
}

.promo__stat:last-child {
  padding-inline-end: 0;
}

.promo__stat-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  line-height: 1;
  background: var(--gradient-promo-icon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo__stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
}

/* ── Visual ── */
.promo__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo__visual-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.promo__device {
  width: 100%;
  height: auto;
  display: block;
  filter: var(--shadow-device);
}

.promo__paper {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 150px;
  height: auto;
  animation: heroFloatA 3.5s ease-in-out infinite;
  filter: var(--shadow-float);
}

/* ──────────────────────────────────────────
   13. PRICING SECTION
   ────────────────────────────────────────── */

.pricing {
  padding-block: var(--section-padding);
  background: var(--color-white);
}

/* ── Toggle ── */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  margin-bottom: var(--space-12);
}

.pricing__toggle-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-400);
  cursor: pointer;
  transition: color var(--transition-base);
}

.pricing__toggle-label.is-active {
  color: var(--color-brand-mid);
  font-weight: var(--font-weight-semibold);
}

.pricing__toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: rgba(var(--rgb-primary), 0.12);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  padding: 0;
  flex-shrink: 0;
}

.pricing__toggle-switch[aria-checked="true"] {
  background: linear-gradient(90deg, #9810fa 0%, #e60076 100%);
}

.pricing__toggle-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1px 4px rgba(var(--rgb-black), 0.2);
  transition: transform var(--transition-base);
}

.pricing__toggle-switch[aria-checked="true"] .pricing__toggle-thumb {
  transform: translateX(-24px);
}

/* Yearly savings badge */
.pricing__yearly-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(var(--rgb-success), 0.12);
  color: var(--color-success);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Grid ── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  padding-top: 24px; /* room for the featured badge that sticks out above */
}

/* ── Card base ── */
.pricing-card {
  position: relative;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 20px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(var(--rgb-primary), 0.12);
  transform: translateY(-4px);
}

/* ── Featured card — elevated ── */
.pricing-card--featured {
  transform: translateY(-24px);
  margin-bottom: -24px;
}

.pricing-card--featured:hover {
  transform: translateY(-28px);
}

/* ── Popular badge — centered above the card ── */
.pricing-card__popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #9810fa 0%, #e60076 100%);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(var(--rgb-primary), 0.35);
}

.pricing-card__popular .fa-star {
  font-size: 10px;
  color: var(--color-accent-yellow);
}

/* ── Header ── */
.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pricing-card__name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0;
}

.pricing-card__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  margin: 0;
}

/* ── Price ── */
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(var(--rgb-primary), 0.08);
}

/* Gradient amount text — all cards */
.pricing-card__amount {
  font-size: 3.25rem;
  font-weight: var(--font-weight-black);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #9810fa 0%, #e60076 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.35s ease;
}

.pricing-card__price-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
}

.pricing-card__currency {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-700);
}

.pricing-card__period {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
}

/* ── CTA button ── */
.pricing-card__btn {
  width: 100%;
  justify-content: center;
}

/* btn--soft: outlined purple for non-featured cards */
.btn--soft {
  background: rgba(var(--rgb-primary), 0.06);
  color: var(--color-brand-mid);
  font-weight: var(--font-weight-semibold);
  border: 1.5px solid rgba(var(--rgb-primary), 0.2);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.btn--soft:hover {
  background: rgba(var(--rgb-primary), 0.12);
  border-color: rgba(var(--rgb-primary), 0.4);
  box-shadow: 0 4px 16px rgba(var(--rgb-primary), 0.15);
}

/* ── Features list ── */
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.pricing-card__features .fa-circle-check {
  color: var(--color-teal);
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Footer CTA ── */
.pricing__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-14);
  padding: var(--space-8) var(--space-10);
  background: rgba(var(--rgb-primary), 0.04);
  border: 1px solid rgba(var(--rgb-primary), 0.1);
  border-radius: var(--radius-2xl);
}

.pricing__footer-text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #4a5565;
  margin: 0;
}

.pricing__footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: #9810fa;
  text-decoration: none;
  transition:
    gap var(--transition-base),
    opacity var(--transition-base);
}

.pricing__footer-link:hover {
  opacity: 0.8;
  gap: var(--space-3);
}

/* ──────────────────────────────────────────
   14. FAQ SECTION
   ────────────────────────────────────────── */

.faq {
  padding-block: var(--section-padding);
  background: var(--color-white);
}

/* Badge row — badge + icon side by side */
.faq__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  direction: ltr; /* force LTR so icon stays left, badge stays right consistently */
}

/* Badge text — Figma: 13.8px bold #9810FA */
.faq__badge-row .section-badge {
  font-family: var(--font-primary);
  font-size: 13.8px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  color: #9810fa;
  background: rgba(152, 16, 250, 0.08);
  border: none;
  padding: 6px 16px;
  margin-bottom: 0;
}

/* Icon box — rounded square, gradient bg, purple ? */
.faq__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
  color: #9810fa;
  font-size: 20px;
}

/* ── Accordion list ── */
.faq__list {
  max-width: 896px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* ── Item base ── */
.faq__item {
  background: #ffffff;
  border: 2px solid rgba(173, 70, 255, 0.18); /* #AD46FF 18% — closed state */
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

/* Open item — solid #AD46FF border */
.faq__item.is-open {
  border: 2px solid #ad46ff;
  box-shadow: 0 4px 24px rgba(173, 70, 255, 0.14);
}

/* ── Toggle button ── */
.faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 50px;
  padding: 17px 27px; /* Figma: top 16.67px, left 27.07px */
  background: none;
  border: none;
  cursor: pointer;
  text-align: start;
}

.faq__question {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  color: #101828;
  flex: 1;
}

/* Toggle icon — circle */
.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-200);
  color: var(--color-gray-400);
  font-size: 13px;
  flex-shrink: 0;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

/* Active icon — gradient fill */
.faq__item.is-open .faq__icon {
  background: linear-gradient(135deg, #9810fa 0%, #e60076 100%);
  border-color: transparent;
  color: var(--color-white);
}

/* ── Answer panel ── */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-slow);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  padding: 0 var(--space-6) 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  color: #4a5565;
  text-align: start;
  transition: padding var(--transition-slow);
}

.faq__item.is-open .faq__answer > p {
  padding-bottom: var(--space-5);
}

/* ── Footer card ── */
.faq__footer {
  max-width: 896px;
  margin-inline: auto;
  background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
  border: 1px solid #f3e8ff;
  border-radius: 16px;
  padding: var(--space-10);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.faq__footer-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0;
}

.faq__footer-text {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  margin: 0;
}

.faq__footer .btn {
  margin-top: var(--space-2);
  min-width: 136px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9810fa 0%, #e60076 100%);
  color: var(--color-white);
  border: none;
  font-weight: var(--font-weight-semibold);
  justify-content: center;
}

.faq__footer .btn:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(var(--rgb-primary), 0.4);
}

/* ──────────────────────────────────────────
   15. BLOG SECTION
   ────────────────────────────────────────── */

.blog {
  padding-block: var(--section-padding);
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
}

/* Badge — below icon, content-width only */
.blog__badge {
  display: inline-block !important;
  height: 36px !important;
  line-height: 36px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #9810fa !important;
  background: #f3e8ff !important;
  border: none !important;
  border-radius: 9999px !important;
  margin-bottom: var(--space-4);
}

/* Icon — below badge */
.blog__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f3e8ff;
  color: #9810fa;
  font-size: 26px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

/* ── Grid ── */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

/* ── Card ── */
.blog-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(var(--rgb-primary), 0.1);
  transform: translateY(-4px);
}

/* ── Image wrapper ── */
.blog-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 405 / 220;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

/* ── Category tag ── */
.blog-card__tag {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: inline-flex;
  align-items: center;
  background: rgba(var(--rgb-white), 0.92);
  color: #9810fa;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.blog-card__tag--guide {
  color: #059669; /* green for guide tag */
}

/* ── Body ── */
.blog-card__body {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

/* ── Meta (date + reading time) ── */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
}

.blog-card__meta .fa-calendar {
  color: #9810fa;
}

.blog-card__dot {
  color: var(--color-gray-300);
}

/* ── Title ── */
.blog-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  line-height: 1.4;
  margin: 0;
}

/* ── Description ── */
.blog-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  line-height: var(--line-height-loose);
  margin: 0;
  flex: 1;
}

/* ── Read more link ── */
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #9810fa;
  text-decoration: none;
  margin-top: var(--space-1);
  transition:
    gap var(--transition-base),
    opacity var(--transition-base);
}

.blog-card__link:hover {
  gap: var(--space-3);
  opacity: 0.8;
}

/* ── Bottom CTA ── */
.blog__cta {
  text-align: center;
  margin-top: var(--space-10);
}

.blog__cta .btn {
  min-width: 196px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(90deg, #9810fa 0%, #e60076 100%);
  color: var(--color-white);
  border: none;
  font-weight: var(--font-weight-semibold);
  justify-content: center;
}

.blog__cta .btn:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(var(--rgb-primary), 0.4);
}

/* ──────────────────────────────────────────
   16. CTA SECTION
   ────────────────────────────────────────── */

.cta {
  position: relative;
  padding-block: var(--section-padding);
  background: linear-gradient(135deg, #59168b 0%, #6e11b0 50%, #861043 100%);
  overflow: hidden;
  text-align: center;
}

/* ── Sparkle decorations ── */
.cta__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}

.cta__spark {
  position: absolute;
  color: rgba(var(--rgb-white), 0.3);
  line-height: 1;
  animation: ctaSparkle 4s ease-in-out infinite;
}

.cta__spark--1 {
  top: 14%;
  right: 7%;
  font-size: 26px;
  animation-delay: 0s;
}
.cta__spark--2 {
  top: 58%;
  right: 4%;
  font-size: 14px;
  animation-delay: 0.7s;
}
.cta__spark--3 {
  top: 22%;
  left: 9%;
  font-size: 20px;
  animation-delay: 1.1s;
}
.cta__spark--4 {
  top: 72%;
  left: 6%;
  font-size: 11px;
  animation-delay: 0.3s;
}
.cta__spark--5 {
  top: 8%;
  left: 28%;
  font-size: 10px;
  animation-delay: 1.9s;
}
.cta__spark--6 {
  top: 82%;
  right: 22%;
  font-size: 16px;
  animation-delay: 0.5s;
}
.cta__spark--7 {
  top: 40%;
  right: 14%;
  font-size: 12px;
  animation-delay: 1.5s;
}
.cta__spark--8 {
  top: 88%;
  left: 18%;
  font-size: 22px;
  animation-delay: 0.9s;
}

@keyframes ctaSparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translateY(-9px) scale(1.2);
  }
}

/* ── Inner layout ── */
.cta__inner {
  position: relative; /* above sparkles */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 740px;
  margin-inline: auto;
}

/* ── Badge ── */
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1); /* #FFFFFF 10% */
  border: 1px solid rgba(255, 255, 255, 0.2); /* #FFFFFF 20% */
  border-radius: var(--radius-full); /* fully pill */
  padding: 8px 20px;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  backdrop-filter: blur(12px); /* Figma blur: 12 */
  -webkit-backdrop-filter: blur(12px);
}

/* ── Title ── */
.cta__title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0;
  color: #ffffff;
  max-width: 643px;
  margin: 0;
}

/* ── Subtitle ── */
.cta__subtitle {
  font-size: var(--font-size-base);
  color: rgba(var(--rgb-white), 0.8);
  line-height: 1.85;
  max-width: 560px;
  margin: 0;
}

/* ── Buttons ── */
.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

/* Base CTA button shared styles */
.cta__btn {
  min-width: 200px;
  height: 60px;
  border-radius: 10px;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}

/* Primary CTA button — white bg + brand purple text */
.cta__btn.btn--white {
  background: #ffffff;
  color: #9810fa;
  border: none;
  box-shadow: none;
}

.cta__btn.btn--white:hover {
  background: #f3e8ff;
  color: #6e11b0;
  opacity: 1;
  box-shadow: none;
}

/* Outlined white button */
.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(var(--rgb-white), 0.55);
  font-weight: var(--font-weight-semibold);
  transition:
    background var(--transition-base),
    border-color var(--transition-base);
}

.btn--outline-white:hover {
  background: rgba(var(--rgb-white), 0.12);
  border-color: rgba(var(--rgb-white), 0.9);
}

/* ── Trust indicators ── */
.cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.cta__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.85);
}

.cta__trust-item .fa-circle-check {
  color: var(--color-success);
  font-size: 18px;
}

/* ──────────────────────────────────────────
   15. SERVICES PAGE
   ────────────────────────────────────────── */

.services-hero {
  background: linear-gradient(135deg, #101828 0%, #3c0366 50%, #101828 100%);
  padding-block: var(--section-padding);
}

.services-hero__card {
  max-width: 1265px;
  margin-inline: auto;
  padding-block: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
  color: #d6c2ff;
  margin-bottom: 24px;
}

.services-hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;
  color: var(--color-white);
  max-width: 640px;
  margin-bottom: 24px;
}

.services-hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: #cacaca;
  max-width: 780px;
}

/* ── Services Grid ── */

.services-grid-section {
  background: #fdfdfd;
  padding-block: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card--link {
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}

.service-card--link:hover {
  border-color: rgba(var(--rgb-primary), 0.2);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #9810fa;
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1e293b;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4a5565;
}

/* ── Services Animations ── */

@keyframes servicesFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes servicesScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes servicesSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-hero__label {
  animation: servicesSlideDown 0.6s ease both;
  animation-delay: 0.1s;
}

.services-hero__title {
  animation: servicesFadeUp 0.7s ease both;
  animation-delay: 0.25s;
}

.services-hero__desc {
  animation: servicesFadeUp 0.7s ease both;
  animation-delay: 0.45s;
}

/* Staggered card reveal */
.service-card[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card[data-reveal]:nth-child(3n + 2) {
  transition-delay: 0.1s;
}
.service-card[data-reveal]:nth-child(3n + 3) {
  transition-delay: 0.2s;
}

/* Card hover — icon lift + border glow */
.service-card {
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.service-card:hover {
  border-color: rgba(152, 16, 250, 0.2);
}

.service-card__icon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover .service-card__icon {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
  box-shadow: 0 8px 20px rgba(152, 16, 250, 0.15);
}

/* CTA section reveal */
.services-cta[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.services-cta[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-cta__btn {
  position: relative;
  overflow: hidden;
}

.services-cta__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(152, 16, 250, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.services-cta__btn:hover::after {
  transform: translateX(100%);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .services-hero__label,
  .services-hero__title,
  .services-hero__desc {
    animation: none;
    opacity: 1;
  }
  .service-card[data-reveal] {
    transition-duration: 0.01ms;
  }
  .services-cta[data-reveal] {
    transition-duration: 0.01ms;
  }
  .services-cta__btn::after {
    display: none;
  }
}

/* ── Services CTA ── */

.services-cta {
  background: linear-gradient(90deg, #9810fa 0%, #8200db 100%);
  padding-block: 96px;
}

.services-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-cta__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}

.services-cta__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-bottom: 40px;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 219px;
  height: 60px;
  background: #ffffff;
  color: #9810fa;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.services-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ──────────────────────────────────────────
   16. CONTACT PAGE
   ────────────────────────────────────────── */

.contact-layout {
  background: #fdfdfd;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.contact-layout > .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── Contact Hero ── */

.contact-hero {
  background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
  border-bottom: 1px solid #f3f4f6;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.contact-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #9810fa;
  margin-bottom: 16px;
}

.contact-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #1e293b;
  white-space: nowrap;
  margin-bottom: 16px;
}

.contact-hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: #4a5565;
  max-width: 750px;
}

/* ── Contact Content Grid ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* ── Contact Info (Right) ── */

.contact-info__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #101828;
  margin-bottom: 16px;
}

.contact-info__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 40px;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
  border-bottom: 1px solid #f3f4f6;
}

.contact-info__item:first-child {
  padding-top: 0;
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3e8ff;
  color: #9810fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  order: 1;
  margin-inline-start: auto;
}

.contact-info__icon--green {
  background: #ecfdf5;
  color: #10b981;
}

.contact-info__icon--purple {
  background: #f0ebff;
  color: #9810fa;
}

.contact-info__item-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: #101828;
  margin-bottom: 4px;
}

.contact-info__item-value {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #4a5565;
  font-style: normal;
}

a.contact-info__item-value:hover {
  color: #9810fa;
}

/* WhatsApp CTA Card */
.contact-whatsapp {
  background: linear-gradient(135deg, #101828 0%, #3c0366 50%, #101828 100%);
  border-radius: 32px;
  padding: 32px;
  text-align: start;
}

.contact-whatsapp__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-whatsapp__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #cacaca;
  margin-bottom: 24px;
}

.contact-whatsapp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background: #25d366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--transition-normal),
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.contact-whatsapp__btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp__btn i {
  font-size: 20px;
}

/* ── Contact Form (Left) ── */

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 32px;
  padding: 48px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #101828;
  margin-bottom: 8px;
  text-align: start;
}

.contact-form__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #4a5565;
  text-align: start;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #344054;
  display: flex;
  align-items: center;
  gap: 2px;
}

.contact-form__req {
  color: #e60076;
}

.contact-form__input {
  height: 50px;
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  color: #101828;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.contact-form__input::placeholder {
  color: #9ca3af;
}

.contact-form__input:focus {
  border-color: #9810fa;
  box-shadow: 0 0 0 3px rgba(152, 16, 250, 0.08);
  background: #ffffff;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  padding-inline-end: 16px;
  padding-inline-start: 40px;
  cursor: pointer;
}

[dir="ltr"] .contact-form__select {
  background-position: calc(100% - 16px) center;
  padding-inline-start: 16px;
  padding-inline-end: 40px;
}

.contact-form__textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 24px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-end;
  min-width: 223px;
  height: 56px;
  padding: 0 32px;
  background: linear-gradient(90deg, #9810fa 0%, #8200db 100%);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(152, 16, 250, 0.3);
}

.contact-form__submit i {
  font-size: 15px;
}

/* ──────────────────────────────────────────
   17. BLOG PAGE
   ────────────────────────────────────────── */

/* ── Blog Hero ── */
.blog-page-hero {
  background: #f8fafc;
  padding: 80px 0 48px;
  text-align: center;
}

.blog-page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-page-hero__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #9810fa;
  margin-bottom: 12px;
}

.blog-page-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #1e293b;
  margin-bottom: 16px;
}

.blog-page-hero__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #4a5565;
  max-width: 640px;
}

/* ── Blog Content ── */
.blog-page {
  background: #f8fafc;
  padding-bottom: var(--section-padding);
}

/* ── Filter Tabs ── */
.blog-page__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-page__filter {
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #4a5565;
  background: transparent;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.blog-page__filter:hover {
  color: #9810fa;
  border-color: #9810fa;
  background: rgba(152, 16, 250, 0.04);
}

.blog-page__filter.is-active {
  color: #ffffff;
  background: #9810fa;
  border-color: #9810fa;
}

/* ── Blog Grid ── */
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* ── Blog Page Card ── */
.bp-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}

.bp-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.bp-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.bp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bp-card:hover .bp-card__img {
  transform: scale(1.05);
}

.bp-card__tag {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #9810fa;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
}

.bp-card__body {
  padding: 24px;
}

.bp-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  margin-bottom: 12px;
}

.bp-card__meta i {
  margin-inline-end: 4px;
}

.bp-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #1e293b;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bp-card__title a {
  color: inherit;
  text-decoration: none;
}

.bp-card__title a:hover {
  color: #9810fa;
}

.bp-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pagination ── */
.blog-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-page__page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #4a5565;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.blog-page__page-btn:hover:not(:disabled) {
  color: #9810fa;
  border-color: #9810fa;
}

.blog-page__page-btn.is-active {
  color: #ffffff;
  background: #9810fa;
  border-color: #9810fa;
}

.blog-page__page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

[dir="rtl"] .blog-page__page-btn--prev i,
[dir="rtl"] .blog-page__page-btn--next i {
  transform: scaleX(-1);
}

/* ──────────────────────────────────────────
   18. ARTICLE / BLOG DETAIL PAGE
   ────────────────────────────────────────── */

.article-page {
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: var(--section-padding);
}

.article-page__wrapper {
  max-width: 1200px;
  margin-inline: auto;
}

.article-page__header {
  max-width: 896px;
  margin-inline: auto;
}

/* ── Article Header ── */
.article-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.article-page__tag {
  display: inline-block;
  padding: 6px 20px;
  font-size: 13.7px;
  font-weight: 700;
  line-height: 20px;
  color: #8200db;
  background: #f3e8ff;
  border-radius: 100px;
  margin-bottom: 24px;
}

.article-page__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #0f172b;
  margin-bottom: 20px;
}

.article-page__excerpt {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: #4a5565;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.article-page__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
  margin-bottom: 32px;
}

.article-page__meta i {
  margin-inline-end: 6px;
  color: #9810fa;
}

.article-page__hero-img {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.article-page__hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Article Body (2-column) ── */
.article-page__body {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 80px;
}

.article-page__content {
  order: 2;
}

.article-page__sidebar {
  order: 1;
  align-self: stretch;
}

/* ── Article Content (main column) ── */
.article-page__content {
  max-width: 768px;
}

.article-page__content > p:first-child {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: #4a5565;
  margin-bottom: 24px;
}

.article-page__content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #0f172b;
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-page__content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #0f172b;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-page__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #4a5565;
  margin-bottom: 20px;
}

/* ── Article Lists ── */
.article-page__list {
  list-style: disc;
  padding-inline-start: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-page__list li {
  font-size: 17px;
  line-height: 30px;
  color: #4a5565;
}

.article-page__list strong {
  color: #1e293b;
}

/* ── Article Inline Link ── */
.article-page__link {
  color: #0f172b;
  font-size: 17.6px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page__link:hover {
  color: #9810fa;
}

/* ── Article Figure ── */
.article-page__figure {
  margin-block: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.article-page__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-page__figure figcaption {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #9ca3af;
  text-align: center;
  padding: 12px 16px;
  background: #f9fafb;
}

/* ── Article Blockquote ── */
.article-page__quote {
  background: #f8fafc;
  border-inline-end: 4px solid #1d293d;
  border-radius: 14px 0 0 14px;
  padding: 24px 32px;
  margin-block: 32px;
}

[dir="ltr"] .article-page__quote {
  border-radius: 0 14px 14px 0;
  border-inline-end: none;
  border-inline-start: 4px solid #1d293d;
}

.article-page__quote p {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #1d293d;
  text-align: start;
  margin-bottom: 0;
}

/* ── Article Feature Mini Cards ── */
.article-page__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block: 28px;
}

.article-page__feat-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.article-page__feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.article-page__feat-icon--blue {
  background: #eff6ff;
  color: #3b82f6;
}

.article-page__feat-icon--green {
  background: #ecfdf5;
  color: #10b981;
}

.article-page__feat-card h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #1e293b;
  margin-bottom: 8px;
}

.article-page__feat-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #64748b;
  margin-bottom: 0;
}

/* ── Article Tip Card ── */
.article-page__tip {
  background: #faf5ff;
  border-inline-end: 4px solid #9810fa;
  border-radius: 0 16px 16px 0;
  padding: 32px;
  margin-block: 32px;
}

[dir="ltr"] .article-page__tip {
  border-radius: 16px 0 0 16px;
}

.article-page__tip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #59168b;
  margin-bottom: 12px;
}

.article-page__tip-header i {
  font-size: 20px;
}

.article-page__tip p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #4a5565;
  margin-bottom: 0;
}

/* ── Article Sidebar ── */
.article-page__sidebar {
  position: relative;
}

.article-page__sidebar-inner {
  position: sticky;
  top: calc(var(--navbar-height) + 32px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Table of Contents ── */
.article-page__toc-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #101828;
  margin-bottom: 16px;
}

.article-page__toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-page__toc-list li {
  border: none;
}

.article-page__toc-list a {
  display: block;
  padding: 10px 16px;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4a5565;
  border-inline-end: 2px solid transparent;
  border-radius: 8px 0 0 8px;
  transition: all var(--transition-fast);
}

[dir="ltr"] .article-page__toc-list a {
  border-radius: 0 8px 8px 0;
  border-inline-end: none;
  border-inline-start: 2px solid transparent;
}

.article-page__toc-list a:hover {
  color: #9810fa;
}

.article-page__toc-list li.is-active a {
  color: #9810fa;
  font-weight: 600;
  background: rgba(250, 245, 255, 0.5);
  border-inline-end-color: #9810fa;
}

[dir="ltr"] .article-page__toc-list li.is-active a {
  border-inline-start-color: #9810fa;
}

/* Sidebar share */
.article-page__sidebar .article-page__share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-page__sidebar .article-page__share-btns {
  display: flex;
  gap: 8px;
}

/* ── Article Footer ── */
.article-page__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
}

.article-page__share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-page__share-label {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}

.article-page__share-btns {
  display: flex;
  gap: 8px;
}

.article-page__share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4a5565;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.article-page__share-btn:hover {
  color: #9810fa;
  border-color: #9810fa;
  background: #f3e8ff;
}

.article-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #9810fa;
  transition: opacity var(--transition-fast);
}

.article-page__back:hover {
  opacity: 0.7;
}

[dir="ltr"] .article-page__back i {
  transform: scaleX(-1);
}

/* ── Related Articles ── */
.article-related {
  background: #f8fafc;
  padding-block: var(--section-padding);
}

.article-related__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.article-related__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #1e293b;
  margin-bottom: 8px;
}

.article-related__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #64748b;
}

.article-related__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #9810fa;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 8px;
}

.article-related__link:hover {
  opacity: 0.7;
}

[dir="ltr"] .article-related__link i {
  transform: scaleX(-1);
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Article CTA Banner ── */
.article-cta {
  padding-block: var(--section-padding);
  background: #ffffff;
}

.article-cta__inner {
  background: linear-gradient(90deg, #59168b 0%, #201e43 100%);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(89, 22, 139, 0.2);
  padding: 64px 48px;
  text-align: center;
  max-width: 1088px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.article-cta__inner::before,
.article-cta__inner::after {
  content: "";
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(64px);
}

.article-cta__inner::before {
  background: rgba(43, 127, 255, 0.2);
  bottom: -40%;
  left: -10%;
}

.article-cta__inner::after {
  background: rgba(173, 70, 255, 0.3);
  top: -50%;
  right: -5%;
}

.article-cta__title,
.article-cta__desc,
.article-cta__actions {
  position: relative;
  z-index: 1;
}

.article-cta__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}

.article-cta__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.article-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-cta__btn {
  min-width: 180px;
  height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-cta .btn--white {
  background: #ffffff;
  color: #9810fa;
  border: none;
}

.article-cta .btn--white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.article-cta .btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.article-cta .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ──────────────────────────────────────────
   19. ABOUT PAGE
   ────────────────────────────────────────── */

.about-hero {
  background: #FAF5FF;
  padding-block: var(--section-padding) 0;
}

.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  max-width: 780px;
  margin-inline: auto;
}

.about-hero .section-badge {
  background: var(--color-primary-50);
  color: var(--color-brand-mid);
  border: none;
  font-size: 13.8px;
  font-weight: var(--font-weight-bold);
  line-height: 20px;
  padding: 6px 18px;
}

.about-hero__title {
  font-size: 60px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 75px;
}

.about-hero__title-gradient {
  background: linear-gradient(90deg, #9810FA 0%, #155DFC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__desc {
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  color: #4A5565;
  line-height: 32.5px;
  max-width: 620px;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin-top: var(--space-16);
  padding: var(--space-12) 0;
  border-radius: var(--radius-xl);
  border-top: 0.67px solid #F3F4F6;
  border-bottom: 0.67px solid #F3F4F6;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  position: relative;
}

.about-hero__stat + .about-hero__stat::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--color-gray-200);
}

.about-hero__stat-value {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  line-height: 40px;
  color: #0F172B;
}

.about-hero__stat-label {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 20px;
  color: #6A7282;
}

/* ── About Story ── */
.about-story {
  background: #F8FAFC;
  padding-block: var(--section-padding);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
}

.about-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-story__badge {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.about-story__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 45px;
  margin-bottom: var(--space-6);
}

.about-story__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-story__text p {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #4A5565;
  line-height: 29.25px;
}

.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About Mission & Vision ── */
.about-mv {
  background: #F8FAFC;
  padding-block: var(--section-padding);
}

.about-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.about-mv__card {
  position: relative;
  border-radius: 24px;
  padding: var(--space-8);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  min-height: 272px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Mission card — dark purple gradient */
.about-mv__card--mission {
  background: linear-gradient(135deg, #59168B 0%, #201E43 100%);
}

/* Vision card — white */
.about-mv__card--vision {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
}

/* SVG decoration */
.about-mv__card--mission::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 368px;
  width: 192px;
  height: 192px;
  background: url("../assets/images/blog/blog-details/circle-white.svg") no-repeat center / contain;
  pointer-events: none;
}

.about-mv__card--vision::before {
  content: "";
  position: absolute;
  top: 32.67px;
  left: 367.34px;
  width: 192px;
  height: 192px;
  background: url("../assets/images/blog/blog-details/vision.svg") no-repeat center / contain;
  pointer-events: none;
}

.about-mv__icon {
  width: 56px;
  height: 56px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.about-mv__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-mv__card-content {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.about-mv__card-title {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  line-height: 36px;
  position: relative;
  z-index: 1;
}

.about-mv__card--mission .about-mv__card-title {
  color: var(--color-white);
}

.about-mv__card--vision .about-mv__card-title {
  color: #0F172B;
}

.about-mv__card-desc {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  line-height: 29.25px;
  position: relative;
  z-index: 1;
}

.about-mv__card--mission .about-mv__card-desc {
  color: #F3E8FF;
}

.about-mv__card--vision .about-mv__card-desc {
  color: #4A5565;
}

/* ── About Values ── */
.about-values {
  background: var(--color-white);
  padding-block: var(--section-padding);
}

.about-values__header {
  text-align: center;
  margin-bottom: var(--space-14);
}

.about-values__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 45px;
  margin-bottom: var(--space-3);
}

.about-values__subtitle {
  font-size: 16px;
  color: #6A7282;
  line-height: 26px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.about-values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.004);
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.about-values__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FAF5FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #C084FC;
  margin-bottom: var(--space-1);
}

.about-values__item-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 24px;
}

.about-values__item-desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 22.75px;
}

/* ── About Why & Timeline ── */
.about-wt {
  background: #F8FAFC;
  padding-block: var(--section-padding);
}

.about-wt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Why Choose Us */
.about-why__title {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 36px;
  margin-bottom: var(--space-8);
}

.about-why__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-why__item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: var(--space-3);
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: var(--space-6) var(--space-6);
  min-height: 81px;
}

.about-why__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #22c55e;
  font-size: 20px;
}

.about-why__item-text {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #1D293D;
  line-height: 28px;
}

/* Timeline */
.about-timeline__title {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-8);
}

.about-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-inline-start: var(--space-8);
}

.about-timeline__list::before {
  content: "";
  position: absolute;
  inset-inline-start: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #F3E8FF;
}

.about-timeline__item {
  position: relative;
  padding-bottom: var(--space-8);
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__dot {
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-8) + 1px);
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-white);
  box-sizing: border-box;
}

.about-timeline__year {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 24px;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-1);
}

.about-timeline__item-title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 28px;
  margin-bottom: var(--space-1);
}

.about-timeline__item-desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 22px;
}


/* ── Sales Page ── */
.sales-hero {
  background: linear-gradient(180deg, #F8F5FF 0%, #FFFFFF 100%);
  padding-top: var(--section-padding);
  padding-bottom: var(--space-12);
}

.sales-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.sales-hero__title {
  font-size: 60px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 75px;
}

.sales-hero__title-gradient {
  display: block;
  background: linear-gradient(90deg, #9810FA 0%, #155DFC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sales-hero__desc {
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  color: #4A5565;
  line-height: 32.5px;
  max-width: 680px;
}

.sales-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

.sales-hero__btn {
  min-width: 180px;
  height: 52px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}

.sales-hero__video {
  max-width: 1088px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0px 20px 50px -10px rgba(0, 0, 0, 0.15);
}

.sales-hero__video img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Reports Hero Visual ── */
.reports-hero__visual {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  isolation: isolate;
}

.reports-hero__blur {
  position: absolute;
  left: -120px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(190, 219, 255, 0.35);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.reports-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0px 20px 50px -10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Sales Features ── */
.sales-features {
  background: var(--color-white);
  padding-block: var(--space-12) var(--space-14);
}

.sales-features__header {
  text-align: right;
  margin-bottom: var(--space-10);
}

.sales-features__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-4);
}

.sales-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.sales-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-10);
  background: #FCFCFC;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: var(--space-8);
}

.sales-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sales-feature__image img {
  width: 100%;
  height: auto;
  display: block;
}

.sales-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.sales-feature__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0EA5E9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.sales-feature__content-title {
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 36px;
}

.sales-feature__content-desc {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: #4A5565;
  line-height: 28px;
  max-width: 460px;
}

/* ── Sales Cards (2-col mini features) ── */
.sales-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.sales-card {
  background: #FCFCFC;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  min-height: 400px;
}

.sales-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.sales-card__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0EA5E9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  align-self: flex-start;
}

.sales-card__title {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 30px;
}

.sales-card__desc {
  font-size: 15px;
  color: #4A5565;
  line-height: 26px;
}

.sales-card__preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Payment status pills */
.sales-card__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-5);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 20px;
}

.sales-card__pill--success {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.sales-card__pill--danger {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.sales-card__pill-icon {
  font-size: 16px;
}

/* Client list items */
.sales-card__client {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #F3F4F6;
  border-radius: var(--radius-md);
}

.sales-card__client-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.sales-card__client-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sales-card__client-name {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: #0F172B;
}

.sales-card__client-balance {
  font-size: 12px;
  color: #6A7282;
}

/* Tax rows */
.sales-card__tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid #F3F4F6;
}

.sales-card__tax-row:last-child {
  border-bottom: none;
}

.sales-card__tax-label {
  font-size: 14px;
  color: #6A7282;
}

.sales-card__tax-value {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: #0F172B;
}

.sales-card__tax-row--total .sales-card__tax-label {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.sales-card__tax-row--total .sales-card__tax-value {
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

/* ZATCA badge */
.sales-card__zatca {
  background: #F9FAFB;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales-card__zatca img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Invoice row */
.sales-card__invoice-row {
  padding: var(--space-3) var(--space-4);
  background: #F9FAFB;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sales-card__invoice-label {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

.sales-card__invoice-meta {
  font-size: 12px;
  color: #6A7282;
}

/* Expense rows */
.sales-card__expense-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.sales-card__expense-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sales-card__expense-icon--blue {
  background: #EFF6FF;
  color: #3B82F6;
}

.sales-card__expense-icon--green {
  background: #ECFDF5;
  color: #10B981;
}

.sales-card__expense-icon--purple {
  background: #FAF5FF;
  color: #9810FA;
}

.sales-card__expense-name {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: #0F172B;
  flex: 1;
}

.sales-card__expense-amount {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

/* PO rows */
.sales-card__po-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #F9FAFB;
  border-radius: var(--radius-md);
}

.sales-card__po-id {
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  color: #6A7282;
  flex-shrink: 0;
}

.sales-card__po-vendor {
  font-size: 14px;
  color: #0F172B;
  flex: 1;
}

.sales-card__pill--warning {
  background: #FFFBEB;
  color: #D97706;
  border: 1px solid #FDE68A;
}

/* Chart preview */
.sales-card__preview--chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sales-card__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  height: 120px;
}

.sales-card__chart-bar {
  flex: 1;
  background: #E5E7EB;
  border-radius: 6px 6px 0 0;
  min-height: 20px;
}

.sales-card__chart-bar--highlight {
  background: linear-gradient(180deg, #9810FA 0%, #6D28D9 100%);
}

.sales-card__chart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid #F3F4F6;
}

.sales-card__chart-label {
  font-size: 13px;
  color: #6A7282;
}

.sales-card__chart-value {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

/* ── Reports Charts (dark section) ── */
.reports-charts {
  background: #0F172B;
  padding-block: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.reports-charts__glow--purple {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(173, 70, 255, 0.1);
  filter: blur(100px);
  pointer-events: none;
}

.reports-charts__glow--blue {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(43, 127, 255, 0.1);
  filter: blur(100px);
  pointer-events: none;
}

.reports-charts__header {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.reports-charts__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.reports-charts__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 28px;
}

.reports-charts > .container {
  position: relative;
  z-index: 1;
}

.reports-charts__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.reports-charts__grid {
  display: flex;
  gap: var(--space-6);
  max-width: 1280px;
  margin-inline: auto;
}

.reports-charts__img {
  display: block;
  border-radius: 24px;
  height: auto;
}

.reports-charts__img:first-child {
  flex: 1.8;
  min-width: 0;
  width: 100%;
}

.reports-charts__img:last-child {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* ── Voucher Feature Section ── */
.voucher-feature {
  background: var(--color-white);
  padding-block: var(--space-14);
}

.voucher-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
}

.voucher-feature__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.voucher-feature__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 48px;
}

.voucher-feature__desc {
  font-size: 16px;
  color: #4A5565;
  line-height: 28px;
}

.voucher-feature__checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-2);
}

.voucher-feature__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.voucher-feature__check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.voucher-feature__check-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 24px;
}

.voucher-feature__check-desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 22px;
}

/* Preview card with tilted gradient bg */
.voucher-feature__preview {
  position: relative;
}

.voucher-feature__preview-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(45deg, #E9D4FF 0%, #FAE8FF 100%);
  opacity: 0.5;
  transform: rotate(-3deg);
  z-index: 0;
}

.voucher-feature__preview-card {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: var(--space-6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.voucher-feature__preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid #F3F4F6;
}

.voucher-feature__preview-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

.voucher-feature__preview-id {
  font-size: 13px;
  color: #6A7282;
  background: #F3F4F6;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.voucher-feature__preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.voucher-feature__preview-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voucher-feature__preview-label {
  font-size: 12px;
  color: #6A7282;
}

.voucher-feature__preview-value {
  font-size: 14px;
  color: #0F172B;
  background: #F9FAFB;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid #F3F4F6;
}

.voucher-feature__preview-account {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voucher-feature__preview-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9FAFB;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid #F3F4F6;
}

.voucher-feature__preview-badge {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: #16A34A;
  background: #F0FDF4;
  border: 1px solid #B9F8CF;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.voucher-feature__preview-amount {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  background: #F9FAFB;
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid #F3F4F6;
  text-align: center;
}

.voucher-feature__preview-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
  direction: ltr;
}

.voucher-feature__preview-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  border: none;
  cursor: pointer;
}

.voucher-feature__preview-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.voucher-feature__preview-btn--ghost {
  background: transparent;
  color: #6A7282;
}

/* ── Cash Flow Section (4 cards row) ── */
.cashflow-section {
  background: var(--color-white);
  padding-block: var(--space-14);
}

.cashflow-section__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.cashflow-section__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.cashflow-section__subtitle {
  font-size: 18px;
  color: #45556C;
  line-height: 28px;
}

.cashflow-section__grid {
  display: flex;
  gap: var(--space-5);
}

.cashflow-section__card {
  flex: 1;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  min-height: 189px;
}

.cashflow-section__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FAF5FF;
  color: #C084FC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cashflow-section__card-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 24px;
}

.cashflow-section__card-desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 22px;
}

/* ── Reports Library Grid ── */
.reports-library {
  background: #F8FAFC;
  padding-block: var(--space-14);
}

.reports-library__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.reports-library__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.reports-library__subtitle {
  font-size: 18px;
  color: #45556C;
  line-height: 28px;
}

.reports-library__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.reports-library__card {
  background: var(--color-white);
  border: 1px solid #F3F4F6;
  border-radius: 20px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.reports-library__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.reports-library__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF5FF;
  color: #C084FC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.reports-library__card-title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 26px;
}

.reports-library__card-desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 24px;
}

.reports-library__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
}

.reports-library__card-link:hover {
  text-decoration: underline;
}

/* ── Sales Workflow Steps ── */
.sales-workflow {
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  padding-block: var(--section-padding);
}

.sales-workflow__header {
  text-align: center;
  margin-bottom: var(--space-14);
}

.sales-workflow__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.sales-workflow__subtitle {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #45556C;
  line-height: 28px;
}

.sales-workflow__track {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}

/* Single horizontal line */
.sales-workflow__track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E2E8F0;
}

.sales-workflow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.sales-workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.sales-workflow__step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-white);
  color: #6A7282;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
  border: 1px solid #E2E8F0;
}

.sales-workflow__step-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sales-workflow__step-label {
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 22px;
}

/* ── Feature Detail Section (alternating) ── */
.feature-detail {
  padding-block: var(--space-14);
}

.feature-detail:nth-child(odd) {
  background: var(--color-white);
}

.feature-detail:nth-child(even) {
  background: #F8FAFC;
}

.feature-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
}

/* Reversed: swap content & preview positions */
.feature-detail--reversed .feature-detail__content {
  order: 1;
}

.feature-detail__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.feature-detail__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
}

.feature-detail__title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 42px;
}

.feature-detail__subtitle {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #4A5565;
  line-height: 28px;
}

.feature-detail__desc {
  font-size: 16px;
  color: #4A5565;
  line-height: 28px;
}

.feature-detail__checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.feature-detail__check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  color: #374151;
  line-height: 24px;
}

.feature-detail__check-icon {
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.feature-detail__preview {
  background: #FCFCFC;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-detail__preview-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid #F3F4F6;
}

.feature-detail__preview-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-detail__preview-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

/* Tree rows for chart of accounts */
.feature-detail__tree {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.feature-detail__tree-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #374151;
}

.feature-detail__tree-item--parent {
  background: #F3F4F6;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
}

.feature-detail__tree-item--child {
  padding-inline-start: var(--space-6);
}

.feature-detail__tree-amount {
  font-size: 13px;
  color: #6A7282;
}

/* Bar chart for cost centers */
.feature-detail__bar-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-detail__bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.feature-detail__bar-label {
  font-size: 13px;
  color: #6A7282;
  min-width: 70px;
  text-align: left;
}

.feature-detail__bar-track {
  flex: 1;
  height: 28px;
  background: #F3F4F6;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.feature-detail__bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════
   LEGAL / PRIVACY PAGE
══════════════════════════════════════════ */

.legal-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #5b21b6 50%, #1e1b4b 100%);
  text-align: center;
  color: var(--color-white);
}

.legal-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(var(--rgb-white), 0.12);
  border: 1px solid rgba(var(--rgb-white), 0.2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.legal-hero__title {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.legal-hero__subtitle {
  font-size: var(--font-size-base);
  color: rgba(var(--rgb-white), 0.65);
}

.legal-content {
  padding: var(--space-16) 0;
  background: var(--color-white);
}

.legal-content__wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content__intro {
  font-size: var(--font-size-lg);
  line-height: 2;
  color: var(--color-gray-600);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-gray-100);
}

.legal-content__section {
  margin-bottom: var(--space-10);
}

.legal-content__heading {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary-50);
}

.legal-content__subheading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-800);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-content__section p {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

.legal-content__list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content__list li {
  position: relative;
  padding-inline-start: 24px;
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: var(--color-gray-600);
}

.legal-content__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.legal-content__list--contact li {
  padding-inline-start: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content__list--contact li::before {
  display: none;
}

.legal-content__list--contact i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}

.legal-content__list--contact a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

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

@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 0 48px;
  }
  .legal-hero__title {
    font-size: 32px;
  }
  .legal-content {
    padding: var(--space-10) 0;
  }
  .legal-content__heading {
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════
   CLIENTS INFINITE SLIDER
══════════════════════════════════════════ */

.clients {
  padding-block: var(--space-16) var(--space-10);
  background: var(--color-white);
  overflow: hidden;
}

.clients .section-header {
  margin-bottom: var(--space-10);
}

.clients__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--space-8);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: clientsScroll 30s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

.clients__slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.clients__slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__slide img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clients__slide:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

[dir="rtl"] .clients__track {
  animation-name: clientsScrollRTL;
}

@keyframes clientsScrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .clients {
    padding-block: var(--space-10) var(--space-8);
  }
  .clients__track {
    gap: 40px;
    animation-duration: 20s;
  }
  .clients__slide img {
    height: 30px;
  }
}

/* ── Page FAQ (reusable) ── */
.page-faq {
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
  padding-block: var(--space-14) var(--section-padding);
}

.page-faq__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.page-faq__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.page-faq__subtitle {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #45556C;
  line-height: 28px;
}

.page-faq__list {
  max-width: 832px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.page-faq__item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.page-faq__item.is-open {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.page-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

.page-faq__question {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #1D293D;
  line-height: 28px;
  text-align: right;
}

.page-faq__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.page-faq__item.is-open .page-faq__icon {
  transform: rotate(180deg);
}

.page-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.page-faq__item.is-open .page-faq__answer {
  max-height: 300px;
}

.page-faq__answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: #45556C;
  line-height: 26px;
  text-align: right;
}

/* ── Sales Integrations ── */
.sales-integrations {
  background: var(--color-white);
  padding-block: var(--space-14);
}

.sales-integrations__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  text-align: right;
  margin-bottom: var(--space-10);
}

.sales-integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.sales-integration {
  background: var(--color-white);
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sales-integration__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sales-integration__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sales-integration__icon--zatca {
  background: #ECFDF5;
  color: #16A34A;
}

.sales-integration__icon--messaging {
  background: #EFF6FF;
  color: #3B82F6;
}

.sales-integration__icon--email {
  background: #FEF2F2;
  color: #EF4444;
}

.sales-integration__name {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 26px;
}

.sales-integration__desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 24px;
}

/* ── Sales Benefits Grid ── */
.sales-benefits {
  background: #F8FAFC;
  padding-block: var(--space-14);
}

.sales-benefits__header {
  margin-bottom: var(--space-10);
}

.sales-benefits__header--center {
  text-align: center;
}

.sales-benefits__header--center .sales-benefits__title,
.sales-benefits__header--center .sales-benefits__subtitle {
  text-align: center;
}

.sales-benefits__grid--3 .sales-benefit {
  border-bottom: none;
}

.sales-benefits__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  border: none;
  border-radius: 0;
  overflow: visible;
  gap: var(--space-6);
}

.sales-benefits__grid--4 .sales-benefit {
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  min-height: 189px;
  padding: var(--space-5);
}

.sales-benefits__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 40px;
  text-align: right;
  margin-bottom: var(--space-3);
}

.sales-benefits__subtitle {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: #45556C;
  line-height: 28px;
  text-align: right;
}

.sales-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #F3F4F6;
  border-radius: 19px;
  overflow: hidden;
}

.sales-benefit {
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  border-bottom: 1px solid #F3F4F6;
  border-inline-start: 1px solid #F3F4F6;
}

.sales-benefit:nth-child(-n+3) {
  border-bottom: 1px solid #F3F4F6;
}

.sales-benefit:nth-child(3n+1) {
  border-inline-start: none;
}

.sales-benefit:nth-child(n+4) {
  border-bottom: none;
}

.sales-benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF5FF;
  color: #C084FC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sales-benefit__title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: #0F172B;
  line-height: 26px;
}

.sales-benefit__desc {
  font-size: 14px;
  color: #4A5565;
  line-height: 24px;
}

/* ──────────────────────────────────────────
   20. RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────── */

/* Tablet — max 1024px */
@media (max-width: 1024px) {
  :root {
    --container-padding-x: 20px;
  }

  .navbar__nav {
    gap: 0;
  }

  /* Hero tablet */
  .hero__title {
    font-size: var(--hero-title-size-tablet);
    line-height: var(--hero-title-lh-tablet);
  }
  .hero__float--left {
    width: var(--hero-float-size-tablet);
  }
  .hero__float--right {
    width: var(--hero-float-size-tablet);
  }

  /* Features tablet — 2 columns */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog tablet — 2 columns */
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Promo tablet — stack */
  .promo__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .promo__visual {
    order: -1;
  }
  .promo__visual-inner {
    max-width: 420px;
    margin-inline: auto;
  }
  .promo__paper {
    width: 120px;
    bottom: -20px;
    left: -20px;
  }

  /* Pricing tablet — 2 columns */
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card--featured {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  /* Services hero tablet */
  .services-hero__title {
    font-size: 42px;
    line-height: 54px;
  }
  .services-hero__card {
    padding-block: 64px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cta {
    padding-block: 64px;
  }
  .services-cta__title {
    font-size: 36px;
    line-height: 44px;
  }

  /* Contact tablet */
  .contact-hero {
    min-height: auto;
    padding-block: 64px;
  }
  .contact-hero__title {
    font-size: 34px;
    line-height: 44px;
    white-space: normal;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    order: -1;
  }

  /* Blog page tablet */
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-page-hero__title {
    font-size: 36px;
    line-height: 46px;
  }

  /* Article page tablet */
  .article-page {
    padding-top: 64px;
  }
  .article-page__title {
    font-size: 32px;
    line-height: 42px;
  }
  .article-page__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-page__sidebar-inner {
    position: static;
  }
  .article-page__sidebar {
    order: -1;
  }
  .article-page__footer {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-cta__title {
    font-size: 28px;
    line-height: 38px;
  }

  /* Sales/Service pages tablet */
  .sales-hero__title {
    font-size: 44px;
    line-height: 56px;
  }
  .sales-feature {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .sales-feature__image {
    order: -1;
  }
  .feature-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .feature-detail--reversed .feature-detail__content {
    order: 0;
  }
  .feature-detail__preview {
    order: -1;
  }
  .feature-detail__title {
    font-size: 28px;
    line-height: 38px;
  }
  .reports-library__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sales-benefits__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .reports-charts__grid {
    flex-direction: column;
  }
  .cashflow-section__grid {
    flex-wrap: wrap;
  }
  .cashflow-section__card {
    flex: 1 1 calc(50% - var(--space-3));
  }
  .voucher-feature__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .voucher-feature__title {
    font-size: 28px;
    line-height: 38px;
  }
  .voucher-feature__preview {
    order: -1;
  }
  .voucher-feature__preview-row {
    grid-template-columns: 1fr;
  }
  .page-faq {
    padding-block: var(--section-padding-mobile);
  }
  .sales-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sales-benefit:nth-child(3) {
    border-bottom: 1px solid #F3F4F6;
  }
  .sales-benefit:nth-child(n+4) {
    border-bottom: 1px solid #F3F4F6;
  }
  .sales-benefit:nth-child(2n+1) {
    border-inline-start: none;
  }
  .sales-benefit:last-child,
  .sales-benefit:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .sales-feature {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .sales-feature__image {
    order: -1;
  }

  /* About hero tablet */
  .about-hero__title {
    font-size: 44px;
    line-height: 56px;
  }
  .about-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    row-gap: var(--space-10);
  }
  .about-hero__stat + .about-hero__stat::before {
    display: none;
  }

  /* About mission/vision tablet */
  .about-mv__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* About values tablet */
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About why/timeline tablet */
  .about-wt__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  /* About story tablet */
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .about-story__image {
    order: -1;
    max-height: 400px;
  }
  .about-story__title {
    font-size: 30px;
    line-height: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__description {
    max-width: 100%;
  }
}

/* Mobile — max 768px */
@media (max-width: 768px) {
  :root {
    --container-padding-x: 16px;
    --footer-height: auto;
  }

  .navbar__nav,
  .navbar__actions .navbar__login-btn,
  .navbar__actions .btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    padding-block: 56px 48px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* On mobile: image goes first (top), then text */
  .hero__visual {
    order: -1;
  }
  .hero__content {
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: var(--hero-title-size-mobile);
    line-height: var(--hero-title-lh-mobile);
    align-items: center;
  }
  .hero__subtitle {
    font-size: var(--font-size-sm);
    max-width: 100%;
  }
  .hero__actions {
    width: 100%;
    justify-content: center;
  }
  .hero__actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__partners {
    justify-content: center;
  }
  .hero__visual-inner {
    max-width: 380px;
    padding: var(--space-5) 30px var(--space-10);
  }
  .hero__float--left {
    width: var(--hero-float-size-mobile);
  }
  .hero__float--right {
    width: var(--hero-float-size-mobile);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1;
  }

  .footer__bottom-inner {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }

  .footer__legal {
    justify-content: center;
  }

  /* Features mobile — 1 column */
  .features {
    padding-block: var(--section-padding-mobile);
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .section-title {
    font-size: var(--section-title-size-mob);
  }

  /* Promo mobile */
  .promo {
    padding-block: var(--section-padding-mobile);
  }
  .promo__title {
    font-size: var(--section-title-size-mob);
  }
  .promo__stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  .promo__stat + .promo__stat {
    border-inline-start: none;
    padding-inline-start: 0;
  }
  .promo__paper {
    width: 90px;
    bottom: -15px;
    left: -10px;
  }

  /* Pricing mobile — single column */
  .pricing {
    padding-block: var(--section-padding-mobile);
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .pricing-card--featured {
    max-width: 100%;
    grid-column: auto;
  }
  .pricing__footer {
    padding: var(--space-6);
  }

  /* Blog mobile */
  .blog {
    padding-block: var(--section-padding-mobile);
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }

  /* FAQ mobile */
  .faq {
    padding-block: var(--section-padding-mobile);
  }
  .faq__toggle {
    padding: var(--space-4) var(--space-4);
  }
  .faq__answer > p {
    padding-inline: var(--space-4);
  }
  .faq__footer {
    padding: var(--space-6);
  }

  /* CTA mobile */
  .cta {
    padding-block: var(--section-padding-mobile);
  }
  .cta__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  .cta__trust {
    gap: var(--space-4);
  }
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__btn {
    min-width: unset;
    width: 100%;
  }

  /* Sales mobile */
  .sales-features {
    padding-block: var(--section-padding-mobile);
  }
  .sales-features__title {
    font-size: 26px;
    line-height: 36px;
  }
  .sales-feature__content-title {
    font-size: 22px;
    line-height: 30px;
  }
  .sales-benefits {
    padding-block: var(--section-padding-mobile);
  }
  .sales-benefits__title {
    font-size: 26px;
    line-height: 36px;
  }
  .sales-benefits__grid {
    grid-template-columns: 1fr;
  }
  .sales-benefit {
    border-inline-start: none !important;
    border-bottom: 1px solid #F3F4F6 !important;
  }
  .sales-benefit:last-child {
    border-bottom: none !important;
  }
  .sales-hero {
    padding-top: var(--section-padding-mobile);
  }
  .sales-hero__title {
    font-size: 32px;
    line-height: 42px;
  }
  .sales-hero__desc {
    font-size: var(--font-size-base);
    line-height: 26px;
  }
  .sales-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .sales-hero__btn {
    width: 100%;
    min-width: unset;
  }
  .sales-hero__inner {
    margin-bottom: var(--space-8);
  }
  .reports-hero__blur {
    width: 250px;
    height: 250px;
    left: -40px;
    bottom: -40px;
  }
  .reports-library__grid {
    grid-template-columns: 1fr;
  }
  .reports-library {
    padding-block: var(--section-padding-mobile);
  }
  .reports-charts {
    padding-block: var(--section-padding-mobile);
  }
  .reports-charts__title {
    font-size: 26px;
    line-height: 36px;
  }
  .reports-charts__grid {
    flex-direction: column;
  }
  .reports-library__title {
    font-size: 26px;
    line-height: 36px;
  }
  .sales-cards {
    grid-template-columns: 1fr;
  }
  .sales-card {
    min-height: auto;
  }
  .sales-card__title {
    font-size: 20px;
    line-height: 28px;
  }
  .sales-integrations__grid {
    grid-template-columns: 1fr;
  }
  .sales-integrations__title {
    font-size: 26px;
    line-height: 36px;
  }
  .sales-workflow {
    padding-block: var(--section-padding-mobile);
  }
  .sales-workflow__title {
    font-size: 26px;
    line-height: 34px;
  }
  .sales-workflow__track::before {
    display: none;
  }
  .sales-workflow__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  .feature-detail {
    padding-block: var(--section-padding-mobile);
  }
  .feature-detail__title {
    font-size: 24px;
    line-height: 34px;
  }
  .feature-detail__subtitle {
    font-size: 16px;
  }
  .feature-detail__desc {
    font-size: 15px;
  }
  .feature-detail__check {
    font-size: 14px;
  }
  .page-faq {
    padding-block: var(--section-padding-mobile);
  }
  .page-faq__title {
    font-size: 28px;
    line-height: 36px;
  }
  .page-faq__question {
    font-size: 16px;
    line-height: 24px;
  }
  .page-faq__toggle {
    padding: var(--space-4);
  }
  .page-faq__answer p {
    padding: 0 var(--space-4) var(--space-4);
    font-size: 15px;
  }

  /* About mission/vision mobile */
  .about-mv {
    padding-block: var(--section-padding-mobile);
  }
  .about-mv__grid {
    grid-template-columns: 1fr;
  }
  .about-mv__card {
    padding: var(--space-8) var(--space-6);
    min-height: auto;
  }
  .about-mv__card--mission::before,
  .about-mv__card--vision::before {
    left: auto;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
  }
  .about-mv__card-title {
    font-size: 24px;
    line-height: 32px;
  }
  .about-mv__card-desc {
    font-size: 16px;
    line-height: 26px;
  }

  /* About values mobile */
  .about-values {
    padding-block: var(--section-padding-mobile);
  }
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
  .about-values__title {
    font-size: 28px;
    line-height: 38px;
  }

  /* About why/timeline mobile */
  .about-wt {
    padding-block: var(--section-padding-mobile);
  }
  .about-why__title,
  .about-timeline__title {
    font-size: 24px;
    line-height: 34px;
  }
  .about-why__item-text {
    font-size: 16px;
  }

  /* About story mobile */
  .about-story {
    padding-block: var(--section-padding-mobile);
  }
  .about-story__title {
    font-size: 26px;
    line-height: 36px;
  }

  /* About hero mobile */
  .about-hero {
    padding-block: var(--section-padding-mobile) 0;
  }
  .about-hero__title {
    font-size: 32px;
    line-height: 42px;
  }
  .about-hero__desc {
    font-size: var(--font-size-base);
  }
  .about-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    row-gap: var(--space-8);
    margin-top: var(--space-10);
    padding-block: var(--space-8);
  }
  .about-hero__stat-value {
    font-size: 2rem;
  }

  /* Services hero mobile */
  .services-hero {
    padding-block: var(--section-padding-mobile);
  }
  .services-hero__card {
    padding-block: 40px;
  }
  .services-hero__title {
    font-size: 32px;
    line-height: 42px;
  }
  .services-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-cta {
    padding-block: 48px;
  }
  .services-cta__title {
    font-size: 28px;
    line-height: 36px;
  }
  .services-cta__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .services-cta__btn {
    width: 100%;
  }

  /* Contact mobile */
  .contact-layout {
    padding-block: var(--section-padding-mobile);
  }
  .contact-layout > .container {
    gap: 40px;
  }
  .contact-hero {
    min-height: auto;
    padding-block: 48px;
  }
  .contact-hero__title {
    font-size: 26px;
    line-height: 36px;
    white-space: normal;
  }
  .contact-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-form-wrap {
    padding: 24px 16px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-form__submit {
    width: 100%;
  }

  /* Blog page mobile */
  .blog-page-hero {
    padding: 56px 0 32px;
  }
  .blog-page-hero__title {
    font-size: 28px;
    line-height: 38px;
  }
  .blog-page-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
  .blog-page__filters {
    gap: 6px;
  }
  .blog-page__filter {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Article page mobile */
  .article-page {
    padding-top: 40px;
  }
  .article-page__title {
    font-size: 26px;
    line-height: 36px;
  }
  .article-page__excerpt {
    font-size: 16px;
    line-height: 26px;
  }
  .article-page__content h2 {
    font-size: 22px;
    line-height: 32px;
  }
  .article-page__content h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .article-page__content p {
    font-size: 16px;
    line-height: 28px;
  }
  .article-page__meta {
    flex-direction: column;
    gap: 8px;
  }
  .article-page__features {
    grid-template-columns: 1fr;
  }
  .article-page__quote p {
    font-size: 17px;
    line-height: 28px;
  }
  .article-related__grid {
    grid-template-columns: 1fr;
  }
  .article-related__header {
    flex-direction: column;
    gap: 16px;
  }
  .article-cta {
    padding-block: 56px;
  }
  .article-cta__title {
    font-size: 24px;
    line-height: 34px;
  }
  .article-cta__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .article-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .article-cta__btn {
    width: 100%;
  }
}

/* Small Mobile — max 480px */
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--hero-title-size-xs);
    line-height: var(--hero-title-lh-xs);
  }

  .services-hero__title {
    font-size: 26px;
    line-height: 36px;
  }

  .footer__partners-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Sales/service pages xs */
  .sales-hero__title {
    font-size: 26px;
    line-height: 36px;
  }
  .sales-hero__desc {
    font-size: 15px;
  }
  .sales-workflow__steps {
    grid-template-columns: 1fr;
  }
  .feature-detail__title {
    font-size: 22px;
    line-height: 30px;
  }
  .sales-feature {
    padding: var(--space-5);
  }
  .sales-card {
    padding: var(--space-5);
  }
}

/* ══════════════════════════════════════════
   PRICING PAGE — Additional Styles
   ══════════════════════════════════════════ */

/* ── Card Icon ── */
.pricing-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-2);
}

.pricing-card__icon--basic {
  background: rgba(var(--rgb-primary), 0.08);
  color: var(--color-primary);
}

.pricing-card__icon--pro {
  background: rgba(var(--rgb-white), 0.2);
  color: var(--color-white);
}

.pricing-card__icon--enterprise {
  background: rgba(var(--rgb-primary), 0.08);
  color: var(--color-primary);
}

/* ── Purple Featured Card ── */
.pricing-card--purple {
  background: linear-gradient(168.3deg, #5B1898 0%, #7B2FBE 100%);
  border: 2px solid #000000;
  box-shadow: 0 28px 60px 0 rgba(123, 47, 190, 0.38);
}

.pricing-card--purple:hover {
  box-shadow: 0 36px 72px 0 rgba(123, 47, 190, 0.5);
}

.pricing-card--purple .pricing-card__name {
  color: var(--color-white);
}

.pricing-card--purple .pricing-card__tagline {
  color: rgba(var(--rgb-white), 0.75);
}

.pricing-card--purple .pricing-card__amount {
  background: var(--color-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card--purple .pricing-card__currency {
  color: rgba(var(--rgb-white), 0.9);
}

.pricing-card--purple .pricing-card__period {
  color: rgba(var(--rgb-white), 0.6);
}

.pricing-card--purple .pricing-card__price {
  border-bottom-color: rgba(var(--rgb-white), 0.15);
}

.pricing-card--purple .pricing-card__features li {
  color: rgba(var(--rgb-white), 0.85);
}

.pricing-card--purple .pricing-card__features .fa-circle-check {
  color: #2dd4bf;
}

/* ── Disabled Features ── */
.pricing-card__feature--disabled {
  opacity: 0.5;
}

.pricing-card__feature--disabled .fa-circle-xmark {
  color: var(--color-gray-400);
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Trust Bar ── */
.pricing__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  max-width: 739px;
  margin: var(--space-14) auto 0;
  padding: 18px var(--space-6);
  background: #F9FAFB;
  border-radius: 16px;
  border: none;
}

.pricing__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13.9px;
  line-height: 20.88px;
  color: #374151;
  white-space: nowrap;
}

.pricing__trust-item i {
  color: var(--color-primary);
  font-size: 13px;
  width: 13px;
  height: 14px;
}

@media (max-width: 768px) {
  .pricing__trust-bar {
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .pricing__trust-item {
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 480px) {
  .pricing__trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
}

/* ══════════════════════════════════════════
   PRICING PAGE — Compare Table
   ══════════════════════════════════════════ */

.compare {
  padding-block: var(--section-padding);
  background: var(--color-white);
}

.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--color-gray-200);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 700px;
}

/* ── Table Header ── */
.compare__head-row {
  background: linear-gradient(135deg, #59168b 0%, #7B2FBE 50%, #5B2190 100%);
}

.compare__th {
  padding: 18px 20px;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
  vertical-align: middle;
  width: 18%;
}

.compare__th--features {
  width: 46%;
  text-align: right;
  font-size: var(--font-size-base);
}

[dir="ltr"] .compare__th--features {
  text-align: left;
}

.compare__th--pro {
  background: rgba(var(--rgb-white), 0.1);
}

.compare__plan-name {
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}

.compare__plan-name .fa-star {
  color: #fbbf24;
  font-size: 12px;
}

.compare__plan-price {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: rgba(var(--rgb-white), 0.7);
  margin-top: 2px;
}

/* ── Category Row ── */
.compare__category-row td {
  background: linear-gradient(90deg, rgba(152, 16, 250, 0.08) 0%, rgba(152, 16, 250, 0.03) 100%);
  padding: 10px 20px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand-mid);
  border-bottom: 1px solid var(--color-gray-200);
}

/* ── Data Rows ── */
.compare__table tbody tr:not(.compare__category-row) td {
  padding: 14px 20px;
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-gray-100);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__feature {
  text-align: right !important;
  color: var(--color-gray-800) !important;
  font-weight: var(--font-weight-medium);
}

[dir="ltr"] .compare__feature {
  text-align: left !important;
}

/* ── Check & X Icons ── */
.compare__check {
  color: var(--color-primary);
  font-size: 18px;
}

.compare__xmark {
  color: #f87171;
  font-size: 18px;
}

/* ── Hover ── */
.compare__table tbody tr:not(.compare__category-row):hover td {
  background: rgba(var(--rgb-primary), 0.02);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .compare {
    padding-block: var(--section-padding-mobile);
  }
}

@media (max-width: 768px) {
  .compare__th {
    padding: 14px 12px;
    font-size: var(--font-size-xs);
  }
  .compare__plan-name {
    font-size: var(--font-size-sm);
  }
  .compare__table tbody tr:not(.compare__category-row) td {
    padding: 12px;
    font-size: var(--font-size-xs);
  }
  .compare__category-row td {
    padding: 8px 12px;
    font-size: var(--font-size-xs);
  }
}

/* ── Teal Button Variant ── */
.btn--teal {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  color: #222222;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.35);
}
.btn--teal:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 6px 28px rgba(45, 212, 191, 0.5);
  transform: translateY(-1px);
}

/* ── Pricing Hero ── */
.pricing-hero {
  background: linear-gradient(113.3deg, #581694 0%, #7B2FBE 45%, #5B2190 100%);
  overflow: hidden;
  position: relative;
  padding-block: 120px 80px;
  text-align: center;
}

.pricing-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-16);
}

/* Badge */
.pricing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 20px;
  background: #FFFFFF26;
  border: 1px solid #FFFFFF47;
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(var(--rgb-white), 0.9);
  margin-bottom: var(--space-8);
  backdrop-filter: blur(10px);
}

.pricing-hero__badge .fa-star {
  color: #fbbf24;
  font-size: 14px;
}

/* Title */
.pricing-hero__title {
  font-size: 44.8px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 60.48px;
  margin-bottom: var(--space-6);
}

/* Subtitle */
.pricing-hero__subtitle {
  font-size: 16.3px;
  font-weight: var(--font-weight-regular);
  color: #FFFFFFD1;
  line-height: 24.48px;
  margin-bottom: var(--space-10);
  max-width: 600px;
}

/* CTA Buttons */
.pricing-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Stats Bar ── */
.pricing-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.pricing-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.pricing-hero__stat-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.pricing-hero__stat-label {
  font-size: var(--font-size-sm);
  color: rgba(var(--rgb-white), 0.6);
}

/* ── Pricing Hero Responsive ── */
@media (max-width: 1024px) {
  .pricing-hero {
    padding-block: 100px 64px;
  }
  .pricing-hero__title {
    font-size: 38px;
    line-height: 50px;
  }
  .pricing-hero__stats {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding-block: 90px 48px;
  }
  .pricing-hero__title {
    font-size: 28px;
    line-height: 40px;
  }
  .pricing-hero__subtitle {
    font-size: var(--font-size-sm);
  }
  .pricing-hero__content {
    margin-bottom: var(--space-10);
  }
  .pricing-hero__stats {
    gap: var(--space-8);
  }
  .pricing-hero__stat-value {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding-block: 80px 40px;
  }
  .pricing-hero__title {
    font-size: 24px;
    line-height: 36px;
  }
  .pricing-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .pricing-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .pricing-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

.pricing__grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center; 
    gap: var(--space-6);
    padding-top: 24px;
}

.pricing-card {
    flex: 0 0 calc(33.333% - var(--space-6));
}

.pricing-card.year-plan {
  position: relative;
  overflow: hidden;
}

/* البادج */
.pricing-card.year-plan::before {
    content: "سنوي فقط";
    position: absolute;
    top: 12px;
    left: -40px;
    background: #6c5ce7;
    color: #fff;
    padding: 6px 60px 6px 50px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-45deg);
    z-index: 2;
}

html[dir="ltr"] .pricing-card.year-plan::before {
  content: "Yearly only";
  right: -40px;
  left: auto;
  transform: rotate(45deg);
  padding: 6px 50px 6px 60px;
}
.pricing-card.is-disabled {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
  transform: scale(0.98);
}
.pricing-card.is-disabled {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
  transform: scale(0.98);
}

.pricing__toggle{
  direction: rtl !important;
}
html, body {
  transform: none !important;
}
