@charset "UTF-8";

/* ════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════ */
:root {
  --primary:        #4f46e5;
  --primary-dark:   #3730a3;
  --primary-light:  #eef2ff;
  --primary-mid:    #6366f1;
  --accent:         #22c55e;
  --accent-light:   #dcfce7;
  --gold:           #f59e0b;
  --foreground:     #0f172a;
  --muted:          #64748b;
  --card-bg:        #ffffff;
  --border:         #e2e8f0;
  --bg:             #f8fafc;
  --bg-white:       #ffffff;
  --font-heading:   'Outfit', 'Cairo', sans-serif;
  --font-body:      'Cairo', sans-serif;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:      0 4px 16px rgba(79,70,229,.10);
  --shadow-lg:      0 12px 40px rgba(79,70,229,.14);
  --shadow-glow:    0 0 0 3px rgba(79,70,229,.18);
}

/* ════════════════════════════════════
   RESET / BASE
════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

a { text-decoration: none; color: inherit; }
a:hover { color: inherit; }
button { border: none; outline: none; cursor: pointer; background: transparent; }

img { max-width: 100%; }

/* ════════════════════════════════════
   UTILITIES
════════════════════════════════════ */
.fp-gradient-text {
  background: linear-gradient(135deg, var(--primary-mid), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════
   BADGE
════════════════════════════════════ */
.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: .35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  letter-spacing: .3px;
}

.fp-badge--glow {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  position: relative;
}

.fp-badge--light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

.fp-badge__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.fp-btn--primary {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.fp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(79,70,229,.2);
  color: var(--primary);
}

.fp-btn--ghost {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
}
.fp-btn--ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

.fp-btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.fp-btn--white:hover { transform: translateY(-2px); color: var(--primary); }

.fp-btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
}
.fp-btn--ghost-white:hover { background: rgba(255,255,255,.1); color: #fff; }

.fp-play-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all .35s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  transition: color .3s;
}
#navbar.scrolled .brand-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link-custom {
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 2rem;
  color: rgba(255,255,255,.75);
  transition: all .25s;
}
.nav-link-custom:hover { color: #fff; background: rgba(255,255,255,.12); }
#navbar.scrolled .nav-link-custom { color: var(--muted); }
#navbar.scrolled .nav-link-custom:hover { color: var(--primary); background: var(--primary-light); }

.btn-nav-login {
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 2rem;
  color: rgba(255,255,255,.85) !important;
  font-family: var(--font-heading);
  transition: all .25s;
}
.btn-nav-login:hover { background: rgba(255,255,255,.12); }
#navbar.scrolled .btn-nav-login { color: var(--foreground) !important; }
#navbar.scrolled .btn-nav-login:hover { background: var(--primary-light); color: var(--primary) !important; }

.btn-nav-register {
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem 1.3rem;
  border-radius: 2rem;
  background: #fff;
  color: var(--primary) !important;
  font-family: var(--font-heading);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .25s;
}
.btn-nav-register:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }
#navbar.scrolled .btn-nav-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff !important;
  box-shadow: var(--shadow-md);
}

.mobile-menu {
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid var(--border);
  margin: .5rem 1rem 0;
  animation: slideDown .3s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-link {
  display: block;
  padding: .7rem 1.2rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: .75rem;
  transition: all .2s;
}
.mobile-link:hover { color: var(--primary); background: var(--primary-light); }
.hamburger-icon { cursor: pointer; color: #fff; font-size: 1.5rem; }
#navbar.scrolled .hamburger-icon { color: var(--foreground); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.fp-hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(79,70,229,.12) 0%, transparent 45%);
  pointer-events: none;
}

.fp-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.fp-hero__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .fp-hero__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .fp-hero__mockup { order: -1; }
}

.fp-hero__text { position: relative; z-index: 2; }

.fp-hero__h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
}

.fp-hero__p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.fp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.fp-hero__trust {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.fp-trust-avatars {
  display: flex;
}
.fp-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.fp-trust-avatars .fp-avatar:first-child { margin-left: 0; }
.fp-trust-text {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.fp-trust-text strong { color: rgba(255,255,255,.85); }

/* ── Browser Mockup ── */
.fp-hero__mockup {
  position: relative;
  z-index: 2;
}

.fp-mock-browser {
  background: #1e293b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
}

.fp-mock-bar {
  background: #0f172a;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fp-mock-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.fp-mock-bar span:nth-child(1) { background: #ef4444; }
.fp-mock-bar span:nth-child(2) { background: #f59e0b; }
.fp-mock-bar span:nth-child(3) { background: #22c55e; }

.fp-mock-url {
  margin: 0 auto;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  padding: .2rem .75rem;
  border-radius: 4px;
  font-family: monospace;
}

.fp-mock-body {
  display: flex;
  height: 280px;
}

.fp-mock-sidebar {
  width: 44px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem 0;
  gap: .5rem;
}
.fp-mock-logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .5rem;
}
.fp-mock-sitem {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  transition: all .2s;
}
.fp-mock-sitem.active, .fp-mock-sitem:hover {
  background: rgba(99,102,241,.2);
  color: #a5b4fc;
}

.fp-mock-content {
  flex: 1;
  padding: .75rem;
  overflow: hidden;
}

.fp-mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}
.fp-mock-title { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.8); }
.fp-mock-actions { display: flex; align-items: center; gap: .5rem; }
.fp-mock-btn {
  font-size: .65rem;
  background: var(--primary);
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 4px;
  font-weight: 600;
}
.fp-mock-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  color: #fff;
  font-weight: 700;
}

.fp-mock-board {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .5rem;
  height: calc(100% - 36px);
  overflow: hidden;
}
.fp-mock-col-head {
  font-size: .6rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.fp-mock-card {
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: .4rem .5rem;
  margin-bottom: .3rem;
  border-right: 3px solid rgba(99,102,241,.6);
}
.fp-mock-card--done { border-right-color: rgba(34,197,94,.6); }
.fp-mock-card--late { border-right-color: rgba(239,68,68,.6); }
.fp-mock-card-title { font-size: .62rem; color: rgba(255,255,255,.75); margin-bottom: .25rem; font-weight: 500; }
.fp-mock-prog {
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.fp-mock-prog div { height: 100%; border-radius: 2px; transition: width 1s ease; }

/* Floating badges */
.fp-mock-float {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .5rem .85rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--foreground);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  white-space: nowrap;
  animation: floatBadge 3.5s ease-in-out infinite;
}
.fp-mock-float--top    { top: 10px; left: -20px; }
.fp-mock-float--bottom { bottom: 10px; right: -20px; animation-delay: 1.5s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (max-width: 575.98px) {
  .fp-mock-float { display: none; }
}

/* ── Stats Row ── */
.fp-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.fp-stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.fp-stat__val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}
.fp-stat__lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: .25rem;
}
.fp-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .fp-stat { padding: .75rem 1rem; }
  .fp-stat-div { display: none; }
  .fp-stat__val { font-size: 1.4rem; }
}

/* ════════════════════════════════════
   SECTION BASE
════════════════════════════════════ */
.fp-section { padding: 6rem 0; position: relative; }
.fp-section--white { background: #fff; }
.fp-section--gray  { background: var(--bg); }

.fp-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.fp-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--foreground);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.fp-section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════ */
.fp-feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.fp-feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.fp-feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fp-feat-card:hover::before { opacity: 1; }

.fp-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  position: relative; z-index: 1;
}
.fp-feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: .5rem;
  position: relative; z-index: 1;
}
.fp-feat-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.fp-feat-arrow {
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  position: relative; z-index: 1;
}
.fp-feat-card:hover .fp-feat-arrow { opacity: 1; transform: translateX(-4px); }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.fp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.fp-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 0 1.5rem;
}
.fp-step-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to left, var(--primary-light), var(--primary));
  align-self: flex-start;
  margin-top: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .fp-step-line { display: none; }
  .fp-step { max-width: 100%; margin-bottom: 2rem; }
}
.fp-step__num {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.fp-step__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1.1rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}
.fp-step:hover .fp-step__icon { transform: scale(1.08); }
.fp-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: .5rem;
}
.fp-step__text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════
   TESTIMONIALS / SWIPER
════════════════════════════════════ */
.swiper-testimonials { padding: 1rem .5rem 4rem !important; }

.fp-review {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: transform .35s, box-shadow .35s;
  user-select: none;
}
.fp-review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fp-review__stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.fp-review__text {
  font-size: .92rem;
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.fp-review__author { display: flex; align-items: center; gap: .75rem; }
.fp-review__name { font-weight: 700; font-size: .92rem; color: var(--foreground); }
.fp-review__role { font-size: .75rem; color: var(--muted); }

.swiper-pagination-bullet {
  width: .6rem; height: .6rem;
  background: var(--border); opacity: 1;
  transition: all .3s;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 1.8rem; border-radius: 1rem;
}
.swiper-btn {
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--foreground);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.swiper-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ════════════════════════════════════
   PRICING
════════════════════════════════════ */
.fp-price-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.fp-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.fp-price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.fp-price-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.fp-price-card__head { margin-bottom: 1.5rem; }
.fp-price-card__name {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
}
.fp-price-card__price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .3rem;
}
.fp-price-card__amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--foreground);
  font-family: var(--font-heading);
  line-height: 1;
}
.fp-price-card__period {
  font-size: .85rem;
  color: var(--muted);
}
.fp-price-card__desc { font-size: .82rem; color: var(--muted); }

.fp-price-card__features {
  list-style: none;
  padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: .65rem;
  flex: 1;
}
.fp-price-card__features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  color: var(--foreground);
  font-weight: 500;
}
.fp-price-card__features li i { font-size: 1rem; flex-shrink: 0; }
.fp-price-card__features li i.bi-check-circle-fill { color: var(--accent); }
.fp-price-card__features li i.bi-x-circle-fill    { color: #cbd5e1; }
.fp-price-card__features li.muted { color: #94a3b8; }

.fp-price-card__btn {
  display: block;
  text-align: center;
  padding: .8rem;
  border-radius: .75rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  transition: all .25s;
  text-decoration: none;
}
.fp-price-card__btn--solid {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.fp-price-card__btn--solid:hover { opacity: .9; transform: translateY(-2px); color: #fff; }
.fp-price-card__btn--outline {
  border: 1.5px solid var(--border);
  color: var(--foreground);
}
.fp-price-card__btn--outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.fp-faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item.open { border-color: rgba(79,70,229,.35); box-shadow: 0 4px 20px rgba(79,70,229,.08); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  font-family: var(--font-heading);
  font-size: .97rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: right;
  transition: color .25s;
}
.faq-item.open .faq-btn { color: var(--primary); }
.faq-icon {
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  transition: background .3s, transform .4s;
}
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 1.5rem;
}
.faq-body.open { max-height: 200px; padding-bottom: 1.25rem; }
.faq-body p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.fp-cta {
  padding: 5rem 0;
  background: linear-gradient(155deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fp-cta__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.fp-cta__content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.fp-cta__h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
}
.fp-cta__p { font-size: 1.05rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 2.5rem; }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.fp-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.fp-contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform .3s, box-shadow .3s;
}
.fp-contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fp-contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.fp-contact-label { font-size: .75rem; color: var(--muted); margin-bottom: .15rem; }
.fp-contact-val   { font-weight: 600; font-size: .92rem; color: var(--foreground); }

.fp-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-control-custom {
  display: block; width: 100%;
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--foreground);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: .75rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form-control-custom:focus { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.form-control-custom::placeholder { color: var(--muted); font-family: var(--font-body); }
textarea.form-control-custom { resize: none; }

.btn-submit {
  width: 100%; padding: .85rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-family: var(--font-heading);
  font-size: .97rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  box-shadow: var(--shadow-md);
  transition: opacity .3s, transform .3s;
}
.btn-submit:hover { opacity: .9; transform: translateY(-2px); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}
.footer-body { padding: 4rem 0 2rem; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 900; color: #fff;
  margin-bottom: .7rem;
}
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: .9rem; font-family: var(--font-heading); }
.footer-link {
  display: block; font-size: .83rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .55rem;
  transition: color .25s;
}
.footer-link:hover { color: rgba(255,255,255,.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}
.footer-credit {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6rem 0;
  background: rgba(0,0,0,.25);
  font-size: .76rem;
  color: rgba(255,255,255,.25);
}
.footer-credit-logo { width: 20px; height: auto; opacity: .6; }

/* ════════════════════════════════════
   LOGIN PAGE (keep intact)
════════════════════════════════════ */
@media (max-width: 991.98px) { .loginPage .login_box { width: 100% !important; } }
@media (max-width: 767.98px) {
  .loginPage .login_box { width: 80% !important; }
  .loginPage .login_box .image_holder img { border-radius: 15px 15px 0 0 !important; }
}
.loginPage {
  width: 100%; min-height: calc(100vh - 155px);
  display: flex; align-items: center; justify-content: center;
}
.loginPage .login_box {
  min-height: 380px; background: white;
  border-radius: 15px; width: 70%; margin: auto;
}
.loginPage .login_box .image_holder { width: 100%; height: 100%; }
.loginPage .login_box .image_holder img {
  width: 100%; height: 100%;
  border-radius: 0 15px 15px 0; object-fit: cover;
}
.loginPage .login_box .login-form {
  padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; height: 100%;
}
.loginPage .login_box .login-form .login_content { margin-bottom: 20px; }
.loginPage .login_box .login-form .login_content .title { margin-bottom: 1rem; font-size: 16px; font-weight: 600; }
.loginPage .login_box .login-form .login_content .inp_holder { margin-bottom: 15px; }
.loginPage .login_box .login-form .login_content .inp_holder .login-label { margin-bottom: 6px; font-size: 11px; color: #959595; font-weight: 600; }
.loginPage .login_box .login-form .login_content .inp_holder .login-inp { padding: 5px 13px !important; border-radius: 6px; }
.loginPage .login_box .login-form .login_content .btn_holder .login-btn {
  width: 100%; color: white; text-align: center; margin-top: 15px;
  padding: .5rem 1rem; border-radius: .5rem;
  background: var(--primary); font-weight: 500;
}

/* ════════════════════════════════════
   MISC UTILITIES (kept for inner pages)
════════════════════════════════════ */
.main-table { width: 100%; border-radius: 7px; border: 1px solid #ddd !important; }
.main-table * { border: none !important; }
.main-table tr { border: 1px solid #ddd !important; }
.main-table tr th { background: #f9fafb; color: #6b7280; font-size: 12px; font-weight: bold; white-space: nowrap; padding: 10px; }
.main-table tr td { background: white; font-size: 14px; padding: 10px; }

.text-main-color { color: var(--primary); }
.py-60 { padding-top: 60px; padding-bottom: 60px; }

/* ════════════════════════════════════
   DASHBOARD LAYOUT  (ds-*)
════════════════════════════════════ */
:root{--ds-sidebar-w:220px;--ds-navbar-h:56px;}

/* Body */
.ds-body{margin:0;background:#f4f6f8;font-family:'Cairo','Segoe UI',Tahoma,Arial,sans-serif;}

/* ── Navbar ── */
.ds-navbar{position:fixed;top:0;right:0;left:0;height:var(--ds-navbar-h);background:#fff;border-bottom:1px solid #e5e7eb;z-index:1000;}
.ds-navbar-inner{display:flex;align-items:center;justify-content:space-between;height:100%;padding:0 14px;}

/* Right side */
.ds-navbar-right{display:flex;align-items:center;gap:2px;}
.ds-brand{display:flex;align-items:center;gap:7px;font-size:14.5px;font-weight:700;color:#374151;text-decoration:none;white-space:nowrap;padding:0 10px 0 8px;border-left:1px solid #e5e7eb;}
.ds-brand:hover{color:#6366f1;text-decoration:none;}
.ds-brand-icon{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#6366f1,#8b5cf6);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.ds-brand-icon svg{width:15px;height:15px;stroke:#fff;}
.ds-hamburger{width:32px;height:32px;border:none;background:transparent;border-radius:6px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s;margin:0 4px;}
.ds-hamburger:hover{background:#f3f4f6;}
.ds-hamburger svg{width:18px;height:18px;stroke:#6b7280;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.ds-breadcrumb{display:flex;align-items:center;}
.ds-breadcrumb-item{display:flex;align-items:center;gap:5px;font-size:13px;color:#374151;text-decoration:none;padding:5px 10px;border-radius:6px;transition:all .15s;font-family:'Cairo',sans-serif;}
.ds-breadcrumb-item:hover{background:#f3f4f6;color:#6366f1;text-decoration:none;}
.ds-breadcrumb-item svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* Left side */
.ds-navbar-left{display:flex;align-items:center;gap:2px;}
.ds-nav-icon-btn{width:32px;height:32px;border:none;background:transparent;border-radius:6px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s;position:relative;}
.ds-nav-icon-btn:hover{background:#f3f4f6;}
.ds-nav-icon-btn svg{width:17px;height:17px;stroke:#6b7280;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.ds-notif-wrap{position:relative;}
.ds-notif-dot{position:absolute;top:6px;left:6px;width:7px;height:7px;background:#ef4444;border-radius:50%;border:2px solid #fff;}
.ds-notif-count{width:auto;min-width:17px;height:17px;top:0;left:0;padding:0 4px;font-size:10px;font-weight:800;color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Cairo',sans-serif;line-height:1;}
.ds-nav-help-btn{display:flex;align-items:center;gap:5px;padding:5px 10px;border:none;background:#f3f4f6;border-radius:6px;cursor:pointer;font-size:12.5px;font-weight:600;font-family:'Cairo',sans-serif;color:#374151;transition:background .15s;}
.ds-nav-help-btn:hover{background:#e5e7eb;}
.ds-nav-help-btn svg{width:15px;height:15px;stroke:#6b7280;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* ── Sidebar ── */
.ds-sidebar{direction:rtl;width:var(--ds-sidebar-w);height:calc(100vh - var(--ds-navbar-h));background:#fff;border-left:1px solid #e5e7eb;display:flex;flex-direction:column;position:fixed;right:0;top:var(--ds-navbar-h);z-index:999;box-shadow:2px 0 8px rgba(0,0,0,.06);}
.ds-sidebar-top{padding:16px 14px 12px;border-bottom:1px solid #e5e7eb;position:relative;}
.ds-profile{display:flex;flex-direction:column;align-items:center;gap:7px;}
.ds-avatar{width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,#f5a9a9,#e05a5a);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:#fff;flex-shrink:0;}
.ds-username{font-size:13.5px;font-weight:700;color:#374151;letter-spacing:.3px;}
.ds-nav{flex:1;padding:6px 0;overflow-y:auto;}
.ds-nav-item{display:flex;align-items:center;justify-content:flex-start;gap:10px;padding:9px 16px;font-size:13.5px;color:#6b7280;text-decoration:none;transition:background .15s,color .15s;cursor:pointer;}
.ds-nav-item:hover{background:#f3f4f6;color:#111827;text-decoration:none;}
.ds-nav-item.active{background:#eff6ff;color:#2563eb;}
.ds-nav-item svg{width:17px;height:17px;flex-shrink:0;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.ds-nav-item--danger{color:#ef4444;}
.ds-nav-item--danger:hover{background:#fef2f2;color:#dc2626;}
.ds-sidebar-footer{padding:12px 16px;border-top:1px solid #e5e7eb;background:#f9fafb;}
.ds-footer-btn{display:flex;align-items:center;justify-content:center;gap:8px;font-size:13px;color:#2563eb;cursor:pointer;font-weight:600;font-family:'Cairo',sans-serif;}
.ds-footer-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* ── Main content area ── */
.ds-main{margin-top:var(--ds-navbar-h);margin-right:var(--ds-sidebar-w);min-height:calc(100vh - var(--ds-navbar-h));padding:24px;background:#f4f6f8;}

/* Responsive */
@media(max-width:768px){
  .ds-sidebar{display:none;}
  .ds-main{margin-right:0;}
  .ds-search-wrap{display:none;}
}

/*# sourceMappingURL=main.css.map */
