/* ══════════════════════════════════════════════════════════════
   PASSMH — Landing Page Styles
   Premium HR App Landing Page
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --blue: #2563EB;
  --indigo: #4338CA;
  --orange: #FF7643;
  --green: #10B981;
  --purple: #8B5CF6;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #27272A;
  --light: #F8F9FC;
  --light-2: #F1F5F9;
  --gray-100: #F5F5F5;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, var(--blue), var(--indigo));
  --gradient-2: linear-gradient(135deg, var(--indigo), var(--purple));
  --gradient-hero: linear-gradient(160deg, #FFFFFF 0%, #F0F4FF 40%, #FFF7F0 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.25);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-ar);
  background: var(--white);
  color: var(--dark-3);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

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

ul {
  list-style: none;
}

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

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

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════ NAVBAR ══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.3));
}

.nav-logo .logo-text-img {
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

.nav-logo span {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-1) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════ HERO ══════════════════ */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 118, 67, 0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

  50% {
    transform: translate(30px, -30px);
  }
}

/* Grid dots background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--dark-3);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* Hero visual / phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(160deg, #1a3a6b 0%, #2563EB 50%, #1e40af 100%);
  border-radius: 40px;
  border: 4px solid rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(37, 99, 235, 0.25),
    0 0 0 1px rgba(37, 99, 235, 0.1),
    inset 0 0 60px rgba(37, 99, 235, 0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: var(--transition);
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  width: 130px;
  height: 28px;
  background: #0f2a5c;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-screen {
  padding: 20px 16px;
  color: var(--white);
}

.phone-screen .ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.phone-screen .ps-greeting {
  font-size: 15px;
  font-weight: 800;
}

.phone-screen .ps-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.phone-screen .ps-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.phone-screen .ps-card-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 4px;
}

.phone-screen .ps-card-value {
  font-size: 24px;
  font-weight: 900;
}

.phone-screen .ps-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.phone-screen .ps-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.phone-screen .ps-stat-num {
  font-size: 20px;
  font-weight: 900;
}

.phone-screen .ps-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

/* Floating elements around phone */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 10;
}

.float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.float-card .fc-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark-3);
}

.float-card .fc-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
}

.float-card-1 {
  top: 80px;
  right: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 120px;
  left: -20px;
  animation-delay: 1.5s;
}

.float-card-3 {
  top: 220px;
  left: -40px;
  animation-delay: 3s;
}

@keyframes floatCard {

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

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

/* ── Stats bar ── */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ══════════════════ FEATURES ══════════════════ */
.features {
  padding: 100px 0;
  background: var(--light);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-3);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* ══════════════════ FEATURE SHOWCASE ROWS ══════════════════ */
.ft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-100);
}

.ft-row.reverse {
  direction: ltr;
}

.ft-row.reverse .ft-text {
  direction: rtl;
}

.ft-row.reverse .ft-visual {
  direction: rtl;
}

.ft-num {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 118, 67, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.ft-text h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.ft-highlight {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 24px;
}

.ft-metrics {
  display: flex;
  gap: 20px;
}

.ft-metric {
  text-align: center;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.ft-metric:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.ft-metric-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 4px;
}

.ft-metric-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
}

/* Feature phone (large showcase) */
.ft-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ft-phone {
  width: 280px;
  height: 540px;
  background: linear-gradient(160deg, #0f2a5c 0%, #1a3a6b 30%, #2563EB 70%, #1e40af 100%);
  border-radius: 36px;
  border: 4px solid rgba(37, 99, 235, 0.15);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 80px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.ft-phone:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 50px 100px rgba(37, 99, 235, 0.3),
    0 0 0 1px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ftp-notch {
  width: 120px;
  height: 26px;
  background: #060f1f;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.ftp-content {
  padding: 20px 18px;
  color: white;
}

.ftp-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}

.ftp-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Attendance card glow */
.ftp-card-glow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ftp-check-anim {
  margin-bottom: 12px;
}

.ftp-check-text {
  font-size: 14px;
  font-weight: 800;
  color: #10B981;
  margin-bottom: 6px;
}

.ftp-check-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.ftp-stats-row {
  display: flex;
  gap: 10px;
}

.ftp-stat-mini {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}

.ftp-stat-n {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.ftp-stat-l {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-top: 2px;
}

/* Leave list items */
.ftp-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ftp-li-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ftp-li-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ftp-li-name {
  font-size: 12px;
  font-weight: 800;
}

.ftp-li-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.ftp-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
}

.ftp-badge.pending {
  background: rgba(255, 118, 67, 0.15);
  color: #FF7643;
}

.ftp-badge.approved {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.ftp-balance {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.ftp-balance-text {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ftp-balance-num {
  color: #10B981;
}

.ftp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.ftp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #2563EB);
  border-radius: 6px;
}

.ftp-bar-fill.orange {
  background: linear-gradient(90deg, #2563EB, #FF7643);
}

/* Task items */
.ftp-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ftp-task-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ftp-task-check.done {
  background: #10B981;
  border-color: #10B981;
}

.ftp-task-text {
  font-size: 12px;
  font-weight: 700;
}

.ftp-task-text.done-text {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.35);
}

.ftp-progress {
  margin-top: 14px;
}

.ftp-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ftp-progress-pct {
  color: var(--orange);
}

/* Bottom mini cards */
.ft-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
}

.ft-mini-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ft-mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}

.ft-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ft-mini-card:hover::before {
  transform: scaleX(1);
}

.ft-mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  color: white;
}

.ft-mini-card h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark-3);
  margin-bottom: 10px;
}

.ft-mini-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 14px;
}

.ft-mini-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

/* ── Feature Phone Mini Mockup ── */
.feature-phone-mini {
  width: 160px;
  height: 220px;
  background: linear-gradient(160deg, #1a3a6b 0%, #2563EB 50%, #1e40af 100%);
  border-radius: 22px;
  border: 3px solid rgba(37, 99, 235, 0.2);
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
  transition: var(--transition);
}

.feature-card:hover .feature-phone-mini {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.fpm-notch {
  width: 60px;
  height: 14px;
  background: #0f2a5c;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
}

.fpm-screen {
  padding: 8px 10px;
  color: white;
  font-size: 9px;
}

.fpm-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 10px;
}

.fpm-time {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.fpm-badge-num {
  background: var(--orange);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
}

.fpm-circle-check {
  text-align: center;
  margin: 10px 0 6px;
}

.fpm-label {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 8px;
}

.fpm-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.fpm-pill {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 800;
}

.fpm-pill.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}

.fpm-pill.orange {
  background: rgba(255, 118, 67, 0.2);
  color: #FF7643;
}

.fpm-pill.blue {
  background: rgba(37, 99, 235, 0.2);
  color: #93C5FD;
}

.fpm-pill-light {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Leave items */
.fpm-leave-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fpm-leave-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fpm-leave-dot.orange {
  background: #FF7643;
}

.fpm-leave-dot.green {
  background: #10B981;
}

.fpm-leave-info {
  flex: 1;
}

.fpm-leave-name {
  font-size: 8px;
  font-weight: 700;
}

.fpm-leave-date {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
}

.fpm-balance-bar {
  margin-top: 8px;
  font-size: 8px;
  font-weight: 700;
}

.fpm-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 4px;
  overflow: hidden;
}

.fpm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #2563EB);
  border-radius: 4px;
  transition: width 1s ease;
}

.fpm-bar-fill.blue {
  background: linear-gradient(90deg, #2563EB, #FF7643);
}

/* Task items */
.fpm-task-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  font-size: 8px;
  font-weight: 600;
}

.fpm-checkbox {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.fpm-checkbox.checked {
  background: #10B981;
  border-color: #10B981;
}

.fpm-task-done {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
}

.fpm-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 8px;
  font-weight: 700;
}

.fpm-progress-val {
  color: var(--orange);
}

/* Map */
.fpm-map-placeholder {
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fpm-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 16px 16px;
}

.fpm-map-pin {
  position: absolute;
  font-size: 14px;
  animation: floatPin 3s ease-in-out infinite;
}

.fpm-map-pin:nth-child(2) {
  animation-delay: 1s;
}

.fpm-map-pin:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatPin {

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

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

/* Chart */
.fpm-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 8px 4px 0;
}

.fpm-chart-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.fpm-chart-bar.tall {
  background: linear-gradient(180deg, #FF7643, #2563EB);
}

/* Notifications */
.fpm-notif-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.fpm-notif-item.new {
  background: rgba(255, 118, 67, 0.08);
  border: 1px solid rgba(255, 118, 67, 0.15);
}

.fpm-notif-icon {
  font-size: 12px;
  flex-shrink: 0;
}

.fpm-notif-info {
  flex: 1;
}

.fpm-notif-title {
  font-size: 8px;
  font-weight: 800;
}

.fpm-notif-time {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark-3);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.8;
}

/* ══════════════════ PRICING ══════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.pricing-toggle span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  transition: var(--transition);
}

.pricing-toggle span.active {
  color: var(--dark-3);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--blue);
}

.toggle-switch .toggle-knob {
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active .toggle-knob {
  right: 27px;
}

.pricing-save {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.popular {
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-2);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-3);
  margin-bottom: 4px;
}

.pricing-card .plan-desc {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price-currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  padding-bottom: 8px;
}

.price-period {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pricing-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.pf-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.pf-icon.included {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.pf-icon.excluded {
  background: var(--gray-100);
  color: var(--gray-300);
}

.pricing-feature span {
  font-size: 13px;
  font-weight: 600;
}

.pricing-feature span.excluded {
  color: var(--gray-300);
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.pricing-btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35);
}

.pricing-btn-outline {
  background: var(--light);
  color: var(--dark-3);
  border: 1px solid var(--gray-200);
}

.pricing-btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pricing-btn-purple {
  background: var(--gradient-2);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
}

.pricing-btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.4);
}

/* ══════════════════ TESTIMONIALS ══════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--light);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.tc-stars span {
  font-size: 16px;
  color: #FBBF24;
}

.tc-text {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 20px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
}

.tc-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-3);
}

.tc-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}

/* ══════════════════ CTA ══════════════════ */
.cta {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════ FOOTER ══════════════════ */
.footer {
  background: var(--dark);
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    transform: none;
  }

  .float-card {
    display: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 968px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.mobile-open a {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .section-title {
    font-size: 26px;
  }

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

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

  .stat-number {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 26px;
  }
}