/* ===================================================
   FINWAVE TECHNOLOGIES SOLUTION — STYLE.CSS
   Mobile-First | White Theme | Professional Fintech
   =================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #0A2472;
  --primary-light: #1A56DB;
  --accent: #0E6FFF;
  --accent-2: #06B6D4;
  --gold: #F59E0B;
  --success: #10B981;
  --white: #ffffff;
  --off-white: #F8FAFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text-main: #0F172A;
  --text-sub: #475569;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 36, 114, 0.10);
  --shadow-lg: 0 10px 40px rgba(10, 36, 114, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 36, 114, 0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

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

.section-pad {
  padding: 5rem 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14, 111, 255, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(14, 111, 255, 0.2);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-title.white {
  color: var(--white);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 111, 255, 0.35);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 111, 255, 0.45);
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  text-decoration: none;
}

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

/* ===============================================================
   PRELOADER
   =============================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {

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

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% {
    width: 0%;
    margin-left: 0;
  }

  50% {
    width: 80%;
    margin-left: 0;
  }

  100% {
    width: 0%;
    margin-left: 100%;
  }
}

/* ===============================================================
   NAVBAR
   =============================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 36, 114, 0.08);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.nav-logo img {
  height: auto;
  width: 5rem;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(14, 111, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

@media (min-width: 900px) {
  .dropdown-menu {
    min-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 0.5rem;
    padding: 0.75rem;
  }
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(14, 111, 255, 0.08);
  color: var(--accent);
}

.nav-cta {
  display: none;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem 1.25rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  gap: 0.25rem;
  z-index: 999;
  align-items: flex-start;
}

.nav-links.mobile-open .nav-link {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.nav-links.mobile-open .nav-dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  padding: 0 0 0 1rem;
  border: none;
  background: transparent;
}

.nav-links.mobile-open .nav-dropdown .dropdown-menu li a {
  padding: 0.5rem 1rem;
}

/* ===============================================================
   HERO SECTION
   =============================================================== */
#hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(160deg, #EBF2FF 0%, #F0F9FF 40%, #FFFFFF 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 36, 114, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 114, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 111, 255, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  bottom: 0;
  left: -80px;
  animation-delay: -3s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 3rem 1.25rem 5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(14, 111, 255, 0.08);
  border: 1px solid rgba(14, 111, 255, 0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  display: none;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #E8F0FE, #DBEAFE);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid var(--gray-200);
  min-width: 170px;
  animation: cardFloat 4s ease-in-out infinite;
}

.hero-card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: -1.5s;
}

.hero-card-3 {
  top: 15%;
  right: -15px;
  animation-delay: -3s;
}

@keyframes cardFloat {

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

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

.hcard-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.hcard-title {
  font-size: 0.72rem;
  color: var(--text-sub);
  font-weight: 500;
}

.hcard-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hcard-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.hcard-badge.green {
  background: #ECFDF5;
  color: var(--success);
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(14, 111, 255, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.ring-1 {
  width: 120%;
  aspect-ratio: 1;
  animation-delay: 0s;
}

.ring-2 {
  width: 140%;
  aspect-ratio: 1;
  border-color: rgba(6, 182, 212, 0.10);
  animation-delay: -2s;
}

@keyframes ringPulse {

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

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-sub);
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeInUp 1s 2s both;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

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

  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* ===============================================================
   TRUSTED SECTION (TICKER)
   =============================================================== */
.trusted-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.trusted-ticker {
  overflow: hidden;
  position: relative;
}

.trusted-ticker::before,
.trusted-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trusted-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.trusted-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.ticker-track {
  display: flex;
  gap: 1rem;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-track:hover {
  animation-play-state: paused;
}

.bank-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bank-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(14, 111, 255, 0.15);
}

/* ===============================================================
   FEATURES SECTION
   =============================================================== */
.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 111, 255, 0.04), rgba(6, 182, 212, 0.04));
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--ic, #E8F0FE);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ===============================================================
   ABOUT SECTION
   =============================================================== */
.about-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(14, 111, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-stat-cards {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.asc {
  flex: 1;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.asc-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asc-num span {
  font-size: 1.2rem;
}

.asc-label {
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 500;
  margin-top: 0.25rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.5rem 0 1.5rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===============================================================
   SERVICES SECTION (12 Services Grid)
   =============================================================== */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(14, 111, 255, 0.35);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(14, 111, 255, 0.06);
  border: 1.5px solid rgba(14, 111, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  transition: var(--transition);
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0;
}

/* ===============================================================
   SECTORS SECTION
   =============================================================== */
.sectors-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.sector-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.sector-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(14, 111, 255, 0.3);
}

.sector-card:hover::after {
  transform: scaleX(1);
}

.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sector-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.serve-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.serve-link:hover {
  gap: 0.5rem;
  opacity: 0.8;
}

/* ===============================================================
   STATS SECTION
   =============================================================== */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #0E3A8C 50%, #0D2670 100%);
  overflow: hidden;
  padding: 4rem 0;
}

.stats-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stats-wave {
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(14, 111, 255, 0.3) 0%, transparent 70%);
  animation: waveRotate 12s linear infinite;
}

@keyframes waveRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-separator {
  display: none;
}

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

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.stat-count {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ===============================================================
   PRODUCTS SECTION
   =============================================================== */
.products-section {
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: default;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 111, 255, 0.3);
  transform: translateY(-3px);
}

.product-icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 36px;
}

.product-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.product-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(14, 111, 255, 0.08);
  border: 1px solid rgba(14, 111, 255, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

/* ===============================================================
   SOLUTIONS SECTION
   =============================================================== */
.solutions-section {
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.solution-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.solution-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 260px;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.solution-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-img img {
  transform: scale(1.05);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 36, 114, 0.92) 0%, rgba(10, 36, 114, 0.4) 60%, transparent 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.sol-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.solution-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.solution-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sol-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  width: fit-content;
}

.sol-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* KYC Card Illustration */
.kyc-card {
  background: linear-gradient(135deg, var(--primary), #0D5BD4);
}

.kyc-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

.kyc-face {
  width: 100px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50% 50% 40% 40%;
  position: relative;
  overflow: hidden;
}

.kyc-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(6, 182, 212, 0.8);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.8);
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.kyc-dots {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

.kyc-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.kyc-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.kyc-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.kyc-dots span:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes dotPulse {

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

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

.kyc-check {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {

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

  50% {
    transform: scale(1.1);
  }
}

/* ===============================================================
   WHY SECTION
   =============================================================== */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0D2E8A 100%);
}

.why-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.wb-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-benefit h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.why-benefit p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Why Visual Cards */
.why-visual {
  display: flex;
  justify-content: center;
}

.why-card-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.wc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.wc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}

.wc-dot.green {
  background: var(--success);
}

.wc-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.2rem;
}

.wc-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.wc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}

.wc-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}

.wc-bar.active {
  background: linear-gradient(to top, var(--accent), #06B6D4);
}

.wc-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wc-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.wc-badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: #4ADE80;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.wc-badge.info {
  background: rgba(14, 111, 255, 0.2);
  color: #93C5FD;
  border: 1px solid rgba(14, 111, 255, 0.3);
}

.wc-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wc-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), #06B6D4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.wc-uname {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.wc-udet {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.wc-mini-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.wc-donut-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.wc-donut-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
}

/* ===============================================================
   TESTIMONIALS
   =============================================================== */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-track-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.tcard-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.tcard-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.tcard-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.tcard-role {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300, #D1D5DB);
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ===============================================================
   PARTNERS SECTION
   =============================================================== */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.partner-logo {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
  cursor: default;
}

.partner-logo:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.partner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.partner-emoji {
  font-size: 1.8rem;
}

.partner-img {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.15rem;
  transition: var(--transition);
}

.partner-inner span:last-child {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ===============================================================
   CONTACT SECTION
   =============================================================== */
.contact-section {
  background: var(--off-white);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(10, 36, 114, 0.08), rgba(14, 111, 255, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(14, 111, 255, 0.15);
}

.ci-label {
  font-size: 0.75rem;
  color: var(--text-sub);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.ci-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.accent-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.accent-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: var(--transition);
}

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

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-main);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(14, 111, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1rem;
  gap: 0.8rem;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-top: 0.5rem;
  font-weight: 700;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}

/* ===============================================================
   FOOTER
   =============================================================== */
.footer {
  background: var(--gray-900);
  color: white;
}

.footer-top {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-cert {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cert-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(14, 111, 255, 0.2);
  color: #93C5FD;
  border: 1px solid rgba(14, 111, 255, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===============================================================
   BACK TO TOP
   =============================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===============================================================
   AOS-LIKE ANIMATIONS (Custom)
   =============================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].animated {
  opacity: 1;
  transform: none;
}

/* ===============================================================
   RESPONSIVE — TABLET (600px+)
   =============================================================== */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-divider {
    display: block;
  }

  .hero-stats {
    flex-wrap: nowrap;
  }

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

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===============================================================
   RESPONSIVE — DESKTOP (900px+)
   =============================================================== */
@media (min-width: 900px) {
  .container {
    padding: 0 2rem;
  }

  .section-pad {
    padding: 7rem 0;
  }

  /* Navbar */
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 6rem;
    text-align: left;
    gap: 4rem;
  }

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

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-visual {
    max-width: 480px;
    flex-shrink: 0;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About */
  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .about-visual {
    flex: 0 0 45%;
  }

  .about-content {
    flex: 1;
  }

  /* Services & Sectors */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-separator {
    display: block;
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    align-self: center;
  }

  /* Solutions */
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .solution-card.large {
    grid-row: 1 / 3;
    min-height: 500px;
  }

  .solution-right {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-inner {
    flex-direction: row;
    gap: 5rem;
    align-items: center;
  }

  .why-content {
    flex: 1;
  }

  .why-visual {
    flex: 0 0 380px;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: calc(50% - 0.625rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }

  .contact-info {
    flex: 0 0 380px;
  }

  .contact-form-wrap {
    flex: 1;
  }
}

/* ===============================================================
   RESPONSIVE — LARGE DESKTOP (1200px+)
   =============================================================== */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 3.8rem;
  }
}

/* ===============================================================
   ANIMATIONS
   =============================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));
  border-radius: 3px;
}

/* Selection */
::selection {
  background: rgba(14, 111, 255, 0.2);
  color: var(--primary);
}

/* ===============================================================
   SERVICE DETAIL PAGES STYLE SUITE
   =============================================================== */

/* Detail Hero Section */
.detail-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1b3d 0%, #0c2e6f 50%, #0d46a0 100%);
  padding: 8rem 0 6rem;
  overflow: hidden;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.detail-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.detail-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobFloat 12s infinite ease-in-out alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -50px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

@keyframes blobFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(30px) scale(1.1);
  }
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .detail-hero-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.detail-hero-content {
  flex: 1;
  max-width: 600px;
}

.detail-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.detail-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: white;
}

.detail-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.detail-hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.detail-hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.detail-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

/* ==========================================
   CSS MOCK DEVICES
   ========================================== */

/* Phone Mockup */
.phone-mockup {
  width: 270px;
  height: 540px;
  background: #081125;
  border: 10px solid #233149;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

.device-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #0f2759 0%, #050d1e 100%);
  color: white;
  padding: 0.75rem;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.5rem;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.back-arrow {
  font-size: 1rem;
  color: var(--accent-2);
}

.app-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

/* Biometric Fingerprint Pulse */
.biometric-indicator {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRotate 3s infinite linear;
}

.ring-2 {
  animation-delay: 1s;
}

.ring-3 {
  animation-delay: 2s;
}

@keyframes pulseRotate {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

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

.fingerprint-svg {
  width: 44px;
  height: 44px;
  color: var(--accent-2);
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.6));
}

.mock-ui-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.mock-ui-progress-bar {
  width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 10px;
  animation: progressPulse 2.5s infinite ease-in-out;
}

@keyframes progressPulse {
  0% {
    width: 0%;
  }

  50% {
    width: 90%;
  }

  100% {
    width: 100%;
  }
}

/* Receipts Mockup */
.mock-receipt {
  width: 100%;
  background: white;
  border-radius: 16px;
  color: var(--text-main);
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideUpReceipt 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpReceipt {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.receipt-icon {
  width: 36px;
  height: 36px;
  background: #10B981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}

.receipt-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.25rem;
}

.receipt-status {
  font-size: 0.7rem;
  color: #10B981;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.receipt-divider {
  border-top: 1.5px dashed var(--gray-300);
  margin-bottom: 1rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.receipt-row span {
  color: var(--text-sub);
}

.receipt-row strong {
  font-weight: 600;
  color: var(--text-main);
}

/* POS Terminal */
.pos-terminal {
  width: 250px;
  background: #1b263b;
  border: 4px solid #0d1b2a;
  border-radius: 20px;
  padding: 1rem 1rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pos-printer-feed {
  height: 10px;
  background: #0d1b2a;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  position: relative;
}

.pos-printer-feed::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 25px;
  background: #f8f9fa;
  top: 6px;
  left: 10%;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: receiptFeed 4s infinite ease-in-out;
}

@keyframes receiptFeed {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 28px;
  }
}

.pos-screen {
  background: #10b981;
  color: #032d1e;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 1rem;
  font-family: monospace;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pos-title {
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.pos-status-msg {
  font-size: 0.7rem;
  animation: blinker 1.5s linear infinite;
}

.pos-dots {
  letter-spacing: 4px;
  margin-top: 0.2rem;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.pos-card-slot {
  height: 15px;
  background: #0d1b2a;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.swipe-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.pos-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.key {
  background: #415a77;
  color: white;
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 0 #2c3e50;
  transition: transform 0.1s;
}

.key:active {
  transform: translateY(2px);
  box-shadow: none;
}

.btn-red {
  background: #ef4444;
  box-shadow: 0 2px 0 #991b1b;
}

.btn-green {
  background: #10b981;
  box-shadow: 0 2px 0 #065f46;
}

/* Card Stack */
.card-stack {
  position: relative;
  width: 320px;
  height: 200px;
}

.physical-card {
  position: absolute;
  width: 280px;
  height: 175px;
  border-radius: 14px;
  padding: 1.25rem;
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.animate-card-1 {
  background: linear-gradient(135deg, #0e6fff 0%, #06b6d4 100%);
  z-index: 2;
  transform: rotate(-6deg) translate(-10px, 0);
  animation: cardStack-1 6s infinite ease-in-out alternate;
}

.animate-card-2 {
  background: linear-gradient(135deg, #0a2472 0%, #0e6fff 100%);
  z-index: 1;
  transform: rotate(4deg) translate(20px, 15px);
  animation: cardStack-2 6s infinite ease-in-out alternate;
}

@keyframes cardStack-1 {
  0% {
    transform: rotate(-6deg) translate(-10px, 0);
    z-index: 2;
  }

  50% {
    transform: rotate(8deg) translate(30px, -10px);
    z-index: 1;
  }

  100% {
    transform: rotate(-6deg) translate(-10px, 0);
    z-index: 2;
  }
}

@keyframes cardStack-2 {
  0% {
    transform: rotate(4deg) translate(20px, 15px);
    z-index: 1;
  }

  50% {
    transform: rotate(-4deg) translate(-15px, 20px);
    z-index: 2;
  }

  100% {
    transform: rotate(4deg) translate(20px, 15px);
    z-index: 1;
  }
}

.card-chip {
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 4px;
}

.card-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: right;
  margin-top: -20px;
}

.card-number {
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 1.5rem 0 0.5rem;
  font-family: monospace;
}

.card-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* Computer Browser Mockup */
.computer-mockup {
  width: 100%;
  background: #0f172a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.browser-frame {
  display: flex;
  flex-direction: column;
}

.browser-tab {
  background: #1e293b;
  color: #94a3b8;
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  width: fit-content;
  border-radius: 8px 8px 0 0;
  margin: 0.5rem 0 0 0.5rem;
  border-bottom: none;
}

.browser-body {
  background: #030712;
  padding: 1.5rem;
  min-height: 180px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #38bdf8;
  text-align: left;
  line-height: 1.5;
  overflow-x: auto;
}

/* Code Syntax Styling */
.code-bg {
  color: #f8fafc;
}

.code-comment {
  color: #64748b;
  display: block;
  margin-bottom: 0.5rem;
}

.c-key {
  color: #f43f5e;
}

.c-str {
  color: #10b981;
}

.json-bg {
  color: #f43f5e;
}

.json-bg code {
  color: #10b981;
}

/* Tablet Mockup */
.tablet-mockup {
  width: 320px;
  height: 220px;
  background: #1e293b;
  border: 6px solid #334155;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.app-dashboard {
  background: #f8fafc;
  height: 100%;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dash-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.4rem;
  text-align: center;
}

.dash-card span {
  font-size: 0.55rem;
  color: var(--text-sub);
  display: block;
}

.dash-card strong {
  font-size: 0.75rem;
  color: var(--accent);
}

.map-illustration {
  flex: 1;
  background: #e2e8f0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.map-path {
  position: absolute;
  width: 80%;
  height: 2px;
  background: dashed var(--gray-400);
  top: 50%;
  left: 10%;
  transform: rotate(-10deg);
}

.map-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.m-1 {
  top: 30%;
  left: 20%;
}

.m-2.active {
  top: 40%;
  left: 55%;
  background: var(--accent);
  transform: scale(1.3);
}

.m-3 {
  top: 60%;
  left: 80%;
}

.map-label {
  font-size: 0.55rem;
  color: var(--text-sub);
  text-align: center;
  margin-top: 0.25rem;
}

/* Flag Conversions */
.nepal-flag-sec {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.arrow-trans {
  color: var(--accent-2);
  font-size: 1.2rem;
}

.conversion-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 100%;
  padding: 0.75rem;
}

.inp-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.inp-row span {
  color: rgba(255, 255, 255, 0.6);
}

/* App bubbles POS */
.pos-android-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.app-bubble {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.35rem;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  display: block;
  text-align: center;
}

/* ===============================================================
   DETAIL PAGE SECTION LAYOUTS
   =============================================================== */

/* What is section */
.detail-info-section {
  background: white;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
}

@media (min-width: 900px) {
  .detail-info-grid {
    grid-template-columns: 1.8fr 1.2fr;
    align-items: flex-start;
  }
}

.detail-sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.detail-main-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-info-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
}

.detail-info-list .check-icon {
  color: var(--accent);
  font-weight: 800;
}

/* Why Choose Callout Card */
.detail-info-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.card-callout-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.card-callout-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.card-callout-list li {
  font-size: 0.88rem;
  color: var(--text-sub);
  display: flex;
  gap: 0.5rem;
  line-height: 1.45;
}

.card-callout-list .bullet-check {
  color: #10b981;
  font-weight: 800;
}

/* How It Works Flowchart */
.detail-flow-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.detail-flow-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  margin-top: 3.5rem;
}

@media (min-width: 600px) {
  .detail-flow-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .detail-flow-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.flow-step:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 111, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  margin: -38px auto 1rem;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-sm);
}

.flow-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Key Features Section */
.detail-features-section {
  background: white;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 600px) {
  .detail-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .detail-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-feature-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-align: left;
}

.detail-feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 111, 255, 0.3);
}

.df-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.detail-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.detail-feature-card p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Double Matrix Cards */
.detail-matrix-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.detail-matrix-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .detail-matrix-row {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-matrix-row:last-child {
  margin-bottom: 0;
}

.matrix-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.matrix-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0.75rem;
}

.matrix-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.matrix-card-list li {
  font-size: 0.9rem;
  color: var(--text-sub);
  display: flex;
  gap: 0.5rem;
  line-height: 1.5;
}

.matrix-card-list .dot-bullet {
  color: var(--accent);
  font-weight: bold;
}

.matrix-card-desc {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* FAQs Section */
.detail-faqs-section {
  background: white;
}

.detail-faqs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
  text-align: left;
}

@media (min-width: 900px) {
  .detail-faqs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: rgba(14, 111, 255, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.faq-arrow {
  font-size: 0.65rem;
  color: var(--text-sub);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Accordion Active States */
.faq-card.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-card.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-card.active .faq-answer {
  max-height: 150px;
  margin-top: 1rem;
}

/* CTA Card Details */
.detail-cta-section {
  background: white;
}

.detail-cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-2xl);
  padding: 4.5rem 2rem;
  color: white;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.cta-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.detail-cta-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.detail-cta-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.detail-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.detail-cta-actions .btn-primary {
  font-weight: 700;
}

.detail-cta-actions .btn-secondary {
  font-weight: 600;
}

.detail-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===============================================================
   WHATSAPP FLOATING BUTTON
   =============================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 900;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

/* ===============================================================
   POLICY PAGE
   =============================================================== */
.policy-page {
  padding-top: 120px;
  background: var(--off-white);
  min-height: 100vh;
}

.policy-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  .policy-container {
    grid-template-columns: 280px 1fr;
  }
}

.policy-sidebar {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.policy-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-nav-item {
  width: 100%;
}

.policy-nav-btn {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.25rem;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-nav-btn:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.policy-nav-btn.active {
  background: rgba(14, 111, 255, 0.08);
  color: var(--accent);
}

.policy-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.policy-content-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.policy-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.policy-pane.active {
  display: block;
}

.policy-pane h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.policy-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.policy-pane h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-pane p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-pane ul, .policy-pane ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-pane li {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* CHATBOT STYLING */
#chatbot-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffbd39;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Chat Container */
#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 650px;
  height: 550px;
  background: #1e1e1e;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 999;
}

/* Hide initially */
.hidden {
  display: none;
}

/* Header */
.chat-header {
  background: #ffbd39;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

/* Chat Body */
#chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Input */
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#user-input{
  background-color: #eee !important;
  color:black !important;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
}

.chat-input button {
  padding: 10px;
  background: #ffbd39;
  color: white;
  border: none;
  cursor: pointer;
}

/* Messages */
.message {
  margin: 8px 0;
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 10px;
}

/* User message (right) */
.user {
  background: #73bdf1;
  color: black;
  margin-left: auto;
}

#ask{
  color:black;
}

/* Bot message (left) */
.bot {
  background: #eee;
  margin-right: auto;
}

.hidden {
  display: none !important;
}

#user-input,
.bot{
  color:black;
}

#chatbot-btn {
  position: fixed;
  bottom: 200px;
  right: 25px;
  left: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #2079ec;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow:
      0 0 0 6px rgba(255, 136, 0, 0.08),
      0 15px 35px rgba(255, 106, 0, 0.35);
  transition: all 0.35s ease;
  /* overflow: hidden removed so notification dot is not clipped */
}

#chatbot-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.2),
    transparent
  );
}

#chatbot-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 0 0 8px rgba(255, 136, 0, 0.12),
    0 20px 45px rgba(255, 106, 0, 0.45);
}

#chatbot-btn svg {
  width: 30px;
  height: 30px;
}

#chatbot-container {
  position: fixed;
  bottom: 165px;
  right: 25px;
  left: auto;
  width: 55%;
  height: 73%;
  background: #ffffff;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  animation: chatbotFade 0.35s ease;
}

#chatbot-container::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 128, 0, 0.16);
  filter: blur(90px);
  top: -120px;
  right: -100px;
  z-index: 0;
}

#chatbot-container::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 98, 0, 0.12);
  filter: blur(90px);
  bottom: -120px;
  left: -80px;
  z-index: 0;
}

.hidden {
  display: none !important;
}

@keyframes chatbotFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  position: relative;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-header span {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.4px;
}

.chat-header span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 12px #00ff88;
}

#close-chat {
  background: rgba(255,255,255,0.06);
  border: none;
  color: black;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

#close-chat:hover {
  background: rgba(255,255,255,0.12);
  color: black;
  transform: rotate(90deg);
}

#chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

#chat-body::-webkit-scrollbar {
  width: 6px;
}

#chat-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
}

.bot-message,
.user-message {
  max-width: 82%;
  padding: 16px 18px;
  line-height: 1.7;
  font-size: 0.96rem;
  border-radius: 20px;
  word-wrap: break-word;
  animation: msgFade 0.25s ease;
}

/* @keyframes msgFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.bot-message {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #f3f3f3;
  border: 1px solid rgba(255,255,255,0.05);
  border-bottom-left-radius: 6px;
  backdrop-filter: blur(12px);
}

.user-message {
  align-self: flex-end;
  background: var(--user-msg);
  color: white;
  border-bottom-right-radius: 6px;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.25);
}

.chat-input {
  position: relative;
  z-index: 2;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;   
  border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-input input {
  flex: 1;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 0 18px;
  outline: none;
  color: black;
  font-size: 0.96rem;
  transition: all 0.3s ease;
}

.chat-input input::placeholder {
  color: rgb(44, 41, 41);
}

.chat-input input:focus {
  border-color: rgba(255, 136, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 136, 0, 0.08);
  background: rgba(255,255,255,0.07);
}

#send-btn {
  height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: 16px;
  background: #73bdf1 ;
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

#send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.45);
}

@media (max-width: 600px) {

  #chatbot-container {
      width: calc(100% - 24px);
      height: 85vh;
  
      right: 25px;       
      left: auto;
  
      bottom: 95px;
      border-radius: 24px;
    }
  
    #chatbot-btn {
    bottom: 5rem;
    right: 1rem;
    width: 51px;
    height: 51px;
    }
  
    .chat-input input {
      font-size: 15px;
    }
  
    .bot-message,
    .user-message {
      max-width: 90%;
      font-size: 0.92rem;
    }
  }

#chatbot-btn {
  position: fixed;
  bottom: 9rem;
  right: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #2079ec;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);

  transition: transform 0.3s ease;

  animation: pulseMain 3s infinite;
}

#chatbot-btn:hover {
  transform: scale(1.08);
}

#chatbot-btn svg {
  width: 30px;
  height: 30px;
  z-index: 2;
}

#chatbot-btn::before,
#chatbot-btn::after {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: rgba(37, 211, 102, 0.35);

  z-index: -1;

  animation: wave 3s infinite;
}

#chatbot-btn::after {
  animation-delay: 1.2s;
}

@keyframes pulseMain {
  0% {
    transform: scale(1);
  }

  8% {
    transform: scale(1.15);
  }

  15% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  30% {
    transform: scale(1.8);
    opacity: 0;
  }

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

@media (max-width: 508px) {
  #chatbot-btn {
    bottom: 8rem;
    right: 1rem;
    width: 51px;
    height: 51px;
  }

  #chatbot-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ── Chatbot Red Notification Dot ── */
#chatbot-red-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  box-shadow:
    0 0 0 0 rgba(239, 68, 68, 0.5),
    0 2px 6px rgba(239, 68, 68, 0.45);
  animation: redDotPulse 2s ease-in-out infinite;
  z-index: 10001;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center center;
}

#chatbot-red-dot.dot-hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  animation: none;
}

@keyframes redDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6), 0 2px 6px rgba(239, 68, 68, 0.45); }
  50%  { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0), 0 2px 6px rgba(239, 68, 68, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 2px 6px rgba(239, 68, 68, 0.45); }
}
