/* ============================================================
   TaxEye — Custom Stylesheet
   Brand: TaxEye Tax Professionals
   Stack: Bootstrap 5.3.3 + Font Awesome 6.5 + Swiper 11 + AOS
   ============================================================ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Primary Colors */
  --primary-blue: #4F46E5;
  --primary-dark: #0F172A;
  --primary-hover: #4338CA;

  /* Accent Colors */
  --accent-green: #0D9488;
  --accent-purple: #8B5CF6;
  --accent-orange: #D97706;
  --accent-red: #DC2626;

  /* Neutrals */
  --bg-light: #EEF2FF;
  --bg-white: #FFFFFF;
  --bg-section: #F8FAFC;
  --border-light: #E2E8F0;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-white: #FFFFFF;

  /* Module Color-Coded Borders */
  --module-notice: #4F46E5;
  --module-client360: #0D9488;
  --module-practice: #D97706;
  --module-ai: #8B5CF6;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Borders */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-hover: 0 10px 25px rgba(79,70,229,0.15);
  --shadow-navbar: 0 2px 10px rgba(0,0,0,0.08);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* ── 2. GLOBAL BASE ─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

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

.section-heading {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-primary);
  line-height: 1.2;
}
.section-heading span {
  color: #4F46E5;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ── 3. NAVBAR ──────────────────────────────────────────────── */
.navbar-taxeye {
  background-color: #fff !important;
  box-shadow: none;
  padding: 0.85rem 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  z-index: 1050;
}

.navbar-taxeye.scrolled {
  box-shadow: var(--shadow-navbar);
  padding: 0.5rem 0;
}

.navbar-brand-taxeye {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand-taxeye .brand-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.navbar-brand-taxeye .brand-tagline {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-taxeye .nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--border-radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-taxeye .nav-link:hover,
.navbar-taxeye .nav-link.active {
  color: var(--primary-blue) !important;
  background: var(--bg-light);
}

.navbar-taxeye .nav-link.active {
  color: var(--primary-blue) !important;
}

/* Mega Menu */
.mega-dropdown {
  position: static !important;
}

.mega-menu {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  border-top: 3px solid var(--primary-blue);
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg) !important;
  padding: 1.5rem 1rem !important;
  margin-top: 0 !important;
  animation: menuFadeIn 0.2s ease;
}

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

.mega-column {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.mega-column .mega-col-title {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.mega-link {
  display: block;
  padding: 0.5rem 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: background 0.15s ease;
  color: var(--text-primary);
}

.mega-link:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
  padding-left: 0.5rem;
}

.mega-link strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mega-link span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1px;
}

.mega-link:hover strong {
  color: var(--primary-blue);
}

/* Solutions dropdown */
.navbar-taxeye .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: var(--border-radius-md);
  padding: 0.5rem;
  min-width: 220px;
  animation: menuFadeIn 0.2s ease;
}

.navbar-taxeye .dropdown-item {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.navbar-taxeye .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Offcanvas nav mobile */
.offcanvas-taxeye .nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border: none;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.2px;
  transition: all 0.22s ease;
  box-shadow: 0 2px 10px rgba(79,70,229,0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background: linear-gradient(135deg, #4338CA 0%, #6d28d9 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(79,70,229,0.36);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: #4F46E5;
  border: 1.5px solid #4F46E5;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.22s ease;
  background: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
  transform: translateY(-1px);
}

.btn-outline-white {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.2s ease;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-demo {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.btn-demo:hover {
  background-color: #B91C1C;
  border-color: #B91C1C;
  color: #fff;
  box-shadow: 0 4px 15px rgba(220,38,38,0.35);
  transform: translateY(-1px);
}

/* ── Utility: extra padding tier ─────────────────────────────── */
.py-6  { padding-top: 5rem !important; padding-bottom: 5rem !important; }
@media (min-width: 992px) {
  .py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}

/* ── ANNOUNCEMENT BAR — rotating 3-message ──────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #020617 0%, #1E1B4B 50%, #020617 100%);
  color: #cbd5e1;
  text-align: center;
  padding: 0.52rem 2.5rem;
  font-size: 0.78rem;
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1060;
  overflow: hidden;
  min-height: 2rem;
}
/* Rotating message track */
.ab-track {
  position: relative;
  height: 1.35em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-slide {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ab-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.announcement-bar a {
  color: #A5B4FC;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(147,197,253,0.45);
  transition: color 0.2s ease;
}
.announcement-bar a:hover { color: #fff; border-color: #fff; }
.badge-new {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.12rem 0.45rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.badge-hot {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #EA580C);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.12rem 0.45rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-right: 0.4rem;
  vertical-align: middle;
}
/* Close button */
.announcement-close {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.78rem;
  padding: 0.2rem;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 2;
}
.announcement-close:hover { color: #fff; }
/* Responsive */
@media (max-width: 991px) {
  .announcement-bar { font-size: 0.73rem; padding: 0.5rem 2.2rem 0.5rem 0.75rem; }
}
@media (max-width: 767px) {
  .announcement-bar { font-size: 0.68rem; padding: 0.48rem 2rem 0.48rem 0.5rem; }
  .ab-slide { white-space: normal; }
}
@media (max-width: 479px) {
  .announcement-bar { font-size: 0.65rem; }
  .announcement-bar a { display: none; }
}

/* ── SIGN UP BUTTON ─────────────────────────────────────────── */
.btn-signup {
  background: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
  border: none;
  color: #fff !important;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(13,148,136,0.25);
}
.btn-signup:hover {
  background: linear-gradient(135deg, #115E59 0%, #0F766E 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(13,148,136,0.4);
  transform: translateY(-1px);
}

/* ── 5. HERO SECTION ────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(145deg, #eef2ff 0%, #EEF2FF 45%, #F5F3FF 100%);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79,70,229,0.08);
  color: var(--primary-blue);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(79,70,229,0.2);
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.13;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero-title span.highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 540px;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}
.btn-watch-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0.6rem 0.25rem;
  transition: color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-watch-demo:hover { color: var(--primary-blue); }
.btn-watch-demo .play-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--primary-blue);
  flex-shrink: 0;
  transition: box-shadow 0.2s ease;
}
.btn-watch-demo:hover .play-icon { box-shadow: 0 4px 16px rgba(79,70,229,0.22); color: var(--primary-blue); }

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
}
.proof-item strong { color: var(--text-primary); font-weight: 700; }
.proof-divider { width: 1px; height: 16px; background: var(--border-light); }
.hero-stars { color: #D97706; font-size: 0.7rem; letter-spacing: 1px; }

/* Module pills */
.hero-module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}
.module-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  text-decoration: none;
}
.module-pill:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(79,70,229,0.12);
}
.module-pill i { font-size: 0.58rem; }

/* Hero Browser Mockup */
.hero-ui-panel { position: relative; padding: 0.5rem; }
.hero-ui-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(79,70,229,0.13), 0 4px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid rgba(79,70,229,0.09);
}
.browser-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.browser-dot.red { background: #DC2626; }
.browser-dot.yellow { background: #D97706; }
.browser-dot.green { background: #0D9488; }
.browser-url {
  background: #e2e8f0;
  border-radius: 6px;
  padding: 0.18rem 0.7rem;
  font-size: 0.67rem;
  color: #475569;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  flex: 1;
  max-width: 210px;
}
.browser-content {
  padding: 1rem;
  background: #f8fafc;
}
.mockup-section-header {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-count-badge {
  background: var(--primary-blue);
  color: #fff;
  font-size: 0.58rem;
  padding: 0.08rem 0.4rem;
  border-radius: 50px;
  font-weight: 700;
}
.mockup-notice-card {
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid;
  padding: 0.5rem 0.65rem;
  margin-bottom: 0.4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.mockup-notice-card.blue { border-color: var(--primary-blue); }
.mockup-notice-card.green { border-color: var(--accent-green); }
.mockup-notice-card.orange { border-color: var(--accent-orange); }
.mockup-notice-card.purple { border-color: var(--accent-purple); }
.mockup-notice-title {
  font-family: var(--font-primary);
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.08rem;
}
.mockup-notice-meta { font-size: 0.61rem; color: var(--text-secondary); }
.mockup-mbadge {
  display: inline-block;
  font-size: 0.57rem;
  font-weight: 700;
  padding: 0.1rem 0.38rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mockup-mbadge.pending { background: #FEF3C7; color: #92400E; }
.mockup-mbadge.due-soon { background: #FEE2E2; color: #991B1B; }
.mockup-mbadge.replied { background: #CCFBF1; color: #115E59; }
.mockup-mbadge.in-prog { background: #EDE9FE; color: #5B21B6; }
.mockup-stats-row { display: flex; gap: 0.4rem; margin-top: 0.75rem; }
.mockup-stat {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.35rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.mockup-stat-num {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.12rem;
}
.mockup-stat-lbl { font-size: 0.57rem; color: var(--text-secondary); font-weight: 500; }

/* Floating badges on mockup */
.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-primary);
  font-size: 0.71rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
  border: 1px solid rgba(79,70,229,0.08);
  animation: floatUp 3s ease-in-out infinite;
}
.hero-float-badge.badge-bl { left: -20px; bottom: 36px; animation-delay: 0s; }
.hero-float-badge.badge-tr { right: 6px; top: 12px; animation-delay: 1.5s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
.float-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.float-icon.blue { background: #eef2ff; color: var(--primary-blue); }
.float-icon.green { background: #F0FDFA; color: var(--accent-green); }
.float-icon.purple { background: #F5F3FF; color: var(--accent-purple); }
.float-icon.orange { background: #FFFBEB; color: var(--accent-orange); }

/* Integrations strip */
.hero-integrations {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.int-label {
  font-size: 0.7rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.int-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Responsive hero */
@media (max-width: 991.98px) {
  .hero-float-badge { display: none; }
  .hero-section { padding: 4rem 0 3.5rem; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-subtext { font-size: 0.95rem; }

}

/* ── 6. TRUST BAR / STATS STRIP ─────────────────────────────── */
.trust-bar {
  background: var(--bg-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.trust-tagline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.5rem;
}

.trust-bullets span {
  font-size: 0.83rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bullets span::before {
  content: '•';
  color: var(--primary-blue);
  font-size: 1rem;
}

.exp-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
}

.exp-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.exp-card .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.exp-card .stat-number {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.exp-card .stat-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.exp-card .stat-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ── 7. FEATURE CARDS ───────────────────────────────────────── */
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.feature-card .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.feature-card h5 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.feature-card .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.feature-card .feature-bullets li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card .feature-bullets li::before {
  content: '•';
  color: var(--primary-blue);
  font-weight: bold;
}

/* ── 8. WORKFLOW STEPS ──────────────────────────────────────── */
.workflow-section {
  background: #ffffff;
}

.workflow-step {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.workflow-step .step-number {
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.workflow-step h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.workflow-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Arrow connectors between steps */
.workflow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
  opacity: 0.4;
}

/* ── 8b. HOW IT WORKS — REDESIGNED (index.html) ─────────────── */
.hiw-section {
  background: #eef2ff;
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hiw-section::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hiw-steps-row {
  position: relative;
}
.hiw-connector-line {
  position: absolute;
  top: 3.2rem;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7c3aed, #0D9488, #4F46E5);
  opacity: 0.18;
  border-radius: 2px;
  pointer-events: none;
}
.hiw-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(79,70,229,0.10);
  box-shadow: 0 4px 20px rgba(79,70,229,0.07), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.hiw-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(79,70,229,0.14), 0 4px 12px rgba(0,0,0,0.05);
}
.hiw-step-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.hiw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(79,70,229,0.38);
}
.hiw-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef2ff;
  border: 1px solid rgba(79,70,229,0.14);
  color: #4F46E5;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  margin-bottom: 0.55rem;
}
.hiw-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.hiw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hiw-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #4F46E5;
  background: #eef2ff;
  border: 1px solid rgba(79,70,229,0.18);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
  letter-spacing: 0.02em;
}

/* ── 9. SCREENSHOT PLACEHOLDERS ─────────────────────────────── */
.screenshot-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.screenshot-placeholder {
  background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.screenshot-placeholder::after {
  content: '● ● ●';
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 0.6rem;
  color: #CBD5E1;
  letter-spacing: 2px;
}

.screenshot-placeholder i {
  font-size: 2.5rem;
  color: #94A3B8;
  margin-top: 1.5rem;
}

.screenshot-caption {
  padding: 0.85rem 1.25rem;
}

.screenshot-caption h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.screenshot-caption p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ── 9b. PLATFORM SECTION — 3-TAB SOLUTION DESIGN ───────────── */
/* Tab switcher pill bar */
.platform-tab-nav {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 4px;
  gap: 3px;
}
.platform-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.4rem;
  border-radius: 11px;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.platform-tab-btn:hover {
  background: rgba(255,255,255,0.7);
  color: #334155;
}
.platform-tab-btn.active {
  background: #fff;
  color: #4F46E5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.06);
}
/* Panel fade-in animation */
.platform-tab-panel { animation: plfadeIn 0.28s ease; }
@keyframes plfadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Dashboard card wrapper */
.platform-dash-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 40px rgba(79,70,229,0.09), 0 2px 8px rgba(0,0,0,0.05);
}
/* macOS browser chrome */
.platform-dash-chrome {
  background: #0F172A;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pdc-dots { display: flex; gap: 6px; }
.pdc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pdc-dot-r { background: #ff5f57; }
.pdc-dot-y { background: #ffbd2e; }
.pdc-dot-g { background: #28c840; }
.pdc-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  padding: 0.2rem 0.65rem;
  font-family: var(--font-body);
}
.pdc-label {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.32);
  font-family: var(--font-primary);
  font-weight: 600;
  white-space: nowrap;
}
/* Screenshot image area — ready for real img */
.platform-dash-img {
  position: relative;
  min-height: 400px;
  background: linear-gradient(145deg, #eef2ff 0%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.platform-dash-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.pdi-placeholder {
  text-align: center;
  padding: 3rem 2rem;
}
.pdi-icon {
  font-size: 4.5rem;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.35;
}
.pdi-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}
.pdi-sub {
  font-size: 0.78rem;
  color: #b0bec5;
  line-height: 1.65;
}
/* Feature highlights grid */
.platform-dash-features {
  padding: 1.75rem 2rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2.5rem;
}
.platform-dash-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.pdf-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.pdf-icon-blue   { background: #eef2ff; border: 1px solid rgba(79,70,229,0.13); color: #4F46E5; }
.pdf-icon-purple { background: #f5f3ff; border: 1px solid rgba(109,40,217,0.13); color: #7c3aed; }
.pdf-icon-orange { background: #FFFBEB; border: 1px solid rgba(217,119,6,0.13); color: #B45309; }
.pdf-text strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.83rem;
  color: #0F172A;
  margin-bottom: 0.18rem;
}
.pdf-text span {
  font-size: 0.74rem;
  color: #475569;
  line-height: 1.55;
}
/* CTA row inside card */
.platform-dash-cta {
  padding: 0 2rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .platform-dash-img  { min-height: 260px; }
  .platform-dash-features { grid-template-columns: 1fr; padding: 1.25rem; gap: 1rem; }
  .platform-dash-cta  { padding: 0 1.25rem 1.25rem; }
  .platform-tab-btn   { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
}

/* Swiper screenshots */
.swiper-screenshots {
  padding-bottom: 2.5rem !important;
}

.swiper-screenshots .swiper-pagination-bullet-active {
  background: var(--primary-blue) !important;
}

/* ── 10. FOOTER TRUST BAR ───────────────────────────────────── */
.footer-trust-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-trust-bar .trust-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-trust-bar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── 11. PRE-FOOTER CTA STRIPS ──────────────────────────────── */
.cta-strip-light {
  background: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.cta-strip-light h2 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-strip-light p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.cta-strip-dark {
  background: var(--primary-dark);
  padding: 4rem 0;
  text-align: center;
}

.cta-strip-dark h2 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-strip-dark p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.cta-strip-dark .trust-tags {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

/* ── SECURITY CTA SECTION (index.html pre-footer) ── */
.cta-security-section {
  background: linear-gradient(145deg, #020617 0%, #0F172A 55%, #1E1B4B 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-security-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.cta-security-section > .container-fluid { position: relative; z-index: 2; }
.cta-sec-glow-left {
  position: absolute;
  top: -120px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79,70,229,0.16) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-sec-glow-right {
  position: absolute;
  bottom: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(109,40,217,0.13) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Title */
.cta-sec-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1.22;
  margin-bottom: 1rem;
}
.cta-sec-title span {
  background: linear-gradient(135deg, #818CF8 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext */
.cta-sec-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* Trust pills row */
.cta-sec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cta-sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-primary);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-sec-pill i {
  color: #818CF8;
  font-size: 0.7rem;
}
.cta-sec-pill:hover {
  background: rgba(79,70,229,0.14);
  border-color: rgba(79,70,229,0.35);
}

/* Note */
.cta-sec-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-primary);
  margin-bottom: 0;
}

/* Security feature card (right column) */
.cta-sec-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.cta-sec-card-header {
  padding: 1rem 1.25rem;
  background: rgba(79,70,229,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
}
.cta-sec-features {
  padding: 0.35rem 0;
}
.cta-sec-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.cta-sec-feature:last-child { border-bottom: none; }
.cta-sec-feature:hover { background: rgba(255,255,255,0.03); }
.cta-sec-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.cta-sec-feat-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
}
.cta-sec-feat-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.18rem;
  font-family: var(--font-primary);
}
.cta-sec-card-footer {
  padding: 0.8rem 1.25rem;
  background: rgba(5,150,105,0.08);
  border-top: 1px solid rgba(5,150,105,0.15);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(52,211,153,0.9);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── 12. FOOTER ─────────────────────────────────────────────── */
/* Light Footer */
.footer-light {
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 1.5rem;
}

.footer-light .footer-brand .brand-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-blue);
}

.footer-light .footer-brand .brand-tagline {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-light .footer-brand p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin: 0.75rem 0;
  line-height: 1.7;
}

.footer-light .footer-disclaimer {
  font-size: 0.72rem;
  color: #94A3B8;
  line-height: 1.6;
  background: var(--bg-white);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  margin-top: 0.75rem;
}

.footer-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-light .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-light .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-light .footer-links li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-light .footer-links li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-bottom a {
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--primary-blue);
}

/* ── DARK FOOTER (MODERN) ──────────────────────────────────── */
.footer-dark {
  background: #1E1B4B;
  color: rgba(255,255,255,0.68);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Grid overlay */
.footer-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Top-right ambient glow */
.footer-dark::after {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(79,70,229,0.13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer-dark > .container-fluid { position: relative; z-index: 2; }

/* Rainbow top accent line */
.footer-accent-top {
  height: 3px;
  background: linear-gradient(90deg, #4F46E5 0%, #7c3aed 35%, #0D9488 65%, #EA580C 100%);
  position: relative;
  z-index: 3;
}

/* Brand */
.footer-dark .footer-brand .brand-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1;
}
.footer-dark .footer-brand .brand-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 0.15rem;
}
.footer-dark .footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.68);
  margin: 0.85rem 0 0;
  line-height: 1.8;
}
.footer-dark .footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.85rem;
}

/* Headings */
.footer-dark .footer-heading {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-dark .footer-heading::before {
  content: '';
  width: 3px;
  height: 13px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4F46E5 0%, #7c3aed 100%);
  flex-shrink: 0;
}

/* Links */
.footer-dark .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-dark .footer-links li { margin-bottom: 0.6rem; }
.footer-dark .footer-links li a {
  font-size: 0.84rem;
  font-family: var(--font-primary);
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.footer-dark .footer-links li a::before {
  content: '›';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #818CF8;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  line-height: 1;
  transition: opacity 0.22s ease, left 0.22s ease;
}
.footer-dark .footer-links li a:hover {
  color: #A5B4FC;
  padding-left: 14px;
}
.footer-dark .footer-links li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Social icons */
.footer-social {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: all 0.22s ease;
  text-decoration: none;
}
.footer-social:hover {
  background: rgba(79,70,229,0.25);
  border-color: rgba(79,70,229,0.55);
  color: #A5B4FC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.25);
}

/* WhatsApp link */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  padding: 0.45rem 1rem;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.22);
  border-radius: 50px;
  transition: all 0.22s ease;
  margin-top: 0.75rem;
}
.footer-whatsapp:hover {
  color: #4ade80;
  background: rgba(74,222,128,0.18);
  border-color: rgba(74,222,128,0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74,222,128,0.18);
}

/* Trust bar (inside dark footer only) */
.footer-dark .footer-trust-bar {
  background: transparent;
  text-align: inherit;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 3rem 0 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-primary);
  white-space: nowrap;
}
.trust-item i {
  color: #818CF8;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* CTA box inside footer */
.footer-cta-box {
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 14px;
  padding: 1.1rem;
}
.footer-cta-box p {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(147,197,253,0.88);
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Footer bottom */
.footer-dark .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
}
.footer-dark .footer-bottom a {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-dark .footer-bottom a:hover { color: #A5B4FC; }

/* App store badges */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.app-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.app-badge i {
  font-size: 1.3rem;
}

/* ── 13. BACK-TO-TOP BUTTON ─────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(79,70,229,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

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

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

/* ── 14. BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb-taxeye {
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.breadcrumb-taxeye .breadcrumb-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
}

.breadcrumb-taxeye .breadcrumb-item a {
  color: var(--text-secondary);
}

.breadcrumb-taxeye .breadcrumb-item a:hover {
  color: var(--primary-blue);
}

.breadcrumb-taxeye .breadcrumb-item.active {
  color: var(--primary-blue);
  font-weight: 600;
}

/* ── 15. PRODUCT HERO ───────────────────────────────────────── */
.product-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #EEF2FF 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border-light);
}

/* ── 15b. PAGE BANNER — dark hero (auth-left aesthetic) ─────── */
.page-banner {
  background: #1E1B4B;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
}
/* Grid overlay */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
/* Blue radial glow — top-left (constant) */
.page-banner::after {
  content: '';
  position: absolute;
  top: -140px; left: -140px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(79,70,229,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Accent glow — bottom-right (HTML div, color per page) */
.banner-glow {
  position: absolute;
  bottom: -130px; right: -130px;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Content above glows */
.page-banner > .container-fluid { position: relative; z-index: 2; }

/* Accent glow by modifier */
.page-banner-blue   .banner-glow { background: radial-gradient(circle, rgba(79,70,229,0.22) 0%, transparent 65%); }
.page-banner-green  .banner-glow { background: radial-gradient(circle, rgba(13,148,136,0.25) 0%, transparent 65%); }
.page-banner-orange .banner-glow { background: radial-gradient(circle, rgba(217,119,6,0.22) 0%, transparent 65%); }
.page-banner-purple .banner-glow { background: radial-gradient(circle, rgba(139,92,246,0.28) 0%, transparent 65%); }

/* Headline gradient by modifier */
.page-banner-blue   .hero-title span.highlight { background: linear-gradient(135deg,#818CF8 0%,#a78bfa 100%); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.page-banner-green  .hero-title span.highlight { background: linear-gradient(135deg,#2DD4BF 0%,#818CF8 100%); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.page-banner-orange .hero-title span.highlight { background: linear-gradient(135deg,#D97706 0%,#fbbf24 100%); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.page-banner-purple .hero-title span.highlight { background: linear-gradient(135deg,#a78bfa 0%,#f472b6 100%); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

/* Text overrides */
.page-banner .hero-title { color: #fff; }
.page-banner .section-heading { color: #fff; }
.page-banner .hero-subtext,
.page-banner .hero-sub,
.page-banner .section-subheading { color: rgba(255,255,255,0.72); }
.page-banner .hero-trust-bullets { color: rgba(255,255,255,0.8); }
.page-banner .hero-trust-bullets i { color: #2DD4BF; }

/* Breadcrumb on dark */
.page-banner .breadcrumb-taxeye .breadcrumb-item a { color: rgba(255,255,255,0.5); }
.page-banner .breadcrumb-taxeye .breadcrumb-item.active { color: rgba(255,255,255,0.85); font-weight:600; }
.page-banner .breadcrumb-taxeye .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* Badge on dark */
.page-banner .section-badge,
.page-banner .hero-badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.15);
}

/* CTA buttons on dark */
.page-banner .btn-outline-primary {
  color: #fff !important;
  border-color: rgba(255,255,255,0.35) !important;
  background: transparent !important;
}
.page-banner .btn-outline-primary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Social proof on dark */
.page-banner .hero-social-proof { border-top-color: rgba(255,255,255,0.1); }
.page-banner .proof-divider { background: rgba(255,255,255,0.15); }
.page-banner .proof-item { color: rgba(255,255,255,0.6); }
.page-banner .proof-item strong { color: #fff; }

/* Module pills on dark */
.page-banner .module-pill {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  box-shadow: none;
}
.page-banner .module-pill:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Pricing toggle on dark */
.page-banner .form-check-input { background-color: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.page-banner .form-check-input:checked { background-color: var(--accent-green); border-color: var(--accent-green); }
.page-banner .text-secondary { color: rgba(255,255,255,0.55) !important; }
.page-banner .fw-600 { color: rgba(255,255,255,0.85) !important; }

/* ── BANNER VISUAL (right-column UI mockup card) ─────────────── */
.banner-visual {
  background: #1E1B4B;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.banner-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.banner-visual-header {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.02);
}
.bv-dot { width: 9px; height: 9px; border-radius: 50%; }
.bv-dot.red    { background: #DC2626; }
.bv-dot.yellow { background: #D97706; }
.bv-dot.green  { background: #0D9488; }
.bv-title { font-family: var(--font-primary); font-size: .73rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-left: .4rem; }
.banner-visual-body { padding: 1rem; position: relative; z-index: 2; flex: 1; }

/* Notice / data rows inside visual */
.bv-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.45rem;
  transition: background 0.2s;
}
.bv-row:hover { background: rgba(255,255,255,0.07); }
.bv-dot-sm { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.bv-dot-sm.blue   { background: #3b82f6; }
.bv-dot-sm.amber  { background: #D97706; }
.bv-dot-sm.red    { background: #DC2626; }
.bv-dot-sm.green  { background: #0D9488; }
.bv-dot-sm.purple { background: #8b5cf6; }
.bv-dot-sm.orange { background: #EA580C; }
.bv-row-text { flex: 1; min-width: 0; }
.bv-row-text strong { display: block; font-size: .73rem; font-family: var(--font-primary); font-weight: 700; color: #fff; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bv-row-text span  { font-size: .63rem; color: rgba(255,255,255,0.4); }
.bv-badge {
  font-size: .6rem; font-weight: 700; font-family: var(--font-primary);
  padding: .15rem .48rem; border-radius: 50px; flex-shrink: 0;
  white-space: nowrap;
}
.bv-badge.done     { background: rgba(13,148,136,0.15);  color: #2DD4BF; }
.bv-badge.progress { background: rgba(245,158,11,0.15);  color: #fbbf24; }
.bv-badge.urgent   { background: rgba(220,38,38,0.15);   color: #f87171; }
.bv-badge.draft    { background: rgba(139,92,246,0.15);  color: #c4b5fd; }
.bv-badge.pending  { background: rgba(148,163,184,0.12); color: #94a3b8; }

/* Stats bar at bottom of visual */
.bv-stats {
  display: flex;
  gap: .45rem;
  margin-top: .75rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bv-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: .45rem .5rem;
  text-align: center;
}
.bv-stat-num { font-family: var(--font-primary); font-size: .92rem; font-weight: 800; color: #fff; line-height: 1; }
.bv-stat-lbl { font-size: .57rem; color: rgba(255,255,255,0.4); font-weight: 600; font-family: var(--font-primary); margin-top: .18rem; display: block; white-space: nowrap; }

/* Responsive */
@media (max-width: 991px) {
  .page-banner { padding: 3.5rem 0 3rem; }
  .banner-visual { min-height: 220px; margin-top: 2rem; }
}
@media (max-width: 767px) {
  .page-banner { padding: 3rem 0 2.5rem; }
  .page-banner::after { width: 320px; height: 320px; }
  .banner-glow { width: 280px; height: 280px; }
}

/* ── 16. SECTION BADGES ─────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79,70,229,0.08);
  color: var(--primary-blue);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(79,70,229,0.15);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── 17. PAIN POINTS / PROBLEM CARDS ────────────────────────── */
.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
}

.problem-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.problem-card .problem-icon {
  width: 52px;
  height: 52px;
  background: #FEF2F2;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.problem-card h5 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── 18. PRICING CARDS — Redesigned ────────────────────────── */
.pricing-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  padding: 2rem 1.85rem 1.85rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 22px rgba(79,70,229,0.07);
  /* overflow: hidden; */
}

/* Gradient top accent bar */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4F46E5 0%, #7c3aed 100%);
  border-radius: 22px 22px 0 0;
}

/* Subtle corner watermark glow */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(79,70,229,0.14);
  border-color: #c7d7fd;
}

/* ── Featured / Popular card ── */
.pricing-card.featured {
  background: linear-gradient(145deg, #0f172a 0%, #312E81 50%, #4c1d95 100%);
  border: none;
  box-shadow: 0 16px 55px rgba(79,70,229,0.38);
  color: #fff;
}

.pricing-card.featured::before { display: none; }

.pricing-card.featured::after {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(109,40,217,0.22) 0%, transparent 70%);
  bottom: -70px; right: -70px;
}

.pricing-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 72px rgba(79,70,229,0.48);
  border: none;
}

/* ── Plan badge (centered pill floating above card top) ── */
.pricing-card .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #D97706, #DC2626);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0.3rem 1.1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,0.42);
}

/* ── Plan name ── */
.pricing-card .plan-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
  margin-top: 0.3rem;
}
.pricing-card.featured .plan-name { color: #fff; }

/* ── Plan for subtitle ── */
.pricing-card .plan-for {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
.pricing-card.featured .plan-for { color: rgba(255,255,255,0.55); }

/* ── Price block ── */
.pricing-card .plan-price {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

/* Gradient text on price for regular cards */
.pricing-card .plan-price span:not(.period) {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card.featured .plan-price span:not(.period) {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.pricing-card .plan-price .period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.pricing-card.featured .plan-price .period { color: rgba(255,255,255,0.5); }

/* ── Annual savings note ── */
.pricing-card .annual-note {
  font-size: 0.75rem;
  color: #0F766E;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.pricing-card.featured .annual-note { color: #6ee7b7; }

/* ── Divider ── */
.pricing-card hr {
  border-color: rgba(79,70,229,0.1);
  opacity: 1;
  margin: 1rem 0;
}
.pricing-card.featured hr { border-color: rgba(255,255,255,0.12); }

/* ── Feature list ── */
.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-card .plan-features li {
  font-size: 0.845rem;
  color: #475569;
  padding: 0.42rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border-bottom: 1px dashed rgba(226,232,240,0.7);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card.featured .plan-features li {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.09);
}

.pricing-card .plan-features li i {
  color: #0D9488;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card.featured .plan-features li i { color: #6ee7b7; }

.addon-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.addon-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.addon-card .addon-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.addon-card h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.addon-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Pricing toggle */
.pricing-toggle .btn-check:checked + .btn {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

/* ── 19. FAQ ACCORDION ──────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-accordion .accordion-button {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text-primary);
  background: var(--bg-white);
  border-radius: var(--border-radius-md) !important;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: var(--bg-light);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234F46E5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 1rem 1.25rem;
}

/* ── 20. ABOUT / PRINCIPLES CARDS ───────────────────────────── */
.principle-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.principle-card .principle-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.principle-card h5 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.principle-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── 21. RESOURCES / LIVE SESSION CARDS ─────────────────────── */
.resource-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.resource-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.session-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.session-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.session-card .session-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin: 0 auto 1rem;
}

/* ── 22. LOGIN PAGE ─────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-light) 0%, #EEF2FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(79,70,229,0.12);
  width: 100%;
  max-width: 480px;
}

.login-card .input-group-text {
  background: var(--bg-section);
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.login-card .form-control {
  border-color: var(--border-light);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  color: var(--text-primary);
}

.login-card .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.or-divider {
  text-align: center;
  position: relative;
  margin: 1.25rem 0;
  color: var(--text-secondary);
  font-size: 0.83rem;
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border-light);
}

.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

/* ── 23. FORM STYLES ────────────────────────────────────────── */
.form-control, .form-select {
  border-color: var(--border-light);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.form-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

/* ── 24. TABLES ─────────────────────────────────────────────── */
.taxeye-table {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.taxeye-table thead th {
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.83rem;
  padding: 0.85rem 1rem;
  border: none;
  letter-spacing: 0.3px;
}

.taxeye-table tbody td {
  font-size: 0.875rem;
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  border-color: var(--border-light);
  vertical-align: middle;
}

.taxeye-table tbody tr:hover {
  background: var(--bg-light);
}

/* ══════════════════════════════════════════════════════════════
   HOME PAGE — COMPARISON / TESTIMONIALS / PRICING-PREVIEW / FAQ
   ══════════════════════════════════════════════════════════════ */

/* ── COMPARISON — Row-by-row v3 (bg-brand-soft) ─────────────── */
.cmp-section {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  position: relative;
}
.cmp-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Column header label pills */
/* ── Comparison header bar (dark-slate | VS | gradient) ─────── */
.cmp-header-bar {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  margin-bottom: 0.7rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,28,53,0.18);
}

/* Left — dark slate "Without" */
.cmp-hbar-before {
  background: #1e2d45;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.cmp-hbar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.cmp-hbar-before .cmp-hbar-icon {
  background: rgba(220,38,38,0.15);
  color: #f87171;
}
.cmp-hbar-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.92rem;
}
.cmp-hbar-before .cmp-hbar-title { color: #fff; }
.cmp-hbar-sub {
  font-size: 0.7rem;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.cmp-hbar-before .cmp-hbar-sub { color: rgba(255,255,255,0.42); }

/* Center — VS badge on deep navy */
.cmp-hbar-vs {
  background: #1E1B4B;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cmp-hbar-vs-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(79,70,229,0.18), 0 3px 12px rgba(79,70,229,0.4);
}

/* Right — brand gradient "With TaxEye" */
.cmp-hbar-after {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.cmp-hbar-after .cmp-hbar-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.cmp-hbar-after .cmp-hbar-title { color: #fff; }
.cmp-hbar-after .cmp-hbar-sub  { color: rgba(255,255,255,0.62); }

/* Mobile responsive */
@media (max-width: 767px) {
  .cmp-header-bar {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .cmp-hbar-before { border-radius: 14px 14px 0 0; }
  .cmp-hbar-vs { height: 40px; }
  .cmp-hbar-after { border-radius: 0 0 14px 14px; }
}

/* Each comparison row: before | icon+label | after */
.cmp-compare-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  margin-bottom: 0.55rem;
  align-items: stretch;
}
.cmp-compare-item:hover .cmp-before-cell { background: #fff8f8; }
.cmp-compare-item:hover .cmp-after-cell  { background: #f0f7ff; }

/* Before cell — right-aligned, red border, italic muted text */
.cmp-before-cell {
  background: #fff;
  padding: 0.9rem 1.25rem 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  border: 1px solid #fecaca;
  border-right: none;
  border-radius: 14px 0 0 14px;
  transition: background 0.18s;
}
.cmp-before-cell .cmp-cell-text {
  color: #9ca3af;
  font-size: 0.855rem;
  margin: 0;
  font-style: italic;
  line-height: 1.45;
}

/* Center column: gradient icon + area label */
.cmp-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  background: linear-gradient(180deg, #e0e7ff 0%, #ede9fe 100%);
  border-top: 1px solid #dde6ff;
  border-bottom: 1px solid #dde6ff;
  padding: 0.5rem 0.35rem;
}
.cmp-center-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  box-shadow: 0 2px 8px rgba(79,70,229,0.28);
  flex-shrink: 0;
}
.cmp-area-name {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6366f1;
  text-align: center;
  line-height: 1.25;
}

/* After cell — left-aligned, blue border, bold text + green tick */
.cmp-after-cell {
  background: #fff;
  padding: 0.9rem 1.4rem 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #bfdbfe;
  border-left: none;
  border-radius: 0 14px 14px 0;
  transition: background 0.18s;
}
.cmp-after-cell .cmp-cell-text {
  color: var(--text-primary);
  font-size: 0.855rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  line-height: 1.45;
}
.cmp-yes-ico {
  color: #0F766E;
  font-size: 0.92rem;
  flex-shrink: 0;
}

/* Outline button override on light bg */
.cmp-section .btn-outline-primary {
  border-color: #7c3aed;
  color: #7c3aed;
}
.cmp-section .btn-outline-primary:hover {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
}

/* ── Mobile responsive ── */
@media (max-width: 767px) {
  .cmp-header-bar { /* handled by its own responsive block above */ }
  .cmp-compare-item {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
  }
  .cmp-before-cell {
    border-radius: 14px 14px 0 0;
    border: 1px solid #fecaca;
    border-bottom: none;
    justify-content: flex-start;
    text-align: left;
  }
  .cmp-center-col {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-left: 1px solid #dde6ff;
    border-right: 1px solid #dde6ff;
    border-top: none;
    border-bottom: none;
  }
  .cmp-area-name { font-size: 0.65rem; text-align: left; }
  .cmp-after-cell {
    border-radius: 0 0 14px 14px;
    border: 1px solid #bfdbfe;
    border-top: none;
  }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(79,70,229,0.10);
  box-shadow: 0 4px 20px rgba(79,70,229,0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(79,70,229,0.14);
}

.testimonial-stars {
  color: #D97706;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: #4F46E5;
  opacity: 0.08;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

.testimonial-firm {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
  line-height: 1.4;
}

/* ── PRICING PREVIEW ────────────────────────────────────────── */
.pricing-prev-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-prev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(79,70,229,0.13);
}

.pricing-prev-card.featured-prev {
  background: linear-gradient(145deg, #312E81 0%, #5b21b6 100%);
  border-color: transparent;
  color: #fff;
}

.pricing-prev-card .pp-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: #eef2ff;
  color: #4F46E5;
  margin-bottom: 0.85rem;
  font-family: var(--font-primary);
}

.pricing-prev-card.featured-prev .pp-badge {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.pricing-prev-card .pp-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-prev-card.featured-prev .pp-name { color: rgba(255,255,255,0.75); }

.pricing-prev-card .pp-price {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.1rem;
  color: #4F46E5;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-prev-card.featured-prev .pp-price { color: #fff; }

.pricing-prev-card .pp-period {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-prev-card.featured-prev .pp-period { color: rgba(255,255,255,0.65); }

.pricing-prev-card .pp-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-prev-card.featured-prev .pp-desc {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.15);
}

.pricing-prev-card .pp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-prev-card .pp-features li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.32rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.pricing-prev-card.featured-prev .pp-features li { color: rgba(255,255,255,0.85); }

.pricing-prev-card .pp-features li i {
  color: #0D9488;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-prev-card.featured-prev .pp-features li i { color: #86efac; }

.pp-most-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #D97706, #B45309);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   DEMO FORM SECTION — gradient bg + dot pattern
   ════════════════════════════════════════════════════════════════ */
.demo-form-section {
  position: relative;
  background: linear-gradient(145deg, #eef2ff 0%, #f8fafc 55%, #f0fdf4 100%);
  overflow: hidden;
}

.demo-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.demo-form-section .container-fluid { position: relative; z-index: 1; }

/* Stat pills */
.demo-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  white-space: nowrap;
}

/* Time slot picker buttons */
.time-slot-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.48rem 0.9rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.time-slot-btn:hover {
  background: #eef2ff;
  border-color: #4F46E5;
  color: #4F46E5;
}
.time-slot-btn.active {
  background: linear-gradient(135deg, #4F46E5, #7c3aed);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}

/* ── Select2 Bootstrap-5 theme overrides ──────────────────── */
.select2-container--bootstrap-5 .select2-selection {
  min-height: 46px !important;
  border-radius: 8px !important;
  border-color: #dee2e6 !important;
  font-size: 0.875rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  padding-top: 0 !important;
  line-height: 46px !important;
  color: #212529;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder { color: #6c757d; }
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow { height: 46px !important; }

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 0.2rem rgba(79,70,229,0.15) !important;
}
.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #c7d7fd;
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(79,70,229,0.13);
  overflow: hidden;
  z-index: 9999;
}
.select2-container--bootstrap-5 .select2-results__option {
  font-size: 0.875rem;
  padding: 0.55rem 0.85rem;
}
.select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff) !important;
  color: #4F46E5 !important;
}
.select2-container--bootstrap-5 .select2-results__option[aria-selected=true] {
  background: #eef2ff;
  color: #4F46E5;
}
/* Multi-select tags */
.select2-container--bootstrap-5 .select2-selection--multiple {
  min-height: 46px !important;
  border-radius: 8px !important;
  border-color: #dee2e6 !important;
  padding: 4px 8px !important;
  align-items: flex-start;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border: 1px solid #c7d7fd;
  border-radius: 6px;
  color: #4F46E5;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  margin: 2px 4px 2px 0;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
  color: #A5B4FC !important;
  font-weight: 700;
  margin-right: 4px;
}

/* ════════════════════════════════════════════════════════════════
   HOME PAGE FAQ — Tabbed Category Design
   ════════════════════════════════════════════════════════════════ */
.home-faq-section {
  background: #f8fafc;
  position: relative;
}
.home-faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.home-faq-section .container-fluid { position: relative; }

/* ── Category nav (left column) ── */
.faq-cat-nav { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-cat-btn:hover {
  border-color: #c7d7fd;
  background: #f0f5ff;
}
.faq-cat-btn.active {
  border-color: transparent;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  box-shadow: 0 6px 22px rgba(79,70,229,0.3);
}

.faq-cat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.faq-cat-btn.active .faq-cat-icon { background: rgba(255,255,255,0.18) !important; }

.faq-cat-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.faq-cat-btn.active .faq-cat-label { color: #fff; }

.faq-cat-sub {
  font-size: 0.71rem;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.3;
}
.faq-cat-btn.active .faq-cat-sub { color: rgba(255,255,255,0.62); }

.faq-cat-count {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(79,70,229,0.1);
  color: #4F46E5;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}
.faq-cat-btn.active .faq-cat-count { background: rgba(255,255,255,0.2); color: #fff; }

/* Contact card (below nav on desktop) */
.faq-contact-card {
  background: linear-gradient(145deg, #0f172a 0%, #312E81 100%);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-contact-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(109,40,217,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.faq-contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.1rem;
  color: #A5B4FC;
  position: relative; z-index: 1;
}
.faq-contact-card h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.3rem;
  position: relative; z-index: 1;
}
.faq-contact-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  line-height: 1.5;
  position: relative; z-index: 1;
}
.faq-contact-card .btn { position: relative; z-index: 1; }

/* ── FAQ panels ── */
.faq-panel { display: none; }
.faq-panel.active { display: block; animation: faqFade 0.22s ease; }
@keyframes faqFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* Panel header bar */
.faq-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-panel-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.faq-panel-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}
.faq-panel-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── FAQ items — Bootstrap Accordion (home & product pages) ── */
.faq-question-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Home FAQ tabbed panel accordion */
.faq-panel-accordion .accordion-item {
  background: #fff;
  border-radius: 14px !important;
  border: 1.5px solid #e2e8f0 !important;
  margin-bottom: 0.55rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.faq-panel-accordion .accordion-item:hover {
  box-shadow: 0 4px 16px rgba(79,70,229,0.08);
  border-color: #c7d2fe !important;
}
.faq-panel-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fff;
  box-shadow: none !important;
  border-radius: 14px !important;
  line-height: 1.45;
}
.faq-panel-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: #fff;
  box-shadow: none !important;
}
.faq-panel-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234F46E5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-panel-accordion .accordion-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0.85rem 1.1rem 1.1rem calc(32px + 0.8rem + 1.1rem);
  border-top: 1px dashed #e8eef8;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .faq-cat-nav { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.35rem; gap: 0.5rem; }
  .faq-cat-btn { flex: 0 0 auto; min-width: 150px; }
  .faq-cat-sub { display: none; }
  .faq-cat-count { display: none; }
}
@media (max-width: 575px) {
  .faq-cat-btn { min-width: 130px; padding: 0.7rem 0.85rem; }
  .faq-answer { padding-left: 1.1rem; }
  .faq-panel-header { flex-direction: column; text-align: center; }
}

/* ── 25. SWIPER CUSTOMIZATION ───────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-blue) !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-blue) !important;
}

/* ── 26. UTILITY CLASSES ────────────────────────────────────── */
.text-primary { color: var(--primary-blue) !important; }
.text-dark-navy { color: var(--primary-dark) !important; }
.bg-taxeye-light { background-color: var(--bg-light) !important; }
.bg-taxeye-section { background-color: var(--bg-section) !important; }
.bg-taxeye-dark { background-color: var(--primary-dark) !important; }

/* ── BRAND GRADIENT UTILITIES (global, all pages) ───────────── */
/* Light gradient section background — use instead of plain bg-white/bg-light */
.bg-brand-soft {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%) !important;
}
/* Full brand gradient (for banners, badges, card headers) */
.bg-brand-gradient {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%) !important;
}
/* Gradient text utility */
.text-brand-gradient {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Gradient CTA button (explicit class, mirrors updated .btn-primary) */
.btn-brand {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border: none;
  color: #fff !important;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.22s ease;
  box-shadow: 0 2px 10px rgba(79,70,229,0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-brand:hover,
.btn-brand:focus-visible {
  background: linear-gradient(135deg, #4338CA 0%, #6d28d9 100%);
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(79,70,229,0.36);
  transform: translateY(-1px);
}
/* Gradient outline button */
.btn-brand-outline {
  background: transparent;
  border: 1.5px solid #4F46E5;
  color: #4F46E5;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-brand-outline:hover,
.btn-brand-outline:focus-visible {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
  transform: translateY(-1px);
}

.border-module-notice { border-left: 4px solid var(--module-notice) !important; }
.border-module-client360 { border-left: 4px solid var(--module-client360) !important; }
.border-module-practice { border-left: 4px solid var(--module-practice) !important; }
.border-module-ai { border-left: 4px solid var(--module-ai) !important; }

.icon-bg-blue { background: rgba(79,70,229,0.1); color: var(--primary-blue); }
.icon-bg-green { background: rgba(13,148,136,0.1); color: var(--accent-green); }
.icon-bg-orange { background: rgba(245,158,11,0.1); color: var(--accent-orange); }
.icon-bg-purple { background: rgba(139,92,246,0.1); color: var(--accent-purple); }
.icon-bg-red { background: rgba(220,38,38,0.1); color: var(--accent-red); }

.rounded-xl { border-radius: var(--border-radius-xl) !important; }

/* ── 27. RESPONSIVE ADJUSTMENTS ─────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0 2.5rem;
    text-align: center;
  }

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

  .hero-subtext {
    margin: 0 auto 1.75rem;
  }

  .hero-ui-placeholder {
    min-height: 260px;
    margin-top: 2rem;
  }

  .mega-menu {
    position: relative !important;
    border-top: none;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  .workflow-connector {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-heading {
    font-size: 1.6rem;
  }

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

  .cta-strip-light h2,
  .cta-strip-dark h2 {
    font-size: 1.5rem;
  }

  .exp-card .stat-number {
    font-size: 1.8rem;
  }

  .pricing-card {
    margin-bottom: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
  .pricing-card.featured {
    margin-top: 0.75rem; /* extra space for badge */
  }

  .back-to-top,
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-float {
    bottom: 4rem;
  }

  .login-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-taxeye {
    padding: 0.6rem 0;
  }

  .hero-section {
    padding: 2rem 0 2rem;
  }

  .trust-bullets {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* ── 28. AOS CUSTOM TIMING ──────────────────────────────────── */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ── 29. SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE — SEGMENT TABS + PER-TAB TOGGLE
   ══════════════════════════════════════════════════════════════ */

.badge-save {
  display: inline-block;
  background: rgba(13,148,136,0.12);
  color: #0F766E;
  font-size: 0.67rem;
  padding: 0.1rem 0.48rem;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.pricing-period-label {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
}
.pricing-toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.annual-note {
  font-size: 0.75rem;
  color: #0F766E;
  text-align: center;
  margin-top: -1.25rem;
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE — WIZARD DESIGN
   ══════════════════════════════════════════════════════════════ */

.checkout-page { background: #f8fafc; min-height: 100vh; }

/* ── Checkout header bar ── */
.checkout-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-logo {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-decoration: none;
}
.checkout-back-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
}
.checkout-back-link:hover { color: var(--primary-blue); }
.checkout-secure-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}
.checkout-secure-badge i { color: #0F766E; }

/* ── Wizard step indicator ── */
.wizard-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 1.4rem 1.75rem;
  box-shadow: 0 2px 24px rgba(15,28,60,0.08), 0 0 0 1px rgba(79,70,229,0.06);
  border: 1px solid #eef1f8;
}
.wizard-steps {
  display: flex;
  align-items: center;
}
.wz-step {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.wz-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wz-step-icon {
  font-size: 1.05rem;
}
.wz-icon-wrap .fa-check {
  font-size: 1.05rem;
}
.snum {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #475569;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-family: var(--font-primary);
  line-height: 1;
  transition: all 0.25s ease;
}
.wz-text {
  display: flex;
  flex-direction: column;
}
.wz-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.wz-sublabel {
  font-size: 0.65rem;
  color: #b0bec5;
  font-weight: 400;
  margin-top: 1px;
  white-space: nowrap;
}
/* Active step */
.wz-step.active .wz-icon-wrap {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(79,70,229,0.38);
  transform: scale(1.08);
}
.wz-step.active .snum {
  background: linear-gradient(135deg, #D97706, #DC2626);
  color: #fff;
  border-color: #fff;
}
.wz-step.active .wz-label   { color: #4F46E5; font-weight: 700; }
.wz-step.active .wz-sublabel { color: #6b8fe8; }
/* Completed step */
.wz-step.completed .wz-icon-wrap {
  background: linear-gradient(135deg, #0F766E 0%, #0F766E 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,163,74,0.28);
}
.wz-step.completed .wz-step-icon { display: none; }
.wz-step.completed .snum {
  background: #bbf7d0;
  color: #15803d;
}
.wz-step.completed .wz-label   { color: #0F766E; }
.wz-step.completed .wz-sublabel { color: #6ee7b7; }
/* Connector */
.wz-connector {
  flex: 1;
  height: 3px;
  background: #e8edf5;
  border-radius: 2px;
  margin: 0 0.5rem;
  transition: background 0.4s ease;
}
.wz-connector.done {
  background: linear-gradient(90deg, #0F766E, #4F46E5);
}

/* ── Panel card ── */
.wz-panel { animation: wzFade 0.28s ease; }
@keyframes wzFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wz-panel-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(15,28,53,0.06);
}
.wz-panel-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.wz-panel-sub {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.wz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 1rem;
}
.btn-wz-back {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-wz-back:hover { border-color: #94a3b8; color: var(--text-primary); }
.btn-wz-next {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border: none;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 2px 10px rgba(79,70,229,0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-wz-next:hover {
  background: linear-gradient(135deg, #4338CA 0%, #6d28d9 100%);
  box-shadow: 0 6px 20px rgba(79,70,229,0.36);
  transform: translateY(-1px);
}
.btn-wz-next:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

/* ── Step 1: plan selector cards ── */
.plan-select-card {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  position: relative;
}
.plan-select-card:hover { border-color: #A5B4FC; background: #f8fbff; }
.plan-select-card.selected {
  border-color: #4F46E5;
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.10);
}
.psc-popular {
  position: absolute; top: -1px; right: 1rem;
  background: linear-gradient(135deg, #4F46E5, #7c3aed);
  color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 0.12rem 0.5rem; border-radius: 0 0 6px 6px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.psc-name  { font-family: var(--font-primary); font-weight: 700; font-size: 0.92rem; color: var(--text-primary); }
.psc-for   { font-size: 0.75rem; color: var(--text-secondary); margin-top: 1px; }
.psc-price { font-family: var(--font-primary); font-weight: 800; font-size: 1.05rem; color: #4F46E5; }
.psc-period{ font-size: 0.72rem; color: var(--text-secondary); }

/* Billing toggle strip */
.billing-toggle-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}
.btl-label { font-family: var(--font-primary); font-size: 0.82rem; font-weight: 600; color: #475569; }
.btl-label.on { color: var(--text-primary); }

/* ── Form fields ── */
.co-label {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: block;
}
.co-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.co-input:focus { border-color: #4F46E5; box-shadow: 0 0 0 3px rgba(79,70,229,0.08); }
.co-input.error { border-color: #dc2626; }
.co-input.success { border-color: #0F766E; }
.co-error { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; display: none; }
.co-error.show { display: block; }
.co-hint  { font-size: 0.73rem; color: var(--text-secondary); margin-top: 0.2rem; }
.co-field { margin-bottom: 1.1rem; }

/* Password strength bar */
.pwd-strength { margin-top: 0.4rem; }
.pwd-bars { display: flex; gap: 3px; margin-bottom: 0.2rem; }
.pwd-bar { height: 4px; border-radius: 2px; flex: 1; background: #e2e8f0; transition: background 0.25s; }
.pwd-bar.weak   { background: #DC2626; }
.pwd-bar.fair   { background: #D97706; }
.pwd-bar.good   { background: #3b82f6; }
.pwd-bar.strong { background: #0F766E; }
.pwd-strength-text { font-size: 0.72rem; color: var(--text-secondary); }

/* ── Payment method tabs ── */
.payment-method-nav {
  display: flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
  gap: 3px;
  margin-bottom: 1.35rem;
}
.pay-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.5rem;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pay-btn:hover { background: rgba(255,255,255,0.7); color: #334155; }
.pay-btn.active { background: #fff; color: #4F46E5; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.pay-pane { display: none; }
.pay-pane.show { display: block; animation: wzFade 0.22s ease; }

/* Bank transfer info */
.bank-info {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.85rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row .blbl { color: var(--text-secondary); font-size: 0.78rem; }
.bank-row .bval { font-weight: 700; color: var(--text-primary); }

/* Promo code */
.promo-wrap { position: relative; }
.promo-apply {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: linear-gradient(135deg, #4F46E5, #7c3aed);
  border: none; color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.85rem; border-radius: 7px; cursor: pointer;
  transition: opacity 0.18s;
}
.promo-apply:hover { opacity: 0.85; }

/* ── Order summary sidebar ── */
.co-summary {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(15,28,53,0.06);
  position: sticky;
  top: 80px;
}
.cos-label {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.cos-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  color: #4F46E5;
  margin-bottom: 0.5rem;
}
.cos-plan-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  line-height: 1.15;
}
.cos-plan-for { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1.1rem; }
.cos-price-block {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}
.cos-amount { font-family: var(--font-primary); font-weight: 800; font-size: 1.7rem; color: #4F46E5; line-height: 1; }
.cos-period { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.cos-billing-tag {
  display: inline-block; font-size: 0.67rem; font-weight: 700;
  padding: 0.12rem 0.5rem; border-radius: 4px;
  background: #dcfce7; color: #15803d; margin-top: 0.4rem;
}
.cos-features { margin: 1rem 0; }
.cos-feat {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-secondary); padding: 0.3rem 0;
}
.cos-feat i { color: #0F766E; font-size: 0.82rem; flex-shrink: 0; }
.cos-trust {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--text-secondary);
  padding-top: 1rem; margin-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.cos-trust i { color: #0F766E; }

/* ── Success screen ── */
.wz-success { text-align: center; padding: 2.5rem 1rem; }
.success-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #0F766E, #0D9488);
  color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 24px rgba(13,148,136,0.3);
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-title { font-family: var(--font-primary); font-weight: 800; font-size: 1.45rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.success-sub   { font-size: 0.9rem; color: var(--text-secondary); max-width: 400px; margin: 0 auto 1.5rem; }
.success-ref   { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.success-ref strong { color: var(--text-primary); }
.success-steps { text-align: left; background: #f8fafc; border-radius: 14px; padding: 1.25rem; margin: 1.5rem 0; }
.success-step-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.85rem;
}
.success-step-item:last-child { border-bottom: none; }
.success-step-item i { color: #4F46E5; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .co-summary { position: static; margin-top: 1.5rem; }
  .wizard-wrapper { padding: 1.1rem 1.25rem; }
  .wizard-steps { overflow-x: auto; padding-bottom: 0.25rem; }
  .wz-text { display: none; }
}
@media (max-width: 576px) {
  .wizard-wrapper { padding: 0.85rem 1rem; border-radius: 14px; }
  .wz-panel-card { padding: 1.35rem 1.1rem; }
  .wz-icon-wrap { width: 44px; height: 44px; border-radius: 12px; }
  .wz-step-icon, .wz-icon-wrap .fa-check { font-size: 0.9rem; }
  .snum { width: 16px; height: 16px; font-size: 0.52rem; top: -5px; right: -5px; }
  .checkout-header .checkout-secure-badge { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   HOME PRICING SECTION — gradient bg + dot pattern
   ════════════════════════════════════════════════════════════════ */
.home-pricing-section {
  position: relative;
  background: linear-gradient(145deg, #eef2ff 0%, #f3f0ff 50%, #eef2ff 100%);
  overflow: hidden;
}

/* Subtle dot grid overlay */
.home-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* Top-right purple glow blob */
.home-pricing-section::after {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(109,40,217,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left blue glow blob */
.pricing-blob-tl {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Keep content above pseudo-elements */
.home-pricing-section .container-fluid {
  position: relative;
  z-index: 1;
}

/* Pricing cards — slightly lifted shadow in home section */
.home-pricing-section .pricing-card {
  box-shadow: 0 6px 30px rgba(79,70,229,0.10);
}
.home-pricing-section .pricing-card:hover {
  box-shadow: 0 20px 52px rgba(79,70,229,0.18);
}
.home-pricing-section .pricing-card.featured {
  box-shadow: 0 18px 60px rgba(79,70,229,0.38);
}
/* Give featured cards space for the floating badge */
.pricing-tab-panel .col-lg-4 { padding-top: 1rem; }

/* View all pricing link row */
.home-pricing-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
  transition: gap 0.2s ease;
}
.home-pricing-view-all:hover { gap: 0.85rem; }
.home-pricing-view-all i { -webkit-text-fill-color: initial; color: #7c3aed; }

/* ═══════════════════════════════════════════════════════════════
   HOT DEAL — FIXED BOTTOM PROMOTIONAL BAR
   ═══════════════════════════════════════════════════════════════ */

.hot-deal-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: #07111f;
  padding: 0.85rem 0;
  animation: hdSlideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.8s both;
}
.hot-deal-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4F46E5 0%, #7c3aed 36%, #DC2626 72%, #EA580C 100%);
  z-index: 3;
}
.hot-deal-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 1;
}
@keyframes hdSlideUp {
  from { transform: translateY(108%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes hdSlideDown {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(108%); opacity: 0; }
}

.hd-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* ── Left: Badge + Info ── */
.hd-left {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}
.hd-fire-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  background: linear-gradient(135deg, #dc2626 0%, #EA580C 100%);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.12rem;
  box-shadow: 0 0 18px rgba(220,38,38,0.45);
}
.hd-fire-badge i {
  font-size: 0.8rem;
  animation: hdFire 1.6s ease-in-out infinite alternate;
}
@keyframes hdFire {
  from { transform: scale(1) rotate(-6deg); }
  to   { transform: scale(1.3) rotate(6deg); filter: brightness(1.3); }
}
.hd-deal-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.87rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  line-height: 1.3;
}
.hd-seats-tag {
  font-size: 0.58rem;
  font-weight: 700;
  font-family: var(--font-primary);
  background: rgba(220,38,38,0.14);
  color: #f87171;
  border: 1px solid rgba(220,38,38,0.26);
  padding: 0.12rem 0.48rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.hd-deal-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-primary);
  margin-top: 0.18rem;
}
.hd-progress-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.38rem;
}
.hd-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.09);
  border-radius: 50px;
  overflow: hidden;
  min-width: 80px;
  max-width: 140px;
}
.hd-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #DC2626, #EA580C);
  border-radius: 50px;
}
.hd-progress-lbl {
  font-size: 0.57rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Center: Countdown ── */
.hd-timer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
}
.hd-timer-lbl {
  font-size: 0.59rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.28rem;
}
.hd-timer {
  display: flex;
  align-items: center;
  gap: 0.22rem;
}
.hd-tblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.24rem 0.52rem;
  min-width: 41px;
}
.hd-tnum {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hd-tunit {
  font-size: 0.46rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 0.08rem;
}
.hd-tsep {
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-primary);
  margin-bottom: 0.55rem;
}

/* ── Right: Price + Disabled CTA ── */
.hd-cta-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.hd-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.04rem;
}
.hd-price-orig {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  text-decoration: line-through;
}
.hd-price-orig small { font-size: 0.6rem; }
.hd-price-now {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.02rem;
  color: #4ade80;
}
.hd-price-now small { font-size: 0.68rem; font-weight: 500; }

/* Disabled state (expired deal) */
.hd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.26);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.62rem 1.4rem;
  border-radius: 50px;
  cursor: not-allowed !important;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  text-decoration: none;
}
/* Active state (live deal) */
.hd-cta-btn.hd-cta-btn--active {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  cursor: pointer !important;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(79,70,229,0.4);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.hd-cta-btn.hd-cta-btn--active:hover {
  box-shadow: 0 0 28px rgba(79,70,229,0.6);
  transform: translateY(-1px);
}
/* Full / Short text toggle for responsive */
.hd-btn-short { display: none; }
.hd-btn-full  { display: inline; }

/* ── Close button ── */
.hd-close-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.38);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  padding: 0;
}
.hd-close-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .hd-deal-sub   { display: none; }
  .hd-progress-row { display: none; }
}
@media (max-width: 991px) {
  .hd-timer-block { display: none; }
  .hd-price-col   { display: none; }
  .hd-inner       { gap: 1rem; }
}
@media (max-width: 767px) {
  .hot-deal-bar   { padding: 0.6rem 0; }
  .hd-inner       { gap: 0.6rem; }
  .hd-fire-badge  { font-size: 0.6rem; padding: 0.22rem 0.52rem; }
  .hd-deal-title  { font-size: 0.78rem; }
  .hd-cta-btn     { padding: 0.5rem 0.95rem; font-size: 0.74rem; }
  /* Show short text on mobile, hide full text */
  .hd-btn-full    { display: none; }
  .hd-btn-short   { display: inline; }
}
/* ── END HOT DEAL BAR ── */

/* ============================================================
   30. COMPREHENSIVE RESPONSIVE DESIGN
   Breakpoints: 1199 | 991 | 767 | 575 | 479
   Covers: hero, navbar, banners, cards, footer, floats
   ============================================================ */

/* ── ≤ 1199px  (XL down — large tablet / small laptop) ── */
@media (max-width: 1199px) {

  /* Hero */
  .hero-title        { font-size: clamp(2rem, 4vw, 2.8rem); }
  .hero-sub          { font-size: 1rem; }
  .hero-module-pills { flex-wrap: wrap; gap: 0.5rem; }
  .hero-integrations { flex-wrap: wrap; gap: 0.5rem; }

  /* Page banners */
  .page-banner        { padding: 5rem 0 3.5rem; }
  .banner-title       { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
  .banner-visual      { margin-top: 2rem; }

  /* Section headings */
  .section-heading    { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

  /* Platform tabs */
  .platform-tab-nav   { gap: 0.5rem; }
  .platform-tab-btn   { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

  /* Pricing */
  .pricing-card       { padding: 2rem 1.5rem; }

  /* Footer CTA box */
  .footer-cta-box     { padding: 2.5rem 2rem; }
}

/* ── ≤ 991px  (LG down — tablet portrait) ── */
@media (max-width: 991px) {

  /* Hero */
  .hero-section        { padding: 5rem 0 3rem; text-align: center; }
  .hero-title          { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .hero-cta-group      { justify-content: center; flex-wrap: wrap; }
  .hero-trust-bullets  { justify-content: center; }
  .hero-module-pills   { justify-content: center; }
  .hero-integrations   { justify-content: center; }
  .hero-visual-wrap    { margin-top: 2.5rem; }

  /* Page banners */
  .page-banner         { padding: 4rem 0 3rem; text-align: center; }
  .banner-title        { font-size: clamp(1.6rem, 4vw, 2rem); }
  .banner-sub          { font-size: 0.95rem; }
  .banner-visual       { margin-top: 2.5rem; }
  .bv-stat-row         { flex-wrap: wrap; gap: 0.75rem; }

  /* Section headings */
  .section-heading     { font-size: clamp(1.5rem, 3.5vw, 2rem); }
  .section-subheading  { font-size: 0.95rem; }

  /* Feature cards */
  .feature-card        { padding: 1.75rem 1.5rem; }
  .feature-card .fc-icon { width: 52px; height: 52px; font-size: 1.3rem; }
  .feature-card h5     { font-size: 1rem; }

  /* Workflow steps */
  .workflow-step       { padding: 1.75rem 1.5rem; }
  .step-number         { width: 40px; height: 40px; font-size: 1rem; }

  /* Problem cards */
  .problem-card        { padding: 1.5rem; }

  /* Platform tabs */
  .platform-tab-nav    { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
  .platform-tab-btn    { white-space: nowrap; flex-shrink: 0; }
  .platform-tab-content .tab-screenshot { border-radius: 12px; }

  /* HIW steps */
  .hiw-step-number     { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Testimonial cards */
  .testimonial-card    { padding: 1.75rem 1.5rem; }

  /* Comparison */
  .comparison-table    { font-size: 0.88rem; }

  /* Pricing */
  .pricing-card        { padding: 1.75rem 1.4rem; }
  .pricing-card .price-amount { font-size: 2rem; }

  /* CTA strip */
  .cta-strip           { padding: 3rem 0; text-align: center; }
  .cta-strip .cta-strip-heading { font-size: 1.5rem; }
  .cta-strip .cta-strip-sub { font-size: 0.95rem; }
  .cta-strip .cta-group { justify-content: center; flex-wrap: wrap; }

  /* Footer dark — stack columns */
  .footer-dark .footer-brand { margin-bottom: 2rem; }
  .footer-dark .footer-heading { font-size: 0.8rem; margin-top: 1.5rem; }

  /* Footer light */
  .footer-light .footer-brand { margin-bottom: 2rem; }

  /* Float buttons — above hot deal bar */
  .back-to-top         { bottom: 5rem; }
  .whatsapp-float      { bottom: 8rem; }
}

/* ── ≤ 767px  (MD down — mobile) ── */
@media (max-width: 767px) {

  /* Hero */
  .hero-section        { padding: 4rem 0 2.5rem; }
  .hero-title          { font-size: clamp(1.6rem, 6vw, 2rem); }
  .hero-sub            { font-size: 0.92rem; }
  .hero-badge          { font-size: 0.72rem; padding: 0.28rem 0.9rem; }
  .hero-cta-group      { gap: 0.65rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-module-pills   { gap: 0.4rem; }
  .hero-module-pill    { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .hero-integration-item { font-size: 0.72rem; }

  /* Page banners */
  .page-banner         { padding: 3.5rem 0 2.5rem; }
  .banner-title        { font-size: clamp(1.4rem, 5.5vw, 1.75rem); }
  .banner-visual       { padding: 1.25rem; border-radius: 12px; }
  .bv-header           { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .bv-stat             { min-width: 70px; }
  .bv-stat-value       { font-size: 1.1rem; }

  /* Section headings */
  .section-heading     { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .section-badge       { font-size: 0.72rem; padding: 0.28rem 0.9rem; }
  .section-subheading  { font-size: 0.9rem; }

  /* Feature cards */
  .feature-card        { padding: 1.4rem 1.25rem; }
  .feature-card .fc-icon { width: 46px; height: 46px; font-size: 1.1rem; margin-bottom: 0.85rem; }
  .feature-card h5     { font-size: 0.95rem; }
  .feature-card p      { font-size: 0.87rem; }
  .feature-card .fc-bullets li { font-size: 0.82rem; }

  /* Workflow steps */
  .workflow-step       { padding: 1.4rem 1.25rem; }
  .step-number         { width: 36px; height: 36px; font-size: 0.9rem; min-width: 36px; }
  .workflow-step h6    { font-size: 0.95rem; }
  .workflow-step p     { font-size: 0.87rem; }

  /* Problem cards */
  .problem-card        { padding: 1.25rem; }
  .problem-card h5     { font-size: 0.95rem; }

  /* Exp / stat cards */
  .exp-card            { padding: 1.25rem; }
  .exp-stat            { font-size: 1.5rem; }

  /* Screenshot cards */
  .screenshot-card     { border-radius: 12px; }
  .screenshot-placeholder { min-height: 160px; }

  /* Testimonial cards */
  .testimonial-card    { padding: 1.4rem 1.25rem; }
  .testimonial-quote   { font-size: 1rem; }
  .testimonial-text    { font-size: 0.87rem; }
  .testimonial-author  { font-size: 0.8rem; }
  .testimonial-avatar  { width: 38px; height: 38px; font-size: 0.85rem; }

  /* Comparison */
  .comparison-table    { font-size: 0.8rem; }
  .comparison-table thead th { font-size: 0.8rem; padding: 0.6rem 0.5rem; }
  .comparison-table tbody td { padding: 0.55rem 0.5rem; }

  /* Pricing cards */
  .pricing-card        { padding: 1.5rem 1.25rem; }
  .pricing-card .plan-name { font-size: 1rem; }
  .pricing-card .price-amount { font-size: 1.75rem; }
  .pricing-card .price-period { font-size: 0.8rem; }
  .pricing-card .feature-list li { font-size: 0.87rem; }
  .pricing-card .btn   { font-size: 0.9rem; padding: 0.65rem 1.25rem; }

  /* FAQ accordion */
  .accordion-button    { font-size: 0.92rem; padding: 1rem 1.1rem; }
  .accordion-body      { font-size: 0.87rem; padding: 0.85rem 1.1rem 1rem; }

  /* CTA strip */
  .cta-strip           { padding: 2.5rem 0; }
  .cta-strip .cta-strip-heading { font-size: 1.3rem; }
  .cta-strip .btn      { width: 100%; justify-content: center; }

  /* Footer dark */
  .footer-dark         { padding: 0; }
  .footer-dark .footer-brand { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; }
  .footer-dark .footer-brand .brand-name { font-size: 1.3rem; }
  .footer-dark .footer-links li { margin-bottom: 0.45rem; }
  .footer-dark .footer-links a  { font-size: 0.85rem; }
  .footer-dark .footer-disclaimer { font-size: 0.75rem; }
  .footer-dark .footer-social { gap: 0.6rem; }
  .footer-dark .footer-social a { width: 34px; height: 34px; font-size: 0.85rem; }
  .footer-dark .footer-cta-box { padding: 1.75rem 1.25rem; border-radius: 14px; }
  .footer-dark .footer-app-badges { flex-wrap: wrap; gap: 0.6rem; }
  .footer-dark .footer-bottom-bar { flex-direction: column; gap: 0.6rem; text-align: center; font-size: 0.78rem; }

  /* Footer light */
  .footer-light .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; font-size: 0.78rem; }

  /* Float buttons */
  .back-to-top         { width: 38px; height: 38px; font-size: 0.9rem; bottom: 5.5rem; right: 1rem; }
  .whatsapp-float      { width: 42px; height: 42px; font-size: 1.1rem; bottom: 8.5rem; right: 1rem; }

  /* Row gutter reduction */
  .row.g-5             { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.25rem; }
  .row.g-4             { --bs-gutter-x: 1rem;    --bs-gutter-y: 1rem; }
  .row.g-3             { --bs-gutter-x: 0.75rem; --bs-gutter-y: 0.75rem; }
}

/* ── ≤ 575px  (SM down — small mobile) ── */
@media (max-width: 575px) {

  /* Container padding */
  .container, .container-fluid { padding-left: 1rem; padding-right: 1rem; }

  /* Hero */
  .hero-section        { padding: 3.5rem 0 2rem; }
  .hero-title          { font-size: clamp(1.45rem, 7vw, 1.75rem); }
  .hero-cta-group .btn { font-size: 0.9rem; padding: 0.65rem 1.25rem; }

  /* Page banners */
  .page-banner         { padding: 3rem 0 2rem; }
  .banner-title        { font-size: clamp(1.25rem, 6vw, 1.5rem); }

  /* Section headings */
  .section-heading     { font-size: clamp(1.2rem, 6vw, 1.5rem); }

  /* Platform tabs — full width pills */
  .platform-tab-btn    { padding: 0.45rem 0.9rem; font-size: 0.78rem; }

  /* HIW steps */
  .hiw-connector       { display: none; }

  /* Testimonial */
  .testimonial-card    { padding: 1.25rem 1rem; }

  /* Pricing */
  .pricing-card        { padding: 1.35rem 1rem; }
  .pricing-badge       { font-size: 0.68rem; padding: 0.18rem 0.7rem; }

  /* CTA */
  .cta-strip .cta-strip-heading { font-size: 1.15rem; }

  /* Footer dark */
  .footer-dark .footer-cta-box .btn { width: 100%; justify-content: center; }
  .footer-dark .footer-app-badges img { height: 32px; }

  /* Footer light */
  .footer-light .footer-brand .brand-name { font-size: 1.1rem; }
  .footer-light .footer-links a { font-size: 0.85rem; }

  /* Float buttons */
  .back-to-top         { bottom: 5rem; }
  .whatsapp-float      { bottom: 7.75rem; }
}

/* ── ≤ 479px  (XS — very small phones) ── */
@media (max-width: 479px) {

  /* Hero */
  .hero-title          { font-size: clamp(1.3rem, 7.5vw, 1.55rem); }
  .hero-module-pills   { display: none; }

  /* Section headings */
  .section-heading     { font-size: clamp(1.15rem, 6.5vw, 1.35rem); }

  /* Feature cards */
  .feature-card        { padding: 1.2rem 1rem; }

  /* Workflow */
  .workflow-step       { padding: 1.2rem 1rem; }

  /* Pricing */
  .pricing-card .price-amount { font-size: 1.55rem; }

  /* Footer */
  .footer-dark .footer-cta-box { padding: 1.4rem 1rem; }
  .footer-dark .footer-social a { width: 32px; height: 32px; }
}

/* ── Landscape mobile  (height ≤ 500px + landscape) ── */
@media (max-height: 500px) and (orientation: landscape) {

  .hero-section        { padding: 2.5rem 0 1.5rem; }
  .page-banner         { padding: 2.5rem 0 1.5rem; }
  .banner-visual       { display: none; }
  .announcement-bar    { display: none; }
}

/* ── Tablet landscape / small laptop  (768–1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero-title          { font-size: clamp(1.9rem, 3.8vw, 2.4rem); }
  .section-heading     { font-size: clamp(1.55rem, 3vw, 2rem); }
  .pricing-card        { padding: 1.75rem 1.4rem; }
  .feature-card        { padding: 1.75rem 1.4rem; }
  .workflow-step       { padding: 1.75rem 1.4rem; }
}

/* ── Print ── */
@media print {
  .announcement-bar,
  .navbar,
  .hot-deal-bar,
  .back-to-top,
  .whatsapp-float,
  .hd-close-btn,
  .btn-demo,
  .btn-signup         { display: none !important; }

  body                 { font-size: 12pt; color: #000; background: #fff; }
  a                    { color: #000; text-decoration: underline; }
  .page-banner         { background: #f5f5f5 !important; color: #000 !important; padding: 2rem 0 !important; }
  .banner-title        { color: #000 !important; -webkit-text-fill-color: #000 !important; }
  .footer-dark         { background: #f5f5f5 !important; color: #000 !important; }
  .section-heading span { -webkit-text-fill-color: #4F46E5 !important; }
}

/* ── END COMPREHENSIVE RESPONSIVE DESIGN ── */

/* ============================================================
   31. NAVBAR MOBILE CTA BUTTONS  (WhatsApp · Call · Demo)
   Visible only on mobile/tablet (d-lg-none handled inline)
   ============================================================ */

.nmcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.4rem 0.72rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

/* WhatsApp */
.nmcta-wa {
  background: #25d366;
  color: #fff !important;
  border-color: #25d366;
}
.nmcta-wa:hover,
.nmcta-wa:focus {
  background: #1db954;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(37,211,102,0.35);
}

/* Call */
.nmcta-call {
  background: rgba(79,70,229,0.09);
  color: #4F46E5 !important;
  border-color: rgba(79,70,229,0.28);
}
.nmcta-call:hover,
.nmcta-call:focus {
  background: #4F46E5;
  color: #fff !important;
  border-color: #4F46E5;
  box-shadow: 0 2px 10px rgba(79,70,229,0.28);
}

/* Demo */
.nmcta-demo {
  background: linear-gradient(135deg, #4F46E5 0%, #7c3aed 100%);
  color: #fff !important;
  border-color: transparent;
}
.nmcta-demo:hover,
.nmcta-demo:focus {
  opacity: 0.88;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(79,70,229,0.35);
}

/* Very small phones — icon-only for WA + Call, keep Demo text */
@media (max-width: 380px) {
  .nmcta-wa .nmcta-label,
  .nmcta-call .nmcta-label { display: none; }
  .nmcta-btn { padding: 0.4rem 0.55rem; }
}

/* ── END NAVBAR MOBILE CTA BUTTONS ── */

/* ============================================================
   32. EXTENDED RESPONSIVE — Page-specific + component fixes
   Breakpoints aligned with Section 30
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   A. BANNER VISUAL CARD — bv-row text / badge / stats
   ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Allow text to wrap inside the visual card on tablet */
  .bv-row-text strong { white-space: normal; overflow: visible; text-overflow: unset; }
  .bv-badge            { display: none; }   /* hide status badges to save space */
  .bv-stats            { flex-wrap: wrap; gap: 0.4rem; }
  .bv-stat             { flex: 1 1 auto; text-align: center; }
}
@media (max-width: 767px) {
  .banner-visual       { padding: 1rem; border-radius: 12px; }
  .bv-row              { padding: 0.42rem 0.55rem; gap: 0.4rem; }
  .bv-row-text strong  { font-size: 0.7rem; }
  .bv-row-text span    { display: none; }   /* hide subtitle line on small mobile */
  .bv-stat-num         { font-size: 1rem; }
  .bv-stat-lbl         { font-size: 0.55rem; }
}
@media (max-width: 479px) {
  .banner-visual       { padding: 0.85rem; }
  .bv-stats            { display: none; }   /* stats bar hidden on very small screens */
}

/* ──────────────────────────────────────────────────────────────
   B. NAVBAR — brand + toggler balance
   ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-taxeye .navbar-brand { margin-right: auto; }
  .brand-name          { font-size: 1.2rem !important; }
  .brand-tagline       { font-size: 0.6rem !important; }
}
@media (max-width: 479px) {
  .brand-name          { font-size: 1.1rem !important; }
  .brand-tagline       { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   C. TABLES — horizontal scroll on mobile
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .taxeye-table        { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
  .taxeye-table table  { min-width: 560px; font-size: 0.8rem; }
  .taxeye-table thead th { font-size: 0.78rem; padding: 0.55rem 0.7rem; white-space: nowrap; }
  .taxeye-table tbody td { padding: 0.55rem 0.7rem; font-size: 0.8rem; }
  .table-responsive    { -webkit-overflow-scrolling: touch; }
  .comparison-table    { min-width: 480px; }
}

/* ──────────────────────────────────────────────────────────────
   D. DEMO FORM SECTION — pills + time-slot + form
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .demo-stat-pill      { font-size: 0.74rem; padding: 0.3rem 0.75rem; }
  .time-slot-btn       { width: 100%; justify-content: center; }
  /* Gradient-border form card full width */
  .demo-form-section .card { border-radius: 14px !important; padding: 1.5rem !important; }
}
@media (max-width: 479px) {
  .demo-stat-pill      { font-size: 0.68rem; padding: 0.26rem 0.6rem; }
  .demo-stat-pill i    { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   E. PRICING PAGE — toggle + addon cards + comparison
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .pricing-toggle      { flex-direction: column; align-items: center; gap: 0.5rem; }
  .addon-card          { padding: 1.25rem 1rem; }
  .addon-card h6       { font-size: 0.9rem; }
  .addon-card p        { font-size: 0.82rem; }
  .comparison-table    { min-width: 520px; }
}

/* ──────────────────────────────────────────────────────────────
   F. RESOURCES PAGE — resource cards + session cards
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .resource-card       { padding: 1.25rem 1rem; }
  .resource-card h5    { font-size: 0.92rem; }
  .session-card        { padding: 1.25rem 1rem; }
  .session-card h5     { font-size: 0.92rem; }
}

/* ──────────────────────────────────────────────────────────────
   G. ABOUT PAGE — traction strip + principles + team
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Traction strip stat numbers */
  #traction [style*="font-size:2.4rem"] { font-size: 1.7rem !important; }
  #traction [style*="font-size:.88rem"] { font-size: 0.78rem !important; }

  /* Principle cards */
  .principle-card      { padding: 1.5rem 1.25rem; }
  .principle-card h5   { font-size: 1rem; }
  .principle-card p    { font-size: 0.87rem; }

  /* Story section inline stat boxes */
  #story .d-flex.gap-3 > div { min-width: 90px !important; padding: 0.85rem 1rem !important; }

  /* Milestone items */
  .milestone-item      { padding: 0.85rem; }
}
@media (max-width: 575px) {
  #traction [style*="font-size:2.4rem"] { font-size: 1.5rem !important; }
}
@media (max-width: 479px) {
  #traction [style*="font-size:2.4rem"] { font-size: 1.35rem !important; }
  #traction [style*="font-size:.88rem"] { font-size: 0.72rem !important; }
}

/* ──────────────────────────────────────────────────────────────
   H. CONTACT PAGE — channel cards + form + office
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* FAQ contact cards */
  .faq-contact-card    { padding: 1.5rem 1.25rem; }
  .faq-contact-card h6 { font-size: 1rem; }
  /* Office section map placeholder */
  #office .rounded-4 > div[style*="height:280px"] { height: 200px !important; }
}

/* ──────────────────────────────────────────────────────────────
   I. LOGIN / REGISTER — standalone pages
   ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Auth split-panel: hide left promo pane, show form full width */
  .auth-left           { display: none !important; }
  .auth-right          { flex: 0 0 100% !important; max-width: 100% !important; padding: 2.5rem 1.5rem !important; }
  .auth-form-wrapper   { max-width: 440px; }
}
@media (max-width: 575px) {
  .auth-right          { padding: 2rem 1rem !important; }
  .auth-form-wrapper   { max-width: 100%; }
  .login-card          { padding: 1.75rem 1.25rem; border-radius: 16px; }
  .login-card h2       { font-size: 1.3rem; }
}

/* ──────────────────────────────────────────────────────────────
   J. FOOTER — trust bar + light footer columns
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .footer-trust-bar    { padding: 1.25rem 0; gap: 0.75rem; flex-wrap: wrap; }
  .trust-item          { font-size: 0.8rem; gap: 0.4rem; }
  .trust-item i        { font-size: 0.95rem; }
  .app-badge           { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
  .footer-whatsapp     { font-size: 0.88rem; padding: 0.6rem 1.1rem; }
  /* Footer light specific */
  .footer-light        { padding: 3rem 0 1.5rem; }
  .footer-light .footer-bottom { font-size: 0.76rem; }
}
@media (max-width: 479px) {
  .footer-dark .footer-social  { gap: 0.45rem; }
  .footer-dark .footer-social a { width: 30px; height: 30px; font-size: 0.8rem; }
  .footer-disclaimer   { font-size: 0.72rem; }
}

/* ──────────────────────────────────────────────────────────────
   K. HIW / HOW IT WORKS SECTION
   ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hiw-steps-row       { gap: 1.25rem; }
  .hiw-card            { padding: 1.5rem 1.25rem; }
  .hiw-connector-line  { display: none; }
}
@media (max-width: 767px) {
  .hiw-card            { padding: 1.25rem 1rem; }
  .hiw-step-badge      { font-size: 0.65rem; }
  .hiw-title           { font-size: 0.97rem; }
  .hiw-desc            { font-size: 0.85rem; }
  .hiw-tags span       { font-size: 0.7rem; padding: 0.18rem 0.5rem; }
}

/* ──────────────────────────────────────────────────────────────
   L. SECTION PADDING — reduce py-5 on mobile
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  section.py-5         { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  section.py-4         { padding-top: 2rem !important;    padding-bottom: 2rem !important; }
  .py-5                { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  .py-lg-6             { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
}
@media (max-width: 479px) {
  section.py-5         { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
}

/* ──────────────────────────────────────────────────────────────
   M. SELECT2 MOBILE — dropdown height
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .select2-container--bootstrap-5 .select2-dropdown {
    font-size: 0.875rem;
  }
  .select2-container--bootstrap-5 .select2-results__option {
    padding: 0.55rem 0.75rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   N. STATS STRIP (dark #1E1B4B type, reusable)
   ────────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  /* Stats strips (request-demo, about page, product pages) */
  .stats-strip [style*="font-size:1.6rem"],
  [style*="background:#1E1B4B"] [style*="font-size:1.6rem"] {
    font-size: 1.3rem !important;
  }
  [style*="background:#1E1B4B"] [style*="font-size:.75rem"] {
    font-size: 0.7rem !important;
  }
}
@media (max-width: 479px) {
  [style*="background:#1E1B4B"] [style*="font-size:1.6rem"] {
    font-size: 1.15rem !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   O. MEGA MENU — medium tablet fix (768-991px collapsible)
   ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* The mega menu dropdown is disabled at this breakpoint (offcanvas used instead) */
  .mega-menu           { display: none !important; }
}

/* ──────────────────────────────────────────────────────────────
   P. OFFCANVAS — mobile nav styling
   ────────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .offcanvas-taxeye    { width: 88vw !important; max-width: 320px; }
  .offcanvas-body .nav-link { font-size: 0.9rem; padding: 0.6rem 0.25rem; }
  .offcanvas-body .d-grid .btn { font-size: 0.88rem; padding: 0.65rem 1rem; }
}

/* ──────────────────────────────────────────────────────────────
   Q. EXPIRY / TRUST STRIP section on product pages
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .exp-card .stat-icon { width: 40px; height: 40px; font-size: 1rem; }
  .exp-card .stat-number { font-size: 1.5rem; }
  .exp-card .stat-label  { font-size: 0.72rem; }
}

/* ──────────────────────────────────────────────────────────────
   R. GENERAL SPACING FIXES (utility)
   ────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Reduce large g-5 row gaps on mobile */
  .row.g-5             { --bs-gutter-x: 1rem; --bs-gutter-y: 1.5rem; }
  /* Make sure inline images / placeholders don't overflow */
  img, .screenshot-placeholder, .banner-visual { max-width: 100%; }
  /* Prevent horizontal overflow from wide content */
  body                 { overflow-x: hidden; }
}
@media (max-width: 479px) {
  .row.g-5             { --bs-gutter-y: 1.25rem; }
  .row.g-4             { --bs-gutter-y: 1rem; }
}

/* ──────────────────────────────────────────────────────────────
   S. REQUEST-DEMO PAGE — specific responsive additions
   ────────────────────────────────────────────────────────────── */

/* Stats strip: 1.65rem stat number (Section N covers 1.6rem; this covers 1.65rem) */
@media (max-width: 575px) {
  [style*="background:#1E1B4B"] [style*="font-size:1.65rem"] { font-size: 1.3rem !important; }
}
@media (max-width: 479px) {
  [style*="background:#1E1B4B"] [style*="font-size:1.65rem"] { font-size: 1.15rem !important; }
}

/* Stats strip 2-col layout (≤767px): remove border-right that bleeds to the edge
   on the 2nd (and 4th) column — even children in the col-6 grid */
@media (max-width: 767px) {
  [style*="background:#1E1B4B"] .col-6:nth-child(even) { border-right: 0 !important; }
}

/* CTA strip: stretch CTA buttons to full width for easy tapping on small screens */
@media (max-width: 575px) {
  #cta-strip .btn { width: 100%; justify-content: center; }
}

/* Demo form card inner heading — reduce font on very small screens */
@media (max-width: 479px) {
  #demo-form .card [style*="font-size:1.5rem"] { font-size: 1.2rem !important; }
}

/* ──────────────────────────────────────────────────────────────
   T. INDEX HERO — social-proof centering + btn-watch-demo
   ────────────────────────────────────────────────────────────── */

/* Centre social-proof flex row when the banner becomes text-center (≤991px) */
@media (max-width: 991px) {
  .hero-social-proof   { justify-content: center; }
}
/* Hide orphaned proof-dividers when items might wrap at small widths */
@media (max-width: 575px) {
  .proof-divider       { display: none; }
  .hero-social-proof   { gap: 0.5rem 1rem; }
}

/* btn-watch-demo — full-width + centred like the other .btn CTAs on mobile */
@media (max-width: 767px) {
  .btn-watch-demo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* ──────────────────────────────────────────────────────────────
   U. PAGE-BANNER DARK BG — integration strip colour fixes
   (hero-integrations, int-label, int-badge, btn-watch-demo)
   ────────────────────────────────────────────────────────────── */

/* Integration strip border on dark banner */
.page-banner .hero-integrations { border-top-color: rgba(255,255,255,0.1); }

/* "Syncs with" label and portal badges on dark bg */
.page-banner .int-label {
  color: rgba(255,255,255,0.4);
}
.page-banner .int-badge {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

/* Watch-demo link on dark banner */
.page-banner .btn-watch-demo { color: rgba(255,255,255,0.85); }
.page-banner .btn-watch-demo .play-icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.page-banner .btn-watch-demo:hover { color: #fff; }
.page-banner .btn-watch-demo:hover .play-icon { background: rgba(255,255,255,0.16); }

/* ──────────────────────────────────────────────────────────────
   V. CROSS-PAGE POLISH — small improvements across all pages
   ────────────────────────────────────────────────────────────── */

/* Breadcrumb — shrink slightly on very small phones */
@media (max-width: 479px) {
  .breadcrumb-taxeye   { font-size: 0.74rem; }
}

/* About traction strip — tighten cell padding at very small screens */
@media (max-width: 479px) {
  #traction .col-6     { padding-top: 1.1rem; padding-bottom: 1.1rem; }
}

/* Ensure taxeye-table wrapper always allows x-scroll (enhances the 767px rule) */
.taxeye-table          { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Container-fluid with px-lg-5: give breathing room at each mobile tier */
@media (max-width: 767px) {
  .container-fluid.px-lg-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
}
@media (max-width: 575px) {
  /* align with Section 30 general container padding */
  .container-fluid.px-lg-5 { padding-left: 1rem !important; padding-right: 1rem !important; }
}
@media (max-width: 479px) {
  .container-fluid.px-lg-5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
}

/* Pricing segment tab nav — center on mobile instead of letting it scroll off-edge */
@media (max-width: 575px) {
  #pricingTabNav       { max-width: 100%; flex-wrap: wrap; overflow: visible; }
  #pricingTabNav .platform-tab-btn { flex: 1; justify-content: center; min-width: 80px; }
}

/* hero-ui-browser inside hero-ui-panel: limit max-width at tablet for visual polish */
@media (max-width: 991px) {
  .hero-ui-panel       { max-width: 640px; margin: 2rem auto 0; }
}
@media (max-width: 575px) {
  .hero-ui-panel       { max-width: 100%; }
  .hero-ui-browser .browser-content { padding: 0.75rem; }
  .mockup-stat-num     { font-size: 0.85rem; }
  .mockup-stat-lbl     { font-size: 0.5rem; }
}

/* Float buttons clear the hot-deal bar on all mobile sizes */
@media (max-width: 479px) {
  .back-to-top         { bottom: 4.5rem; right: 0.75rem; }
  .whatsapp-float      { bottom: 7.5rem; right: 0.75rem; }
}

/* ── END EXTENDED RESPONSIVE ── */

/* ============================================================
   32-W. DESKTOP LAYOUT — all pages
   Fixes: navbar fit 992-1199px · card density · large screen content width
   ============================================================ */

/* ── 1. Global: prevent horizontal scrollbar at every viewport width ── */
html { overflow-x: hidden; }

/* ── 2. Navbar compact at 992-1199px ── */
/* At 992px the navbar-expand-lg shows full nav; ensure all items fit */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Nav links */
  .navbar-taxeye .nav-link {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.6rem !important;
  }
  /* Brand — slightly smaller to save horizontal space */
  .navbar-brand-taxeye .brand-name    { font-size: 1.25rem !important; }
  .navbar-brand-taxeye .brand-tagline { font-size: 0.58rem !important; }
  /* CTA buttons inside desktop nav */
  .navbar-taxeye .btn-demo            { padding: 0.38rem 0.85rem; font-size: 0.78rem; }
  .navbar-taxeye .btn-signup          { padding: 0.38rem 0.85rem; font-size: 0.78rem; }
  .navbar-taxeye .btn-outline-primary { padding: 0.38rem 0.7rem;  font-size: 0.78rem; }
  /* Tighter gap between the three CTA buttons */
  .navbar-taxeye .navbar-collapse .d-flex { gap: 0.35rem !important; }
}

/* ── 3. Feature cards & workflow steps: reduce padding at 992-1199px ── */
/* col-lg-3 (4-col) gives only ~200-260px per card at this range — needs tighter padding */
@media (min-width: 992px) and (max-width: 1199px) {
  .feature-card        { padding: 1.3rem 1.1rem 1.3rem 1.3rem; }
  .feature-card h5     { font-size: 0.92rem; }
  .feature-card p      { font-size: 0.83rem; line-height: 1.6; }
  .workflow-step       { padding: 1.3rem 1rem; }
  .step-number         { width: 38px; height: 38px; font-size: 0.9rem; min-width: 38px; }
}

/* ── 4. Large desktop: auto-increase padding above ~1500px ── */
/* Formula: content width ≈ 1380px at any viewport ≥ 1476px */
@media (min-width: 1400px) {
  .container-fluid.px-lg-5 {
    padding-left:  max(3rem, calc((100vw - 1380px) / 2)) !important;
    padding-right: max(3rem, calc((100vw - 1380px) / 2)) !important;
  }
}



/* ── END 32-W ── */


.plan-price {
  text-align: center;
  padding: 15px 0;
}

.plan-price .original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
}

.plan-price .original-price del {
  color: #999;
  font-size: 14px;
}

.plan-price .discount-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}

.plan-price .final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.plan-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.plan-price .amount {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.plan-price .period {
  font-size: 14px;
  color: #777;
}