/* ==========================================
   SAAAD PREMIUM LANDING PAGE — MAIN CSS
   Brand: navy #344654 | gold #AE8F53 | teal #02BC77
   ========================================== */

/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
  --navy: #344654;
  --navy-dark: #1E2D3A;
  --gold: #AE8F53;
  --gold-light: #C9A968;
  --gold-dark: #8B7043;
  --gold-gradient: linear-gradient(135deg, #AE8F53 0%, #C9A968 100%);
  --teal: #02BC77;
  --teal-dark: #019B62;
  --white: #FFFFFF;
  --gray: #666666;
  --dark-bg: #0F1923;
  --dark-card: #1A2733;
  --dark-card-2: #233040;
  --light-bg: #FAF8F3;
  --light-card: #F7F9FB;
  --border-light: #E8EEF4;
  --text-muted: #6B7E8F;
  --shadow-gold: 0 8px 32px rgba(174, 143, 83, 0.25);
  --shadow-dark: 0 24px 80px rgba(15, 25, 35, 0.18);
  --shadow-card: 0 4px 24px rgba(52, 70, 84, 0.10);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   GLOBAL RESETS & BASE
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html[dir="rtl"] {
  direction: rtl;
}

body {
  font-family: 'Cairo', 'Almarai', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* RTL base — Bootstrap's global reset overrides document-direction default.
   This ensures all landing page text aligns right. Elements that need
   center alignment (section headers, stats, etc.) override with text-align:center. */
.lp-hero,
.lp-section {
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

/* ==========================================
   TYPOGRAPHY SCALE
   ========================================== */
.lp-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.lp-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.lp-h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
}

.lp-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(174, 143, 83, 0.12);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(174, 143, 83, 0.25);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.lp-gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.lp-section {
  padding: 80px 0;
}

.lp-section-sm {
  padding: 52px 0;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-header .lp-h2 {
  margin-bottom: 12px;
}

.lp-section-header .lp-lead {
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================
   NAVBAR
   ========================================== */
.lp-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(15, 25, 35, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(174, 143, 83, 0.15);
  transition: all var(--transition);
}

.lp-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.lp-navbar-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.lp-navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-navbar-links .nav-link {
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.lp-navbar-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.lp-navbar-links .nav-link:hover,
.lp-navbar-links .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.lp-navbar-links .nav-link:hover::after,
.lp-navbar-links .nav-link.active::after {
  transform: scaleX(1);
}

.lp-navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-navbar-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(174, 143, 83, 0.4);
}

.lp-navbar-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.lp-navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown in navbar */
.lp-navbar-links .dropdown-menu {
  background: var(--dark-card);
  border: 1px solid rgba(174, 143, 83, 0.2);
  border-radius: var(--radius-sm);
  min-width: 200px;
  padding: 8px;
  margin-top: 8px;
}

.lp-navbar-links .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.lp-navbar-links .dropdown-item:hover {
  background: rgba(174, 143, 83, 0.15);
  color: var(--gold-light);
}

/* Mobile nav */
@media (max-width: 991px) {
  .lp-navbar-toggle {
    display: flex;
  }

  .lp-navbar-collapse {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 17, 25, 0.98);
    padding: 24px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
  }

  .lp-navbar-collapse.open {
    display: flex;
  }

  .lp-navbar-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .lp-navbar-links .nav-link {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 18px !important;
  }

  .lp-navbar-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 1rem;
    margin-top: 12px;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.lp-hero {
  background: var(--light-bg);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(174, 143, 83, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 188, 119, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.lp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(174, 143, 83, 0.12);
  border: 1px solid rgba(174, 143, 83, 0.30);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.lp-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.lp-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}

.lp-hero-title .lp-gold-text {
  display: inline;
}

.lp-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0;
}

.lp-hero-awards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-hero-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(174, 143, 83, 0.10);
  border: 1px solid rgba(174, 143, 83, 0.25);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px !important;
  border-radius: var(--radius-full);
}

.lp-hero-award-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}

.lp-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lp-hero-social-proof-avatars {
  display: flex;
  direction: ltr;
}

.lp-hero-social-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  object-fit: cover;
  display: block;
  margin-inline-start: -10px;
  box-shadow: 0 2px 8px rgba(52, 70, 84, 0.15);
}

.lp-hero-social-proof-avatars .lp-hero-social-proof-avatar:first-child {
  margin-inline-start: 0;
}

.lp-hero-social-proof-stars {
  color: #F5B800;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-btn-primary {
  display: inline-flex;
  direction: ltr;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.lp-btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(174, 143, 83, 0.40);
}

.lp-btn-outline {
  display: inline-flex;
  direction: ltr;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
  transition: all var(--transition);
}

.lp-btn-outline:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: rgba(174, 143, 83, 0.06);
}

.lp-hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-image-wrap img {
  width: 100%;
  max-width: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.lp-hero-float-card {
  position: absolute;
  z-index: 10;
  direction: ltr;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(52, 70, 84, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.lp-hero-float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-hero-float-card.top-left {
  top: 30px;
  left: -30px;
  animation: float-card 4s ease-in-out infinite;
}

.lp-hero-float-card.bottom-right {
  bottom: 40px;
  right: -20px;
  animation: float-card 4s ease-in-out infinite 1.5s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================
   DOWNLOAD BADGES SECTION
   ========================================== */
.lp-download-badges {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--border-light);
}

.lp-download-badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.lp-store-badge {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 200px;
}

.lp-store-badge:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(52, 70, 84, 0.25);
}

.lp-store-badge-icon {
  font-size: 2rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.lp-store-badge-text span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lp-store-badge-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2px;
}

.lp-download-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.lp-features {
  background: var(--light-bg);
  padding: 80px 0;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  border-inline-start: 4px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(52, 70, 84, 0.12);
}

.lp-feature-card.blue {
  border-inline-start-color: #3B82F6;
}

.lp-feature-card.gold {
  border-inline-start-color: var(--gold);
}

.lp-feature-card.green {
  border-inline-start-color: var(--teal);
}

.lp-feature-card.purple {
  border-inline-start-color: #8B5CF6;
}

.lp-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.lp-feature-card.blue .lp-feature-icon-wrap {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.lp-feature-card.gold .lp-feature-icon-wrap {
  background: rgba(174, 143, 83, 0.12);
  color: var(--gold);
}

.lp-feature-card.green .lp-feature-icon-wrap {
  background: rgba(2, 188, 119, 0.12);
  color: var(--teal);
}

.lp-feature-card.purple .lp-feature-icon-wrap {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.lp-feature-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.lp-feature-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Section-level CTA — used after Features and other content sections */
.lp-section-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.lp-how-it-works {
  background: var(--white);
  padding: 80px 0;
}

.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.lp-how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, var(--gold), var(--teal));
  z-index: 0;
}

html[dir="rtl"] .lp-how-steps::before {
  right: calc(100% / 6);
  left: calc(100% / 6);
}

.lp-how-step {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}

.lp-how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.lp-how-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
}

.lp-how-step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.25;
}

.lp-how-step:nth-child(1) .lp-how-step-number {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.lp-how-step:nth-child(2) .lp-how-step-number {
  background: rgba(174, 143, 83, 0.12);
  color: var(--gold-dark);
}

.lp-how-step:nth-child(3) .lp-how-step-number {
  background: rgba(2, 188, 119, 0.12);
  color: var(--teal);
}

.lp-how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.lp-how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ==========================================
   PHONE MOCKUP SECTION
   ========================================== */
.lp-phone-mockup {
  background: var(--dark-bg);
  padding: 80px 0;
  overflow: hidden;
}

.lp-phone-mockup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.lp-phone-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-phone-benefits h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.lp-phone-benefits p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.8;
}

.lp-phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-phone-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  transition: background var(--transition);
}

.lp-phone-tag:hover {
  background: rgba(174, 143, 83, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.lp-phone-tag i {
  color: var(--gold);
}

/* CSS iPhone Mockup */
.lp-phone-frame-wrap {
  display: flex;
  justify-content: center;
}

.lp-phone-frame {
  width: 260px;
  background: #1C1C1E;
  border-radius: 44px;
  border: 6px solid #3A3A3C;
  box-shadow:
    0 0 0 2px #555,
    0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.lp-phone-notch {
  width: 100px;
  height: 26px;
  background: #1C1C1E;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-phone-notch::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #2A2A2C;
  border-radius: 50%;
  border: 2px solid #3A3A3C;
}

.lp-phone-screen {
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark-card) 100%);
  padding: 16px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-phone-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
}

.lp-phone-screen-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 8px 0;
}

.lp-phone-session-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(174, 143, 83, 0.2);
}

.lp-phone-teacher-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lp-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-phone-teacher-info {
  flex: 1;
}

.lp-phone-teacher-info strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.lp-phone-teacher-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.lp-phone-rating {
  color: #F5B800;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.lp-phone-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  justify-content: center;
  margin: 8px 0;
}

.lp-phone-waveform span {
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
  animation: waveform 1.2s ease-in-out infinite;
}

.lp-phone-waveform span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}

.lp-phone-waveform span:nth-child(2) {
  height: 70%;
  animation-delay: 0.1s;
}

.lp-phone-waveform span:nth-child(3) {
  height: 55%;
  animation-delay: 0.2s;
}

.lp-phone-waveform span:nth-child(4) {
  height: 90%;
  animation-delay: 0.3s;
}

.lp-phone-waveform span:nth-child(5) {
  height: 60%;
  animation-delay: 0.4s;
}

.lp-phone-waveform span:nth-child(6) {
  height: 80%;
  animation-delay: 0.5s;
}

.lp-phone-waveform span:nth-child(7) {
  height: 45%;
  animation-delay: 0.6s;
}

.lp-phone-waveform span:nth-child(8) {
  height: 75%;
  animation-delay: 0.7s;
}

.lp-phone-waveform span:nth-child(9) {
  height: 50%;
  animation-delay: 0.8s;
}

.lp-phone-waveform span:nth-child(10) {
  height: 35%;
  animation-delay: 0.9s;
}

@keyframes waveform {

  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.lp-phone-timer {
  text-align: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.lp-phone-controls {
  display: flex;
  justify-content: space-around;
  margin-top: 8px;
}

.lp-phone-control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.lp-phone-control-btn.main {
  background: var(--gold-gradient);
  color: var(--white);
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(174, 143, 83, 0.4);
}

.lp-phone-progress {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
}

.lp-phone-progress-bar {
  height: 100%;
  width: 65%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.lp-stats {
  background: var(--dark-bg);
  padding: 80px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-stat-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.lp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient, var(--gold-gradient));
}

.lp-stat-card:hover {
  transform: translateY(-6px);
}

.lp-stat-card.blue {
  --accent-gradient: linear-gradient(90deg, #3B82F6, #60A5FA);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.12);
}

.lp-stat-card.blue:hover {
  box-shadow: 0 16px 56px rgba(59, 130, 246, 0.20);
}

.lp-stat-card.gold {
  --accent-gradient: var(--gold-gradient);
  box-shadow: 0 0 40px rgba(174, 143, 83, 0.12);
}

.lp-stat-card.gold:hover {
  box-shadow: 0 16px 56px rgba(174, 143, 83, 0.22);
}

.lp-stat-card.green {
  --accent-gradient: linear-gradient(90deg, #02BC77, #34D399);
  box-shadow: 0 0 40px rgba(2, 188, 119, 0.12);
}

.lp-stat-card.green:hover {
  box-shadow: 0 16px 56px rgba(2, 188, 119, 0.20);
}

.lp-stat-card.purple {
  --accent-gradient: linear-gradient(90deg, #8B5CF6, #A78BFA);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.12);
}

.lp-stat-card.purple:hover {
  box-shadow: 0 16px 56px rgba(139, 92, 246, 0.20);
}

.lp-stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.lp-stat-card.blue .lp-stat-icon {
  color: #60A5FA;
}

.lp-stat-card.gold .lp-stat-icon {
  color: var(--gold-light);
}

.lp-stat-card.green .lp-stat-icon {
  color: #34D399;
}

.lp-stat-card.purple .lp-stat-icon {
  color: #A78BFA;
}

.lp-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  direction: ltr;
}

.lp-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ==========================================
   AWARDS SECTION
   ========================================== */
.lp-awards {
  background: var(--light-bg);
  padding: 80px 0;
}

.lp-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.lp-award-card {
  background: linear-gradient(135deg, rgba(174, 143, 83, 0.10), rgba(201, 169, 104, 0.06));
  border: 1px solid rgba(174, 143, 83, 0.30);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lp-award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.lp-award-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.lp-award-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.lp-award-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.lp-testimonials {
  background: var(--white);
  padding: 80px 0;
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lp-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.lp-testimonial-stars {
  color: #F5B800;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.lp-testimonial-quote {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-inline-start: 20px;
}

.lp-testimonial-quote::before {
  content: '"';
  position: absolute;
  inset-inline-start: 0;
  top: -4px;
  font-size: 2.5rem;
  color: var(--gold);
  font-family: serif;
  line-height: 1;
  opacity: 0.4;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

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

.lp-testimonial-avatar.bg-1 {
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.lp-testimonial-avatar.bg-2 {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.lp-testimonial-avatar.bg-3 {
  background: linear-gradient(135deg, var(--teal), #34D399);
}

.lp-testimonial-avatar.bg-4 {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.lp-testimonial-avatar.bg-5 {
  background: linear-gradient(135deg, #EC4899, #F472B6);
}

.lp-testimonial-avatar.bg-6 {
  background: linear-gradient(135deg, #F59E0B, #FCD34D);
}

.lp-testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.lp-testimonial-store {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.lp-testimonial-store i {
  font-size: 0.8rem;
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
.lp-video {
  background: var(--navy);
  padding: 80px 0;
}

.lp-video-inner {
  text-align: center;
}

.lp-video-inner .lp-h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.lp-video-inner .lp-lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

.lp-video-frame-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  max-width: 900px;
  margin: 0 auto;
}

.lp-video-frame-wrap::before {
  content: '';
  display: block;
  padding-top: 56.25%;
  /* 16:9 */
}

.lp-video-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.lp-faq {
  background: #f8f9fb;
  padding: 80px 0;
}

.lp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e8eaed;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-faq-item.open {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(52, 70, 84, 0.18);
}

.lp-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: none;
  outline: none;
  user-select: none;
  gap: 16px;
  text-align: right;
  transition: color 0.3s ease;
}

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

.lp-faq-question::-webkit-details-marker {
  display: none;
}

.lp-faq-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 28px;
  text-align: center;
  transition: color 0.3s ease;
}

.lp-faq-item.open .lp-faq-number {
  color: rgba(174, 143, 83, 0.85);
}

.lp-faq-text {
  flex: 1;
  text-align: right;
}

.lp-faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}

.lp-faq-item.open .lp-faq-toggle-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Chevron shown when closed, X shown when open */
.lp-faq-chevron {
  display: block;
}

.lp-faq-close {
  display: none;
}

.lp-faq-item.open .lp-faq-chevron {
  display: none;
}

.lp-faq-item.open .lp-faq-close {
  display: block;
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  line-height: 1.85;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.lp-newsletter {
  background: var(--navy);
  padding: 80px 0;
}

.lp-newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.lp-newsletter-inner .lp-h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.lp-newsletter-inner .lp-lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.lp-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  direction: rtl;
}

.lp-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 14px 22px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.lp-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lp-newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.lp-newsletter-submit {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
}

.lp-newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(174, 143, 83, 0.40);
}

/* ==========================================
   DOWNLOAD CTA SECTION
   ========================================== */
.lp-download-cta {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-download-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(174, 143, 83, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-download-cta .lp-h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}

.lp-download-cta .lp-lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 48px;
  position: relative;
}

.lp-download-cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
.lp-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer-logo {
  height: 42px;
  width: auto;
}

.lp-footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}

.lp-footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lp-footer-social-link:hover {
  background: rgba(174, 143, 83, 0.2);
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.lp-footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: 0.03em;
}

.lp-footer-col a,
.lp-footer-col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.5;
}

.lp-footer-col a:hover {
  color: var(--gold-light);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  text-align: center;
}

.lp-footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.30);
}

/* ==========================================
   AOS ANIMATION CUSTOM
   ========================================== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ==========================================
   UTILITY
   ========================================== */
.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero-content {
    align-items: center;
  }

  .lp-hero-subtitle {
    max-width: 100%;
  }

  .lp-hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .lp-hero-float-card.top-left {
    left: 8px;
    top: 12px;
  }

  .lp-hero-float-card.bottom-right {
    right: 8px;
    bottom: 12px;
  }

  .lp-hero-float-card {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .lp-hero-float-card-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .lp-features-grid {
    grid-template-columns: 1fr;
  }

  .lp-phone-mockup-inner {
    grid-template-columns: 1fr;
  }

  .lp-phone-frame-wrap {
    display: none;
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================== */
@media (max-width: 768px) {

  .lp-section,
  .lp-hero {
    padding: 60px 0;
  }

  .lp-hero {
    padding-top: 110px;
  }

  .lp-how-steps {
    grid-template-columns: 1fr;
  }

  .lp-how-steps::before {
    display: none;
  }

  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lp-awards-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-download-badges-inner {
    flex-direction: column;
    align-items: center;
  }

  .lp-download-divider {
    display: none;
  }

  .lp-store-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .lp-newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .lp-newsletter-submit {
    width: 100%;
  }

  .lp-btn-primary,
  .lp-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .lp-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .lp-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================== */
@media (max-width: 480px) {
  .lp-section-header {
    margin-bottom: 36px;
  }

  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lp-stat-card {
    padding: 24px 16px;
  }

  .lp-stat-number {
    font-size: 1.8rem;
  }

  .lp-how-step {
    padding: 28px 20px;
  }

  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-social-proof {
    flex-direction: column;
    text-align: center;
  }

  .lp-hero-awards {
    justify-content: center;
  }

  .lp-hero-image-wrap {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero-float-card {
    display: none;
  }

  .lp-hero-float-card.bottom-right {
    display: flex;
    position: static;
    margin: 12px auto 0;
    width: fit-content;
    transform: none;
    animation: none;
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(52, 70, 84, 0.12);
  }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.lp-whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease;
}

.lp-whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .lp-whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
}

/* ==========================================
   HEADER BOOTSTRAP DROPDOWN — BRAND STYLED
   ========================================== */
.header-section .dropdown-menu {
  background: #1B2E3D;
  border: 1px solid rgba(174, 143, 83, 0.2);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(15, 25, 35, 0.25);
  margin-top: 8px;
}

.header-section .dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
  transition: background 0.2s, color 0.2s;
}

.header-section .dropdown-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.header-section .dropdown-item:hover,
.header-section .dropdown-item:focus {
  background: rgba(174, 143, 83, 0.12);
  color: #fff;
}

/* ── Social icons (footer) ─────────────────────────────────────── */
.lp-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #344654;
  color: #AE8F53;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  margin: 3px;
  border: 1.5px solid rgba(174, 143, 83, 0.3);
}

.lp-social-icon:hover {
  background: #AE8F53;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
  border-color: #AE8F53;
}

/* ==========================================
   INNER PAGES (Privacy, Terms, FAQs)
   Shared premium layout system
   ========================================== */

/* Hero header — navy gradient with page title */
.lp-inner-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1E3A4C 100%);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}


.lp-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23AE8F53' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.lp-inner-hero .lp-container {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-breadcrumb-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.lp-breadcrumb-link:hover {
  color: var(--gold-light);
}

.lp-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.lp-breadcrumb-current {
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Hero body */
.lp-inner-hero-body {
  text-align: right;
}

.lp-inner-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 16px 0 12px;
  line-height: 1.25;
}

.lp-inner-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Sibling page links in hero */
.lp-inner-hero-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-inline-end: 2px;
  /* prevent active pill clipping at container edge */
}

.lp-inner-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px !important;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  direction: ltr;
  /* icon always leads on left, text follows — consistent in RTL doc */
}

.lp-inner-hero-link:hover {
  background: rgba(174, 143, 83, 0.18);
  border-color: rgba(174, 143, 83, 0.4);
  color: var(--gold-light);
  text-decoration: none;
}

.lp-inner-hero-link.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #fff;
}

/* Content area */
.lp-inner-content {
  background: var(--white);
  padding: 64px 0 80px;
}

.lp-inner-content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* Prose — richly styled content block for DB-stored HTML */
.lp-inner-prose {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #3A4A58;
  text-align: right;
}

.lp-inner-prose h1,
.lp-inner-prose h2,
.lp-inner-prose h3 {
  color: var(--navy);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.lp-inner-prose h2 {
  font-size: 1.4rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.4em;
}

.lp-inner-prose h3 {
  font-size: 1.15rem;
  color: var(--gold-dark);
}

.lp-inner-prose p {
  margin-bottom: 1.2em;
}

.lp-inner-prose ul,
.lp-inner-prose ol {
  padding-inline-start: 1.5em;
  margin-bottom: 1.2em;
}

.lp-inner-prose li {
  margin-bottom: 0.5em;
}

.lp-inner-prose a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-inner-prose a:hover {
  color: var(--gold);
}

.lp-inner-prose strong {
  color: var(--navy);
  font-weight: 700;
}

.lp-inner-prose blockquote {
  border-inline-start: 4px solid var(--gold);
  background: rgba(174, 143, 83, 0.06);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Footer CTA strip */
.lp-inner-footer-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.lp-inner-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lp-inner-footer-cta-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.lp-inner-footer-cta h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.lp-inner-footer-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 420px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lp-inner-hero {
    padding: 40px 0 36px;
  }

  .lp-inner-hero-title {
    font-size: 1.6rem;
  }

  .lp-inner-hero-links {
    gap: 8px;
  }

  .lp-inner-hero-link {
    font-size: 0.8rem;
    padding: 7px 14px;
  }

  .lp-inner-content {
    padding: 40px 0 56px;
  }

  .lp-inner-prose {
    font-size: 1rem;
  }

  .lp-inner-prose h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lp-breadcrumb {
    margin-bottom: 20px;
  }

  .lp-inner-hero-sub {
    font-size: 0.95rem;
  }

  .lp-inner-footer-cta {
    padding: 40px 0;
  }

  .lp-inner-footer-cta h2 {
    font-size: 1.35rem;
  }
}