/* ==========================================================================
   ZO-PAYROLL DESIGN SYSTEM & STYLESHEET
   Z-PAYROLL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color Palette - Z-Payroll Blue */
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-dark: #1E40AF;
  --primary-light: #EFF6FF;
  --primary-glow: rgba(37, 99, 235, 0.20);

  --primary-deep: #1E40AF;
  --primary-soft: #DBEAFE;
  --primary-tint: #F0F7FF;

  --secondary: #0f172a;
  /* Supporting accents */
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --accent-sky: #0ea5e9;
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;

  /* Background & Surface Colors */
  --bg-page: #FAF6EF;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-subtle: #fcfbfa;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --bg-accent-banner: #eff6ff;

  /* Neutral Text & Borders */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --border-subtle: #e2e8f0;
  --border-focus: #2563EB;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-primary: 0 8px 22px rgba(37, 99, 235, 0.32);
  --shadow-card-hover: 0 16px 32px rgba(15, 23, 42, 0.1);

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Fonts */
  --font-heading: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Container Widths */
  --container-max: 1240px;
  --header-height: 72px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
}

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

.btn-secondary {
  background: var(--bg-white);
  color: var(--secondary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  background: var(--bg-card-subtle);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--secondary);
  color: var(--text-white);
}

.btn-dark {
  background: var(--secondary);
  color: var(--text-white);
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e5edff;
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-pill {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-page);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  color: var(--secondary);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.zp-nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.nav-brand:hover .zp-nav-logo-icon {
  transform: scale(1.05);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.brand-dash {
  color: #2563EB;
}

.zp-brand-logo .brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 4px;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link svg.arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

/* Megamenu Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 480px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-fast);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  z-index: 1010;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Caret flips while the menu is open */
.nav-item:hover .nav-link svg.arrow,
.nav-item:focus-within .nav-link svg.arrow {
  transform: rotate(180deg);
}

/* ---------- Compact single-column menu ---------- */
.nav-dropdown.compact {
  width: 244px;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.drop-icon.sm {
  width: 26px;
  height: 26px;
  font-size: 13px;
  border-radius: 7px;
}

.dropdown-card {
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background var(--transition-fast);
}

.dropdown-card:hover {
  background: var(--bg-page);
}

.drop-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drop-content h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--secondary);
}

.drop-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

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

.nav-actions .country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.nav-actions .country-select:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.nav-actions .country-select .flag-icon {
  font-size: 14px;
}

.nav-actions .country-select svg {
  width: 12px;
  height: 12px;
  color: #64748b;
}

/* Sign Up Now Action Button — always visible, alongside Sign In */
.btn-signup-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563EB;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 18px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-signup-nav:hover {
  background: #1D4ED8;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.42);
}

/* Always-visible Sign In link — unlike Sign Up, not scroll-gated */
.nav-signin-link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 8px 4px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-signin-link:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

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

.mobile-nav-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   HERO SECTION  (centred lockup over a soft gradient wash)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 82px 0 0;
  background:
    linear-gradient(180deg, var(--bg-page) 0%, #eef4fe 42%, #dbe9fd 72%, #c9dffb 100%);
  overflow: hidden;
}

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

.hero-center h1 {
  font-size: clamp(30px, 4.8vw, 74px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-center h1 .highlight-text {
  color: var(--primary-deep);
}

.hero-center p.lead {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin: 0 auto 34px;
  max-width: 720px;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.point-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ---------- Product screenshot band ---------- */
.hero-shot-wrap {
  margin-top: 68px;
  padding-bottom: 0;
}

.hero-shot-container {
  position: relative;
  display: flex;
  justify-content: center;
  /* Wider than the default container so the side cards frame the shell
     instead of covering its content */
  max-width: 1340px;
}

.dashboard-shot {
  width: 100%;
  max-width: 1000px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 -2px 60px rgba(15, 23, 42, 0.18);
  background: var(--bg-white);
  position: relative;
  z-index: 2;
}

.dashboard-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Floating side cards ---------- */
.shot-side {
  position: absolute;
  bottom: 18px;
  width: 202px;
  background: var(--bg-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  z-index: 3;
}

.shot-side-left {
  left: 0;
}

.shot-side-right {
  right: 0;
  bottom: 92px;
}

.shot-side-tag {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.shot-side-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}

.mini-stat-label {
  font-size: 11px;
  color: var(--text-muted);
}

.mini-stat-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary);
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin: 14px 0 8px;
}

.mini-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, #7cb6ff 100%);
  border-radius: 3px 3px 0 0;
}

.mini-foot {
  font-size: 10.5px;
  color: var(--text-light);
}

.shot-side-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.shot-side-tag.green-tag {
  background: #0D6956;
  color: #ffffff;
}

.disbursal-dot-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #0D6956;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pulse-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: pulseDot 1.6s infinite;
}

.disbursal-amount {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
  margin-top: 2px;
  margin-bottom: 10px;
}

.mini-compliance-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: #334155;
}

.comp-item svg {
  width: 13px;
  height: 13px;
  color: #10B981;
  flex-shrink: 0;
}

.disbursal-action-btn {
  width: 100%;
  padding: 7px 10px;
  background: #2563EB;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.disbursal-action-btn:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Range slider, shared by the pricing calculator */
.custom-range {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #cbd5e1;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}


/* ==========================================================================
   INTEGRATIONS
   ========================================================================== */
.integrations-section {
  padding: 60px 0 20px;
  background: var(--bg-white);
}

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

.integration-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-card-hover);
}

.integration-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon svg {
  width: 21px;
  height: 21px;
}

.integration-body {
  min-width: 0;
}

.integration-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.integration-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.integration-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.integrations-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   TRUST LOGOS TICKER
   ========================================================================== */
.trust-section {
  padding: 46px 0 52px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: var(--bg-white);
  text-align: center;
  overflow: hidden;
}

.trust-title {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #94a3b8;
  margin-bottom: 28px;
}

.logos-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  align-items: center;
  padding: 8px 0;
  animation: trustMarquee 36s linear infinite;
}

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

@keyframes trustMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  padding: 12px 26px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.logo-item:hover {
  color: #1d4ed8;
  border-color: #3b82f6;
  background: #f0f7ff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.partner-emblem {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.partner-emblem svg {
  width: 20px;
  height: 20px;
}

.emblem-gopinath {
  background: #eff6ff;
  color: #2563eb;
}

.emblem-megarme {
  background: #f0fdf4;
  color: #16a34a;
}

.emblem-posco {
  background: #fdf2f8;
  color: #db2777;
}

/* ==========================================================================
   STATUTORY & TAX COMPLIANCE BANNER (INDIA & DUBAI / UAE DUAL COUNTRY)
   ========================================================================== */
.compliance-banner-section {
  padding: 70px 0 80px;
  background: var(--secondary);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

/* Country Toggle Buttons on Top of Compliance Section */
.compliance-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.compliance-btn-group {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.compliance-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 700;
  font-size: 14.5px;
  padding: 9px 24px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.compliance-tab-btn .flag {
  font-size: 17px;
}

.compliance-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.compliance-tab-btn.active {
  background: #2563EB;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

/* Country Views */
.compliance-country-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.compliance-country-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.compliance-banner-section h2 {
  color: var(--primary);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 800;
}

.compliance-banner-section h3 {
  color: var(--text-white);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.compliance-banner-section p {
  color: #cbd5e1;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.compliance-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.compliance-mini-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.compliance-mini-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.compliance-mini-card h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compliance-mini-card p {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   FEATURE SHOWCASE SECTION
   ========================================================================== */
.features-section {
  padding: 90px 0;
  background: var(--bg-page);
}

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

.section-header h2 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Bento Grid Features */
.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #cbd5e1;
}

.bento-col-8 {
  grid-column: span 8;
}

.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-12 {
  grid-column: span 12;
}

.bento-card.highlight-card {
  background: linear-gradient(135deg, #f4f9ff 0%, #fff 100%);
  border: 1.5px solid #cddffd;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.card-icon.green {
  background: #ecfdf5;
  color: #059669;
}

.card-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.card-icon.yellow {
  background: #fefce8;
  color: #ca8a04;
}

.bento-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Feature Preview Badges/Elements */
.salary-slip-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
}

.slip-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #edf2f7;
}

.slip-line:last-child {
  border-bottom: none;
  font-weight: 800;
  color: var(--primary);
}

/* ==========================================================================
   INTERACTIVE TABBED DEMO SECTION
   ========================================================================== */
.tabbed-experience-section {
  padding: 24px 0 54px;
  background: #ffffff;
}

.tabbed-experience-section .section-header {
  margin: 0 auto 28px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 700;
  background: var(--bg-page);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--border-subtle);
}

.tab-info h4 {
  font-size: 26px;
  margin-bottom: 12px;
}

.tab-info p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.feature-check-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

.tab-graphic-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.tab-graphic-card.tab-img-container {
  padding: 10px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tab-feature-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tab-img-container:hover .tab-feature-img {
  transform: scale(1.01);
}

.tab-graphic-card.zp-dash-card {
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 4 Metric Box Cards */
.zp-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.zp-metric-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.zp-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.zp-metric-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.3px;
}

.zp-metric-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-metric-icon svg {
  width: 13px;
  height: 13px;
}

.zp-metric-icon.icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.zp-metric-icon.icon-green {
  background: #ecfdf5;
  color: #10b981;
}

.zp-metric-icon.icon-purple {
  background: #f5f3ff;
  color: #8b5cf6;
}

.zp-metric-icon.icon-red {
  background: #fef2f2;
  color: #ef4444;
}

.zp-metric-val {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 2px;
}

.zp-metric-sub {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
}

/* Pay Run Strip */
.zp-payrun-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.zp-payrun-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zp-payrun-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-payrun-icon svg {
  width: 17px;
  height: 17px;
}

.zp-strip-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.3px;
  display: block;
}

.zp-strip-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
}

.zp-strip-stat {
  display: flex;
  flex-direction: column;
}

.zp-stat-num {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.zp-stat-num.text-danger {
  color: #ef4444;
}

.zp-stat-num.text-success {
  color: #10b981;
}

.zp-payrun-status {
  min-width: 90px;
}

.zp-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.zp-status-badge {
  font-size: 8.5px;
  font-weight: 800;
  color: #2563eb;
}

.zp-percent {
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
}

.zp-progress-track {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.zp-progress-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 999px;
}

.zp-open-btn {
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.zp-open-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Lower 2 Columns */
.zp-dash-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zp-chart-card,
.zp-approvals-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.zp-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.zp-head-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.zp-head-title svg {
  width: 14px;
  height: 14px;
  color: #2563eb;
}

.zp-approvals-card .zp-head-title svg {
  color: #f97316;
}

.zp-subhead-tag {
  font-size: 9.5px;
  color: #94a3b8;
}

.zp-view-all-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.zp-view-all-link:hover {
  text-decoration: underline;
}

/* Bar Chart */
.zp-bar-chart {
  display: flex;
  gap: 8px;
  height: 110px;
  align-items: flex-end;
}

.zp-chart-grid-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-size: 8px;
  color: #94a3b8;
  text-align: right;
  padding-right: 4px;
  border-right: 1px dashed #e2e8f0;
}

.zp-chart-bars-wrap {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 16px;
  position: relative;
}

.zp-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  width: 18%;
  position: relative;
}

.zp-bar-fill {
  width: 100%;
  background: #e2e8f0;
  border-radius: 3px 3px 0 0;
  min-height: 2px;
}

.zp-bar-fill.active {
  background: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.zp-month-lbl {
  position: absolute;
  bottom: -16px;
  font-size: 8.5px;
  color: #64748b;
  white-space: nowrap;
}

/* Pending Approvals Table & Empty State */
.zp-approval-table-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  padding: 5px 8px;
  background: #f8fafc;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
}

.zp-empty-approval-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 6px;
}

.zp-empty-inbox-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-empty-inbox-icon svg {
  width: 18px;
  height: 18px;
}

.zp-empty-msg {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   DIGITAL SALARY PAYSLIP COMPONENT
   ========================================================================== */
.tab-graphic-card.zp-payslip-wrap {
  padding: 20px 22px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-family: inherit;
  color: #1e293b;
}

.zp-slip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.zp-slip-badge {
  font-size: 10px;
  font-weight: 800;
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.zp-slip-month-block {
  text-align: right;
}

.zp-slip-sub {
  font-size: 10.5px;
  color: #64748b;
  display: block;
}

.zp-slip-month {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

/* Summary Grid */
.zp-slip-summary-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.zp-slip-sec-title {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.zp-emp-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zp-emp-row {
  display: flex;
  font-size: 11px;
  line-height: 1.4;
}

.zp-emp-lbl {
  width: 105px;
  color: #64748b;
}

.zp-emp-val {
  color: #0f172a;
  font-weight: 700;
}

/* Green Highlight Box */
.zp-netpay-box {
  background: #ffffff;
  border: 1.5px solid #22c55e;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.zp-netpay-curr {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.zp-netpay-num {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.zp-netpay-tag {
  font-size: 11px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 8px;
}

.zp-netpay-divider {
  border-top: 1px dashed #cbd5e1;
  margin-bottom: 8px;
}

.zp-days-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #475569;
}

.zp-days-row strong {
  color: #0f172a;
}

/* Earnings & Deductions Tables */
.zp-slip-breakup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.zp-breakup-col {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.zp-breakup-head {
  display: flex;
  justify-content: space-between;
  background: #f8fafc;
  padding: 6px 10px;
  font-size: 9.5px;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #e2e8f0;
}

.zp-breakup-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 11px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.zp-breakup-row.zp-row-muted {
  color: #94a3b8;
}

.zp-breakup-total {
  display: flex;
  justify-content: space-between;
  background: #f8fafc;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
}

/* Total Net Payable Banner */
.zp-net-payable-banner {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.zp-banner-title {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  display: block;
}

.zp-banner-sub {
  font-size: 9.5px;
  color: #64748b;
}

.zp-banner-right {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.zp-amount-words {
  text-align: right;
  font-size: 10.5px;
  color: #64748b;
  margin-bottom: 12px;
}

.zp-amount-words strong {
  color: #0f172a;
}

.zp-slip-footer {
  text-align: center;
  font-size: 9.5px;
  color: #94a3b8;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   PRICING & ROI CALCULATOR
   ========================================================================== */
.pricing-calculator-section {
  padding: 90px 0;
  background: #edf3fd;
}

.calc-card-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-slider-wrap {
  margin: 28px 0;
}

.range-val-badge {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.price-output-box {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.price-output-box .price-label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-output-box .price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0;
  font-family: var(--font-heading);
}

.price-output-box .price-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

/* ==========================================================================
   TESTIMONIALS & STATS
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-white);
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-bottom: 70px;
  padding: 36px;
  background: #f2f7ff;
  border-radius: var(--radius-lg);
  border: 1px solid #d8e5fd;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-top: 4px;
}

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

.testimonial-card {
  background: var(--bg-page);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .quote {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h5 {
  font-size: 15px;
  font-weight: 700;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-page);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  transition: transform var(--transition-smooth);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   CTA STRIP & FOOTER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h3 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   ICON SYSTEM
   ========================================================================== */
.drop-icon svg {
  width: 17px;
  height: 17px;
}

.drop-icon.sm svg {
  width: 15px;
  height: 15px;
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

/* Icons sitting inline with a run of text */
.inline-ico {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  vertical-align: -0.16em;
  display: inline-block;
}

.auth-toast .inline-ico {
  vertical-align: 0;
}

/* Onboarding step markers */
.step-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: 0.02em;
  flex-shrink: 0;
}

.step-dot.done {
  background: var(--accent-green);
}

.step-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1160px) {
  .shot-side {
    display: none;
  }

  .dashboard-shot {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-menu,
  .nav-actions .country-select {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions {
    gap: 12px;
  }

  .bento-col-8,
  .bento-col-4,
  .bento-col-6 {
    grid-column: span 12;
  }

  .tab-content-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 900px) {
  .hero-shot-wrap {
    margin-top: 48px;
  }
}

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

  .section-header h3 {
    font-size: 30px;
  }

  .form-row-2,
  .social-auth-group,
  .calc-layout,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-section {
    padding-top: 52px;
  }

  .hero-center h1 {
    letter-spacing: -1px;
  }

  .hero-center p.lead {
    font-size: 16.5px;
  }

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

  .hero-points {
    gap: 8px 22px;
  }
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 22px;
  }

  .section-header h3 {
    font-size: 26px;
  }

  .stats-counter-strip {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

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