/* ==========================================================================
   EZATTEND™ - DESIGN SYSTEM & CORE STYLES (PREMIUM WHITE / LIGHT THEME)
   Clean, Minimalist, Classified SaaS Landing Architecture
   ========================================================================== */

:root {
  /* Brand Colors matching App */
  --color-brand-blue: #002B5C;
  --color-brand-green: #00AB55;
  --color-primary: #002B5C;
  --color-primary-dark: #001a38;
  --color-primary-light: #2563eb;
  --color-primary-subtle: #f0f5fa;

  --color-accent: #00AB55;
  --color-accent-dark: #008744;
  --color-accent-light: #34d399;
  --color-accent-subtle: #e8f7ee;

  --color-warning: #d97706;
  --color-danger: #dc2626;
  --color-purple: #7c3aed;

  /* White & Clean Neutral Canvas */
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-surface-card: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.95);

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-card: #cbd5e1;
  --border-focus: #002B5C;
  --border-glow: rgba(0, 43, 92, 0.15);

  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* Typography Scale & Font */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --header-height: 74px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px -4px rgba(15, 23, 42, 0.08);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

::selection {
  background-color: #002B5C;
  color: #ffffff;
}

::-moz-selection {
  background-color: #002B5C;
  color: #ffffff;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}


body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-body);
  color: var(--text-primary);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

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

/* Gradient Text matching brand */
.gradient-text {
  background: linear-gradient(135deg, #002B5C 0%, #00AB55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: #f0f5fa;
  border: 1px solid #c5d8ea;
  color: #002B5C;
  font-size: 0.8125rem;
  font-weight: 600;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.badge-pill-accent {
  background: #e8f7ee;
  border-color: #a3e4be;
  color: #008744;
}

.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #002B5C;
  margin-bottom: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #002B5C;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 43, 92, 0.25);
}

.btn-primary:hover {
  background: #001a38;
  box-shadow: 0 6px 18px rgba(0, 43, 92, 0.35);
  transform: translateY(-1px);
}

.btn-accent {
  background: #00AB55;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 171, 85, 0.25);
}

.btn-accent:hover {
  background: #008744;
  box-shadow: 0 6px 18px rgba(0, 171, 85, 0.35);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-topbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  padding: 7px 0;
  position: relative;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
}

.topbar-left a:hover {
  color: #002B5C;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-link {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.topbar-link:hover {
  color: #002B5C;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: var(--border-subtle);
}

.lang-switch-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  background: #f1f5f9;
  border-color: #002B5C;
  color: #002B5C;
}

/* Sticky Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-title .ez-part {
  color: #002B5C;
}

.brand-title .attend-part {
  color: #00AB55;
}

.brand-subtitle-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: #002B5C;
  letter-spacing: 0.04em;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #002B5C;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #002B5C;
  border-radius: 2px;
}

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

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-hero {
  padding: 70px 0 80px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin: 18px 0;
  line-height: 1.15;
  color: #0f172a;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-trust-item svg, .hero-trust-item i {
  color: #00AB55;
}

/* Hero Mockup (Crisp White Card) */
.hero-visual {
  position: relative;
}

/* Modern Clean SaaS Dashboard Mockup Card */
.mockup-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 20px 45px -10px rgba(0, 43, 92, 0.08), 0 0 1px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -10px rgba(0, 43, 92, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
}

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

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

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #f87171; }
.mockup-dot.yellow { background: #fbbf24; }
.mockup-dot.green { background: #34d399; }

.mockup-badge {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: #e8f7ee;
  color: #008744;
  border: 1px solid #a3e4be;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* 4-Phase Step Selector at the Top of the Card */
.mockup-tab-pills {
  display: flex;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 5px;
  gap: 5px;
  margin-bottom: 18px;
}

.mockup-tab-pill {
  flex: 1;
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  padding: 8px 6px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mockup-tab-pill:hover {
  color: #002B5C;
  background: rgba(255, 255, 255, 0.6);
}

.mockup-tab-pill.active {
  background: #002B5C;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 43, 92, 0.25);
}

.mockup-tab-pill.active i {
  color: #38bdf8;
}

/* Phase Contents */
.mockup-phase-pane {
  display: none;
  animation: fadeIn 0.25s ease;
}

.mockup-phase-pane.active {
  display: block;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.mockup-stat-label {
  font-size: 0.675rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mockup-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

.mockup-staff-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-staff-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  padding: 9px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mockup-staff-row:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mockup-staff-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #002B5C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mockup-avatar.green { background: #00AB55; }
.mockup-avatar.orange { background: #d97706; }
.mockup-avatar.purple { background: #7c3aed; }

.mockup-staff-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.mockup-staff-role {
  font-size: 0.725rem;
  color: #64748b;
}

.mockup-tag {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.mockup-tag.present {
  background: #e8f7ee;
  color: #008744;
  border: 1px solid #a3e4be;
}

.mockup-tag.halfday {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.mockup-tag.upad {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

/* Floating Elements around Hero */
.floating-card-gps {
  position: absolute;
  top: -18px;
  right: -15px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-card-salary {
  position: absolute;
  bottom: -20px;
  left: -15px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatSlow 4s ease-in-out infinite alternate 2s;
}

/* ==========================================================================
   FEATURE DEEP DIVE SECTIONS (ALTERNATING ROWS)
   ========================================================================== */
.section-features {
  padding: 50px 0 30px;
  background-color: #ffffff;
}

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

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 10px;
  color: #0f172a;
}

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

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 0;
  width: 100%;
}

.feature-row.reverse .feature-content {
  order: 2;
}

.feature-row.reverse .feature-card-visual {
  order: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #f0f5fa;
  border: 1px solid #c5d8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002B5C;
  font-size: 1.25rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon-badge.accent {
  background: #e8f7ee;
  border-color: #a3e4be;
  color: #008744;
}

.feature-icon-badge.purple {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: #7c3aed;
}

.feature-icon-badge.warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #d97706;
}

.feature-title {
  font-size: 1.65rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-primary);
  width: 100%;
}

.feature-bullet span:last-child {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  line-height: 1.45;
}

.feature-bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #008744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-card-visual {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

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

.visual-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.visual-status-pill {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.visual-status-pill.green {
  background: #e8f7ee;
  color: #008744;
  border: 1px solid #a3e4be;
}

.visual-status-pill.accent {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.visual-status-pill.blue {
  background: #f0f5fa;
  color: #002B5C;
  border: 1px solid #c5d8ea;
}

.visual-list-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-hajri-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  gap: 8px;
}

.visual-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.825rem;
}

.visual-item-info strong {
  color: #0f172a;
  font-size: 0.88rem;
}

.visual-item-info span {
  color: #64748b;
  font-size: 0.78rem;
}

.visual-status-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.visual-status-tag.present {
  background: #e8f7ee;
  color: #008744;
  border: 1px solid #c3e6cb;
}

.visual-status-tag.halfday {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

/* Upad Card Visual */
.visual-upad-box {
  background: #f0f5fa;
  border: 1px solid #c5d8ea;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.visual-upad-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  color: #002B5C;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.visual-upad-sub {
  font-size: 0.8rem;
  color: #64748b;
}

.visual-btn-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

/* Salary Breakdown Visual */
.visual-salary-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-salary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #475569;
}

.visual-salary-item.total {
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-top: 2px;
}

/* Khata Card Visual */
.visual-khata-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.visual-khata-box {
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
}

.visual-khata-box.in {
  background: #e8f7ee;
  border: 1px solid #a3e4be;
}

.visual-khata-box.out {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.visual-khata-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.visual-khata-box.in .visual-khata-lbl { color: #008744; }
.visual-khata-box.out .visual-khata-lbl { color: #b91c1c; }

.visual-khata-val {
  font-size: 1.05rem;
  font-weight: 800;
}

.visual-khata-box.in .visual-khata-val { color: #00AB55; }
.visual-khata-box.out .visual-khata-val { color: #dc2626; }

.visual-khata-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  font-size: 0.85rem;
  color: #64748b;
}



/* ==========================================================================
   2 DEDICATED APP LOGINS (OWNER & STAFF INTERACTIVE TABS)
   ========================================================================== */
.section-ecosystem {
  padding: 50px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.portal-toggle-container {
  display: flex;
  justify-content: center;
  margin: 20px 0 24px;
}

.portal-tabs-segmented {
  display: inline-flex;
  background: #e2e8f0;
  padding: 5px;
  border-radius: 12px;
  gap: 6px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.portal-tab-btn {
  border: none;
  background: transparent;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #64748b;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.portal-tab-btn:hover {
  color: #0f172a;
}

/* Owner Active State -> Navy Blue */
.portal-tab-btn.active-owner {
  background: #002B5C;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.28);
}

/* Staff Active State -> Vibrant Green */
.portal-tab-btn.active-staff {
  background: #00AB55;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 171, 85, 0.28);
}

.portal-dynamic-card {
  background: #ffffff;
  border: 2px solid #002B5C;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.08);
  max-width: 960px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.portal-dynamic-card.theme-staff {
  border-color: #00AB55;
  box-shadow: 0 10px 30px rgba(0, 171, 85, 0.12);
}

.portal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.portal-badge-pill.badge-owner {
  background: #f0f5fa;
  color: #002B5C;
  border: 1px solid #c5d8ea;
}

.portal-badge-pill.badge-staff {
  background: #e8f7ee;
  color: #008744;
  border: 1px solid #a3e4be;
}

.portal-headline {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.portal-description {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
}

.portal-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.portal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-fast);
}

.portal-feature-item:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #cbd5e1;
}

.portal-feature-item i {
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.portal-feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 3px;
}

.portal-feature-item p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .portal-features-grid {
    grid-template-columns: 1fr;
  }
  .portal-dynamic-card {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   PRICING & CALCULATOR
   ========================================================================== */
.section-pricing {
  padding: 50px 0;
  background: #ffffff;
}

.pricing-calculator-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.calc-header {
  text-align: center;
  margin-bottom: 24px;
}

.calc-title {
  font-size: 1.65rem;
  margin-bottom: 4px;
  color: #0f172a;
}

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

.calc-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.calc-staff-count {
  font-size: 1.85rem;
  font-weight: 800;
  color: #00AB55;
  background: #e8f7ee;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #c3e6cb;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 9999px;
  background: linear-gradient(to right, #00AB55 0%, #00AB55 10.25%, #e2e8f0 10.25%, #e2e8f0 100%);
  outline: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00AB55;
  border: 3.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 171, 85, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(0, 171, 85, 0.6);
}

.custom-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(0, 171, 85, 0.25);
}

.custom-slider::-moz-range-track {
  height: 10px;
  border-radius: 9999px;
  background: #e2e8f0;
}

.custom-slider::-moz-range-progress {
  height: 10px;
  border-radius: 9999px;
  background: #00AB55;
}

.custom-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00AB55;
  border: 3.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 171, 85, 0.45);
  cursor: pointer;
}


.price-main {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #002B5C;
  line-height: 1;
}

/* ==========================================================================
   FAQ & CONTACT LEAD DEMO
   ========================================================================== */
.section-faq {
  padding: 50px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.is-open {
  border-color: #002B5C;
  box-shadow: 0 4px 12px rgba(0, 43, 92, 0.08);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}

.faq-chevron {
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
  color: #94a3b8;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: #002B5C;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Demo Lead Form Card */
.demo-box-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-label .required-star {
  color: #ef4444;
  margin-left: 2px;
}

.form-input, .form-select {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: #002B5C;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 43, 92, 0.12);
}

/* Phone input container with integrated +91 tag */
.phone-field-wrapper {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.phone-field-wrapper:focus-within {
  border-color: #002B5C;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 43, 92, 0.12);
}

.phone-prefix-badge {
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #002B5C;
  background: #f1f5f9;
  border-right: 1px solid #cbd5e1;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.phone-field-wrapper .form-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 11px 14px;
}

/* App-Like Error State (Red border + Red error text only on validation failure) */
.form-input.input-has-error,
.phone-field-wrapper.input-has-error {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.field-error-text {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: #ef4444;
  margin-top: 5px;
  line-height: 1.3;
}

.field-error-text.show {
  display: flex;
  align-items: center;
  gap: 4px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}



/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 28px;
}

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

.footer-brand-p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 12px 0 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: #002B5C;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.made-in-india {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 320px);
  background: #ffffff;
  border-left: 1px solid var(--border-subtle);
  z-index: 100;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0f172a;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: #e2e8f0;
  color: #dc2626;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  transition: all var(--transition-fast);
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: #002B5C;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #f0f5fa;
  color: #002B5C;
}

.drawer-cta-block {
  margin-top: 16px;
  margin-bottom: 16px;
}

.drawer-footer-support {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.drawer-support-btn.whatsapp {
  background: #e8f7ee;
  border-color: #a3e4be;
  color: #008744;
}

.drawer-support-btn:hover {
  transform: translateY(-1px);
}


/* ==========================================================================
   RESPONSIVE QUERIES (COMPREHENSIVE MOBILE OPTIMIZATIONS)
   ========================================================================== */

/* Tablets and small laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .feature-row.reverse .feature-content {
    order: 1;
  }
  .feature-row.reverse .feature-card-visual {
    order: 2;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Medium Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  /* Topbar clean single row */
  .topbar-hours,
  .topbar-hours-divider {
    display: none !important;
  }
  .topbar-inner {
    font-size: 0.76rem;
  }
  .topbar-left, .topbar-right {
    gap: 10px;
  }

  /* Navigation */
  .nav-menu, .header-actions .btn {
    display: none;
  }
  .menu-toggle-btn {
    display: block;
  }
  .floating-card-gps, .floating-card-salary {
    display: none;
  }

  /* Section Spacings */
  .section-hero {
    padding: 40px 0 50px;
  }
  .section-features, .section-ecosystem, .section-pricing, .section-faq {
    padding: 50px 0;
  }
  .hero-title {
    font-size: clamp(1.85rem, 5.5vw, 2.5rem);
    margin: 14px 0;
  }
  .feature-title {
    font-size: 1.4rem;
  }
  .feature-card-visual {
    padding: 16px 14px;
  }
}

/* Small Tablets & Standard Mobile (<= 640px) */
@media (max-width: 640px) {
  .hero-cta-group {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .feature-row {
    margin-bottom: 40px;
  }

  /* Portals Segmented Tabs */
  .portal-tabs-segmented {
    width: 100%;
    display: flex;
  }
  .portal-tab-btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
  }
  .portal-dynamic-card {
    padding: 20px 14px;
  }
  .portal-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Pricing Calculator */
  .pricing-calculator-card {
    padding: 20px 14px;
  }
  .calc-slider-top {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .calc-result-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
  }
  .calc-result-box .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* Compact Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Topbar on small phones */
  .site-topbar {
    padding: 5px 0;
  }
  .topbar-call-text strong {
    display: none;
  }
  .topbar-wa-text {
    display: none;
  }
  .topbar-link {
    font-size: 0.74rem;
  }

  /* Hero */
  .badge-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
    line-height: 1.35;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  /* Feature Cards Visual */
  .feature-card-visual {
    padding: 14px 10px;
  }
  .visual-hajri-item {
    padding: 8px 10px;
  }
  .visual-item-info strong {
    font-size: 0.82rem;
  }
  .visual-status-tag {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  .visual-upad-top {
    font-size: 0.85rem;
  }
  .visual-upad-box {
    padding: 10px 12px;
  }

  /* Demo Lead Card */
  .demo-box-card {
    padding: 18px 12px;
  }
}

/* Ultra Small Mobile Screens (<= 340px) like 310px DevTools */
@media (max-width: 340px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .brand-title {
    font-size: 1.1rem;
  }
  .brand-subtitle-tag {
    font-size: 0.5rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .portal-tab-btn {
    font-size: 0.78rem;
    padding: 8px 4px;
    gap: 4px;
  }
  .price-main {
    font-size: 1.85rem;
  }
  .feature-card-visual {
    padding: 10px 8px;
  }
  .visual-header-title {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   APP DOWNLOAD BADGES (GOOGLE PLAY & APPLE APP STORE)
   ========================================================================== */
.hero-app-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #1e293b;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}

.btn-app-badge:hover {
  background: #002B5C;
  border-color: #003e85;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 43, 92, 0.25);
}

.btn-app-badge .badge-icon {
  font-size: 1.65rem;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-app-badge.google-play .badge-icon {
  color: #00AB55;
}

.btn-app-badge.apple-store .badge-icon {
  color: #ffffff;
}

.btn-app-badge:hover .badge-icon {
  transform: scale(1.08);
}

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

.badge-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.badge-main {
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Footer & Drawer Compact Variant */
.btn-app-badge.compact {
  padding: 6px 14px;
  border-radius: 8px;
  gap: 8px;
}

.btn-app-badge.compact .badge-icon {
  font-size: 1.35rem;
}

.btn-app-badge.compact .badge-main {
  font-size: 0.88rem;
}

.btn-app-badge.compact .badge-sub {
  font-size: 0.55rem;
}

/* Backwards compatibility for existing class */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #1e293b;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}
.btn-playstore:hover {
  background: #002B5C;
  border-color: #003e85;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-playstore .playstore-icon {
  font-size: 1.65rem;
  color: #00AB55;
}
.playstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}
.playstore-small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.playstore-bold {
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
}

/* ==========================================================================
   CUSTOMER REVIEWS & SOCIAL PROOF SECTION
   ========================================================================== */
.section-reviews {
  padding: 50px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.industry-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 24px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.industry-chip:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  background: #f1f5f9;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

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

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.review-verified-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #008744;
  background: #e8f7ee;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #002B5C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-avatar.accent {
  background: #00AB55;
}

.review-avatar.purple {
  background: #7c3aed;
}

.review-author-info strong {
  display: block;
  font-size: 0.925rem;
  color: #0f172a;
  line-height: 1.2;
}

.review-author-info span {
  display: block;
  font-size: 0.775rem;
  color: #64748b;
  margin-top: 2px;
}

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

@media (max-width: 768px) {
  .section-reviews {
    padding: 50px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review-card {
    padding: 18px;
  }
  .industry-chips-row {
    margin: 20px 0 28px;
    gap: 6px;
  }
  .industry-chip {
    font-size: 0.78rem;
    padding: 5px 10px;
  }
  .btn-playstore {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SMOOTH SCROLL MARGIN ALIGNMENT
   ========================================================================== */
section, [id] {
  scroll-margin-top: 85px;
}




