/* ==========================================================================
   NRITRACK - SKILLBRIDGE DESIGN SYSTEM & STYLESHEET
   Clean, Modern, Ultra-Polished Aesthetics with 3D Glassmorphic Cards,
   Vibrant Gradients, Lucide-style Iconography, and Fluid Typography.
   ========================================================================== */

/* --- ROOT VARIABLES & DESIGN TOKENS --- */
:root {
  --primary-blue: #3B82F6;
  --primary-indigo: #6366F1;
  --primary-cyan: #06B6D4;
  --primary-saffron: #FF9933;
  --primary-saffron-dark: #EA580C;
  --primary-purple: #8B5CF6;
  --primary-emerald: #10B981;
  --primary-rose: #EF4444;
  
  --bg-main: #FAFAFB;
  --bg-card: #FFFFFF;
  --bg-card-muted: #F8FAFC;
  --bg-dark-cta: #0A1128;
  --bg-dark-surface: #0F172A;
  
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-subtle: #E2E8F0;
  --border-card: rgba(226, 232, 240, 0.8);
  --border-glow: rgba(59, 130, 246, 0.3);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --shadow-hover-blue: 0 20px 40px -10px rgba(59, 130, 246, 0.18);
  --shadow-hover-saffron: 0 20px 40px -10px rgba(255, 153, 51, 0.22);
  
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

/* --- TOP ANNOUNCEMENT BAR --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #0A192F 0%, #1E3A8A 50%, #0F172A 100%);
  color: #FFFFFF;
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement-bar .badge-glow {
  background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%);
  color: white;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.top-announcement-bar a {
  color: #38BDF8;
  font-weight: 600;
  margin-left: 6px;
}

.top-announcement-bar a:hover {
  text-decoration: underline;
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-saffron {
  background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-saffron { color: var(--primary-saffron) !important; }
.text-blue { color: var(--primary-blue) !important; }
.text-green { color: var(--primary-emerald) !important; }
.text-muted { color: var(--text-muted) !important; }

/* SkillBridge Section Headings */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-header .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.section-header .sub-badge.saffron {
  background: rgba(255, 153, 51, 0.1);
  border-color: rgba(255, 153, 51, 0.3);
  color: #EA580C;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
  color: #FFFFFF;
}

.btn-saffron {
  background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 153, 51, 0.35);
}

.btn-saffron:hover {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 153, 51, 0.45);
  color: #FFFFFF;
}

.btn-outline {
  background: #FFFFFF;
  color: var(--text-dark);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.86rem;
  border-radius: var(--radius-md);
}

.text-dark-orange {
  color: #EA580C !important;
  font-weight: 800;
}

/* --- FLOATING ROUNDED CORNER STICKY NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 16px 0;
  pointer-events: none;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container,
.nav-container {
  max-width: 1360px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-radius: 18px;
  background: transparent;
  border: 1.5px solid transparent;
  box-shadow: none;
  pointer-events: auto;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              -webkit-backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Rounded Pill Sticky Navbar on Scroll */
.navbar.scrolled {
  padding: 12px 0;
}

.navbar.scrolled .nav-container {
  height: 64px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 18px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 36px -4px rgba(15, 23, 42, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item .nav-link {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0F172A;
  padding: 8px 4px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-item .nav-link:hover {
  color: #EA580C;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-cta {
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 750;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0B0F19 100%);
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1E293B 0%, #334155 55%, #0F172A 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.5), 0 0 16px -2px rgba(56, 189, 248, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #FFFFFF !important;
}

.btn-nav-cta .arrow-move {
  transition: transform 0.2s ease;
}

.btn-nav-cta:hover .arrow-move {
  transform: translateX(4px);
}

.btn-nav-cta .text-yellow {
  color: #FBBF24;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* --- SKILLBRIDGE HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 70px;
  width: 100%;
  background-color: #FAFAFC;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.60) 38%, rgba(255, 255, 255, 0.24) 70%, rgba(255, 255, 255, 0.05) 100%),
    radial-gradient(circle at 15% 35%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.hero-section .container {
  width: 100%;
  max-width: 1360px;
  padding: 0 32px;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

/* Innovative Live Radar Eyebrow Chip */
.hero-eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 18px 7px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  text-decoration: none;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.28);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-eyebrow-chip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.65s ease;
}

.hero-eyebrow-chip:hover::after {
  left: 100%;
}

.hero-eyebrow-chip:hover {
  transform: translateY(-2px);
  border-color: #38BDF8;
  box-shadow: 0 8px 26px -2px rgba(56, 189, 248, 0.35);
}

.radar-beacon {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  z-index: 2;
}

.beacon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: beaconPulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

@keyframes beaconPulse {
  0% { transform: scale(0.9); opacity: 0.95; }
  100% { transform: scale(2.8); opacity: 0; }
}

.chip-headline {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

.chip-arrow {
  color: #38BDF8;
  font-size: 0.82rem;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  margin-left: 2px;
}

.hero-eyebrow-chip:hover .chip-arrow {
  transform: translateX(4px);
  color: #7DD3FC;
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-dark);
  letter-spacing: -0.8px;
}

.hero-desc {
  font-size: 1.12rem;
  color: #1E293B;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 680px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* Three Green Tick Trust Badges */
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0F172A;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.trust-pill i {
  font-size: 1.05rem;
  color: #10B981;
}

/* Hero Action Cluster & Buttons */
.hero-actions-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  padding: 14px 28px;
  font-size: 1.02rem;
  font-weight: 750;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #4F46E5 100%);
  color: #FFFFFF !important;
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0369A1 0%, #1D4ED8 50%, #4338CA 100%);
  box-shadow: 0 16px 36px -4px rgba(37, 99, 235, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #FFFFFF !important;
}

.btn-hero-primary .arrow-move {
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover .arrow-move {
  transform: translateX(4px);
}

.btn-hero-primary .text-yellow {
  color: #FBBF24;
}

/* App Store & Google Play Buttons */
.hero-app-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 13px;
  background: #0F172A;
  color: #FFFFFF;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
  transition: all 0.25s ease;
  min-width: 146px;
}

.app-btn-card:hover {
  transform: translateY(-2px);
  background: #1E293B;
  border-color: #38BDF8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
  color: #FFFFFF;
}

.app-btn-apple .app-icon-wrap {
  font-size: 1.65rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.app-btn-google .app-icon-wrap {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.google-play-color {
  background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 50%, #FFB75E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.app-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

/* Hero 3D Card Showcase */
.hero-card-showcase {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-2xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: var(--transition-normal);
}

.hero-card-showcase:hover {
  box-shadow: var(--shadow-hover-blue);
  transform: translateY(-4px);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 1; }
}

.showcase-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.showcase-stat-box {
  background: var(--bg-card-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.showcase-stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.showcase-stat-box .stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* --- HIGHLIGHT CAPABILITIES STRIP --- */
.stats-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
  position: relative;
  z-index: 10;
}

.stats-strip .container {
  max-width: 1360px;
  padding: 0 32px;
}

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

.highlight-stat-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: transparent;
  transition: background 0.3s ease;
}

.highlight-stat-card.card-blue:hover::before { background: linear-gradient(90deg, #2563EB, #06B6D4); }
.highlight-stat-card.card-orange:hover::before { background: linear-gradient(90deg, #EA580C, #F59E0B); }
.highlight-stat-card.card-emerald:hover::before { background: linear-gradient(90deg, #059669, #10B981); }
.highlight-stat-card.card-purple:hover::before { background: linear-gradient(90deg, #7C3AED, #A855F7); }

.highlight-stat-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.highlight-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
}

.highlight-icon-box.grad-blue {
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.highlight-icon-box.grad-orange {
  background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.highlight-icon-box.grad-emerald {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.highlight-icon-box.grad-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.highlight-tag {
  font-size: 0.72rem;
  font-weight: 750;
  padding: 3.5px 10px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.blue-tag { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.orange-tag { background: #FFF7ED; color: #C2410C; border: 1px solid #FED7AA; }
.emerald-tag { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.purple-tag { background: #FAF5FF; color: #6B21A8; border: 1px solid #E9D5FF; }

.highlight-stat-headline {
  margin-bottom: 4px;
}

.highlight-stat-headline .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.5px;
  display: inline-block;
}

.highlight-card-body {
  flex: 1;
}

.highlight-title {
  font-size: 1.12rem;
  font-weight: 750;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.highlight-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
  font-weight: 450;
}

.highlight-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563EB;
  transition: color 0.2s ease;
}

.card-orange .highlight-arrow { color: #EA580C; }
.card-emerald .highlight-arrow { color: #059669; }
.card-purple .highlight-arrow { color: #7C3AED; }

.highlight-arrow .arrow-icon {
  transition: transform 0.2s ease;
}

.highlight-stat-card:hover .highlight-arrow .arrow-icon {
  transform: translateX(4px);
}

/* --- MOBILE APP SHOWCASE SECTION (FULL WIDTH) --- */
.mobile-app-section {
  padding: 96px 0 106px;
  background: linear-gradient(135deg, #0B1120 0%, #0F172A 50%, #1E293B 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.mobile-app-section::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(234, 88, 12, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mobile-app-section .container {
  max-width: 1360px;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.mobile-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mobile-content-col {
  display: flex;
  flex-direction: column;
}

.mobile-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(234, 88, 12, 0.22);
  border: 1.5px solid rgba(251, 146, 60, 0.55);
  color: #FED7AA;
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.25);
  backdrop-filter: blur(10px);
}

.mobile-sub-badge i {
  color: #FB923C;
  font-size: 0.95rem;
}

.text-gold-star {
  color: #FBBF24 !important;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.7));
}

.mobile-section-title {
  font-size: 2.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.22;
  margin-top: 14px;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}

.mobile-section-desc {
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

/* 4 Feature Items Grid */
.mobile-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.mobile-feature-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.m-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.m-feat-icon.icon-emerald { background: linear-gradient(135deg, #059669 0%, #10B981 100%); box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35); }
.m-feat-icon.icon-blue { background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35); }
.m-feat-icon.icon-orange { background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%); box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35); }
.m-feat-icon.icon-purple { background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%); box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35); }

.m-feat-text h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.badge-pro {
  background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%);
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.m-feat-text p {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

.mobile-download-row {
  margin-bottom: 20px;
}

.mobile-app-links {
  display: flex;
  gap: 14px;
}

.mobile-trust-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #94A3B8;
  font-weight: 500;
}

.mobile-trust-badges .dot-sep {
  color: #475569;
}

/* Staggered Phone Mockups Stage */
.mobile-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phones-stage-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  padding: 46px 10px 52px;
}

.phone-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, rgba(234, 88, 12, 0.16) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.phone-mockup-item {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 215px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-inner-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  background: #000000;
  line-height: 0;
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Phone 1: Lead (Left & Higher) */
.phone-lead {
  transform: translateY(0);
  animation: phoneFloatLead 5.5s ease-in-out infinite alternate;
}

/* Phone 2: Trail (Right & Staggered Lower) */
.phone-trail {
  transform: translateY(48px);
  margin-top: 48px;
  animation: phoneFloatTrail 5.5s ease-in-out infinite alternate 1.2s;
}

@keyframes phoneFloatLead {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes phoneFloatTrail {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.phone-mockup-item:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 5;
}

/* Floating Notification Glass Badges */
.floating-phone-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: 16px;
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  white-space: nowrap;
}

/* Move badge 1 cleanly above the left phone */
.float-top-left {
  top: -8px;
  left: 0;
  animation: badgeFloat1 4.5s ease-in-out infinite alternate;
}

/* Move badge 2 cleanly below the right phone */
.float-bottom-right {
  bottom: -12px;
  right: 0;
  animation: badgeFloat2 4.5s ease-in-out infinite alternate 1.5s;
}

@keyframes badgeFloat1 {
  0% { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes badgeFloat2 {
  0% { transform: translateY(0) rotate(1deg); }
  100% { transform: translateY(-8px) rotate(-1deg); }
}

.fp-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.fp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fp-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
}

.fp-sub {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 500;
}

/* --- SKILLBRIDGE 3D CARD GRID (FEATURES) --- */
.categories-section {
  padding: 100px 0;
  background: var(--bg-main);
}

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

/* SkillBridge Exact 3D Card Structure */
.card-3d {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl);
  padding: 34px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-3d:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover-blue);
  border-color: rgba(59, 130, 246, 0.4);
  background: #FFFFFF;
}

/* Gradient Icon Box */
.icon-box-gradient {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card-3d:hover .icon-box-gradient {
  transform: scale(1.1) rotate(-3deg);
}

.grad-blue { background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%); }
.grad-saffron { background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%); }
.grad-green, .grad-emerald { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.grad-purple { background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%); }
.grad-rose { background: linear-gradient(135deg, #EF4444 0%, #F97316 100%); }
.grad-cyan { background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%); }
.grad-orange { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }
.grad-sky { background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%); }

.card-3d h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.card-3d:hover h3 {
  color: var(--primary-blue);
}

.card-3d p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* SkillBridge animated link on hover */
.card-hover-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.card-3d:hover .card-hover-link {
  opacity: 1;
  transform: translateX(0);
}

/* --- HOW IT WORKS (STEP BY STEP) --- */
.how-it-works-section {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.step-card {
  background: var(--bg-card-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-number-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #CBD5E1;
  line-height: 1;
  margin-bottom: 18px;
  transition: color var(--transition-fast);
}

.step-card:hover .step-number-tag {
  color: var(--primary-blue);
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- STATUTORY CAPABILITIES & 9 CORE POWER FEATURES --- */
.categories-section {
  padding: 90px 0 105px;
  background: #FAF8F5; /* Warm pearl luxury backdrop */
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.categories-section .section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0F172A;
}

.categories-section .section-header p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 450;
  color: #64748B;
  font-size: 1.02rem;
}

/* Filter Nav for Statutory Capabilities (Single Line) */
.features-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px 12px;
  scrollbar-width: none;
}

.features-filter-nav::-webkit-scrollbar {
  display: none;
}

.feat-filter-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.feat-filter-btn:hover {
  border-color: #3B82F6;
  color: #1E40AF;
  transform: translateY(-1px);
}

.feat-filter-btn.active {
  background: #0F172A;
  border-color: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.feat-filter-btn .filter-count {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.2);
}

.feat-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* STATUTORY CAPABILITIES 3-COLUMN MASONRY */
.features-power-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

.masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

@media (max-width: 1080px) {
  .features-power-grid {
    flex-wrap: wrap;
  }
  .masonry-col {
    flex: 1 1 calc(50% - 14px);
  }
}

@media (max-width: 720px) {
  .features-power-grid {
    flex-direction: column;
  }
  .masonry-col {
    flex: 1 1 100%;
    width: 100%;
  }
}

.power-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 22px;
  padding: 24px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  overflow: hidden;
}

.power-card.is-hidden {
  display: none !important;
}

/* Individual Card Soft Gradient Themes */
.card-theme-blue {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
  border: 1.5px solid #BFDBFE;
}
.card-theme-blue:hover {
  transform: translateY(-6px);
  border-color: #2563EB;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.22);
}

.card-theme-emerald {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
  border: 1.5px solid #A7F3D0;
}
.card-theme-emerald:hover {
  transform: translateY(-6px);
  border-color: #059669;
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.22);
}

.card-theme-cyan {
  background: linear-gradient(180deg, #FFFFFF 0%, #ECFEFF 100%);
  border: 1.5px solid #A5F3FC;
}
.card-theme-cyan:hover {
  transform: translateY(-6px);
  border-color: #0891B2;
  box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.22);
}

.card-theme-purple {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
  border: 1.5px solid #DDD6FE;
}
.card-theme-purple:hover {
  transform: translateY(-6px);
  border-color: #7C3AED;
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.22);
}

.card-theme-saffron {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%);
  border: 1.5px solid #FED7AA;
}
.card-theme-saffron:hover {
  transform: translateY(-6px);
  border-color: #EA580C;
  box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.22);
}

.card-theme-sky {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
  border: 1.5px solid #BAE6FD;
}
.card-theme-sky:hover {
  transform: translateY(-6px);
  border-color: #0284C7;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.22);
}

.card-theme-orange {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%);
  border: 1.5px solid #FFEDD5;
}
.card-theme-orange:hover {
  transform: translateY(-6px);
  border-color: #F97316;
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.22);
}

.card-theme-rose {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF1F2 100%);
  border: 1.5px solid #FECDD3;
}
.card-theme-rose:hover {
  transform: translateY(-6px);
  border-color: #E11D48;
  box-shadow: 0 20px 40px -10px rgba(244, 63, 94, 0.22);
}

.power-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.power-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  box-shadow: 0 6px 16px -3px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease;
}

.power-card:hover .power-icon-box {
  transform: scale(1.08) rotate(3deg);
}

.power-pill-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-featured { background: rgba(59, 130, 246, 0.12); color: var(--primary-blue); border: 1px solid rgba(59, 130, 246, 0.3); font-weight: 800; }
.tag-blue { background: rgba(59, 130, 246, 0.1); color: var(--primary-blue); border: 1px solid rgba(59, 130, 246, 0.25); }
.tag-cyan { background: rgba(6, 182, 212, 0.1); color: #0891B2; border: 1px solid rgba(6, 182, 212, 0.25); }
.tag-emerald { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.25); }
.tag-saffron { background: rgba(234, 88, 12, 0.1); color: #EA580C; border: 1px solid rgba(234, 88, 12, 0.25); }
.tag-purple { background: rgba(139, 92, 246, 0.1); color: #7C3AED; border: 1px solid rgba(139, 92, 246, 0.25); }
.tag-orange { background: rgba(249, 115, 22, 0.1); color: #C2410C; border: 1px solid rgba(249, 115, 22, 0.25); }
.tag-rose { background: rgba(244, 63, 94, 0.1); color: #E11D48; border: 1px solid rgba(244, 63, 94, 0.25); }

.power-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.3px;
}

.power-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 450;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* CLEAN & FULL-HEIGHT PICTURE BOX */
.power-img-box {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #0B1120;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.power-card:hover .power-img-box {
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.16);
  border-color: rgba(15, 23, 42, 0.2);
}

.power-img-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Feature Bullet Chips Row */
.power-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 0;
  padding-top: 0;
}

.p-chip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 650;
  color: #334155;
  white-space: nowrap;
  letter-spacing: -0.1px;
  backdrop-filter: blur(4px);
}

.p-chip-clickable {
  cursor: pointer;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(236, 253, 245, 0.9);
  color: #065F46;
  font-weight: 700;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.p-chip-clickable:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.p-chip-clickable:hover i {
  color: #FFFFFF !important;
}

/* ==================== UNIVERSAL IMAGE LIGHTBOX MODAL ==================== */
.image-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  width: 95%;
  max-width: 980px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-lightbox-modal.active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #1E293B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: #FFFFFF;
  margin: 0;
}

.lightbox-tag {
  font-size: 0.7rem;
  font-weight: 750;
  padding: 3px 9px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.lightbox-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #EF4444;
}

.lightbox-content {
  padding: 16px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090D16;
}

.lightbox-img-holder {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(85vh - 80px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- AUDIT READY SAMPLE REPORT PREVIEW MODAL --- */
.report-preview-modal-card {
  max-width: 1040px;
  width: 96%;
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45);
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #E2E8F0;
  background: #FAF8F5;
  flex-shrink: 0;
}

.report-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-modal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.report-modal-title h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.3px;
}

.report-modal-body {
  padding: 8px;
  overflow-y: auto;
  background: #0F172A;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.report-preview-wrapper {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sample-report-img {
  width: 100%;
  height: auto;
  max-height: calc(94vh - 75px);
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .report-preview-modal-card {
    width: 98%;
    max-height: 96vh;
    border-radius: 16px;
  }
  .report-modal-header {
    padding: 10px 14px;
  }
  .report-modal-body {
    padding: 6px;
  }
  .sample-report-img {
    max-height: calc(96vh - 65px);
  }
}

@media (max-width: 1080px) {
  .features-power-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .features-power-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY INHERITANCE FOR ALL SECTIONS BELOW MOBILE APP
   (Plus Jakarta Sans font applied to How It Works, Alerts, Pricing, Rewards,
    Testimonials, CTA, FAQ, and Footer)
   ========================================================================== */
.how-it-works-section,
.alerts-section,
.pricing-section,
.rewards-section,
.testimonials-section,
.dark-cta-section,
.faq-section,
.footer {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.how-it-works-section h2, .how-it-works-section h3, .how-it-works-section h4,
.alerts-section h2, .alerts-section h3, .alerts-section h4,
.pricing-section h2, .pricing-section h3, .pricing-section h4,
.rewards-section h2, .rewards-section h3, .rewards-section h4,
.testimonials-section h2, .testimonials-section h3, .testimonials-section h4,
.dark-cta-section h2, .dark-cta-section h3, .dark-cta-section h4,
.faq-section h2, .faq-section h3, .faq-section h4,
.footer h3, .footer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- SMART PUSH NOTIFICATIONS & FCM ALERTS (COOL ARCTIC TECH THEME) --- */
.alerts-section {
  padding: 95px 0 105px;
  background: linear-gradient(180deg, #F0F6FF 0%, #E8F0FE 50%, #F1F7FD 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #D8E5F3;
  border-bottom: 1px solid #D8E5F3;
}

.alerts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.alerts-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.notif-category-block {
  position: relative;
  z-index: 2;
}

.notif-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cat-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cat-critical {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.cat-travel {
  background: rgba(59, 130, 246, 0.12);
  color: #2563EB;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.notif-category-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.notif-category-header p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
}

.fcm-alerts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Realistic iOS/Android FCM Push Card with Cool Modern Styling */
.fcm-push-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
}

.fcm-push-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
}

/* Accent Left Borders */
.push-critical { border-left: 4.5px solid #EF4444; }
.push-warning { border-left: 4.5px solid #F59E0B; }
.push-danger { border-left: 4.5px solid #E11D48; }
.push-info { border-left: 4.5px solid #3B82F6; }
.push-blue { border-left: 4.5px solid #2563EB; }
.push-purple { border-left: 4.5px solid #8B5CF6; }
.push-emerald { border-left: 4.5px solid #10B981; }
.push-cyan { border-left: 4.5px solid #06B6D4; }

.push-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.push-app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.push-mini-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.push-app-name {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.5px;
}

.push-trigger-pill {
  font-size: 0.7rem;
  font-weight: 650;
  padding: 3px 9px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  color: #475569;
}

.push-time {
  font-size: 0.74rem;
  color: #64748B;
  font-weight: 600;
}

.push-card-body {
  margin-bottom: 0;
  flex-grow: 1;
}

.push-headline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.push-quote {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.52;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 11px 14px;
  border-radius: 10px;
  margin: 0;
  font-style: normal;
  font-weight: 500;
}

/* Broadcast Engine Strip in Cool Light Theme */
.notif-broadcast-strip {
  margin-top: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
  border: 1.5px solid #BFDBFE;
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px -4px rgba(59, 130, 246, 0.12);
}

.broadcast-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.broadcast-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);
}

.broadcast-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.broadcast-text p {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.48;
}

.broadcast-fcm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DBEAFE;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 0.82rem;
  font-weight: 750;
  padding: 8px 16px;
  border-radius: 10px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .fcm-alerts-grid {
    grid-template-columns: 1fr;
  }

  .notif-broadcast-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

.vault-list li i {
  color: var(--primary-emerald);
  font-size: 1.15rem;
  margin-top: 3px;
}

.fti-dropzone-box {
  background: #FFFFFF;
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-2xl);
  padding: 44px 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.fti-dropzone-box:hover {
  border-color: var(--primary-blue);
  background: #F0F9FF;
  box-shadow: var(--shadow-md);
}

.fti-dropzone-icon {
  width: 70px;
  height: 70px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin: 0 auto 16px;
}

/* --- PRICING SECTION --- */
.pricing-section {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

/* --- PRICING SECTION REDESIGN --- */
.pricing-section {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(234, 88, 12, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* 4 Trust Badges Strip */
.pricing-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px auto 16px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.trust-chip:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-chip i {
  font-size: 0.92rem;
}

/* 30-Day Free Trial Notice Banner */
.pricing-trial-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #065F46;
  margin-top: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 980px;
  margin: 48px auto 0;
  align-items: stretch;
}

/* Base Price Card */
.price-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 28px;
  padding: 42px 36px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border-color: #CBD5E1;
}

/* Plan Headings */
.price-card-head {
  margin-bottom: 20px;
}

.plan-type-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #64748B;
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.plan-type-tag.featured-tag {
  color: #EA580C;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.plan-desc {
  font-size: 0.92rem;
  color: #64748B;
  margin: 0;
}

/* Price Value Block */
.price-val-container {
  padding: 18px 0 22px;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 26px;
}

.price-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.currency-symbol {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}

.amount-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.price-val.text-blue .amount-number,
.price-val.text-blue .currency-symbol {
  color: var(--primary-blue);
}

.price-discount-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.strikethrough-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: line-through;
}

.save-discount-badge {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.payment-term {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748B;
  margin-top: 6px;
}

/* Features List Styling */
.price-features-list {
  list-style: none;
  margin-bottom: 34px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.45;
}

.price-features-list li i {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-highlighted {
  background: rgba(59, 130, 246, 0.05);
  border: 1px dashed rgba(59, 130, 246, 0.3);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.feature-subtext {
  display: block;
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 2px;
}

.feature-includes-all {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 4px;
}

/* Featured Card (3-Year Plan) */
.price-card.featured-card {
  border: 2px solid #3B82F6;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
  box-shadow: 0 20px 45px -10px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.1);
  transform: scale(1.02);
}

.price-card.featured-card:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 25px 55px -10px rgba(59, 130, 246, 0.28);
}

.popular-badge-glow {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.popular-badge-glow .badge-fire {
  background: linear-gradient(135deg, #FF9933 0%, #EA580C 100%);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.4);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35); }
  100% { transform: scale(1.04); box-shadow: 0 6px 24px rgba(234, 88, 12, 0.55); }
}

.plan-action-btn {
  font-weight: 750;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #4F46E5 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 14px;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.plan-action-btn:hover {
  background: linear-gradient(135deg, #0369A1 0%, #1D4ED8 50%, #4338CA 100%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(37, 99, 235, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #FFFFFF !important;
}

/* Scroll Animation - Smooth Slow-Motion Instant Reveal */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card.featured-card.animate-on-scroll {
  opacity: 0;
  transform: scale(1.02) translateY(16px);
}

.price-card.featured-card.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1.02) translateY(0);
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .price-card.featured-card,
  .price-card.featured-card.animate-on-scroll {
    transform: scale(1) translateY(32px);
  }
  
  .price-card.featured-card.animate-on-scroll.visible {
    transform: scale(1) translateY(0);
  }
  
  .price-card.featured-card:hover {
    transform: translateY(-6px);
  }
}

/* --- COMMUNITY REWARDS / REFERRAL SECTION (MODERN 2-COL + STEP CARDS) --- */
.rewards-section {
  padding: 85px 0 95px;
  background-color: #EDF7F6;
  position: relative;
}

.rewards-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 48px;
  align-items: stretch;
}

/* Left Column */
.rewards-left-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rewards-heading {
  font-size: 2.35rem;
  font-weight: 850;
  color: #0F172A;
  line-height: 1.22;
  letter-spacing: -0.8px;
  margin: 0 0 14px 0;
}

.rewards-intro {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

/* Left Column Light-Yellow Highlight Card */
.rewards-unlimited-box {
  background: #FEFCE8;
  border: 1.5px solid #FEF08A;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.05);
  display: flex;
  flex-direction: column;
  margin-top: auto;
  transition: all 0.25s ease;
}

.rewards-unlimited-box:hover {
  transform: translateY(-2px);
  background: #FFFDF0;
  border-color: #FDE047;
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.1);
}

.unlimited-box-top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.unlimited-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FEF9C3;
  border: 1px solid #FDE047;
  color: #854D0E;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.unlimited-box-badge i {
  color: #D97706;
  font-size: 0.8rem;
}

.unlimited-box-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #713F12;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.unlimited-box-desc {
  font-size: 0.92rem;
  color: #854D0E;
  line-height: 1.55;
  margin: 0;
}

.unlimited-box-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
  width: 100%;
}

.unlimited-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 750;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.unlimited-box-btn:hover {
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  color: #FFFFFF !important;
}

/* Right Column */
.rewards-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rewards-steps-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reward-step-modern-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.025);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.reward-step-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.step-modern-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0D9488;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.step-modern-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0D9488;
  letter-spacing: 0.5px;
}

.step-modern-title {
  font-size: 1.02rem;
  font-weight: 750;
  color: #0F172A;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.step-modern-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Terms Dropdown Accordion */
.rewards-terms-dropdown-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  transition: all 0.2s ease;
}

.rewards-terms-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  user-select: none;
  color: #0F172A;
}

.terms-bar-title {
  font-size: 0.92rem;
  font-weight: 750;
  color: #0F172A;
}

.rewards-terms-bar i {
  font-size: 0.85rem;
  color: #64748B;
  transition: transform 0.25s ease;
}

.rewards-terms-collapse {
  border-top: 1px solid #F1F5F9;
  background: #FAFCFC;
}

.terms-collapse-inner {
  padding: 18px 22px;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.6;
}

.terms-collapse-inner p {
  margin: 0 0 8px 0;
}

.terms-collapse-inner ul {
  margin: 0;
  padding-left: 20px;
}

.terms-collapse-inner li {
  margin-bottom: 6px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .rewards-modern-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .rewards-steps-trio {
    grid-template-columns: 1fr;
  }

  .rewards-heading {
    font-size: 1.95rem;
  }
}

/* --- WHAT OUR USERS SAY (TESTIMONIALS) --- */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-main);
}

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

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-subtle);
}

.review-stars {
  color: #F59E0B;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

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

.author-details h5 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- SKILLBRIDGE DARK CALL TO ACTION (CTA) --- */
.dark-cta-section {
  padding: 90px 0;
  background: var(--bg-dark-cta);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.dark-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #FFFFFF;
  font-size: 2.45rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-h2-sub {
    white-space: nowrap;
  }
}

.cta-inner p {
  color: #94A3B8;
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

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

/* --- FAQ SECTION --- */
.faq-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  background: #FFFFFF;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- SKILLBRIDGE CLEAN FOOTER --- */
.footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

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

.footer-brand p {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  margin: 16px 0 22px;
}

.footer-social-strip {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #1E293B;
}

.footer-email-link {
  color: #0F172A;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-email-link:hover {
  color: #EA580C;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-legal-links a {
  color: #334155;
  font-weight: 550;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.legal-sep {
  color: #94A3B8;
}

.footer-column h4 {
  font-size: 1.05rem;
  font-weight: 750;
  margin-bottom: 18px;
  color: #0F172A;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 500;
}

/* --- FLOATING WHATSAPP HELP WIDGET ("Need help? Talk to us") --- */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 34px;
  right: 34px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp-widget:hover {
  transform: translateY(-3px) scale(1.02);
}

.wa-speech-bubble {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 8px 16px 8px 14px;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.25s ease;
}

.floating-whatsapp-widget:hover .wa-speech-bubble {
  border-color: #25D366;
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.2);
}

/* Speech pointer pointing right towards the circle button */
.wa-speech-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-top: 1.5px solid #E2E8F0;
  border-right: 1.5px solid #E2E8F0;
  transition: border-color 0.25s ease;
}

.floating-whatsapp-widget:hover .wa-speech-bubble::after {
  border-color: #25D366;
}

.wa-online-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.wa-online-dot {
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.wa-pulse-ring {
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: waPulse 2s infinite cubic-bezier(0.45, 0, 0.2, 1);
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.wa-bubble-text {
  display: flex;
  flex-direction: column;
}

.wa-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.wa-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
}

.wa-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: 0 8px 24px -2px rgba(15, 23, 42, 0.25);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp-widget:hover .wa-btn-circle {
  transform: scale(1.06) rotate(4deg);
}

@media (max-width: 640px) {
  .floating-whatsapp-widget {
    bottom: 24px;
    right: 20px;
    gap: 8px;
  }
  .wa-btn-circle {
    width: 50px;
    height: 50px;
    font-size: 1.65rem;
  }
  .wa-subtitle { display: none; }
  .wa-speech-bubble {
    padding: 6px 12px;
  }
  .wa-title {
    font-size: 0.84rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 106px;
  right: 44px;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* --- MODALS (OTP, WIZARD, DASHBOARD) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 38px 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.94);
  transition: var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-dark);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .simulator-box,
  .vault-grid,
  .mobile-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-visual-col {
    margin-top: 10px;
  }

  .hero-title { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories-grid,
  .steps-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 95px 0 65px;
  }
  .btn-nav-cta {
    padding: 8px 14px;
    font-size: 0.84rem;
  }
  .hero-section::before {
    background-image: 
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.60) 100%),
      url('../images/hero-bg.jpg');
    background-position: center center;
  }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions-cluster { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-hero-primary { width: 100%; justify-content: center; }
  .hero-app-links { width: 100%; }
  .app-btn-card { flex: 1; justify-content: center; }
  
  .mobile-app-section { padding: 60px 0 70px; }
  .mobile-section-title { font-size: 1.85rem; }
  .mobile-features-list { grid-template-columns: 1fr; gap: 12px; }
  .phones-stage-wrapper { max-width: 320px; gap: 12px; }
  .phone-mockup-item { max-width: 150px; }
  .phone-inner-frame { border-radius: 20px; }
  .phone-trail { margin-top: 28px; transform: translateY(28px); }
  .floating-phone-badge { display: none; }
  .mobile-app-links { flex-direction: column; }
  .mobile-trust-badges { flex-wrap: wrap; font-size: 0.78rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .categories-grid,
  .steps-grid,
  .alerts-grid,
  .pricing-grid,
  .testimonials-grid,
  .dash-widgets-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons { flex-direction: column; }
}


