/* ============================================================
   TASBEEH LANDING — MAIN STYLESHEET
   Designer: Senior UI/UX
   Architecture: CSS Custom Properties → Base → Layout → Components
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --clr-primary:        #146C43;
  --clr-primary-dark:   #0e4f30;
  --clr-primary-light:  #1a8a55;
  --clr-secondary:      #198754;
  --clr-gold:           #D4AF37;
  --clr-gold-light:     #e8c84a;
  --clr-gold-dark:      #b8952e;

  /* Neutrals */
  --clr-bg:             #FAFBF8;
  --clr-card:           #FFFFFF;
  --clr-text:           #1F2937;
  --clr-text-muted:     #6B7280;
  --clr-text-light:     #9CA3AF;
  --clr-border:         #E5E7EB;
  --clr-border-light:   #F3F4F6;

  /* Semantic */
  --clr-surface:        #F9FAFB;
  --clr-surface-hover:  #F3F4F6;

  /* Typography */
  --font-arabic:        'Cairo', 'Segoe UI', sans-serif;
  --font-english:       'Inter', system-ui, sans-serif;
  --font-body:          var(--font-arabic);

  /* Type Scale */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.25rem;    /* 36px */
  --text-5xl:   3rem;       /* 48px */
  --text-6xl:   3.75rem;    /* 60px */
  --text-7xl:   4.5rem;     /* 72px */
  --text-hero:  clamp(3rem, 8vw, 5.5rem);

  /* Font Weights */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   800;

  /* Spacing Scale */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Border Radius */
  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-2xl:  2rem;
  --r-3xl:  2.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.07);
  --shadow-2xl: 0 24px 64px rgba(0,0,0,.15), 0 12px 28px rgba(0,0,0,.08);
  --shadow-primary: 0 8px 24px rgba(20, 108, 67, .30);
  --shadow-gold:    0 8px 24px rgba(212, 175, 55, .30);

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.85);
  --glass-border: rgba(255,255,255,0.6);
  --glass-blur:   blur(20px);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    400ms;
  --dur-slower:  600ms;

  /* Layout */
  --container-max:   1200px;
  --container-narrow: 760px;
  --nav-h:           72px;
  --section-py:      clamp(var(--sp-16), 8vw, var(--sp-32));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 17px;
}

body {
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* LTR language override */
body.lang-en {
  font-family: var(--font-english);
  direction: ltr;
  text-align: left;
}

body.lang-ar {
  direction: rtl;
  text-align: right;
}

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

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

/* Screen-reader only utility */
.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;
}

/* Focus ring — accessible */
:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Link utility */
.link {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
.link:hover { color: var(--clr-primary-dark); }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-6), 5vw, var(--sp-16));
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

/* ============================================================
   4. SECTION HEADER (Shared)
   ============================================================ */
.section__header {
  text-align: center;
  margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16));
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.7;
}

.section__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-black);
  color: var(--clr-text);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ============================================================
   5. LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__icon {
  position: relative;
  z-index: 1;
}

.loader__icon img {
  border-radius: var(--r-xl);
  animation: loaderPulse 1.5s var(--ease-in-out) infinite;
}

.loader__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--clr-primary);
  border-right-color: var(--clr-gold);
  animation: loaderSpin 1s linear infinite;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out),
              backdrop-filter var(--dur-slow) var(--ease-out);
}

/* Scrolled state */
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(0,0,0,.05);
}

.nav__container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-6), 5vw, var(--sp-16));
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  transition: opacity var(--dur-fast);
}
.nav__logo:hover { opacity: 0.85; }

.nav__logo-img {
  border-radius: var(--r-md);
  width: 40px;
  height: 40px;
}

.nav__logo-text {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--clr-card);
  letter-spacing: -0.01em;
  transition: color var(--dur-base);
}

.nav.scrolled .nav__logo-text { color: var(--clr-text); }

/* Desktop Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-inline-start: auto;
}

.nav__link {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.90);
  border-radius: var(--r-full);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav.scrolled .nav__link { color: var(--clr-text-muted); }
.nav.scrolled .nav__link:hover { color: var(--clr-text); background: var(--clr-surface); }

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-inline-start: var(--sp-4);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  transition: all var(--dur-fast);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav.scrolled .lang-toggle {
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}

.nav.scrolled .lang-toggle:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.lang-toggle__icon { font-size: 1em; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base),
              background var(--dur-base);
}

.nav.scrolled .nav__hamburger span { background: var(--clr-text); }

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-4) var(--sp-6);
  flex-direction: column;
  gap: var(--sp-1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base);
}

.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav__mobile-link {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  border-radius: var(--r-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__mobile-link:hover { background: var(--clr-surface); color: var(--clr-primary); }

.nav__mobile-cta {
  margin-top: var(--sp-2);
  text-align: center;
  justify-content: center;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  line-height: 1;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base),
              color var(--dur-base),
              border-color var(--dur-base),
              opacity var(--dur-base);
  -webkit-user-select: none;
  user-select: none;
}

/* Ripple layer */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  border-radius: inherit;
  transition: background var(--dur-fast);
}
.btn:active::after { background: rgba(255,255,255,0.15); }

.btn:not(:disabled):hover  { transform: translateY(-2px); }
.btn:not(:disabled):active { transform: translateY(0); }

/* Sizes */
.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-lg);
  gap: var(--sp-3);
}

/* Primary */
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-primary);
}
.btn--primary:not(:disabled):hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  box-shadow: 0 12px 32px rgba(20, 108, 67, .40);
}

/* Ghost (transparent) */
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:not(:disabled):hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.5);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:not(:disabled):hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* White (for dark backgrounds) */
.btn--white {
  background: #fff;
  color: var(--clr-primary);
  border-color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn--white:not(:disabled):hover {
  background: #f0fdf4;
  box-shadow: var(--shadow-xl);
}

/* Outline White */
.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:not(:disabled):hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Ghost White */
.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: transparent;
}
.btn--ghost-white:not(:disabled):hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Disabled */
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Icon */
.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn--lg .btn__icon { width: 20px; height: 20px; }

/* Nav CTA */
.nav__cta { box-shadow: none; }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: calc(var(--nav-h) + var(--sp-16)) var(--sp-24);
  overflow: hidden;
}

/* Background Layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background:
    url('../assets/featured.jpg') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 40, 22, 0.92) 0%,
    rgba(15, 85, 50, 0.78) 40%,
    rgba(6, 32, 18, 0.95) 100%
  );
}

/* Sacred geometry pattern overlay */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 28px,
      rgba(212,175,55,1) 28px,
      rgba(212,175,55,1) 29px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 28px,
      rgba(212,175,55,1) 28px,
      rgba(212,175,55,1) 29px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(212,175,55,1) 28px,
      rgba(212,175,55,1) 29px
    );
}

/* Volumetric light bloom from top center */
.hero__bg-bloom {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(212,175,55,0.18) 0%,
    rgba(20,108,67,0.10) 35%,
    transparent 70%
  );
  pointer-events: none;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212,175,55,0.6);
}

/* Scatter particles with different sizes & positions */
.particle:nth-child(1)  { top: 15%; left: 10%;  width: 2px; height: 2px; animation: particleFloat 8s ease-in-out infinite; }
.particle:nth-child(2)  { top: 25%; left: 85%;  width: 3px; height: 3px; animation: particleFloat 10s ease-in-out infinite 1s; }
.particle:nth-child(3)  { top: 50%; left: 5%;   width: 2px; height: 2px; animation: particleFloat 7s ease-in-out infinite 2s; }
.particle:nth-child(4)  { top: 70%; left: 90%;  width: 4px; height: 4px; animation: particleFloat 12s ease-in-out infinite 0.5s; }
.particle:nth-child(5)  { top: 80%; left: 20%;  width: 2px; height: 2px; animation: particleFloat 9s ease-in-out infinite 3s; }
.particle:nth-child(6)  { top: 35%; left: 75%;  width: 3px; height: 3px; animation: particleFloat 11s ease-in-out infinite 1.5s; }
.particle:nth-child(7)  { top: 60%; left: 50%;  width: 2px; height: 2px; animation: particleFloat 8s ease-in-out infinite 4s; }
.particle:nth-child(8)  { top: 10%; left: 55%;  width: 3px; height: 3px; animation: particleFloat 13s ease-in-out infinite 2.5s; }

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  max-width: 800px;
  padding-inline: var(--sp-6);
}

/* Floating App Icon */
.hero__icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__icon-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

.hero__icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

/* Bismillah */
.hero__bismillah {
  font-family: var(--font-arabic);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--clr-gold);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(212,175,55,0.4);
  letter-spacing: 0.02em;
}

/* Title */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.hero__title-arabic {
  font-family: var(--font-arabic);
  font-size: var(--text-hero);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.4);
}

/* Gold underline accent */
.hero__title-arabic::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  margin: var(--sp-2) auto 0;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  border-radius: var(--r-full);
}

.hero__title-divider { display: none; }

.hero__title-tagline {
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Description */
.hero__description {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  color: rgba(255,255,255,0.90);
  line-height: 1.85;
  max-width: 600px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-weight: var(--fw-semi);
}

/* CTA Group */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-2);
}

/* Trust Badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-top: var(--sp-2);
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  font-weight: var(--fw-semi);
}

.badge__icon {
  color: var(--clr-gold);
  font-size: 0.6em;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

.hero__scroll-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================
   9. FEATURES
   ============================================================ */
.features {
  background: var(--clr-bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}

/* Feature Card */
.feature-card {
  position: relative;
  background: var(--clr-card);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(20,108,67,0.15);
}

.feature-card:hover .feature-card__glow {
  opacity: 1;
}

/* Icon Wrap */
.feature-card__icon-wrap {
  margin-bottom: var(--sp-5);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  color: var(--clr-primary);
  transition: transform var(--dur-base) var(--ease-spring);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.feature-card__desc {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* Ambient glow on hover */
.feature-card__glow {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,108,67,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}

/* Gold variant (No Ads card) */
.feature-card--gold .feature-card__icon { color: var(--clr-gold); }
.feature-card--gold { border-color: rgba(212,175,55,0.2); }
.feature-card--gold:hover { border-color: rgba(212,175,55,0.4); }
.feature-card--gold .feature-card__glow {
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
}

/* ============================================================
   10. PHONE MOCKUP
   ============================================================ */
.mockup {
  background: linear-gradient(
    180deg,
    var(--clr-bg) 0%,
    #f0f7f4 50%,
    var(--clr-bg) 100%
  );
  overflow: hidden;
}

.mockup__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
  padding-block: var(--sp-8);
}

/* Decorative blobs */
.mockup__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

.mockup__blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20,108,67,0.3), transparent);
  top: -100px;
  right: -100px;
}

.mockup__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent);
  bottom: -80px;
  left: -80px;
}

/* Phone Frame */
.phone {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

/* Android 14 frame — sits BEHIND the screen via z-index:0
   The screen (z-index:2) floats above it.
   inset -12px -8px auto-sizes to the screen. */
.phone__frame {
  position: absolute;
  inset: -12px -8px;
  border-radius: 46px;
  background: linear-gradient(
    145deg,
    #232323 0%,
    #171717 35%,
    #0c0c0c 65%,
    #1c1c1c 100%
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09),
    0 0 0 2px rgba(0,0,0,0.85),
    0 40px 80px rgba(0,0,0,0.55),
    0 16px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  z-index: 0;
  pointer-events: none;
}

/* Android 14 punch-hole camera — z-index:3 to float above screen */
.phone__punch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #050505;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Buttons */
.phone__btn {
  position: absolute;
  background: #1a1a1a;
  border-radius: 3px;
}

.phone__btn--vol-up {
  left: -10px;
  top: 80px;
  width: 3px;
  height: 32px;
}

.phone__btn--vol-down {
  left: -10px;
  top: 122px;
  width: 3px;
  height: 32px;
}

.phone__btn--power {
  right: -10px;
  top: 100px;
  width: 3px;
  height: 48px;
}

/* Screen — sized to match screenshot 9:20 aspect ratio (600×1333)
   Width 280px → height = 280 × (1333/600) = 622px */
.phone__screen {
  width: 280px;
  height: 622px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #000;
  touch-action: pan-y;
}

.phone__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}

.phone__slide {
  flex: 0 0 100%;
  height: 100%;
}

.phone__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* Render at native resolution without interpolation blur */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Slide Dots */
.phone__dots {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  position: relative;
  z-index: 3;
}

.phone__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-spring), width var(--dur-base) var(--ease-spring);
  cursor: pointer;
}

.phone__dot.active {
  background: var(--clr-primary);
  width: 24px;
  border-radius: var(--r-full);
}

/* Info panel beside phone */
.mockup__info {
  max-width: 260px;
}

.mockup__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-md);
}

.mockup__info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--clr-primary);
}

.mockup__info-title {
  font-size: var(--text-base);
  font-weight: var(--fw-black);
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}

.mockup__info-text {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
}


/* ============================================================
   12. WHY TASBEEH
   ============================================================ */
.why {
  position: relative;
  overflow: hidden;
}

.why__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,108,67,0.04) 0%,
    rgba(212,175,55,0.03) 50%,
    rgba(20,108,67,0.04) 100%
  );
  pointer-events: none;
}

.why__lead {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  color: var(--clr-text);
  line-height: 1.8;
  text-align: center;
  margin-bottom: var(--sp-16);
  font-weight: var(--fw-medium);
  padding-inline: var(--sp-4);
}

.why__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.why__pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--clr-card);
  border-radius: var(--r-2xl);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
}
.why__pillar:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

body.lang-en .why__pillar:hover { transform: translateX(-6px); }

.why__pillar-num {
  font-family: var(--font-arabic);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--clr-primary);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
  text-align: center;
}

.why__pillar-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.why__pillar-text {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ============================================================
   13. STATISTICS
   ============================================================ */
.stats {
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark) 0%,
    var(--clr-primary) 50%,
    var(--clr-primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Decorative rings */
.stats::before,
.stats::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.stats::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.stats::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: var(--sp-8);
}

.stat__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-3);
}

.stat__number {
  font-size: clamp(var(--text-5xl), 6vw, var(--text-7xl));
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.stat__suffix,
.stat__prefix {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   14. REVIEWS
   ============================================================ */
.reviews {
  background: var(--clr-bg);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.review-card {
  background: var(--clr-card);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Featured center card */
.review-card--featured {
  border-color: rgba(20,108,67,0.2);
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(20,108,67,0.08);
  margin-top: -var(--sp-4);
}

.review-card__badge {
  display: inline-flex;
  padding: var(--sp-1) var(--sp-3);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-gold);
}

.review-card__stars {
  font-size: var(--text-xl);
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  font-style: normal;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__avatar--gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
}

.review-card__name {
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  color: var(--clr-text);
}

.review-card__date {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
}

/* ============================================================
   15. FAQ
   ============================================================ */
.faq {
  background: var(--clr-bg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--clr-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border-light);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: rgba(20,108,67,0.2);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-6) var(--sp-8);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  text-align: start;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.faq__question:hover { color: var(--clr-primary); }
.faq__question[aria-expanded="true"] { color: var(--clr-primary); }

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-text-light);
  transition: transform var(--dur-base) var(--ease-spring), color var(--dur-fast);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.faq__answer {
  padding: 0 var(--sp-8) var(--sp-6);
  animation: faqExpand var(--dur-base) var(--ease-out);
}

.faq__answer[hidden] { display: none; }

.faq__answer p {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  line-height: 1.9;
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--sp-4);
}

/* ============================================================
   16. DOWNLOAD CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--clr-primary-dark) 0%,
    #0f5c38 30%,
    var(--clr-primary) 60%,
    #1d9b60 100%
  );
}

.cta__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.cta__icon img {
  border-radius: var(--r-2xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: heroFloat 6s ease-in-out infinite;
}

.cta__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 700px;
}

.cta__subtitle {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.80);
  max-width: 500px;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-top: var(--sp-2);
}

.cta__note {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.02em;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-8);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: opacity var(--dur-fast);
}
.footer__logo:hover { opacity: 0.85; }

.footer__logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
}

.footer__logo span {
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: #fff;
}

.footer__tagline {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer__nav-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.footer__nav-link {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.70);
  padding-block: var(--sp-1);
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.footer__nav-link:hover {
  color: #fff;
  transform: translateX(-4px);
}

body.lang-en .footer__nav-link:hover { transform: translateX(4px); }

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

.footer__copy,
.footer__made {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.45);
}

.footer__made { color: rgba(255,255,255,0.35); }

/* ============================================================
   18. SHARE MODAL
   ============================================================ */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--sp-4);
  animation: fadeIn var(--dur-base) var(--ease-out);
}

.share-modal[hidden] { display: none; }

.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.share-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: var(--clr-card);
  border-radius: var(--r-3xl) var(--r-3xl) var(--r-xl) var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2xl);
  animation: slideUp var(--dur-base) var(--ease-spring);
}

.share-modal__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.share-modal__close:hover { background: var(--clr-border); color: var(--clr-text); }
.share-modal__close svg { width: 16px; height: 16px; }

.share-modal__title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}

.share-modal__subtitle {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
}

.share-modal__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-2);
  border-radius: var(--r-xl);
  transition: background var(--dur-fast), transform var(--dur-base) var(--ease-spring);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
}

.share-option:hover {
  background: var(--clr-surface);
  transform: translateY(-2px);
}

.share-option__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-option__icon svg { width: 26px; height: 26px; }

.share-option__icon--whatsapp { background: #25D366; color: #fff; }
.share-option__icon--telegram  { background: #0088CC; color: #fff; }
.share-option__icon--twitter   { background: #000; color: #fff; }
.share-option__icon--copy      { background: var(--clr-surface); color: var(--clr-text-muted); border: 1px solid var(--clr-border); }

/* ============================================================
   19. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-text);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-xl);
  white-space: nowrap;
  animation: toastIn var(--dur-base) var(--ease-spring);
}

.toast[hidden] {
  display: none;
}

.toast__icon {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ============================================================
   20. PRIVACY & TERMS PAGES
   ============================================================ */
.legal-page {
  padding-block: calc(var(--nav-h) + var(--sp-16)) var(--sp-24);
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-8);
}

.legal-page h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--clr-primary);
}

.legal-page p {
  margin-bottom: var(--sp-4);
  color: var(--clr-text-muted);
  line-height: 1.9;
}

.legal-page ul {
  list-style: disc;
  margin-inline-start: var(--sp-6);
  margin-bottom: var(--sp-4);
  color: var(--clr-text-muted);
}

.legal-page li {
  margin-bottom: var(--sp-2);
  line-height: 1.8;
}
