/* ===========================================
   SOFTRACK — Design System & Styles
   Font: Manrope — modern geometric sans-serif for UK B2B SaaS
   =========================================== */

/* ─── Design Tokens ─── */
:root {
  --brand-navy: #0C1D3B;
  --brand-navy-light: #132747;
  --brand-blue: #2D5BFF;
  --brand-blue-hover: #1A4AE8;
  --brand-blue-light: #EBF1FF;
  --brand-blue-50: #F0F5FF;
  --brand-blue-glow: rgba(45, 91, 255, 0.12);
  --surface: #F7F8FC;
  --surface-warm: #FAFBFE;
  --text-primary: #0C1222;
  --text-secondary: #5A6577;
  --text-muted: #9BA5B4;
  --text-faint: #C4CBD7;
  --border: #E5E8EF;
  --border-strong: #C7CEDC;
  --border-light: #F0F2F7;
  --success: #22C55E;
  --success-light: #ECFDF5;
  --warning: #F59E0B;
  --warning-light: #FFFBEB;
  --error: #EF4444;
  --error-light: #FEF2F2;
  --info: #3B82F6;
  --info-light: #EFF6FF;
  --purple: #8B5CF6;
  --purple-light: #F5F3FF;

  /* Typography */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  --tracking-tight: -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;

  /* Layout */
  --max-width: 1280px;
  --dashboard-max: 1100px;
  --navbar-h: 80px;
  --navbar-h-compact: 64px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(12, 29, 59, 0.04), 0 2px 8px rgba(12, 29, 59, 0.03);
  --shadow-card-hover: 0 2px 4px rgba(12, 29, 59, 0.05), 0 8px 24px rgba(12, 29, 59, 0.06);
  --shadow-float: 0 0 0 1px rgba(12, 29, 59, 0.06), 0 2px 6px rgba(12, 29, 59, 0.05), 0 8px 20px rgba(12, 29, 59, 0.06), 0 20px 40px rgba(12, 29, 59, 0.04);
  --shadow-dashboard: 0 0 0 1px rgba(12, 29, 59, 0.06), 0 4px 8px rgba(12, 29, 59, 0.04), 0 12px 24px rgba(12, 29, 59, 0.06), 0 24px 48px rgba(12, 29, 59, 0.05), 0 48px 80px rgba(12, 29, 59, 0.03);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

img,
svg {
  display: block;
}

::selection {
  background: var(--brand-blue);
  color: #fff;
}

/* ─── Text Reveal ─── */
.text-reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
}

.strikethrough {
  position: relative;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease-out;
  background: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(229, 232, 239, 0.5);
  box-shadow: 0 1px 3px rgba(12, 29, 59, 0.04), 0 4px 12px rgba(12, 29, 59, 0.02);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--navbar-h);
  transition: height 0.3s ease-out;
}

.navbar.scrolled .navbar-inner {
  height: var(--navbar-h-compact);
}

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

.navbar-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.navbar.scrolled .navbar-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.navbar-logo-icon svg {
  width: 19px;
  height: 19px;
  transition: all 0.3s;
}

.navbar.scrolled .navbar-logo-icon svg {
  width: 16px;
  height: 16px;
}

.navbar-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  transition: font-size 0.3s;
}

.navbar.scrolled .navbar-logo-text {
  font-size: 18px;
}

.navbar-links {
  display: none;
  gap: 2px;

}

@media(min-width:1024px) {
  .navbar-links {
    display: flex;
    align-items: center;
  }
}

.navbar-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.navbar-link:hover {
  color: var(--text-primary);
  background: rgba(12, 29, 59, 0.03);
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

@media(min-width:1024px) {
  .navbar-actions {
    display: flex;
  }
}

.navbar-login {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.navbar-login:hover {
  color: var(--text-primary);
  background: rgba(12, 29, 59, 0.03);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: #fff;
  background: var(--brand-blue);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.navbar-cta:hover {
  background: var(--brand-blue-hover);
  box-shadow: 0 4px 14px rgba(45, 91, 255, 0.28);
  transform: translateY(-1px);
}

.navbar-cta:active {
  transform: translateY(0);
}

.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media(min-width:1024px) {
  .navbar-hamburger {
    display: none;
  }
}

.navbar-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ─── Navbar over dark hero (homepage) ─── */
.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-logo-text {
  color: #fff;
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-logo-icon {
  background: var(--brand-blue);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-link {
  color: rgba(255, 255, 255, 0.82);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-link:hover,
.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-link.dropdown-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-login {
  color: rgba(255, 255, 255, 0.82);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-lang {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-lang:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.navbar.navbar--on-dark-hero:not(.scrolled) .navbar-hamburger span {
  background: #fff;
}

/* ─── Desktop Mega Dropdown (Full-Width) ─── */
.nav-item-wrapper {
  position: relative;
}

.navbar-link.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.navbar-link.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

.navbar-link.dropdown-open {
  color: var(--text-primary);
  background: rgba(12, 29, 59, 0.04);
}

/* Full-width mega dropdown container */
.mega-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
}

.mega-dropdown-container.open {
  pointer-events: auto;
}

/* Individual mega dropdown panel — full viewport width */
.mega-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px -12px rgba(15, 59, 94, 0.12), 0 12px 24px -8px rgba(15, 59, 94, 0.06);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.mega-dropdown.open {
  pointer-events: auto;
}

/* Centered content container */
.mega-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media(min-width:768px) {
  .mega-dropdown-inner {
    grid-template-columns: 1fr 280px;
    gap: 0;
  }
}

@media(min-width:1024px) {
  .mega-dropdown-inner {
    grid-template-columns: 1fr 320px;
    padding: 0 40px;
  }
}

/* Main column */
.mega-dropdown-main {
  padding: 28px 0 20px;
}

@media(min-width:768px) {
  .mega-dropdown-main {
    padding: 32px 32px 24px 0;
    border-right: 1px solid #e5e7eb;
  }
}

@media(min-width:1024px) {
  .mega-dropdown-main {
    padding: 36px 40px 28px 0;
  }
}

.mega-dropdown-header {
  margin-bottom: 20px;
}

.mega-dropdown-heading {
  font-size: 18px;
  font-weight: 700;
  color: #0F3B5E;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.015em;
}

@media(min-width:768px) {
  .mega-dropdown-heading {
    font-size: 20px;
  }
}

.mega-dropdown-subheading {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  margin: 8px 0 0;
  line-height: 1.5;
}

.mega-dropdown-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media(min-width:768px) {
  .mega-dropdown-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
}

@media(min-width:1024px) {
  .mega-dropdown-sections {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
  }
}

.mega-dropdown-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  padding: 0 0 8px;
  margin: 0 0 4px;
  grid-column: 1 / -1;
}

.mega-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-dropdown-link:hover {
  background: #F9FAFB;
}

.mega-dropdown-link:hover .mega-dropdown-link-label {
  color: var(--brand-blue);
}

.mega-dropdown-link-label {
  font-size: 14px;
  font-weight: 600;
  color: #0F3B5E;
  line-height: 1.3;
  transition: color 0.2s;
}

.mega-dropdown-link-desc {
  font-size: 12px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.45;
}

.mega-dropdown-bottom {
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid #e5e7eb;
}

.mega-dropdown-bottom-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  padding: 6px 0;
}

.mega-dropdown-bottom-link:hover {
  gap: 10px;
  color: var(--brand-blue-hover);
}

.mega-dropdown-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

/* Aside column (right side visual) */
.mega-dropdown-aside {
  padding: 20px 0;
  display: none;
}

@media(min-width:768px) {
  .mega-dropdown-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 32px 32px;
    text-align: center;
  }
}

@media(min-width:1024px) {
  .mega-dropdown-aside {
    padding: 36px 0 36px 40px;
  }
}

.mega-aside-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(45, 91, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mega-aside-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F3B5E;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.mega-aside-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  padding: 12px 20px;
  background: rgba(45, 91, 255, 0.04);
  border-radius: 12px;
  width: 100%;
}

.mega-aside-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.mega-aside-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}

.mega-aside-tagline {
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.5;
  max-width: 200px;
}

/* ─── Language Button ─── */
.navbar-lang {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.navbar-lang:hover {
  color: var(--text-primary);
  border-color: rgba(12, 29, 59, 0.15);
  background: rgba(12, 29, 59, 0.03);
}

/* ─── Mobile Dropdown ─── */
.mobile-item-wrapper {
  position: relative;
}

.mobile-link.has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-item-wrapper.dropdown-open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-item-wrapper.dropdown-open .mobile-link {
  color: var(--brand-blue);
}

.mobile-dropdown-links {
  overflow: hidden;
  padding: 0 0 0 16px;
}

.mobile-dropdown-group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
  padding: 12px 16px 4px;
}

.mobile-dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-dropdown-link:hover {
  background: #F9FAFB;
  color: var(--brand-blue);
}

.mobile-dropdown-link--cta {
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 6px;
}

/* ─── Mobile Menu ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(12, 29, 59, 0.15);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 300px;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  padding: 8px;
}

.mobile-panel-links {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-link:hover {
  background: var(--surface);
}

.mobile-panel-actions {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-login:hover {
  background: var(--surface);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-blue);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-cta:hover {
  background: var(--brand-blue-hover);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}

/* Atmosphere — subtle Softrack blue ambient */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
}

.hero-glow--primary {
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 65vh;
  max-width: 1100px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.06) 0%, rgba(45, 91, 255, 0.02) 30%, transparent 60%);
  filter: blur(50px);
}

.hero-glow--secondary {
  top: 48%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 45vw;
  height: 30vh;
  max-width: 550px;
  max-height: 350px;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.035) 0%, transparent 55%);
  filter: blur(35px);
}

.hero-glow--top {
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.025) 0%, transparent 55%);
}

/* ─── Dark enterprise hero (homepage) ─── */
.hero--dark {
  background:
    radial-gradient(ellipse 130% 100% at 50% 42%, transparent 55%, rgba(8, 18, 38, 0.22) 100%),
    radial-gradient(ellipse 62% 58% at 74% 24%, rgba(78, 130, 255, 0.36) 0%, rgba(45, 91, 255, 0.16) 42%, transparent 72%),
    radial-gradient(ellipse 46% 42% at 80% 60%, rgba(45, 91, 255, 0.16) 0%, transparent 64%),
    radial-gradient(ellipse 42% 36% at 8% 18%, rgba(74, 124, 255, 0.12) 0%, transparent 68%),
    radial-gradient(ellipse 65% 42% at 20% 98%, rgba(45, 91, 255, 0.10) 0%, transparent 62%),
    linear-gradient(165deg, #24487F 0%, #1C3A6A 40%, #16305A 72%, #12274C 100%);
}

.hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 80% 70% at 55% 30%, #000 0%, transparent 75%);
}

.hero--dark .hero-glow--primary {
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.24) 0%, rgba(45, 91, 255, 0.08) 38%, transparent 68%);
}

.hero--dark .hero-glow--secondary {
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.16) 0%, transparent 58%);
}

.hero--dark .hero-eyebrow {
  color: #BFD3FF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(45, 91, 255, 0.12) 100%);
  border-color: rgba(122, 157, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero--dark .hero-headline {
  color: #fff;
}

.hero--dark .hero-subtext {
  color: rgba(226, 232, 245, 0.72);
}

.hero--dark .hero-highlight {
  background: linear-gradient(100deg, #6E9BFF 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero--dark .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero--dark .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.11);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 108px 20px 40px;
}

@media(min-width:768px) {
  .hero-content {
    padding-top: 124px;
  }
}

@media(min-width:1024px) {
  .hero-content {
    padding-top: 136px;
    padding-bottom: 56px;
  }
}

/* Text Block */
.hero-text-block {
  text-align: center;
  margin-bottom: 18px;
}

@media(min-width:768px) {
  .hero-text-block {
    margin-bottom: 22px;
  }
}

/* Headline — confident, premium, tight tracking */
.hero-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

@media(min-width:640px) {
  .hero-headline {
    font-size: 48px;
  }
}

@media(min-width:768px) {
  .hero-headline {
    font-size: 54px;
    margin-bottom: 20px;
  }
}

@media(min-width:1024px) {
  .hero-headline {
    font-size: 47px;
    letter-spacing: -0.015em;
  }
}

@media(min-width:1280px) {
  .hero-headline {
    font-size: 52px;
  }
}

.hero-headline-line {
  display: block;
}

/* Eyebrow badge above the headline */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 20px;
  padding: 7px 16px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand-blue-hover);
  background: linear-gradient(180deg, #fff 0%, var(--brand-blue-50) 100%);
  border: 1px solid rgba(45, 91, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(12, 29, 59, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  width: fit-content;
}

.hero-eyebrow-dot {
  position: relative;
  display: inline-flex;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

.hero-eyebrow-dot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: eyebrow-pulse 2s ease-out infinite;
}

@keyframes eyebrow-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

/* "complexity" word emphasis */
.hero-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(100deg, var(--brand-blue) 0%, #7C6BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-highlight-mark {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.12em;
  width: 104%;
  height: 0.32em;
  overflow: visible;
}

.hero-highlight-mark path {
  fill: none;
  stroke: url(#hero-highlight-gradient);
  stroke-width: 5;
  stroke-linecap: round;
}

/* Subtext — visually subordinate, narrower */
.hero-subtext {
  max-width: 430px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
}

@media(min-width:768px) {
  .hero-subtext {
    font-size: 16px;
    max-width: 460px;
  }
}

@media(min-width:1024px) {
  .hero-subtext {
    font-size: 17px;
    font-weight: 400;
  }
}

/* CTAs — premium, polished */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

@media(min-width:768px) {
  .hero-ctas {
    margin-top: 26px;
    gap: 12px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  cursor: pointer;
}

@media(min-width:768px) {
  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }
}

.btn-primary {
  color: #fff;
  background: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(45, 91, 255, 0.18);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  box-shadow: 0 6px 20px rgba(45, 91, 255, 0.28);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary svg {
  margin-left: 2px;
  transition: transform 0.25s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  color: var(--text-primary);
  border: 1px solid var(--border);
  background: #fff;
}

.btn-secondary:hover {
  border-color: rgba(45, 91, 255, 0.25);
  background: var(--brand-blue-50);
  box-shadow: var(--shadow-card);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-secondary svg {
  transition: transform 0.25s;
}

.btn-secondary:hover svg {
  transform: translateX(3px);
}

/* Trust */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

@media(min-width:768px) {
  .hero-trust {
    margin-top: 22px;
  }
}

.hero-trust-avatars {
  display: flex;
  margin-right: 2px;
}

.trust-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  border: 2px solid #fff;
  margin-left: -5px;
}

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

.trust-avatar--blue {
  background: rgba(45, 91, 255, 0.12);
  color: var(--brand-blue);
}

.trust-avatar--green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
}

.trust-avatar--purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple);
}

.hero-trust-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.hero-trust-text strong {
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-trust-dot {
  color: var(--text-faint);
  font-size: 12px;
}

/* ===========================================
   HERO TABS — Horizontal with progress underline
   =========================================== */
.hero-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

@media(min-width:768px) {
  .hero-tabs {
    margin-bottom: 18px;
  }
}

.hero-tabs-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: var(--radius-md);
  background: rgba(247, 248, 252, 0.8);
  border: 1px solid rgba(229, 232, 239, 0.5);
  backdrop-filter: blur(8px);
}

.hero-tab-btn {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
  transition: color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
}

@media(min-width:768px) {
  .hero-tab-btn {
    padding: 10px 18px;
    font-size: 13.5px;
  }
}

.hero-tab-btn:hover {
  color: var(--text-secondary);
}

.hero-tab-btn.active {
  color: var(--brand-blue);
  font-weight: 600;
}

.hero-tab-btn svg {
  transition: all 0.25s;
  flex-shrink: 0;
}

/* Progress underline — sits under the active tab */
.hero-tab-progress {
  position: absolute;
  bottom: 4px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 1px;
  transform-origin: left center;
  z-index: 5;
  pointer-events: none;
}

/* ===========================================
   PRODUCT STAGE
   =========================================== */
.hero-product-stage {
  position: relative;
}

.hero-perspective {
  display: flex;
  justify-content: center;
  perspective: 1800px;
}

.dashboard-wrapper {
  width: 100%;
  max-width: var(--dashboard-max);
  transform-style: preserve-3d;
}

/* Dashboard Frame — premium container */
.dashboard-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 29, 59, 0.06);
  box-shadow: var(--shadow-dashboard);
}

/* Dashboard Layout */
.dashboard-layout {
  display: flex;
}

.dashboard-sidebar {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 56px;
  padding: 16px 0;
  gap: 2px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0E2141 0%, #0C1D3B 50%, #0A1833 100%);
}

@media(min-width:640px) {
  .dashboard-sidebar {
    display: flex;
  }
}

.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.45);
}

.sidebar-icon:hover {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-icon.active {
  background: rgba(45, 91, 255, 0.2);
  color: var(--brand-blue);
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
}

.dashboard-main {
  flex: 1;
  min-width: 0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}

.dashboard-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: var(--tracking-normal);
}

.dashboard-breadcrumb-sep {
  color: var(--text-faint);
}

.dashboard-breadcrumb-current {
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-search {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: var(--tracking-normal);
}

@media(min-width:768px) {
  .dashboard-search {
    display: flex;
  }
}

.dashboard-notif {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  cursor: pointer;
}

.dashboard-notif:hover {
  background: var(--surface);
}

.dashboard-notif-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  background: var(--error);
  border-radius: 50%;
  animation: notif-pulse 2.5s ease-in-out infinite;
  animation-delay: 3s;
}

.dashboard-user {
  display: none;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--border-light);
}

@media(min-width:640px) {
  .dashboard-user {
    display: flex;
  }
}

.dashboard-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dashboard-user-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

.dashboard-content {
  background: var(--surface);
  padding: 14px;
  min-height: 440px;
  transition: none;
}

@media(min-width:768px) {
  .dashboard-content {
    padding: 16px;
    min-height: 460px;
  }
}

/* ─── Dashboard Cards ─── */
.dash-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

@media(min-width:1024px) {
  .dash-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.dash-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 14px;
  transition: all 0.3s ease-out;
}

.dash-card.highlighted {
  border-color: rgba(45, 91, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(45, 91, 255, 0.06), 0 2px 8px rgba(45, 91, 255, 0.06);
}

.dash-card-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-card-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-card-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 4px;
}

.dash-card-change {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-card-change.positive {
  color: var(--success);
}

.dash-card-change.neutral {
  color: var(--text-muted);
}

/* ─── Dashboard Grid ─── */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media(min-width:1024px) {
  .dash-grid {
    grid-template-columns: 3fr 2fr;
    gap: 12px;
  }
}

.dash-grid-left,
.dash-grid-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-section {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 14px;
  transition: all 0.3s ease-out;
}

.dash-section.highlighted {
  border-color: rgba(45, 91, 255, 0.15);
  box-shadow: 0 0 0 1px rgba(45, 91, 255, 0.04), 0 2px 8px rgba(45, 91, 255, 0.04);
}

.dash-section-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.dash-row:hover {
  background: var(--surface);
}

.dash-mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.dash-row-text {
  flex: 1;
  min-width: 0;
}

.dash-row-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-row-sub {
  font-size: 9px;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.dash-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.dash-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}

.dash-quick-btn:hover {
  filter: brightness(0.95);
}

.dash-quick-btn svg {
  width: 14px;
  height: 14px;
}

.dash-bar-group {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 92px;
}

.dash-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.dash-bar-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.dash-bar-value {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.dash-bar-track {
  width: 100%;
  background: var(--border-light);
  border-radius: 3px;
  position: relative;
  height: 64px;
}

.dash-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
  background: var(--brand-blue);
  transition: height 0.3s;
}

.dash-progress-row {
  margin-bottom: 6px;
}

.dash-progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.dash-progress-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
}

.dash-progress-value {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.dash-progress-track {
  height: 4px;
  background: var(--border-light);
  border-radius: 999px;
  overflow: hidden;
}

.dash-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s;
}

.dash-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
}

.dash-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  color: var(--brand-blue);
  cursor: pointer;
  transition: opacity 0.2s;
}

.dash-link:hover {
  opacity: 0.7;
}

.dash-review-btn {
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--brand-blue);
  background: var(--brand-blue-50);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-review-btn:hover {
  background: var(--brand-blue-light);
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  background: var(--success-light);
  border-radius: 4px;
}

.dash-live-dot {
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
  animation: notif-pulse 2.5s ease-in-out infinite;
}

.dash-live-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--success);
}

/* ===========================================
   FLOATING CARDS
   =========================================== */
.float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  pointer-events: auto;
  display: none;
  z-index: 20;
}

@media(min-width:1024px) {
  .float-card {
    display: block;
  }
}

.float-card--attendance {
  right: -8px;
  top: -8px;
}

@media(min-width:1280px) {
  .float-card--attendance {
    right: 32px;
  }
}

.float-card--leave {
  left: -8px;
  top: 100px;
}

@media(min-width:1280px) {
  .float-card--leave {
    left: -32px;
  }
}

.float-card--newhire {
  right: -8px;
  bottom: 64px;
}

@media(min-width:1280px) {
  .float-card--newhire {
    right: 16px;
  }
}

.float-card--payroll2 {
  left: -8px;
  bottom: 32px;
}

@media(min-width:1280px) {
  .float-card--payroll2 {
    left: -16px;
  }
}

.float-card-inner {
  background: #fff;
  border: 1px solid rgba(229, 232, 239, 0.6);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-float);
}

.float-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.float-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-icon--green {
  background: var(--success-light);
  color: var(--success);
}

.float-card-icon--amber {
  background: var(--warning-light);
  color: var(--warning);
}

.float-card-icon--blue {
  background: var(--brand-blue-50);
  color: var(--brand-blue);
}

.float-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

.float-card-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  line-height: 1;
}

.float-card-value--sm {
  font-size: 24px;
}

.float-card-unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
}

.float-card-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
  margin-top: 5px;
}

.float-card-bar {
  height: 3px;
  background: var(--border-light);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.float-card-bar-fill {
  height: 100%;
  background: var(--success);
  border-radius: 999px;
}

.float-card-avatars {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.mini-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.float-card-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.float-card-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

.float-card-role {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

.float-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: notif-pulse 2.5s ease-in-out infinite;
}

.live-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  color: var(--success);
}

/* ===========================================

/* ===========================================

/* ===========================================

/* ===========================================
   PLATFORM SECTION — Capability pillars + Module cards
   =========================================== */
.platform-section {
  position: relative;
  background: linear-gradient(175deg, #0C1D3B 0%, #0F2445 40%, #132A4F 100%);
  padding: 96px 0 80px;
  overflow: hidden;
}

@media(min-width:768px) {
  .platform-section {
    padding: 120px 0 100px;
  }
}

@media(min-width:1024px) {
  .platform-section {
    padding: 144px 0 120px;
  }
}

.platform-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.platform-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.platform-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media(min-width:768px) {
  .platform-section-header {
    margin-bottom: 56px;
  }
}

@media(min-width:1024px) {
  .platform-section-header {
    margin-bottom: 64px;
  }
}

.platform-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(45, 91, 255, 0.9);
  margin-bottom: 18px;
}

.platform-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

@media(min-width:768px) {
  .platform-title {
    font-size: 42px;
  }
}

@media(min-width:1024px) {
  .platform-title {
    font-size: 52px;
    letter-spacing: -0.04em;
  }
}

.platform-desc {
  max-width: 500px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

@media(min-width:768px) {
  .platform-desc {
    font-size: 16px;
    max-width: 540px;
  }
}

.platform-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media(min-width:640px) {
  .platform-capabilities {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media(min-width:1024px) {
  .platform-capabilities {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
}

.cap-pillar {
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

@media(min-width:768px) {
  .cap-pillar {
    padding: 24px 20px;
  }
}

.cap-pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cap-pillar.active {
  background: rgba(45, 91, 255, 0.12);
  border-color: rgba(45, 91, 255, 0.35);
}

.cap-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(45, 91, 255, 0.15);
  color: rgba(45, 91, 255, 0.9);
}

.cap-pillar.active .cap-pillar-icon {
  background: rgba(45, 91, 255, 0.25);
  color: #fff;
}

.cap-pillar-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

@media(min-width:768px) {
  .cap-pillar-title {
    font-size: 15px;
  }
}

.cap-pillar-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

@media(min-width:768px) {
  .cap-pillar-desc {
    font-size: 13px;
  }
}

.cap-pillar.active .cap-pillar-desc {
  color: rgba(255, 255, 255, 0.65);
}

.platform-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media(min-width:768px) {
  .platform-modules {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.mod-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

@media(min-width:768px) {
  .mod-card {
    padding: 32px 28px;
  }
}

.mod-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.mod-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mod-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mod-card-icon--blue {
  background: rgba(45, 91, 255, 0.2);
  color: #6B9BFF;
}

.mod-card-icon--green {
  background: rgba(34, 197, 94, 0.15);
  color: #6EE7A0;
}

.mod-card-icon--amber {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
}

.mod-card-icon--purple {
  background: rgba(139, 92, 246, 0.18);
  color: #B4A3FF;
}

.mod-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}

@media(min-width:768px) {
  .mod-card-title {
    font-size: 18px;
  }
}

.mod-card-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.mod-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mod-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mod-item:last-child {
  border-bottom: none;
}

.mod-item-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
}

.mod-item-icon--blue {
  background: rgba(45, 91, 255, 0.15);
  color: #6B9BFF;
}

.mod-item-icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #6EE7A0;
}

.mod-item-icon--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #FCD34D;
}

.mod-item-icon--purple {
  background: rgba(139, 92, 246, 0.14);
  color: #B4A3FF;
}

.mod-item-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.mod-item-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}

.mod-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mod-metric-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.mod-metric-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.mod-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-left: auto;
}

.mod-metric-badge--up {
  background: rgba(34, 197, 94, 0.15);
  color: #6EE7A0;
}

.mod-metric-badge--neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.mod-mini-ui {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-emp-table {
  width: 100%;
}

.mini-emp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-emp-row:last-child {
  border-bottom: none;
}

.mini-emp-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mini-emp-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-emp-dept {
  font-size: 9px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(45, 91, 255, 0.12);
  color: #6B9BFF;
  white-space: nowrap;
}

.mini-emp-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-att-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  padding: 0 2px;
}

.mini-att-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mini-att-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
}

.mini-att-label {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mini-cal-head {
  font-size: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 2px 0;
}

.mini-cal-day {
  aspect-ratio: 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.mini-cal-day--today {
  background: rgba(45, 91, 255, 0.2);
  color: #fff;
  font-weight: 700;
}

.mini-cal-day--leave {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
}

.mini-cal-day--empty {
  background: transparent;
}

.mini-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-pay-row:last-child {
  border-bottom: none;
}

.mini-pay-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.mini-pay-value {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.mini-donut-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-donut {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 5px solid rgba(45, 91, 255, 0.3);
  border-top-color: #6B9BFF;
  border-right-color: #6B9BFF;
  flex-shrink: 0;
  position: relative;
}

.mini-donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.mini-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-donut-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

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


/* ===========================================
   MODULES SECTION — Premium product showcase
   =========================================== */
.modules-section {
  position: relative;
  background: #fff;
  padding: 80px 0 72px;
}

@media(min-width:768px) {
  .modules-section {
    padding: 100px 0 88px;
  }
}

@media(min-width:1024px) {
  .modules-section {
    padding: 120px 0 104px;
  }
}

.modules-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.modules-header {
  text-align: center;
  margin-bottom: 40px;
}

@media(min-width:768px) {
  .modules-header {
    margin-bottom: 48px;
  }
}

@media(min-width:1024px) {
  .modules-header {
    margin-bottom: 56px;
  }
}

.modules-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.modules-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

@media(min-width:768px) {
  .modules-title {
    font-size: 40px;
  }
}

@media(min-width:1024px) {
  .modules-title {
    font-size: 48px;
    letter-spacing: -0.035em;
  }
}

.modules-desc {
  max-width: 460px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media(min-width:768px) {
  .modules-desc {
    font-size: 16px;
    max-width: 500px;
  }
}

/* Two tabs under heading */
.modules-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 3px;
  background: rgba(12, 18, 34, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width:768px) {
  .modules-tabs {
    margin-bottom: 36px;
  }
}

.modules-tab {
  padding: 9px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

@media(min-width:768px) {
  .modules-tab {
    padding: 10px 28px;
    font-size: 14px;
  }
}

.modules-tab:hover {
  color: var(--text-secondary);
}

.modules-tab.active {
  color: var(--brand-blue);
  background: #fff;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Two-column layout */
.modules-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:768px) {
  .modules-showcase {
    grid-template-columns: 260px 1fr;
    gap: 0;
  }
}

@media(min-width:1024px) {
  .modules-showcase {
    grid-template-columns: 280px 1fr;
  }
}

/* ── Vertical Navigation ── */
.modules-nav {
  display: flex;
  flex-direction: row;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.modules-nav::-webkit-scrollbar {
  display: none;
}

@media(min-width:768px) {
  .modules-nav {
    flex-direction: column;
    overflow-x: visible;
    gap: 0;
  }
}

.modules-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(12, 18, 34, 0.06);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  text-align: left;
  flex-shrink: 0;
  width: 100%;
}

@media(min-width:768px) {
  .modules-nav-item {
    padding: 18px 20px;
    gap: 5px;
  }
}

@media(min-width:1024px) {
  .modules-nav-item {
    padding: 20px 24px;
  }
}

.modules-nav-item:last-child {
  border-bottom: none;
}

.modules-nav-item:hover {
  background: rgba(45, 91, 255, 0.03);
}

.modules-nav-item.active {
  background: rgba(45, 91, 255, 0.06);
}

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

.modules-nav-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  transition: color 0.3s;
}

.modules-nav-item.active .modules-nav-num {
  color: var(--brand-blue);
}

.modules-nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.3s;
}

.modules-nav-item.active .modules-nav-icon {
  color: var(--brand-blue);
}

.modules-nav-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.25;
  transition: color 0.3s;
}

@media(min-width:768px) {
  .modules-nav-label {
    font-size: 15px;
  }
}

.modules-nav-item.active .modules-nav-label {
  color: var(--brand-blue);
}

.modules-nav-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
  display: none;
  transition: color 0.3s;
}

@media(min-width:768px) {
  .modules-nav-desc {
    display: block;
  }
}

.modules-nav-item.active .modules-nav-desc {
  color: var(--text-secondary);
}

.modules-nav-progress {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(45, 91, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 8px;
}

@media(min-width:768px) {
  .modules-nav-progress {
    margin-top: 10px;
  }
}

.modules-nav-progress-fill {
  width: 100%;
  height: 100%;
  background: var(--brand-blue);
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ── Product Interface (right side) ── */
.modules-dash-area {
  min-height: 380px;
}

@media(min-width:768px) {
  .modules-dash-area {
    min-height: 460px;
  }
}

@media(min-width:1024px) {
  .modules-dash-area {
    min-height: 500px;
  }
}

.mod-ui {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: inherit;
}

@media(min-width:768px) {
  .mod-ui {
    border-radius: 20px;
  }
}

/* Mini sidebar */
.mod-ui-sidebar {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 20px 0;
  border-right: 1px solid var(--border-light);
  background: #fff;
  min-width: 130px;
}

@media(min-width:768px) {
  .mod-ui-sidebar {
    display: flex;
  }
}

@media(min-width:1024px) {
  .mod-ui-sidebar {
    min-width: 148px;
  }
}

.mod-ui-sidebar-item {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 0;
}

.mod-ui-sidebar-item:hover {
  color: var(--text-secondary);
  background: rgba(45, 91, 255, 0.03);
}

@media(min-width:1024px) {
  .mod-ui-sidebar-item {
    padding: 9px 18px;
    font-size: 13px;
  }
}

.mod-ui-sidebar-item.active {
  color: var(--text-primary);
  background: var(--brand-blue-50);
  font-weight: 600;
  border-right: 2px solid var(--brand-blue);
}

/* Main area */
.mod-ui-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Top bar */
.mod-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}

@media(min-width:768px) {
  .mod-ui-topbar {
    padding: 16px 24px;
  }
}

.mod-ui-topbar-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mod-ui-topbar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

@media(min-width:768px) {
  .mod-ui-topbar-title {
    font-size: 15px;
  }
}

.mod-ui-topbar-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.mod-ui-topbar-right {
  display: flex;
  align-items: center;
}

/* Context chips (Organisations/Industries items) */
.mod-ui-context {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-light);
  background: rgba(45, 91, 255, 0.02);
  flex-wrap: wrap;
}

@media(min-width:768px) {
  .mod-ui-context {
    padding: 10px 24px;
  }
}

.mod-ui-context-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-right: 4px;
}

.mod-ui-context-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mod-ui-context-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  white-space: nowrap;
}

.mod-ui-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #16A34A;
}

.mod-ui-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: mod-pulse 2s ease-in-out infinite;
}

@keyframes mod-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Content area */
.mod-ui-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media(min-width:768px) {
  .mod-ui-content {
    padding: 24px;
    gap: 24px;
  }
}

@media(min-width:1024px) {
  .mod-ui-content {
    padding: 28px;
  }
}

/* Stats row */
.mod-ui-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mod-ui-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  flex: 1;
  min-width: 120px;
}

.mod-ui-stat-v {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
  line-height: 1;
}

@media(min-width:768px) {
  .mod-ui-stat-v {
    font-size: 24px;
  }
}

.mod-ui-stat-l {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Table */
.mod-ui-table {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.mod-ui-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  background: var(--surface);
}

.mod-ui-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.mod-ui-row:last-child {
  border-bottom: none;
}

.mod-ui-row:hover {
  background: rgba(45, 91, 255, 0.02);
}

.mod-ui-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mod-ui-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mod-ui-row-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mod-ui-row-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.mod-ui-row-role {
  font-size: 11px;
  color: var(--text-muted);
}

.mod-ui-row-dept {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mod-ui-row-status {
  font-size: 11px;
  font-weight: 600;
}

/* Chart area */
.mod-ui-chart-area {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 20px;
}

.mod-ui-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mod-ui-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

@media(min-width:768px) {
  .mod-ui-bars {
    gap: 20px;
  }
}

.mod-ui-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.mod-ui-bar-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.mod-ui-bar-track {
  width: 100%;
  max-width: 40px;
  height: 80px;
  background: rgba(45, 91, 255, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media(min-width:768px) {
  .mod-ui-bar-track {
    height: 100px;
    max-width: 44px;
  }
}

.mod-ui-bar-fill {
  width: 100%;
  background: rgba(45, 91, 255, 0.4);
  border-radius: 6px 6px 0 0;
}

.mod-ui-bar-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Mini table */
.mod-ui-mini-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.mod-ui-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-secondary);
}

.mod-ui-mini-row:last-child {
  border-bottom: none;
}

.mod-ui-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mod-ui-mini-val {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-primary);
}

/* Calendar */
.mod-ui-cal-area {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 20px;
}

.mod-ui-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 280px;
}

.mod-ui-cal-head {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0;
}

.mod-ui-cal-day {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
}

.mod-ui-cal-day.today {
  background: rgba(45, 91, 255, 0.12);
  color: var(--brand-blue);
  font-weight: 700;
}

.mod-ui-cal-day.leave {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
  font-weight: 600;
}

.mod-ui-cal-day.empty {
  visibility: hidden;
}

/* Payroll */
.mod-ui-pay-area {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 20px;
}

.mod-ui-pay-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mod-ui-pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.mod-ui-pay-row:last-child {
  border-bottom: none;
}

.mod-ui-pay-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  min-width: 140px;
}

.mod-ui-pay-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.mod-ui-pay-bar-fill {
  height: 100%;
  background: var(--brand-blue);
  border-radius: 3px;
  opacity: 0.4;
}

.mod-ui-pay-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 80px;
  text-align: right;
}

/* Donut */
.mod-ui-donut-area {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 24px;
}

.mod-ui-donut {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 7px solid rgba(45, 91, 255, 0.1);
  border-top-color: #2D5BFF;
  border-right-color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media(min-width:768px) {
  .mod-ui-donut {
    width: 110px;
    height: 110px;
  }
}

.mod-ui-donut-center {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.mod-ui-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mod-ui-donut-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mod-ui-donut-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mod-ui-donut-pct {
  margin-left: auto;
  font-weight: 700;
  color: var(--text-primary);
}

/* Trend */
.mod-ui-trend-area {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 20px;
}

.mod-ui-trend-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mod-ui-trend-chart {
  width: 100%;
}

.mod-ui-trend-svg {
  width: 100%;
  height: auto;
}

/* ===========================================
   STORIES SECTION
   =========================================== */
.stories-section {
  position: relative;
  background: var(--surface);
  padding: 88px 0 80px;
  overflow: hidden;
}

@media(min-width:768px) {
  .stories-section {
    padding: 112px 0 100px;
  }
}

@media(min-width:1024px) {
  .stories-section {
    padding: 128px 0 120px;
  }
}

.stories-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.stories-header {
  text-align: center;
  margin-bottom: 48px;
}

@media(min-width:768px) {
  .stories-header {
    margin-bottom: 56px;
  }
}

.stories-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.stories-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

@media(min-width:768px) {
  .stories-title {
    font-size: 42px;
  }
}

.stories-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.stories-cta:hover {
  gap: 10px;
}

.stories-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stories-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}

@media(min-width:768px) {
  .stories-track {
    gap: 24px;
  }
}

.story-card {
  flex-shrink: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.story-card-accent {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.story-card--center {
  box-shadow: 0 20px 50px rgba(12, 29, 59, 0.25);
}

.story-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.story-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.story-card-company {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.story-card-company-name {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-card-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.story-card-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.story-card-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-card-logo--sm {
  width: 30px;
  height: 30px;
  font-size: 12px;
  margin-bottom: 0;
  flex-shrink: 0;
}

@media(min-width:768px) {
  .story-card {
    width: calc(50% - 12px);
  }
}

@media(min-width:1024px) {
  .story-card {
    width: calc(33.333% - 16px);
  }
}

.story-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media(min-width:768px) {
  .story-card-content {
    padding: 32px 28px;
    min-height: 320px;
  }
}

.story-card-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.story-card-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.story-card-headline {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

@media(min-width:768px) {
  .story-card-headline {
    font-size: 18px;
  }
}

.story-card-metric {
  margin-bottom: 16px;
}

.story-card-metric-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.story-card-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.story-card-quote {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 12px;
}

.story-card-person {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.story-card-role {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stories-arrow:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stories-arrow--prev {
  left: -20px;
}

.stories-arrow--next {
  right: -20px;
}

.stories-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.stories-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.stories-dot.active {
  background: var(--brand-blue);
  width: 24px;
  border-radius: 4px;
}

/* ===========================================
   SWITCH WITH CONFIDENCE SECTION
   =========================================== */
.switch-section {
  position: relative;
  background: #fff;
  padding: 88px 0 80px;
  overflow: hidden;
}

@media(min-width:768px) {
  .switch-section {
    padding: 112px 0 100px;
  }
}

@media(min-width:1024px) {
  .switch-section {
    padding: 128px 0 120px;
  }
}

.switch-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.switch-header {
  text-align: center;
  margin-bottom: 48px;
}

@media(min-width:768px) {
  .switch-header {
    margin-bottom: 56px;
  }
}

@media(min-width:1024px) {
  .switch-header {
    margin-bottom: 64px;
  }
}

.switch-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 12px;
}

.switch-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: 0 0 16px;
  line-height: 1.15;
}

@media(min-width:768px) {
  .switch-title {
    font-size: 40px;
  }
}

@media(min-width:1024px) {
  .switch-title {
    font-size: 46px;
  }
}

.switch-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
}

@media(min-width:768px) {
  .switch-desc {
    font-size: 16px;
  }
}

/* Timeline cards */
.switch-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

@media(min-width:768px) {
  .switch-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media(min-width:1024px) {
  .switch-timeline {
    gap: 28px;
  }
}

/* Connecting line between cards (desktop only) */
.switch-timeline::before {
  content: '';
  display: none;
  position: absolute;
  top: 48px;
  left: calc(16.67% + 14px);
  right: calc(16.67% + 14px);
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 59, 94, 0.12), rgba(45, 91, 255, 0.2), rgba(15, 59, 94, 0.12));
  z-index: 0;
}

@media(min-width:768px) {
  .switch-timeline::before {
    display: block;
  }
}

/* Individual card */
.switch-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.switch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 59, 94, 0.08), 0 4px 12px rgba(15, 59, 94, 0.03);
}

@media(min-width:768px) {
  .switch-card {
    padding: 32px 28px;
  }
}

/* Week badge */
.switch-card-week {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.switch-card-week-label {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.switch-card-week-num {
  font-size: 32px;
  font-weight: 800;
  color: #0F3B5E;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media(min-width:768px) {
  .switch-card-week-num {
    font-size: 36px;
  }
}

/* Card content */
.switch-card-content {
  flex: 1;
}

.switch-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F3B5E;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media(min-width:768px) {
  .switch-card-title {
    font-size: 20px;
  }
}

.switch-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 16px;
}

/* Bullet points */
.switch-card-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.switch-card-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.switch-card-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

/* Visual icon area */
.switch-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.switch-visual-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 59, 94, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Week 10 card accent */
.switch-card[data-week="10"] {
  border-color: rgba(45, 91, 255, 0.2);
  background: linear-gradient(180deg, rgba(45, 91, 255, 0.02) 0%, #fff 40%);
}

.switch-card[data-week="10"] .switch-card-week-num {
  color: var(--brand-blue);
}

.switch-card[data-week="10"] .switch-visual-icon {
  background: rgba(45, 91, 255, 0.08);
}

/* Footer stats */
.switch-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

@media(min-width:768px) {
  .switch-footer {
    margin-top: 56px;
  }
}

.switch-footer-tagline {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

@media(min-width:768px) {
  .switch-footer-tagline {
    font-size: 18px;
  }
}

.switch-footer-tagline strong {
  font-weight: 700;
  color: #0F3B5E;
}

/* ===========================================
   EXPLORE INTELLIGENT HR SECTION
   =========================================== */
.explore-section {
  position: relative;
  background: #f9fafb;
  padding: 88px 0 80px;
}

@media(min-width:768px) {
  .explore-section {
    padding: 112px 0 100px;
  }
}

@media(min-width:1024px) {
  .explore-section {
    padding: 128px 0 120px;
  }
}

.explore-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.explore-header {
  text-align: center;
  margin-bottom: 48px;
}

@media(min-width:768px) {
  .explore-header {
    margin-bottom: 56px;
  }
}

.explore-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 14px;
}

.explore-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.15;
}

@media(min-width:768px) {
  .explore-title {
    font-size: 40px;
  }
}

@media(min-width:1024px) {
  .explore-title {
    font-size: 46px;
  }
}

/* Two-column layout */
.explore-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media(min-width:768px) {
  .explore-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media(min-width:1024px) {
  .explore-columns {
    gap: 32px;
  }
}

/* Card */
.explore-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 59, 94, 0.08), 0 4px 12px rgba(15, 59, 94, 0.03);
}

@media(min-width:768px) {
  .explore-card {
    padding: 36px 32px;
  }
}

/* Card icon */
.explore-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 59, 94, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card content */
.explore-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.explore-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F3B5E;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media(min-width:768px) {
  .explore-card-title {
    font-size: 22px;
  }
}

.explore-card-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Numbered steps */
.explore-steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: explore-step;
}

.explore-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
  counter-increment: explore-step;
}

.explore-steps li::before {
  content: counter(explore-step);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 59, 94, 0.07);
  color: #0F3B5E;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA group (email + button) */
.explore-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

@media(min-width:640px) {
  .explore-cta-group {
    flex-direction: row;
  }
}

.explore-email {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

@media(min-width:640px) {
  .explore-email {
    flex: 1;
    min-width: 0;
  }
}

.explore-email::placeholder {
  color: #9ca3af;
}

.explore-email:focus {
  border-color: #0F3B5E;
  box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.08);
}

/* CTA buttons */
.explore-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.explore-cta--primary {
  background: #0F3B5E;
  color: #fff;
}

.explore-cta--primary:hover {
  background: #0a2d47;
  box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
  transform: translateY(-1px);
}

.explore-cta--primary:active {
  transform: translateY(0);
}

.explore-cta--secondary {
  background: #fff;
  color: #0F3B5E;
  border: 1.5px solid #0F3B5E;
  margin-top: 8px;
}

.explore-cta--secondary:hover {
  background: #0F3B5E;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
  transform: translateY(-1px);
}

.explore-cta--secondary:active {
  transform: translateY(0);
}

.explore-cta--secondary svg {
  transition: transform 0.25s;
}

.explore-cta--secondary:hover svg {
  transform: translateX(2px);
}

/* ===========================================
   BOOK YOUR DEMO SECTION
   =========================================== */
.demo-section {
  position: relative;
  background: #fff;
  padding: 88px 0 80px;
}

@media(min-width:768px) {
  .demo-section {
    padding: 112px 0 100px;
  }
}

@media(min-width:1024px) {
  .demo-section {
    padding: 128px 0 120px;
  }
}

.demo-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.demo-header {
  text-align: center;
  margin-bottom: 48px;
}

@media(min-width:768px) {
  .demo-header {
    margin-bottom: 56px;
  }
}

.demo-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 14px;
}

.demo-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: 0 0 16px;
  line-height: 1.15;
}

@media(min-width:768px) {
  .demo-title {
    font-size: 40px;
  }
}

@media(min-width:1024px) {
  .demo-title {
    font-size: 46px;
  }
}

.demo-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

@media(min-width:768px) {
  .demo-desc {
    font-size: 16px;
  }
}

/* Two-column layout */
.demo-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media(min-width:768px) {
  .demo-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media(min-width:1024px) {
  .demo-columns {
    gap: 40px;
  }
}

/* Card */
.demo-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 59, 94, 0.06);
}

@media(min-width:768px) {
  .demo-card {
    padding: 40px 36px;
    gap: 20px;
  }
}

.demo-card-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0F3B5E;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media(min-width:768px) {
  .demo-card-heading {
    font-size: 22px;
  }
}

.demo-card-text {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Numbered steps */
.demo-steps {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: demo-step;
}

.demo-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
  counter-increment: demo-step;
}

.demo-steps li::before {
  content: counter(demo-step);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 59, 94, 0.07);
  color: #0F3B5E;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA group (email + button) */
.demo-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

@media(min-width:640px) {
  .demo-cta-group {
    flex-direction: row;
  }
}

.demo-email {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

@media(min-width:640px) {
  .demo-email {
    flex: 1;
    min-width: 0;
  }
}

.demo-email::placeholder {
  color: #9ca3af;
}

.demo-email:focus {
  border-color: #0F3B5E;
  box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.08);
}

/* CTA buttons */
.demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.demo-cta--primary {
  background: #0F3B5E;
  color: #fff;
}

.demo-cta--primary:hover {
  background: #0a2d47;
  box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
  transform: translateY(-1px);
}

.demo-cta--primary:active {
  transform: translateY(0);
}

.demo-cta--secondary {
  background: #fff;
  color: #0F3B5E;
  border: 1.5px solid #0F3B5E;
  margin-top: 4px;
}

.demo-cta--secondary:hover {
  background: #0F3B5E;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
  transform: translateY(-1px);
}

.demo-cta--secondary:active {
  transform: translateY(0);
}

.demo-cta--secondary svg {
  transition: transform 0.25s;
}

.demo-cta--secondary:hover svg {
  transform: translateX(2px);
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing-section {
  position: relative;
  background: #f9fafb;
  padding: 88px 0 80px;
}

@media(min-width:768px) {
  .pricing-section {
    padding: 112px 0 100px;
  }
}

@media(min-width:1024px) {
  .pricing-section {
    padding: 128px 0 120px;
  }
}

.pricing-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

@media(min-width:768px) {
  .pricing-header {
    margin-bottom: 56px;
  }
}

.pricing-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 12px;
}

.pricing-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: 0 0 16px;
  line-height: 1.15;
}

@media(min-width:768px) {
  .pricing-title {
    font-size: 40px;
  }
}

@media(min-width:1024px) {
  .pricing-title {
    font-size: 46px;
  }
}

.pricing-desc {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
}

@media(min-width:768px) {
  .pricing-desc {
    font-size: 16px;
  }
}

/* Cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media(min-width:768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media(min-width:1024px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Card base */
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 59, 94, 0.10), 0 4px 12px rgba(15, 59, 94, 0.04);
}

/* Popular card highlight */
.pricing-card--popular {
  border-color: #0F3B5E;
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(15, 59, 94, 0.10), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pricing-card--popular:hover {
  box-shadow: 0 16px 40px rgba(15, 59, 94, 0.14), 0 4px 12px rgba(15, 59, 94, 0.06);
}

/* Most Popular badge */
.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F3B5E;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card header */
.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #0F3B5E;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.pricing-plan-desc {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Price */
.pricing-price {
  margin-bottom: 20px;
}

.pricing-price-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

/* CTA button */
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #0F3B5E;
  background: #fff;
  border: 1.5px solid #0F3B5E;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pricing-cta:hover {
  background: #0F3B5E;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 59, 94, 0.25);
  transform: translateY(-1px);
}

.pricing-cta:active {
  transform: translateY(0);
}

.pricing-cta svg {
  transition: transform 0.25s;
}

.pricing-cta:hover svg {
  transform: translateX(2px);
}

/* Primary CTA (popular card) */
.pricing-cta--primary {
  background: #0F3B5E;
  color: #fff;
  border-color: #0F3B5E;
}

.pricing-cta--primary:hover {
  background: #0a2d47;
  border-color: #0a2d47;
  box-shadow: 0 6px 20px rgba(15, 59, 94, 0.30);
}

/* Divider */
.pricing-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

/* Includes section */
.pricing-includes {
  flex: 1;
}

.pricing-includes-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 12px;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: #0F3B5E;
}

/* Nonprofit note */
.pricing-nonprofit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 24px;
  background: rgba(15, 59, 94, 0.04);
  border: 1px solid rgba(15, 59, 94, 0.08);
  border-radius: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-nonprofit-note svg {
  flex-shrink: 0;
}

.pricing-nonprofit-note span {
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
}

.pricing-nonprofit-note strong {
  font-weight: 700;
  color: #0F3B5E;
}

/* ===========================================
   FOOTER
   =========================================== */
/* ─── Footer ─── */
.footer {
  position: relative;
  background: linear-gradient(175deg, #0E2141 0%, #0C1D3B 45%, #081326 100%);
  padding: 88px 0 0;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.footer-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.footer-glow--a {
  top: -10%;
  left: 8%;
  width: 460px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.16) 0%, transparent 65%);
}

.footer-glow--b {
  top: 5%;
  right: -8%;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.14) 0%, transparent 65%);
}

.footer-glow--c {
  bottom: 0;
  left: 40%;
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.10) 0%, transparent 65%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

@media(min-width:900px) {
  .footer-top {
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-headline {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  background: linear-gradient(120deg, #B9C6FF 0%, #C9B6FF 55%, #E7DBFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media(min-width:640px) {
  .footer-headline {
    font-size: 36px;
  }
}

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

@media(min-width:640px) {
  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:900px) {
  .footer-links-group {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s, transform 0.2s;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

.footer-badge svg {
  flex-shrink: 0;
  color: var(--brand-blue);
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

@media(min-width:640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-wordmark-clip {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(70px, 9vw, 150px);
  overflow: hidden;
  margin-top: 8px;
}

.footer-wordmark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(90px, 18vw, 240px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  white-space: nowrap;
  user-select: none;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes notif-pulse {

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

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

@keyframes idle-1 {

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

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

@keyframes idle-2 {

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

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

@keyframes idle-3 {

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

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

@keyframes idle-4 {

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

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

.animate-idle-1 {
  animation: idle-1 4.5s ease-in-out infinite;
}

.animate-idle-2 {
  animation: idle-2 3.8s ease-in-out infinite 0.6s;
}

.animate-idle-3 {
  animation: idle-3 5s ease-in-out infinite 1.2s;
}

.animate-idle-4 {
  animation: idle-4 4s ease-in-out infinite 0.3s;
}

/* === REDUCED MOTION === */
@media(prefers-reduced-motion: reduce) {
  .text-reveal-inner {
    transform: translateY(0) !important;
  }

  .animate-idle-1,
  .animate-idle-2,
  .animate-idle-3,
  .animate-idle-4 {
    animation: none !important;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================
   HRSuite Page (hrsuite.html)
   =========================================== */

.hrs-hero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  padding: 108px 20px 64px;
  overflow: hidden;
}

@media(min-width:768px) {
  .hrs-hero {
    padding-top: 124px;
    padding-bottom: 80px;
  }
}

@media(min-width:1024px) {
  .hrs-hero {
    padding-top: 136px;
    padding-bottom: 96px;
  }
}

.hrs-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hrs-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 16px;
}

.hrs-hero-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 18px;
}

@media(min-width:640px) {
  .hrs-hero-title {
    font-size: 52px;
  }
}

@media(min-width:1024px) {
  .hrs-hero-title {
    font-size: 60px;
  }
}

.hrs-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

@media(min-width:768px) {
  .hrs-hero-desc {
    font-size: 17px;
  }
}

.hrs-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Employee information intro */
.hrs-intro {
  background: #fff;
  padding: 64px 20px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media(min-width:768px) {
  .hrs-intro {
    padding: 88px 24px;
  }
}

.hrs-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media(min-width:900px) {
  .hrs-intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}

.hrs-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 12px;
}

.hrs-intro-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 14px;
}

@media(min-width:768px) {
  .hrs-intro-title {
    font-size: 30px;
  }
}

.hrs-intro-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.hrs-feature-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  line-height: 1.4;
}

/* Modules */
.hrs-modules {
  background: var(--surface);
  padding: 72px 20px;
}

@media(min-width:768px) {
  .hrs-modules {
    padding: 100px 24px;
  }
}

.hrs-modules-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hrs-module-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hrs-module {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 100px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.hrs-module:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

@media(min-width:768px) {
  .hrs-module {
    padding: 36px 40px;
    gap: 28px;
  }
}

.hrs-module-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrs-module-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: var(--tracking-tight);
}

@media(min-width:768px) {
  .hrs-module-title {
    font-size: 21px;
  }
}

.hrs-module-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.hrs-module-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media(min-width:640px) {
  .hrs-module-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hrs-module-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hrs-module-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

/* Other products teaser */
.hrs-other-products {
  background: linear-gradient(175deg, #0C1D3B 0%, #0F2445 40%, #132A4F 100%);
  padding: 72px 20px;
  text-align: center;
}

@media(min-width:768px) {
  .hrs-other-products {
    padding: 96px 24px;
  }
}

.hrs-other-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hrs-other-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 20px;
  letter-spacing: var(--tracking-tight);
}

@media(min-width:768px) {
  .hrs-other-title {
    font-size: 28px;
  }
}

.hrs-other-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #8FB0FF;
}

.hrs-other-link:hover {
  color: #fff;
}

/* ===========================================
   Shared Content-Page Patterns (About, Clientele,
   Testimonials, Portfolio, News, Contact, Legal, etc.)
   =========================================== */

.content-section {
  background: #fff;
  padding: 56px 20px;
}

@media(min-width:768px) {
  .content-section {
    padding: 80px 24px;
  }
}

.content-section--alt {
  background: var(--surface);
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.content-inner--wide {
  max-width: 1100px;
}

.content-prose {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.content-prose p {
  margin-bottom: 16px;
}

.content-prose h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 28px 0 10px;
  letter-spacing: var(--tracking-tight);
}

.content-prose h3:first-child {
  margin-top: 0;
}

.info-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media(min-width:640px) {
  .info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .info-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.info-card-stat {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 4px;
}

.info-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Gallery / grid cards (Clientele, Portfolio, News, Testimonials, Certificates) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

@media(min-width:640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media(min-width:1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  min-height: 84px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s, color 0.2s;
}

.gallery-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--brand-blue);
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.news-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}

.news-card-company {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.news-card-detail {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.news-card-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-50);
  padding: 5px 10px;
  border-radius: 999px;
}

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

@media(min-width:640px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(min-width:1024px) {
  .cert-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cert-card {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media(min-width:768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.testimonial-card-company {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.testimonial-card-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.testimonial-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width:900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }
}

.contact-info-block {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.contact-info-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

@media(min-width:768px) {
  .contact-form {
    padding: 36px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media(min-width:560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-50);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 14px;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--error);
  background: var(--error-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 14px;
}

.form-error.is-visible {
  display: block;
}

.form-error a {
  color: var(--error);
  text-decoration: underline;
}

/* Links page */
.link-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

@media(min-width:640px) {
  .link-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  transition: box-shadow 0.2s, transform 0.2s;
}

.link-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--brand-blue);
}

/* Video embed placeholder */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0C1D3B 0%, #132A4F 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dashboard);
}

.video-frame-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

/* Breadcrumb */
.breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media(min-width:768px) {
  .breadcrumb {
    padding-top: 116px;
  }
}

.breadcrumb a {
  color: var(--brand-blue);
  font-weight: 600;
}

/* ===========================================
   Enhanced Module/Product Pages v2
   (Time Attendance, Leave, Payroll, Performance,
   ESS, Recruitment, BizManager, HelpDesk, DMS, DMS)
   =========================================== */

/* Two-column layout: sticky module sidebar + main content */
.module-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

@media(min-width:1024px) {
  .module-page-layout {
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
    padding: 0 24px;
  }
}

.module-sidebar {
  display: none;
}

@media(min-width:1024px) {
  .module-sidebar {
    display: block;
    position: sticky;
    top: 96px;
    padding: 20px 0;
  }

  .module-sidebar-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
  }

  .module-sidebar-kicker::before {
    content: '';
    width: 14px;
    height: 1.5px;
    background: var(--border-strong);
  }

  .module-sidebar-list {
    display: flex;
    flex-direction: column;
  }

  .module-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: background 0.2s, color 0.2s;
  }

  .module-sidebar-link svg {
    opacity: 0;
    transform: translateX(-3px);
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .module-sidebar-link:hover {
    background: var(--surface);
    color: var(--text-primary);
  }

  .module-sidebar-link.active {
    background: var(--brand-blue-50);
    color: var(--brand-blue);
    border-left-color: var(--brand-blue);
  }

  .module-sidebar-link.active svg {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile module quick-nav (horizontal scroll chips) */
.module-mobile-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 20px 14px;
  margin: 0 -20px 24px;
  -webkit-overflow-scrolling: touch;
}

@media(min-width:1024px) {
  .module-mobile-nav {
    display: none;
  }
}

.module-mobile-nav::-webkit-scrollbar {
  display: none;
}

.module-mobile-chip {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}

.module-mobile-chip.active {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

/* Hero v2 — two column: text + illustration, accent-colorable */
.page-hero-v2 {
  position: relative;
  padding: 28px 20px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF3FF 0%, #F7FAFF 65%, #fff 100%);
}

.page-hero-v2::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-v2-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media(min-width:1024px) {
  .page-hero-v2-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    padding-bottom: 72px;
  }
}

.page-hero-v2-text {
  text-align: center;
}

@media(min-width:1024px) {
  .page-hero-v2-text {
    text-align: left;
  }
}

.page-hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent, var(--brand-blue));
  margin: 0 0 14px;
}

.page-hero-v2-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, var(--brand-blue));
}

.page-hero-v2-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
}

@media(min-width:640px) {
  .page-hero-v2-title {
    font-size: 42px;
  }
}

@media(min-width:1024px) {
  .page-hero-v2-title {
    font-size: 46px;
  }
}

.page-hero-v2-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
}

@media(min-width:1024px) {
  .page-hero-v2-desc {
    margin: 0 0 28px;
  }
}

.page-hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media(min-width:1024px) {
  .page-hero-v2-ctas {
    justify-content: flex-start;
  }
}

/* Illustration card */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration-glow {
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(ellipse 55% 55% at 35% 30%, var(--accent-light, var(--brand-blue-50)) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 70% 75%, var(--accent-light, var(--brand-blue-50)) 0%, transparent 70%);
  opacity: 1;
  filter: blur(6px);
  border-radius: 50%;
}

.hero-illustration-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  background: linear-gradient(155deg, #fff 0%, var(--surface) 100%);
  background-image:
    radial-gradient(rgba(12, 29, 59, 0.05) 1px, transparent 1px),
    linear-gradient(155deg, #fff 0%, var(--surface) 100%);
  background-size: 16px 16px, 100% 100%;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-dashboard);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-illustration-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-light, var(--brand-blue-50)) 0%, transparent 70%);
  pointer-events: none;
}

.hero-illustration-card svg {
  position: relative;
  z-index: 1;
  width: 62%;
  height: 62%;
}

.hero-illustration-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent, var(--brand-blue));
  opacity: 0.55;
  animation: illustration-dot-float 4.5s ease-in-out infinite;
}

.hero-illustration-dot:nth-child(2) {
  animation-delay: -1.5s;
}

.hero-illustration-dot:nth-child(3) {
  animation-delay: -3s;
}

@keyframes illustration-dot-float {

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

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

@media (prefers-reduced-motion: reduce) {
  .hero-illustration-dot {
    animation: none;
  }
}

/* Feature checklist — 2 col with accent checkmarks */
.feature-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 20px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

@media(min-width:640px) {
  .feature-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.feature-checklist li:hover {
  background: var(--surface);
}

.feature-checklist li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent, var(--brand-blue));
}

/* Section wrapper for module pages */
.module-section {
  padding: 8px 4px 56px;
}

.module-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 10px;
}

@media(min-width:768px) {
  .module-section-title {
    font-size: 26px;
  }
}

.module-section-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 0 6px;
}

.module-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin-top: 24px;
}

@media(min-width:768px) {
  .module-panel {
    padding: 34px;
  }
}

/* Video placeholder card — YouTube-thumbnail style */
.video-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

@media(min-width:768px) {
  .video-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.video-card-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0C1D3B 0%, var(--accent, #132A4F) 130%);
  box-shadow: var(--shadow-dashboard);
  cursor: pointer;
}

.video-card-frame-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent);
}

.video-card-frame-topbar span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.video-card-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.video-card-frame:hover .video-card-play {
  transform: scale(1.08);
}

.video-card-play svg {
  margin-left: 3px;
}

.video-card-frame-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-frame-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
}

.video-card-frame-bottom p {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.video-card-text-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.video-card-text-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.video-card-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 28px;
}

@media(min-width:640px) {
  .stat-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-strip-item {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
}

.stat-strip-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent, var(--brand-blue));
}

.stat-strip-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   HERO CONNECTED-PLATFORM DIAGRAM (added — desktop only, >=1024px)
   Namespaced with hd- prefix so it can never collide with any
   existing class in this file. Hidden by default; only shown
   alongside hero-text-block at desktop widths.
   ═══════════════════════════════════════════════════════════ */
.hero-top-grid {
  display: block;
}

.hd-diagram-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .hero-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
  }

  .hero-top-grid .hero-text-block {
    text-align: left;
    margin-bottom: 0;
  }

  .hero-top-grid .hero-eyebrow {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-top-grid .hero-subtext {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-top-grid .hero-ctas {
    justify-content: flex-start;
  }

  .hd-diagram-wrap {
    display: block;
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 520px;
    margin: 0 0 0 auto;
  }

  .hd-dots-grid {
    display: none;
  }

  .hd-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }

  .hd-svg-line {
    stroke-dasharray: none;
  }

  .hd-orbit-ring {
    animation: hd-orbit-spin 60s linear infinite;
    transform-origin: 300px 300px;
    stroke-dasharray: 2.5 9;
  }

  .hd-orbit-ring:nth-of-type(2) {
    animation-duration: 90s;
    animation-direction: reverse;
    stroke-dasharray: 2 7;
  }

  @keyframes hd-orbit-spin {
    from {
      transform: rotate(0deg);
    }

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

  .hd-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: radial-gradient(circle at 50% 40%, rgba(45, 91, 255, 0.55) 0%, rgba(45, 91, 255, 0.18) 55%, rgba(12, 29, 59, 0.2) 100%);
    border: 1px solid rgba(140, 175, 255, 0.55);
    box-shadow: 0 0 60px 12px rgba(45, 91, 255, 0.35), inset 0 0 30px rgba(45, 91, 255, 0.25);
    text-align: center;
    z-index: 5;
  }

  .hd-hub-logo {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hd-center-hub h3 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
    margin: 0;
  }

  .hd-node-card {
    position: absolute;
    width: 152px;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    z-index: 4;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  }

  .hd-node-card:hover {
    transform: translateY(-4px);
  }

  .hd-card-people {
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd-node-card.hd-card-people:hover {
    transform: translateX(-50%) translateY(-4px);
  }

  .hd-card-workforce {
    top: 34%;
    left: -34px;
  }

  .hd-card-operations {
    top: 34%;
    right: -34px;
  }

  .hd-card-analytics {
    bottom: -6px;
    left: 6px;
  }

  .hd-card-performance {
    bottom: -6px;
    right: 6px;
  }

  /* ─── Idle "alive" motion once the entrance animation has settled ───
     Kept off the .hd-node-card / .hd-center-hub transform itself since
     hero.js drives that element's transform for mouse parallax — these
     animate box-shadow / stroke-opacity / a child element instead, so
     the two never fight over the same property. */
  @media (prefers-reduced-motion: no-preference) {
    .hd-center-hub {
      animation: hd-hub-pulse 3.6s ease-in-out infinite;
    }

    @keyframes hd-hub-pulse {

      0%,
      100% {
        box-shadow: 0 0 60px 12px rgba(45, 91, 255, 0.35), inset 0 0 30px rgba(45, 91, 255, 0.25);
      }

      50% {
        box-shadow: 0 0 78px 18px rgba(45, 91, 255, 0.5), inset 0 0 34px rgba(45, 91, 255, 0.3);
      }
    }

    .hd-svg-line {
      animation: hd-line-pulse 3.4s ease-in-out infinite;
    }

    .hd-svg-line:nth-of-type(1) {
      animation-delay: 0s;
    }

    .hd-svg-line:nth-of-type(2) {
      animation-delay: 0.35s;
    }

    .hd-svg-line:nth-of-type(3) {
      animation-delay: 0.7s;
    }

    .hd-svg-line:nth-of-type(4) {
      animation-delay: 1.05s;
    }

    .hd-svg-line:nth-of-type(5) {
      animation-delay: 1.4s;
    }

    @keyframes hd-line-pulse {

      0%,
      100% {
        stroke-opacity: 0.6;
      }

      50% {
        stroke-opacity: 1;
      }
    }

    .hd-node-card .hd-card-icon {
      animation: hd-icon-bob 3s ease-in-out infinite;
    }

    .hd-card-people .hd-card-icon {
      animation-delay: 0s;
    }

    .hd-card-workforce .hd-card-icon {
      animation-delay: 0.35s;
    }

    .hd-card-operations .hd-card-icon {
      animation-delay: 0.7s;
    }

    .hd-card-analytics .hd-card-icon {
      animation-delay: 1.05s;
    }

    .hd-card-performance .hd-card-icon {
      animation-delay: 1.4s;
    }

    @keyframes hd-icon-bob {

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

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

.hd-card-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.hd-blue-bg {
  color: #9FBBFF;
}

.hd-mini-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hd-mini-sub {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(226, 232, 245, 0.65);
}

.hd-glass-blue {
  background: rgba(18, 34, 66, 0.85);
  border: 1px solid rgba(140, 175, 255, 0.42);
}

/* Hero trust logos */
.hero-trust-strip {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.hero-trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 245, 0.55);
  white-space: nowrap;
}

.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.hero-trust-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
}

/* Hero qualitative capability strip (no unverified figures) */
.hero-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media(min-width:640px) {
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.hero-metric-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric-icon {
  color: #9FBBFF;
  margin-bottom: 10px;
}

.hero-metric-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.hero-metric-sub {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(226, 232, 245, 0.55);
  line-height: 1.4;
}

/* 4-product static layout overrides for platform-section */
@media(min-width:1024px) {
  .platform-capabilities--products {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(min-width:768px) {
  .platform-modules--products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1200px) {
  .platform-modules--products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cap-pillar--clickable {
  display: block;
}

.cap-pillar--clickable:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.mod-card--clickable {
  display: flex;
  cursor: pointer;
  text-decoration: none;
}

.mod-card--clickable:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 91, 255, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.mod-card--clickable:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

/* ── Simplified hero product-stage content (SVG + short copy per tab) ── */
.simple-dash {
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.simple-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-light);
}

.simple-dash-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.simple-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.simple-dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.simple-dash-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  padding: 32px 28px 36px;
  text-align: center;
}

@media(min-width: 640px) {
  .simple-dash-content {
    grid-template-columns: 200px 1fr;
    text-align: left;
    justify-items: start;
    gap: 32px;
    padding: 40px 40px;
  }
}

.simple-dash-visual {
  position: relative;
  width: 180px;
  height: 162px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-dash-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  filter: blur(6px);
}

.simple-dash-visual svg {
  position: relative;
  z-index: 1;
}

.simple-dash-info h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 10px;
}

@media(min-width:768px) {
  .simple-dash-info h4 {
    font-size: 21px;
  }
}

.simple-dash-info p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 16px;
  max-width: 420px;
}

.simple-dash-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.simple-dash-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  justify-content: center;
}

@media(min-width:640px) {
  .simple-dash-info li {
    justify-content: flex-start;
  }
}

.simple-dash-info li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================================
   HRSUITE PRODUCT SHOWCASE
   =========================================== */
.hrsuite-showcase {
  background: #fff;
  padding: 88px 0;
  overflow: hidden;
}

@media(min-width:768px) {
  .hrsuite-showcase {
    padding: 110px 0;
  }
}

.hrsuite-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media(min-width:1024px) {
  .hrsuite-showcase-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }
}

.hrsuite-showcase-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.hrsuite-showcase-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

@media(min-width:768px) {
  .hrsuite-showcase-title {
    font-size: 38px;
  }
}

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

.hrsuite-showcase-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 24px;
}

.hrsuite-showcase-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media(min-width:480px) {
  .hrsuite-showcase-list {
    grid-template-columns: 1fr 1fr;
  }
}

.hrsuite-showcase-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hrsuite-showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* HRSuite table mock */
.hrsuite-table-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dashboard);
  overflow: hidden;
}

.hrs-mock-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.hrs-mock-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.hrs-mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hrs-mock-search {
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
}

.hrs-mock-filter {
  font-size: 11.5px;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
}

.hrs-mock-add {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 6px;
  padding: 6px 12px;
  white-space: nowrap;
}

.hrs-mock-table-wrap {
  padding: 4px 4px 14px;
  overflow-x: auto;
}

.hrs-mock-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.hrs-mock-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.hrs-mock-table td {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.hrs-mock-table td:first-child {
  font-weight: 700;
  color: var(--text-primary);
}

.hrs-mock-table tr:hover td {
  background: rgba(45, 91, 255, 0.03);
}

.hrs-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.hrs-pill--active {
  background: var(--success-light);
  color: #16803C;
}

.hrs-mock-caption {
  font-size: 10.5px;
  color: var(--text-faint);
  text-align: right;
  padding: 6px 16px 0;
  font-style: italic;
}

/* ===========================================
   MANUFACTURING / COMPLEX WORKFORCE
   =========================================== */
.manufacturing-section {
  background: var(--surface);
  padding: 88px 0;
}

@media(min-width:768px) {
  .manufacturing-section {
    padding: 110px 0;
  }
}

.manufacturing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media(min-width:1024px) {
  .manufacturing-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.manufacturing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.manufacturing-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

@media(min-width:768px) {
  .manufacturing-title {
    font-size: 36px;
  }
}

.manufacturing-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 28px;
}

.manufacturing-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.manufacturing-cap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.manufacturing-cap svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.manufacturing-cap strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.manufacturing-cap span {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.manufacturing-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.manufacturing-illustration {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 20px 40px rgba(12, 29, 59, 0.12));
}

.manufacturing-float-card {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: 12px 18px;
  text-align: center;
  width: max-content;
  max-width: 220px;
}

.manufacturing-float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.manufacturing-float-card span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================================
   WORKFORCE CAPABILITIES GRID
   =========================================== */
.capabilities-section {
  background: #fff;
  padding: 88px 0;
}

@media(min-width:768px) {
  .capabilities-section {
    padding: 110px 0;
  }
}

.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.capabilities-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.capabilities-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.capabilities-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

@media(min-width:768px) {
  .capabilities-title {
    font-size: 36px;
  }
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media(min-width:640px) {
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.capability-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-warm);
  transition: all 0.25s ease;
}

.capability-card:hover {
  border-color: rgba(45, 91, 255, 0.25);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.capability-card--clickable {
  display: block;
  cursor: pointer;
}

.capability-card--clickable:hover {
  border-color: rgba(45, 91, 255, 0.4);
  box-shadow: 0 14px 32px rgba(45, 91, 255, 0.14);
  transform: translateY(-3px);
}

.capability-card--clickable:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.capability-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.capability-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.capability-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===========================================
   ENTERPRISE CAPABILITY (dark)
   =========================================== */
.enterprise-capability-section {
  background: linear-gradient(160deg, #0C1D3B 0%, #0A1730 60%, #081228 100%);
  padding: 88px 0;
}

@media(min-width:768px) {
  .enterprise-capability-section {
    padding: 110px 0;
  }
}

.enterprise-capability-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.enterprise-capability-copy {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.enterprise-capability-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9FBBFF;
  margin-bottom: 14px;
}

.enterprise-capability-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

@media(min-width:768px) {
  .enterprise-capability-title {
    font-size: 40px;
  }
}

.enterprise-capability-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(226, 232, 245, 0.68);
}

.enterprise-capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media(min-width:640px) {
  .enterprise-capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width:1024px) {
  .enterprise-capability-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.enterprise-capability-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.enterprise-capability-item svg {
  margin-bottom: 14px;
}

.enterprise-capability-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.enterprise-capability-item p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(226, 232, 245, 0.6);
}




/* Logo Styling & Smooth Invert Transition */
.navbar-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Jab Scroll 0 hoga (Navbar transparent), ye class logo ko white kar degi */
.navbar-logo-img.logo-white {
  filter: brightness(0) invert(1);
}

/* Mobile panel ke ander logo hamesha original dark color me rahega */
.mobile-logo-img {
  filter: none !important;
}

.hd-center-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* Adjustment space for logo inside circle */
}

.hd-hub-logo-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  /* Dark background par logo clear dikhane ke liye invert filter (agar dark logo ho) */
  filter: brightness(0) invert(1);
}

.hd-center-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* Adjustment space for logo inside circle */
}

.hd-hub-logo-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  /* Dark background par logo clear dikhane ke liye invert filter (agar dark logo ho) */
  filter: brightness(0) invert(1);
}

/* ═══ GUARANTEED LIVE ANIMATION FOR CENTER HUB ═══ */
.hd-diagram-wrap {
  position: relative !important;
}

.hd-center-hub {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  margin-left: -50px !important;
  margin-top: -50px !important;
  width: 100px !important;
  height: 100px !important;
  z-index: 25 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(110, 155, 255, 0.3) !important;
  box-shadow: 0 0 30px rgba(45, 91, 255, 0.25) !important;
  animation: hubFloat 3.5s ease-in-out infinite alternate !important;
}

/* Floating Animation */
@keyframes hubFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(-12px) scale(1.03);
  }
}

/* Outer Pulsing Neon Aura */
.hd-hub-glow {
  position: absolute !important;
  inset: -15px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.5) 0%, rgba(45, 91, 255, 0) 70%) !important;
  animation: hubPulseGlow 2.5s ease-in-out infinite alternate !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

@keyframes hubPulseGlow {
  0% {
    transform: scale(0.85);
    opacity: 0.3;
  }

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

/* Rotating Energy Ring */
.hd-hub-ring {
  position: absolute !important;
  inset: -3px !important;
  border-radius: 50% !important;
  padding: 2px !important;
  background: conic-gradient(from 0deg, transparent 0%, #2D5BFF 50%, #6E9BFF 100%) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  animation: hubRotateRing 5s linear infinite !important;
  pointer-events: none !important;
}

@keyframes hubRotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Logo Image Styling */
.hd-hub-logo-img {
  width: 75% !important;
  height: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(110, 155, 255, 0.8)) !important;
  transition: transform 0.3s ease, filter 0.3s ease !important;
  z-index: 2 !important;
}

/* Hover Interactive Surge */
.hd-center-hub:hover {
  box-shadow: 0 0 45px rgba(45, 91, 255, 0.6) !important;
  border-color: rgba(110, 155, 255, 0.8) !important;
}

.hd-center-hub:hover .hd-hub-logo-img {
  transform: scale(1.1) !important;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(110, 155, 255, 1)) !important;
}

/* ═══ HRSUITE SHOWCASE IMAGE FRAME ═══ */
.hrsuite-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hrsuite-img-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(110, 155, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(45, 91, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hrsuite-img-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 91, 255, 0.35);
  border-color: rgba(110, 155, 255, 0.5);
}

.hrsuite-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ═══ CLEAN PRICING SECTION STYLES ═══ */
.pricing-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: inherit;
}

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

.pricing-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pricing-subtitle {
  color: #64748B;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Pricing Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Pricing Card */
.pricing-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Featured (Most Popular) Middle Card */
.pricing-card--featured {
  border: 2px solid #0F2B48;
  box-shadow: 0 10px 30px rgba(15, 43, 72, 0.08);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F2B48;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

/* Card Content */
.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.plan-desc {
  color: #64748B;
  font-size: 0.9rem;
  min-height: 42px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.plan-price-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
}

/* Buttons */
.btn-outline-full {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1.5 solid #0F2B48;
  color: #0F2B48;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-full:hover {
  background: #0F2B48;
  color: #FFFFFF;
}

.btn-primary-full {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  background: #0F2B48;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary-full:hover {
  background: #1E3A8A;
}

/* Features Checklist */
.card-features {
  margin-top: 32px;
  border-top: 1px solid #F1F5F9;
  padding-top: 24px;
}

.features-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.check-icon {
  width: 16px;
  height: 16px;
  stroke: #334155;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Info Banner */
.pricing-info-banner {
  margin-top: 48px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-text {
  color: #475569;
  font-size: 0.925rem;
  margin: 0;
}

/* ─── SECTION STYLES ─── */
.capabilities-section {
  background: #080f1e;
  padding: 100px 24px;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Glows */
.capabilities-section::before,
.capabilities-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.15;
}

.capabilities-section::before {
  top: -100px;
  left: -100px;
  background: #2d5bff;
}

.capabilities-section::after {
  bottom: -100px;
  right: -100px;
  background: #38bdf8;
}

.capabilities-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─── HEADER ─── */
.capabilities-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.capabilities-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.capabilities-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── GRID LAYOUT ─── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── MODERN CARD STYLES ─── */
.capability-card {
  position: relative;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  /* Animation Initial States */
  opacity: 0;
  transform: translateY(30px);
}

/* Animated Accent Border Line at Bottom */
.capability-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2d5bff, #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  background: rgba(20, 30, 55, 0.85);
  border-color: rgba(45, 91, 255, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(45, 91, 255, 0.15);
}

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

/* ─── ICON STYLING ─── */
.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(45, 91, 255, 0.1);
  border: 1px solid rgba(45, 91, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
  background: #2d5bff;
  border-color: #2d5bff;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(45, 91, 255, 0.4);
}

.capability-card:hover .capability-icon svg {
  stroke: #ffffff;
}

/* ─── CARD TEXT ─── */
.capability-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.capability-card p {
  font-size: 0.925rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Clickable Card Indicator Arrow */
.capability-card--clickable .card-arrow {
  font-size: 1.1rem;
  color: #38bdf8;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.capability-card--clickable:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE DESIGN ─── */
@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-section {
    padding: 60px 18px;
  }
}

/* ─── SECTION BASE STYLES ─── */
.manufacturing-section {
  background: linear-gradient(180deg, #070e1b 0%, #0c1d3b 100%);
  padding: 100px 24px;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow: hidden;
}

.manufacturing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.manufacturing-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ─── COPY & HEADINGS ─── */
.manufacturing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.manufacturing-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manufacturing-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 32px;
}

/* ─── INDUSTRY TABS ─── */
.industry-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.industry-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-tab:hover,
.industry-tab.active {
  background: #2d5bff;
  border-color: #2d5bff;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(45, 91, 255, 0.35);
}

/* ─── CAPABILITIES GRID ─── */
.manufacturing-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.manufacturing-cap {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px;
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.manufacturing-cap:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 91, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.cap-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(45, 91, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manufacturing-cap strong {
  display: block;
  font-size: 0.95rem;
  color: #f8fafc;
  margin-bottom: 2px;
}

.manufacturing-cap span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* ─── VISUAL DASHBOARD UI ─── */
.manufacturing-visual {
  position: relative;
}

.dashboard-mockup {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 91, 255, 0.15);
  backdrop-filter: blur(10px);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mockup-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

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

  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

/* Plant Sites Cards */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.site-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 10px;
}

.site-card-label {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.site-card-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
}

.site-card-sub {
  font-size: 0.7rem;
  color: #38bdf8;
  margin-top: 2px;
}

/* Shift Rotation Bar */
.shift-widget {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.shift-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 10px;
}

.shift-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}

.shift-bar-fill {
  height: 100%;
  transition: width 0.5s ease;
}

/* Live Workforce Activity Graph */
.activity-section {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
}

.activity-header {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.activity-graph-svg {
  width: 100%;
  height: 70px;
  overflow: visible;
}

/* Floating Metric Card */
.manufacturing-float-card {
  position: absolute;
  bottom: -20px;
  left: -25px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(45, 91, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2d5bff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-text strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

.float-text span {
  display: block;
  font-size: 0.75rem;
  color: #38bdf8;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .manufacturing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manufacturing-title {
    font-size: 2.1rem;
  }

  .manufacturing-float-card {
    left: 10px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .manufacturing-caps {
    grid-template-columns: 1fr;
  }

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

/* ═══ MANUFACTURING SECTION - LIGHT / WHITE THEME ═══ */

/* Main Section Background */
.manufacturing-section {
  background: #ffffff !important;
  color: #0f172a !important;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Background Glow Effect Adjust */
.manufacturing-section::before {
  background: radial-gradient(circle, rgba(45, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%) !important;
}

/* Eyebrow Badge */
.manufacturing-eyebrow {
  color: #2d5bff !important;
  background: rgba(45, 91, 255, 0.08) !important;
  border-color: rgba(45, 91, 255, 0.2) !important;
}

/* Main Heading Title */
.manufacturing-title {
  color: #0f172a !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}

/* Description Text */
.manufacturing-desc {
  color: #475569 !important;
}

/* Industry Filter Tabs */
.industry-tab {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
  color: #475569 !important;
}

.industry-tab:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.industry-tab.active {
  background: #2d5bff !important;
  border-color: #2d5bff !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(45, 91, 255, 0.25) !important;
}

/* Feature Capability Cards */
.manufacturing-cap {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

.manufacturing-cap:hover {
  background: #ffffff !important;
  border-color: #2d5bff !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

.cap-icon-box {
  background: rgba(45, 91, 255, 0.1) !important;
}

.manufacturing-cap strong {
  color: #0f172a !important;
}

.manufacturing-cap span {
  color: #64748b !important;
}

/* Right Side Dashboard Mockup Container */
.dashboard-mockup {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 20px rgba(45, 91, 255, 0.05) !important;
}

.mockup-header {
  border-bottom-color: #f1f5f9 !important;
}

.mockup-title-wrap span {
  color: #334155 !important;
}

/* Site KPI Cards Inside Dashboard */
.site-card {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

.site-card-label {
  color: #64748b !important;
}

.site-card-val {
  color: #0f172a !important;
}

.site-card-sub {
  color: #0284c7 !important;
}

/* Shift Rotation Bar Widget */
.shift-widget {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

.shift-header {
  color: #475569 !important;
}

.shift-bar-container {
  background: #e2e8f0 !important;
}

/* Activity Graph Section */
.activity-section {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

.activity-header {
  color: #334155 !important;
}

/* Floating Bottom Metric Card */
.manufacturing-float-card {
  background: #ffffff !important;
  border-color: #2d5bff !important;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1) !important;
}

.float-text strong {
  color: #0f172a !important;
}

.float-text span {
  color: #0284c7 !important;
}

.stories-header {
  text-align: center;
  padding-top: 60px;
}

.stories-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.stories-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* ═══ STORIES SWIPER SLIDER ═══ */
.mySwiper {
  width: 100%;
  padding: 40px 0 56px;
  overflow: visible;
}

.mySwiper .swiper-slide {
  width: 340px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.story-swiper-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 20px 40px -12px rgba(12, 29, 59, 0.35);
}

.story-swiper-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.story-swiper-headline {
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 16px 0 0;
}

.story-swiper-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.925rem;
}

.story-swiper-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mySwiper .swiper-pagination-bullet {
  background: var(--brand-navy, #0c1d3b);
  opacity: 0.25;
}

.mySwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ═══ PAGE LOADER ═══ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at 50% 40%, #152E58 0%, #0B1A36 55%, #071021 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: loader-fade-in 0.6s ease both;
}

@keyframes loader-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-logo {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  animation: loader-pulse 1.6s ease-in-out infinite;
}

.loader-logo span {
  color: #4C7CFF;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.loader-bar-track {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2D5BFF, #4C7CFF);
  border-radius: 99px;
  animation: loader-bar-grow 1.8s ease-in-out infinite;
}

@keyframes loader-bar-grow {
  0%   { width: 0%; margin-left: 0%; }
  50%  { width: 70%; margin-left: 15%; }
  100% { width: 0%; margin-left: 100%; }
}

.loader-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Explore Section Layout */
.explore-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.explore-inner {
  max-width: 900px;
  margin: 0 auto;
}

.explore-header {
  text-align: center;
  margin-bottom: 40px;
}

.explore-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.explore-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

/* Single Center Card */
.explore-single-wrapper {
  display: flex;
  justify-content: center;
}

.explore-card--single {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.explore-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.explore-card-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.explore-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.explore-card-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

/* Horizontal 3-Step Process Grid */
.explore-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.explore-steps-grid li {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.825rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* Input & CTA Group */
.explore-cta-group {
  display: flex;
  gap: 12px;
}

.explore-email {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.explore-email:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.explore-cta--primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.explore-cta--primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Responsive Setup */
@media (max-width: 768px) {
  .explore-steps-grid {
    grid-template-columns: 1fr;
  }
  .explore-cta-group {
    flex-direction: column;
  }
}
.client-section-home7 {
    height: 350px;
    padding: 20px 0;
}

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

.pbmit-hide {
    display: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Swiper Smooth Infinite Linear Scroll Fix */
.swiper2 .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}/* Container & Section Base */
.client-section-home7 {
    padding: 60px 0;
    background-color: #f9fbfd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Heading & Subheading Styling */
.pbmit-heading-subheading-style-7 {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.pbmit-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1d20;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

/* Heading line effect */
.pbmit-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0066cc;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.pbmit-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

/* Client Card & Image Styling */
.pbmit-client-style-1 {
    padding: 10px;
}

.pbmit-client-wrapper {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
}

.pbmit-client-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #0066cc;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}


.pbmit-hide {
    display: none;
}

/* Swiper Smooth Infinite Linear Scroll */
.swiper2 .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.swiper2 .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Navbar default styling on dark background */
.navbar-link {
  color: #ffffff !important; /* Pure white text clear visibility ke liye */
  font-weight: 500;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

/* Hover and active states */
.navbar-link:hover,
.navbar-link.dropdown-open {
  color: #ffffff !important;
  opacity: 1;
}

/* Sub-chevron arrow visibility */
.nav-chevron {
  stroke: #ffffff;
  margin-left: 4px;
}

/* Right side actions text visibility */
.navbar-lang,
.navbar-login {
  color: #ffffff !important;
  opacity: 0.9;
}

.navbar-lang:hover,
.navbar-login:hover {
  opacity: 1;
}

/* When navbar is scrolled (White background scenario) */
.navbar.scrolled .navbar-link,
.navbar.scrolled .navbar-lang,
.navbar.scrolled .navbar-login {
  color: #1e293b !important; /* Dark text for light/scrolled background */
  opacity: 1;
}

.navbar.scrolled .nav-chevron {
  stroke: #1e293b;
}
/* Default Navbar (Light Background pages ke liye: white background + dark text) */
.navbar-link,
.navbar-lang,
.navbar-login {
  color: #1e293b !important; /* Normal pages par dark text */
  font-weight: 500;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.nav-chevron {
  stroke: #1e293b;
  margin-left: 4px;
}

/* Specific to HomePage when NOT scrolled (Dark Hero Section) */
body.home-page .navbar:not(.scrolled) .navbar-link,
body.home-page .navbar:not(.scrolled) .navbar-lang,
body.home-page .navbar:not(.scrolled) .navbar-login {
  color: #ffffff !important; /* Sirf Home page par top main white text */
}



/* Hover States */
.navbar-link:hover,
.navbar-link.dropdown-open {
  opacity: 1;
}

/* Active Navigation Link Highlight */
.navbar-link.active {
  font-weight: 600 !important;
  opacity: 1 !important;
}

/* Home page par jab navbar scrolled na ho tab active link ka color */
body.home-page .navbar:not(.scrolled) .navbar-link.active {
  color: #ffffff !important;
}

/* Scrolled state ya baaki pages par active link ka color */
.navbar.scrolled .navbar-link.active,
body:not(.home-page) .navbar:not(.scrolled) .navbar-link.active {
  color: #2D5BFF !important; /* Brand blue color ya apni pasand ka color rakh sakte hain */
}

/* Optional: Active link ke neeche choti si line ya indicator dikhane ke liye */
.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.navbar-link {
  position: relative; /* Indicator ke liye zaroori hai */
}
/* Active Navigation Link Highlight Fix */
.navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Base Active Style */
.navbar-link.active {
  font-weight: 600 !important;
  opacity: 1 !important;
}

/* Home Page (Top / Unscrolled State) */
body.home-page .navbar:not(.scrolled) .navbar-link.active {
  color: #ffffff !important;
}

/* Scrolled State or Other Pages */
.navbar.scrolled .navbar-link.active,
body:not(.home-page) .navbar:not(.scrolled) .navbar-link.active {
  color: #2D5BFF !important;
}

/* Clean Underline Indicator (Layout Break Nahi Karega) */
.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: currentColor;
  border-radius: 99px;
  pointer-events: none;
}

/* ═══ PRICING SECTION FIX CSS ═══ */

.pricing-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-main-heading, 
.pricing-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1d20;
  margin-bottom: 12px;
}

.pricing-subheading,
.pricing-header p {
  font-size: 16px;
  color: #6c757d;
}

/* Grid Container */
.pricing-grid,
.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Card Styling */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular,
.pricing-card--featured {
  border: 2px solid #2D5BFF;
}

/* Badge */
.pricing-badge,
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2D5BFF;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Titles & Prices */
.pricing-title, .plan-name {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.pricing-price-wrap, .plan-price-text {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.pricing-period, .price-period {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.pricing-desc, .plan-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Buttons */
.pricing-btn, .btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 24px;
}

.pricing-btn-outline, .btn-outline-full {
  border: 1px solid #d1d5db;
  color: #374151;
  background: transparent;
}

.pricing-btn-outline:hover, .btn-outline-full:hover {
  border-color: #111827;
  color: #111827;
}

.pricing-btn-primary, .btn-primary-full {
  background: #2D5BFF;
  color: #ffffff;
}

.pricing-btn-primary:hover, .btn-primary-full:hover {
  background: #1a44e4;
}

.pricing-divider {
  border: 0;
  height: 1px;
  background: #e5e7eb;
  margin: 0 0 24px 0;
}

/* Features & Specs Lists */
.pricing-specs-title,
.pricing-features-title,
.features-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.pricing-specs-list,
.pricing-features-list,
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-specs-list li,
.pricing-features-list li,
.features-list li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features-list svg,
.check-icon {
  width: 18px;
  height: 18px;
  stroke: #2D5BFF;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Banner */
.pricing-nonprofit-note,
.pricing-info-banner {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
}

.pricing-nonprofit-note a,
.pricing-info-banner a {
  color: #2D5BFF;
  font-weight: 600;
  text-decoration: underline;
}