/* ==========================================================================
   PEHLA PAISA - COMPLETE DESIGN SYSTEM & STYLESHEET
   Brand Identity:
   - Primary Forest Emerald: #0B4636 / #072E23
   - Accent Mint Growth:     #10B981 / #34D399 / #059669
   - Rupee Coin Gold:        #F59E0B / #F5A623 / #D97706
   - Backgrounds & Neutrals: #F8FAF9 / #FFFFFF / #0F172A
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Primary */
  --primary-dark: #072c22;
  --primary: #0b4636;
  --primary-light: #135f4a;
  --primary-subtle: #e8f5f0;
  
  /* Brand Accent */
  --accent-mint: #10b981;
  --accent-mint-light: #34d399;
  --accent-mint-soft: #d1fae5;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-gold-soft: #fef3c7;
  --accent-amber: #d97706;

  /* Surfaces & Neutrals */
  --bg-body: #f8faf9;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f3;
  --bg-dark: #071f18;
  --bg-dark-card: #0c2b22;
  
  /* Text */
  --text-main: #0f231c;
  --text-muted: #4b6358;
  --text-light: #80968c;
  --text-inverse: #ffffff;
  --text-inverse-muted: #cbd5e1;

  /* Borders & Shadows */
  --border-light: #e2e8e5;
  --border-focus: #10b981;
  --shadow-xs: 0 1px 2px 0 rgba(11, 70, 54, 0.05);
  --shadow-sm: 0 2px 6px 0 rgba(11, 70, 54, 0.07);
  --shadow-md: 0 8px 24px -4px rgba(11, 70, 54, 0.1);
  --shadow-lg: 0 16px 36px -6px rgba(11, 70, 54, 0.15);
  --shadow-xl: 0 24px 50px -12px rgba(11, 70, 54, 0.22);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

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

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.3rem); letter-spacing: -0.025em; font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.02em; font-weight: 700; }
h4 { font-size: 1.15rem; letter-spacing: -0.015em; font-weight: 700; }

p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.badge-mint {
  background-color: var(--accent-mint-soft);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-gold {
  background-color: var(--accent-gold-soft);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-primary {
  background-color: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid rgba(11, 70, 54, 0.2);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: 1.02rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 70, 54, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 70, 54, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-mint) 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e59516 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

/* ==========================================================================
   OPTIMIZED TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: var(--primary-dark);
  color: #d1fae5;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.top-bar-link {
  color: #d1fae5;
  white-space: nowrap;
}
.top-bar-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   OPTIMIZED NAVBAR (ZERO OVERLAP GUARANTEED)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.5rem;
}

/* Logo Brand Block */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Streamlined Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.35rem 0.2rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--accent-mint);
  border-radius: var(--radius-full);
}

/* Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 44, 34, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

.drawer-close {
  font-size: 1.6rem;
  color: var(--text-main);
  background: none;
  padding: 0.2rem;
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.drawer-nav-links .nav-link {
  font-size: 1.05rem;
}

/* ==========================================================================
   PAGE HERO FOR SUB-PAGES
   ========================================================================== */
.page-hero {
  padding: 4rem 0 3.5rem;
  background-color: #072c22;
  background-image: 
    radial-gradient(900px 400px at 50% -50px, rgba(16, 185, 129, 0.18) 0%, transparent 70%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 26px 26px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  color: #d1fae5;
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ==========================================================================
   UNIFIED SINGLE SECTION SERVICES PAGE
   ========================================================================== */
.single-services-section {
  padding: 4.5rem 0 5.5rem;
  background: var(--bg-body);
}

.services-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-chip {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.filter-chip.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 70, 54, 0.25);
}

/* Persona Solutions Tabs & Grid */
.persona-section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.persona-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.persona-tabs {
  display: inline-flex;
  background: rgba(11, 70, 54, 0.05);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  gap: 0.35rem;
  border: 1px solid rgba(11, 70, 54, 0.08);
}

.persona-tab-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.persona-tab-btn:hover {
  color: var(--primary-dark);
}

.persona-tab-btn.active {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 14px rgba(11, 70, 54, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.persona-pane {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

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

.persona-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* Unified Services Grid */
.unified-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid rgba(11, 70, 54, 0.08);
  box-shadow: 0 4px 20px -4px rgba(11, 70, 54, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(11, 70, 54, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.service-card.hidden {
  display: none !important;
}

.service-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-mint);
  margin-bottom: 0.5rem;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--border-light);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

.service-feature-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-pricing {
  display: flex;
  flex-direction: column;
}

.service-pricing span {
  font-size: 0.74rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.service-pricing strong {
  font-size: 1.15rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* ==========================================================================
   HERO SECTION (HOME) - BESPOKE MODERN FINTECH DESIGN
   ========================================================================== */
.hero {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background-color: #f8faf9;
  background-image: 
    radial-gradient(1000px 500px at 50% -50px, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
    radial-gradient(600px 400px at 90% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
    radial-gradient(rgba(11, 70, 54, 0.045) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 26px 26px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, #f8faf9);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Modern Live Beacon Badge */
.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(11, 70, 54, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.live-beacon {
  width: 9px;
  height: 9px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: liveBeaconPulse 2s infinite;
}

@keyframes liveBeaconPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 4.3vw, 3.45rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 10%, var(--primary) 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.68;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Horizontal Modern Fintech Trust Badges */
.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 70, 54, 0.08);
  margin-top: 0.5rem;
}

.trust-item {
  background: #ffffff;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 70, 54, 0.08);
  box-shadow: 0 2px 8px rgba(11, 70, 54, 0.03);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 70, 54, 0.07);
  border-color: rgba(16, 185, 129, 0.3);
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box.trust-icon-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #15803d;
}

.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.trust-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.25;
  margin: 0;
}

/* ==========================================================================
   EXECUTIVE WHATSAPP CONCIERGE TERMINAL (HERO CARD)
   ========================================================================== */
.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 20px 45px -15px rgba(11, 70, 54, 0.1), 0 0 0 1px rgba(11, 70, 54, 0.07);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover {
  box-shadow: 0 24px 50px -15px rgba(11, 70, 54, 0.14), 0 0 0 1px rgba(16, 185, 129, 0.25);
}

.card-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(11, 70, 54, 0.06);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #065f46;
  background: #d1fae5;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.fee-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.hero-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.hero-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Quick Category Pill Toggles */
.quick-category-pills {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.quick-cat-btn {
  flex: 1;
  padding: 0.5rem 0.6rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.quick-cat-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #ffffff;
}

.quick-cat-btn.active {
  background: var(--primary-subtle);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(11, 70, 54, 0.08);
}

.quick-selector-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.select-wrapper .form-control {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
}

.hero-card-action .btn-arrow {
  transition: transform 0.2s ease;
}

.hero-card-action:hover .btn-arrow {
  transform: translateX(4px);
}

.card-guarantee-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  justify-content: center;
}

/* ==========================================================================
   CALCULATOR COMPONENT
   ========================================================================== */
.calculator-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8faf9 0%, #edf7f3 100%);
}

.calc-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.calc-nav-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-subtle);
}

.calc-nav-tab {
  flex: 1;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

.calc-nav-tab.active {
  background: #ffffff;
  color: var(--primary);
  border-bottom-color: var(--accent-mint);
}

.calc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label-row label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
}

.slider-val-badge {
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-light);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(11, 70, 54, 0.3);
  border: 2px solid #ffffff;
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results-card {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calc-results-card::after {
  content: '₹';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  pointer-events: none;
}

.calc-results-header h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.calc-results-header p {
  color: #a7f3d0;
  font-size: 0.88rem;
}

.calc-savings-banner {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.4rem 0;
  text-align: center;
}

.calc-savings-banner span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a7f3d0;
  margin-bottom: 0.2rem;
}

.calc-savings-banner strong {
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.calc-comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.calc-row span:first-child {
  color: #d1fae5;
}

.calc-row strong {
  font-family: var(--font-heading);
  color: #ffffff;
}

/* ==========================================================================
   COMPLIANCE CALENDAR
   ========================================================================== */
.calendar-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.calendar-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cal-month-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.cal-month-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cal-month-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.deadlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.deadline-card {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.deadline-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.4);
}

.deadline-date-badge {
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 70px;
}

.deadline-date-badge .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.deadline-date-badge .month {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.deadline-info {
  flex-grow: 1;
}

.deadline-info h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.deadline-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.deadline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: #e2e8f0;
  color: #334155;
}

/* ==========================================================================
   DOCUMENT CHECKLIST
   ========================================================================== */
.checklist-section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.checklist-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.checklist-control-bar {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.checklist-select-wrapper {
  flex: 1;
  min-width: 280px;
}

.checklist-select-wrapper label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.checklist-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.checklist-group {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid var(--border-light);
}

.checklist-group h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.checklist-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-mint);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   PRICING & COMPARISON
   ========================================================================== */
.pricing-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--bg-body);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card.featured {
  background: #ffffff;
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-mint) 0%, #059669 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-header h4 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.pricing-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-amount {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: top;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.pricing-amount .term {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.3rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pricing-feature svg {
  width: 17px;
  height: 17px;
  color: var(--accent-mint);
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-section {
  padding: 4.5rem 0;
  background: var(--bg-body);
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--bg-subtle);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison-table th.pehlapaisa-col,
.comparison-table td.pehlapaisa-col {
  background: var(--primary-subtle);
  font-weight: 600;
}

.comparison-table th.pehlapaisa-col {
  color: var(--primary);
  font-size: 1.05rem;
}

/* ==========================================================================
   TESTIMONIALS & FAQ
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-details h5 {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.author-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: transparent;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER & FOOTER
   ========================================================================== */
.cta-banner-section {
  padding: 4rem 0;
  background: #ffffff;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.cta-banner-content p {
  color: #d1fae5;
  font-size: 1.05rem;
  max-width: 580px;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-column h5 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-mint);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-disclaimer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 44, 34, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  background: none;
}

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

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--accent-mint);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp:active {
  transform: scale(0.95);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  display: block;
  pointer-events: none;
}

/* Online pulse status dot */
.floating-whatsapp::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background-color: #10b981;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Tooltip callout pill to the left of the button */
.floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.55rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ffffff;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-3px);
}

.wa-status-online {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (PREVENTS ANY OVERLAPPING)
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-menu, .nav-actions {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
  .top-bar-ticker {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .calc-content-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .top-bar-right,
  .top-bar-ticker {
    display: none !important;
  }
  .top-bar .container {
    justify-content: center;
  }
  .top-bar-item {
    font-size: 0.74rem;
    text-align: center;
  }
  .hero {
    padding: 2.5rem 0 3.5rem;
  }
  .hero-trust-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cta-banner {
    flex-direction: column;
    padding: 2.2rem 1.6rem;
    text-align: center;
  }
  .cta-banner-actions {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    left: auto;
    width: 54px;
    height: 54px;
  }
  .floating-whatsapp-tooltip {
    display: none !important;
  }
}
