/* ==========================================================================
   XARKLO FlexPay — Premium Fintech styling
   ========================================================================== */

/* Variables & Base Custom Setup */
:root {
  --fp-gold: #d4af37;
  --fp-gold-glow: rgba(212, 175, 55, 0.15);
  --fp-gold-light: #f3e5ab;
  --fp-cyan: #00d9ff;
  --fp-purple: #8b5cf6;
  --fp-dark-bg: #050609;
  --fp-panel-bg: rgba(17, 24, 32, 0.45);
  --fp-glass-border: rgba(255, 255, 255, 0.06);
  --fp-text-main: #ffffff;
  --fp-text-muted: #b0b8c1;
  --fp-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.flexpay-page {
  background-color: var(--fp-dark-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 217, 255, 0.04) 0%, transparent 40%);
  color: var(--fp-text-main);
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--fp-dark-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--fp-gold);
}

/* Luxurious Loader */
#xk-loader {
  position: fixed;
  inset: 0;
  background: #030406;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}
.loader-content {
  text-align: center;
}
.loader-logo {
  margin-bottom: 24px;
  animation: logoPulse 2s infinite ease-in-out;
}
.loader-logo img {
  height: 60px;
  width: auto;
}
.loader-line-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin: 16px auto;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.loader-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--fp-gold), var(--fp-cyan));
  transition: width 0.3s ease;
}
.loader-pct {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fp-gold);
  letter-spacing: 1px;
}
@keyframes logoPulse {
  0% { transform: scale(0.95); opacity: 0.7; filter: drop-shadow(0 0 10px rgba(212,175,55,0.2)); }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px rgba(212,175,55,0.5)); }
  100% { transform: scale(0.95); opacity: 0.7; filter: drop-shadow(0 0 10px rgba(212,175,55,0.2)); }
}

/* Aurora & Particles canvas background */
.aurora-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
  mix-blend-mode: screen;
}
.aurora-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--fp-gold) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}
.aurora-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--fp-cyan) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}
.aurora-orb-3 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--fp-purple) 0%, transparent 70%);
  top: 40%;
  left: 30%;
}

/* Section Common Container styles */
.fp-section {
  padding: 140px 0;
  position: relative;
}
.fp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.fp-sec-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.fp-badge {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--fp-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.fp-sec-header h2 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--fp-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fp-sec-header p {
  font-size: 1.15rem;
  color: var(--fp-text-muted);
  line-height: 1.7;
}

/* Glassmorphism Common Class */
.fp-glass-card {
  background: var(--fp-panel-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--fp-glass-border);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--fp-transition);
}

/* Premium Buttons Styling */
.fp-btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.fp-btn {
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
}
.fp-btn-primary {
  background: linear-gradient(135deg, var(--fp-gold), var(--fp-gold-light));
  color: #050609;
  box-shadow: 0 10px 30px var(--fp-gold-glow);
  border: none;
}
.fp-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
}
.fp-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--fp-glass-border);
  color: var(--fp-text-main);
  backdrop-filter: blur(10px);
}
.fp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* SECTION 1 — HERO */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-content h1 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, var(--fp-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.75;
  color: var(--fp-text-muted);
  margin-bottom: 48px;
  max-width: 650px;
}
@media (max-width: 1024px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Floating Glass Cards in Hero */
.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero-visual {
    height: 380px;
    margin-top: 40px;
  }
}
.floating-card {
  position: absolute;
  padding: 24px 30px;
  border-radius: 20px;
  width: 320px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.card-scale-1 {
  background: rgba(212,175,55,0.06);
  top: 10%;
  left: 5%;
  z-index: 3;
}
.card-scale-2 {
  background: rgba(0,217,255,0.04);
  bottom: 12%;
  right: 5%;
  z-index: 2;
}
.card-scale-3 {
  background: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  border-color: rgba(255,255,255,0.04);
  z-index: 1;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-head span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.card-head .lbl-gold { color: var(--fp-gold); }
.card-head .lbl-cyan { color: var(--fp-cyan); }
.card-head .lbl-white { color: #fff; }
.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.card-subtext {
  font-size: 0.85rem;
  color: var(--fp-text-muted);
}
.card-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 16px 0;
}
.card-progress-bar {
  height: 100%;
  border-radius: 2px;
}
.pb-gold { background: var(--fp-gold); width: 50%; }
.pb-cyan { background: var(--fp-cyan); width: 80%; }
.pb-grad { background: linear-gradient(90deg, var(--fp-gold), var(--fp-cyan)); width: 100%; }

/* SECTION 2 — WHY FLEXPAY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}
@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  padding: 48px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--fp-gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.08);
}
.why-icon {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--fp-glass-border);
  color: var(--fp-gold);
  margin-bottom: 30px;
}
.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}
.why-card p {
  color: var(--fp-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* SECTION 3 — HOW IT WORKS */
.timeline-outer {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}
.timeline-progress-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, var(--fp-gold), var(--fp-cyan));
  height: 0%;
  z-index: 2;
  transform-origin: top center;
}
.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 80px;
  z-index: 3;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-side {
  width: 50%;
  padding: 0 40px;
}
.timeline-side-left {
  text-align: right;
}
.timeline-side-right {
  text-align: left;
}
.timeline-node {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fp-dark-bg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.4s;
}
.timeline-node-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fp-text-muted);
}
.timeline-item.active .timeline-node {
  border-color: var(--fp-gold);
  box-shadow: 0 0 15px var(--fp-gold);
}
.timeline-item.active .timeline-node-num {
  color: var(--fp-gold);
}
.timeline-card {
  padding: 30px;
  max-width: 420px;
  display: inline-block;
  text-align: inherit;
}
.timeline-side-left .timeline-card {
  margin-right: auto;
}
.timeline-side-right .timeline-card {
  margin-left: auto;
}
.timeline-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.timeline-card p {
  color: var(--fp-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line, .timeline-progress-line {
    left: 20px;
    transform: none;
  }
  .timeline-item {
    flex-direction: column;
    padding-left: 50px;
    margin-bottom: 50px;
  }
  .timeline-side {
    width: 100%;
    padding: 0;
    text-align: left !important;
  }
  .timeline-node {
    left: 20px;
    top: 25px;
    transform: translate(-50%, -50%);
  }
  .timeline-side-left .timeline-card, 
  .timeline-side-right .timeline-card {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

/* SECTION 4 — PAYMENT OPTIONS */
.opts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.opt-card {
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.opt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.opt-card:hover::before {
  opacity: 1;
}
.opt-card:hover {
  border-color: var(--fp-gold);
  transform: translateY(-8px);
}
.opt-badge {
  font-family: 'Poppins', sans-serif;
  align-self: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--fp-glass-border);
  color: var(--fp-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.opt-card.popular .opt-badge {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--fp-gold);
}
.opt-card.popular {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 175, 55, 0.04);
}
.opt-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
.opt-structure {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.opt-milestone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.opt-milestone:last-child {
  border-bottom: none;
}
.opt-milestone-pct {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fp-gold);
}
.opt-milestone-label {
  font-size: 0.95rem;
  color: var(--fp-text-muted);
}
.opt-duration {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.opt-duration span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fp-text-muted);
}
.opt-desc {
  font-size: 0.95rem;
  color: var(--fp-text-muted);
  line-height: 1.6;
}
.opt-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--fp-glass-border);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}
.opt-card:hover .opt-btn {
  background: var(--fp-gold);
  color: #050609;
  border-color: var(--fp-gold);
  box-shadow: 0 10px 20px var(--fp-gold-glow);
}

/* SECTION 5 — WHAT SERVICES CAN BE PAID IN INSTALLMENTS – Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 30px;
}
.bento-tile {
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-tile-1 { grid-column: span 2; }
.bento-tile-2 { grid-column: span 1; }
.bento-tile-3 { grid-column: span 1; }
.bento-tile-4 { grid-column: span 2; }
.bento-tile-5 { grid-column: span 1; }
.bento-tile-6 { grid-column: span 1; }
.bento-tile-7 { grid-column: span 1; }
.bento-tile-8 { grid-column: span 3; }

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .bento-tile-1 { grid-column: span 2; }
  .bento-tile-2 { grid-column: span 1; }
  .bento-tile-3 { grid-column: span 1; }
  .bento-tile-4 { grid-column: span 2; }
  .bento-tile-5 { grid-column: span 1; }
  .bento-tile-6 { grid-column: span 1; }
  .bento-tile-7 { grid-column: span 1; }
  .bento-tile-8 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-tile {
    grid-column: span 1 !important;
    padding: 36px;
    min-height: 200px;
  }
}
.bento-tile:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.bento-icon {
  font-size: 2.2rem;
  color: var(--fp-gold);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.bento-tile:hover .bento-icon {
  transform: scale(1.1) rotate(5deg);
}
.bento-tile h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bento-tile p {
  color: var(--fp-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
/* Abstract visual elements in bento */
.bento-decor {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.6s ease;
}
.bento-tile:hover .bento-decor {
  transform: scale(1.3) translate(-10px, 10px);
}
.decor-gradient {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(0,217,255,0.1));
}

/* SECTION 6 — WHY CLIENTS LOVE FLEXPAY (Stats) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  padding: 40px 30px;
  text-align: center;
}
.stat-counter {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--fp-gold);
  line-height: 1.1;
  margin-bottom: 10px;
  display: inline-block;
}
.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION 7 — FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-btn {
  width: 100%;
  padding: 24px 30px;
  background: rgba(17, 24, 32, 0.4);
  border: 1px solid var(--fp-glass-border);
  border-radius: 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--fp-transition);
}
[dir="ltr"] .faq-btn {
  text-align: left;
}
.faq-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(17, 24, 32, 0.6);
}
.faq-icon-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  flex-shrink: 0;
}
.faq-icon-arrow::before,
.faq-icon-arrow::after {
  content: '';
  position: absolute;
  background: var(--fp-gold);
  transition: transform 0.3s;
}
.faq-icon-arrow::before {
  width: 2px;
  height: 12px;
}
.faq-icon-arrow::after {
  width: 12px;
  height: 2px;
}
.faq-item.open .faq-icon-arrow {
  transform: rotate(45deg);
}
.faq-item.open .faq-btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(17, 24, 32, 0.7);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  background: rgba(8, 11, 16, 0.6);
  border: 1px solid var(--fp-glass-border);
  border-top: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-body {
  border-color: rgba(212, 175, 55, 0.3);
}
.faq-content {
  padding: 30px;
  color: var(--fp-text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

/* SECTION 8 — TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.trust-item {
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.trust-item-icon {
  font-size: 2rem;
  color: var(--fp-gold);
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,175,55,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* SECTION 9 — FINAL CTA (Cinematic) */
.cta-section {
  padding: 160px 0;
  position: relative;
  z-index: 1;
}
.cta-glass-box {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-glass-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glass-box h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, rgba(212, 175, 55, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-glass-box p {
  color: var(--fp-text-muted);
  font-size: 1.25rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* RTL Helpers */
[dir="rtl"] body {
  font-family: 'IBM Plex Sans Arabic', 'Poppins', sans-serif;
}
[dir="rtl"] .fp-btn-primary::after,
[dir="rtl"] .fp-btn-secondary::after {
  content: none;
}
