/* ============================================
   HRM.com.mm — Light Theme Design System
   ============================================ */

:root {
  /* Primary palette (Professional blue) */
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #0052CC;
  --blue-800: #1E40AF;
  --blue-900: #1E3A5F;

  /* Neutrals */
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Accents */
  --green-500: #22C55E;
  --green-600: #16A34A;
  --orange-500: #F97316;
  --red-500: #EF4444;
  --purple-500: #8B5CF6;
  --indigo-500: #6366F1;

  /* Semantic */
  --color-bg: #FFFFFF;
  --color-bg-soft: var(--gray-50);
  --color-bg-section: var(--gray-100);
  --color-text: var(--gray-900);
  --color-text-secondary: var(--gray-500);
  --color-text-muted: var(--gray-400);
  --color-border: var(--gray-200);
  --color-border-light: var(--gray-100);
  --color-primary: var(--blue-700);
  --color-primary-light: var(--blue-500);
  --color-primary-bg: var(--blue-50);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  /* Spacing */
  --nav-h: 72px;
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 4px 20px rgba(0, 82, 204, 0.2);
  --shadow-blue-lg: 0 8px 32px rgba(0, 82, 204, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
  --t-slow: 400ms var(--ease);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-blue {
  color: var(--color-primary);
}


/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-outline-nav {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-300);
  padding: 8px 20px;
}

.btn-outline-nav:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-light {
  background: #fff;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.btn-light:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}


/* === Section Header === */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: var(--color-primary-bg);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  transition: all var(--t-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border-light);
}

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

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

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gray-900);
}

.logo-accent {
  color: var(--color-primary);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--blue-50);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 2px;
  margin-right: 4px;
}

.lang-btn {
  background: transparent;
  color: var(--gray-600);
  border: none;
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
  color: var(--color-primary);
}

.lang-btn.active {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-xs);
}

body.lang-mm {
  font-family: 'Inter', 'Poppins', sans-serif;
}

body.lang-mm .hero-title {
  line-height: 1.45;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--t-base);
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: calc(var(--nav-h) + 32px) 24px 32px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--t-base);
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  display: block;
  padding: 16px;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-lg);
  transition: all var(--t-fast);
}

.mobile-link:hover {
  color: var(--color-primary);
  background: var(--blue-50);
}

.btn-mobile {
  margin-top: 16px;
  text-align: center;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 120px;
  background: linear-gradient(170deg, #EFF6FF 0%, #DBEAFE 30%, #EEF2FF 60%, #F8FAFC 100%);
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--blue-200) 0%, transparent 70%);
  animation: floatShape 10s ease-in-out infinite;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  bottom: 50px;
  left: -100px;
  background: radial-gradient(circle, #C7D2FE 0%, transparent 70%);
  animation: floatShape 12s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, #FBCFE8 0%, transparent 70%);
  opacity: 0.2;
  animation: floatShape 8s ease-in-out infinite 2s;
}

@keyframes floatShape {

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

  50% {
    transform: translate(20px, -15px) scale(1.05);
  }
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  width: fit-content;
  box-shadow: var(--shadow-xs);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--gray-900);
}

.title-highlight {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 50%, var(--indigo-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-xs);
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.trust-bold {
  font-weight: 700;
  color: var(--gray-800);
}

.trust-stars {
  color: #FBBF24;
  font-size: var(--text-xs);
  margin-top: 2px;
}

.trust-stars span {
  color: var(--gray-400);
}

/* Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.dashboard-mockup:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.toolbar-dots {
  display: flex;
  gap: 6px;
}

.toolbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.toolbar-dots span:nth-child(1) {
  background: #EF4444;
}

.toolbar-dots span:nth-child(2) {
  background: #F59E0B;
}

.toolbar-dots span:nth-child(3) {
  background: #22C55E;
}

.toolbar-title {
  font-size: var(--text-xs);
  color: var(--gray-400);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.toolbar-spacer {
  width: 44px;
}

.mockup-body {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 150px;
  padding: 12px 8px;
  border-right: 1px solid var(--gray-100);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: var(--text-xs);
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  cursor: default;
  transition: all var(--t-fast);
}

.sb-item.active {
  background: var(--blue-50);
  color: var(--color-primary);
  font-weight: 600;
}

.sb-icon {
  font-size: 14px;
}

.mockup-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-card {
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--gray-100);
}

.sc-blue {
  background: #EFF6FF;
}

.sc-green {
  background: #F0FDF4;
}

.sc-orange {
  background: #FFF7ED;
}

.sc-purple {
  background: #FAF5FF;
}

.sc-icon {
  font-size: 16px;
}

.sc-label {
  font-size: 9px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.sc-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.02em;
}

.sc-trend {
  font-size: 9px;
  font-weight: 700;
}

.sc-trend.up {
  color: var(--green-600);
}

.sc-trend.down {
  color: var(--red-500);
}

.sc-trend.neutral {
  color: var(--orange-500);
}

.chart-area {
  flex: 1;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--gray-100);
}

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

.chart-title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-700);
}

.chart-badge {
  font-size: 9px;
  padding: 3px 8px;
  background: var(--blue-50);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
}

.cb {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.cb span {
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 500;
}

.cb-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  min-height: 3px;
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--color-primary) 100%);
  height: var(--h);
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cb-muted {
  background: linear-gradient(180deg, var(--gray-300) 0%, var(--gray-200) 100%) !important;
}

/* Floating Notifications */
.float-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.float-notif-1 {
  bottom: -16px;
  left: -24px;
}

.float-notif-2 {
  top: 28%;
  right: -24px;
}

.fn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
}

.fn-green {
  background: #DCFCE7;
}

.fn-blue {
  background: #DBEAFE;
}

.fn-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-800);
}

.fn-sub {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

@keyframes floatNotif {

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

  50% {
    transform: translateY(-8px)
  }
}

.anim-float {
  animation: floatNotif 5s ease-in-out infinite;
}

.anim-float-delay {
  animation: floatNotif 6s ease-in-out infinite 1.5s;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}


/* ============================================
   LOGO CLOUD
   ============================================ */
.logo-cloud-section {
  padding: 48px 0;
  background: #fff;
}

.cloud-label {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 28px;
}

.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cl-logo {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-300);
  transition: color var(--t-base);
  letter-spacing: -0.01em;
}

.cl-logo:hover {
  color: var(--gray-500);
}


/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 96px 0;
  background: #fff;
}

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

.feat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--t-slow);
  position: relative;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  background: #fff;
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--t-base);
}

.feat-card:hover .feat-icon {
  transform: scale(1.1);
}

.feat-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.feat-desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.feat-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Wide feature card */
.feat-card-wide {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--t-slow);
}

.feat-card-wide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  background: #fff;
}

.fcw-left {
  flex: 1;
}

.fcw-right {
  flex: 1;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.role-tag {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag-admin {
  background: #FEE2E2;
  color: #DC2626;
}

.tag-hr {
  background: #DBEAFE;
  color: #2563EB;
}

.tag-manager {
  background: #FEF3C7;
  color: #D97706;
}

.tag-employee {
  background: #D1FAE5;
  color: #059669;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 96px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--t-slow);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: 20px;
}

.step-icon-wrap {
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.step p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
}

.step-arrow {
  padding-top: 80px;
  flex-shrink: 0;
  color: var(--gray-300);
}


/* ============================================
   WHY CHOOSE US / MOBILE APP
   ============================================ */
.mobile-app-section {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.app-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-side-left {
  text-align: right;
  align-items: flex-end;
}

.app-side-right {
  text-align: left;
  align-items: flex-start;
}

.app-feature-card {
  display: flex;
  gap: 20px;
  max-width: 420px;
}

.app-side-left .app-feature-card {
  flex-direction: row-reverse;
}

.afc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}

.app-feature-card:hover .afc-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.bg-blue-light {
  background: #EEF2FF;
  color: #4F46E5;
}

.bg-green-light {
  background: #ECFDF5;
  color: #059669;
}

.bg-purple-light {
  background: #F5F3FF;
  color: #7C3AED;
}

.bg-orange-light {
  background: #FFF7ED;
  color: #F97316;
}

.afc-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.afc-content p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* Phone Mockup Wrapper */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  z-index: -1;
}

.phone-circles {
  position: absolute;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.p-circle {
  position: absolute;
  border-radius: 50%;
}

.p-circle-dotted {
  width: 300px;
  height: 300px;
  border: 1.5px dotted var(--blue-200);
  animation: spin 30s linear infinite;
}

.p-circle-solid {
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Floating App Notifications */
.float-app-1 {
  position: absolute;
  left: -48px;
  top: 120px;
  z-index: 5;
  animation: floatAppLeft 5s ease-in-out infinite;
}

.float-app-2 {
  position: absolute;
  right: -48px;
  bottom: 120px;
  z-index: 5;
  animation: floatAppRight 6s ease-in-out infinite;
}

@keyframes floatAppLeft {

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

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

@keyframes floatAppRight {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(12px) rotate(1deg);
  }
}

/* Smartphone Device */
.smartphone-device {
  width: 290px;
  height: 580px;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--gray-800);
  position: relative;
  transition: transform 0.5s var(--ease);
}

.smartphone-device:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.sd-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: var(--radius-full);
  z-index: 10;
}

.sd-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sd-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-700);
}

.sds-icons {
  display: flex;
  gap: 4px;
}

/* Inner Screen Contents */
.app-screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
}

.app-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
}

.ash-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ash-avatar {
  font-size: 20px;
}

.ash-user-meta {
  display: flex;
  flex-direction: column;
}

.ash-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-800);
}

.ash-role {
  font-size: 8px;
  color: var(--gray-400);
}

.ash-bell {
  font-size: 12px;
  cursor: pointer;
}

.app-screen-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.asb-clock {
  background: linear-gradient(135deg, var(--color-primary), var(--blue-600));
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.asbc-time {
  font-size: 22px;
  font-weight: 800;
}

.asbc-period {
  font-size: 12px;
  font-weight: 500;
}

.asbc-date {
  font-size: 9px;
  opacity: 0.8;
}

.asb-btn-attendance {
  margin-top: 8px;
  background: #fff;
  color: var(--color-primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s var(--ease);
}

.asb-btn-attendance:hover {
  transform: scale(1.05);
}

.asb-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.asb-qa-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.asb-qa-item:hover {
  border-color: var(--blue-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

.asb-qa-icon {
  font-size: 16px;
}

.asb-qa-lbl {
  font-size: 8px;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

.app-screen-summary {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px;
}

.ass-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ass-card {
  background: var(--gray-50);
  padding: 8px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.ass-card-val {
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-800);
}

.ass-card-lbl {
  font-size: 7px;
  color: var(--gray-400);
}

.app-screen-footer {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  display: flex;
  padding: 8px 4px;
  justify-content: space-around;
}

.asf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-400);
  cursor: pointer;
}

.asf-item span {
  font-size: 14px;
}

.asf-item p {
  font-size: 7px;
  font-weight: 600;
  margin-top: 2px;
}

.asf-item.active {
  color: var(--color-primary);
}

/* Download Badges Row */
.store-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.store-badge-btn {
  background: #000;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t-base);
}

.store-badge-btn:hover {
  background: #111;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.sbb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sbb-text {
  display: flex;
  flex-direction: column;
}

.sbb-sub {
  font-size: 8px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.sbb-main {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.text-uppercase {
  text-transform: uppercase;
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 96px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 40px;
  transition: all var(--t-slow);
  position: relative;
}

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

.price-card-pop {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-blue);
  background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
}

.price-card-pop:hover {
  box-shadow: var(--shadow-blue-lg);
}

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--blue-500));
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-blue);
}

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

.pc-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gray-900);
}

.pc-cycle {
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-500);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pc-meta {
  display: flex;
  flex-direction: column;
}

.pc-currency {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-400);
}

.pc-period {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.pc-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.pcd-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.pcd-row strong {
  color: var(--gray-800);
}

.pcd-highlight {
  padding: 10px 14px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue-50);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: var(--text-sm);
  color: var(--gray-400);
  text-align: center;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 96px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
}

.faq-item:hover {
  border-color: var(--blue-200);
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-800);
  list-style: none;
  transition: color var(--t-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: '';
}

.faq-chev {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--t-base);
}

.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-body {
  padding: 0 24px 20px;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
}


/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%);
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, #E0E7FF 0%, transparent 70%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 50%, var(--indigo-500) 100%);
  border-radius: var(--radius-2xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-blue-lg);
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-box p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer .logo-text {
  color: #fff;
}

.footer .logo-accent {
  color: var(--blue-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-desc {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: color var(--t-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: var(--gray-500);
  transition: all var(--t-fast);
}

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


/* === Privacy Policy Page === */
.policy-page {
  padding-top: var(--nav-h);
  background: var(--color-bg);
}

.policy-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  text-align: center;
}

.policy-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--gray-900);
}

.policy-subtitle {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--gray-500);
  font-size: var(--text-lg);
}

.policy-section {
  padding: 24px 0 88px;
}

.policy-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.25;
  color: var(--gray-900);
}

.policy-content h2:first-of-type {
  margin-top: 24px;
}

.policy-content p,
.policy-content li {
  color: var(--gray-600);
  font-size: var(--text-base);
  line-height: 1.8;
}

.policy-content p+p {
  margin-top: 14px;
}

.policy-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
  list-style: disc;
}

.policy-content li+li {
  margin-top: 8px;
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-up:nth-child(2) {
  transition-delay: 0.08s;
}

.anim-up:nth-child(3) {
  transition-delay: 0.16s;
}

.anim-up:nth-child(4) {
  transition-delay: 0.24s;
}


/* ============================================
   TYPEWRITER EFFECT
   ============================================ */
.typewriter-cursor {
  display: inline-block;
  animation: blink 0.8s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


/* ============================================
   FLOATING PARTICLES
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--blue-500);
  border-radius: 50%;
  opacity: 0.15;
  animation: particleFloat var(--d) ease-in-out infinite;
}

@keyframes particleFloat {

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

  25% {
    transform: translate(15px, -25px) scale(1.3);
    opacity: 0.25;
  }

  50% {
    transform: translate(-10px, -50px) scale(0.8);
    opacity: 0.1;
  }

  75% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.2;
  }
}


/* ============================================
   HERO STATS ROW (Counters)
   ============================================ */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0 0;
}

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

.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}


/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */
.btn {
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* ============================================
   FAQ SMOOTH ANIMATION
   ============================================ */
.faq-body {
  overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease);
}


/* ============================================
   HERO BADGE PULSE
   ============================================ */
.hero-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 82, 204, 0);
  }
}


/* ============================================
   GRADIENT SHIMMER ON TITLE
   ============================================ */
.title-highlight {
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}


/* ============================================
   STEP NUMBER BOUNCE
   ============================================ */
.step:hover .step-num {
  animation: stepBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

  50% {
    transform: scale(1.2);
  }

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


/* ============================================
   LOGO CLOUD HOVER LIFT
   ============================================ */
.cl-logo {
  transition: all var(--t-base);
}

.cl-logo:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}


/* ============================================
   PRICING POP BADGE SHIMMER
   ============================================ */
.pop-badge {
  overflow: hidden;
  position: relative;
}

.pop-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}


/* ============================================
   CHECK MARK ANIMATION
   ============================================ */
.pc-features li {
  transition: transform 0.2s var(--ease);
}

.pc-features li:hover {
  transform: translateX(4px);
}

.pc-features li:hover .check {
  background: var(--color-primary);
  color: #fff;
  transition: all 0.2s var(--ease);
}


/* ============================================
   ROLE TAG HOVER
   ============================================ */
.role-tag {
  transition: all var(--t-base);
  cursor: default;
}

.role-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-sm);
}


/* ============================================
   CTA BOX ANIMATION
   ============================================ */
.cta-box {
  background-size: 200% 200%;
  animation: ctaGradient 6s ease-in-out infinite;
}

@keyframes ctaGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}


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

  .hero-content {
    align-items: center;
  }

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

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

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

  .hero-stats-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .dashboard-mockup {
    transform: none;
  }

  .dashboard-mockup:hover {
    transform: none;
  }

  .float-notif-1 {
    left: 8px;
    bottom: -8px;
  }

  .float-notif-2 {
    right: 8px;
  }

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

  .feat-card-wide {
    flex-direction: column;
    gap: 24px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

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

  .app-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: center;
  }

  .app-side {
    align-items: center;
    width: 100%;
    max-width: 500px;
    gap: 32px;
  }

  .app-side-left {
    text-align: left;
    align-items: flex-start;
  }

  .app-side-left .app-feature-card {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .nav-links,
  .btn-outline-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: calc(var(--nav-h) + 48px) 0 100px;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .mockup-sidebar {
    display: none;
  }

  .float-notif {
    display: none;
  }

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

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .hero-stat-divider {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .policy-hero {
    padding: 56px 0 32px;
  }

  .policy-content {
    padding: 28px 24px;
  }

  .price-card {
    padding: 32px 24px;
  }

  .pc-amount {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  .container {
    padding: 0 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-btns .btn {
    width: 100%;
  }

  .float-notif {
    display: none;
  }

  .feat-card {
    padding: 28px 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: var(--text-3xl);
  }

  .policy-section {
    padding-bottom: 64px;
  }

  .policy-content {
    padding: 24px 18px;
  }

  .policy-content h2 {
    font-size: var(--text-xl);
  }

  .store-badges-row {
    gap: 12px;
  }

  .store-badge-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .anim-up {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}