/* ==========================================================================
   Full-Page Executive Digital Identity & Interactive Action Hub
   Ultra-Luxury Cyber Dark Theme • Responsive 2-Column Split Architecture
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --bg-main: #070a12;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(255, 255, 255, 0.2);
  
  --primary-accent: #6366f1;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --secondary-accent: #06b6d4;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 20px 45px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.25);
}

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

body.public-body-fullpage,
body.public-body {
  min-height: 100vh;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 15% 15%, rgba(99, 102, 241, 0.18) 0px, transparent 45%),
    radial-gradient(at 85% 20%, rgba(6, 182, 212, 0.14) 0px, transparent 45%),
    radial-gradient(at 50% 85%, rgba(168, 85, 247, 0.12) 0px, transparent 50%),
    linear-gradient(180deg, #070a12 0%, #0d1322 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Full Page Container */
.fullpage-layout-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   1. Floating Frosted Brand Topbar
   ========================================================================== */

.public-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 24px;
  width: 100%;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.topbar-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.topbar-logo-fallback {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.topbar-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar-company-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar-share-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   2. Main Executive 2-Column Split Grid
   ========================================================================== */

.executive-profile-grid {
  max-width: 1280px;
  width: 100%;
  margin: 36px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 36px;
  align-items: start;
  flex: 1;
}

/* Left Column: Sticky Hero Profile Sidebar */
.hero-profile-sidebar {
  position: sticky;
  top: 90px;
}

.hero-identity-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-identity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4, #a855f7, #4f46e5);
  background-size: 300% 100%;
  animation: shimmerGlow 6s linear infinite;
}

.card-status-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  color: #34d399;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 1; }
}

.verified-shield {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #38bdf8;
}

/* Avatar Container with Radiant Ring */
.hero-avatar-container {
  position: relative;
  margin-bottom: 14px;
  animation: floatAvatar 4.5s ease-in-out infinite;
}

.hero-avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #4f46e5;
  opacity: 0.35;
  filter: blur(8px);
  z-index: 0;
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero-avatar-img,
.hero-avatar-fallback {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: #1e293b;
}

.hero-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #818cf8;
}

.avatar-check-badge {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0284c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.avatar-check-badge svg {
  width: 14px;
  height: 14px;
}

/* Identity Titles */
.hero-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-designation-chip {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary-accent);
  margin-bottom: 8px;
}

.hero-company-affiliation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-bio-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 0 4px;
}

/* Contact Action Suite */
.contact-action-suite {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-save-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  background: #4f46e5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-save-contact:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
}

.quick-mini-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.mini-action-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-action-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* ==========================================================================
   3. Right Column: Action, Review, Social & QR Hub
   ========================================================================== */

.action-hub-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-ctas-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* High-Impact Hero Cards (Google Review & WhatsApp) */
.hub-hero-card {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hub-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

/* Google Review Card Specifics */
.review-hero-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(251, 188, 5, 0.3);
  box-shadow: 0 10px 30px rgba(251, 188, 5, 0.12);
}

.review-hero-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #4285f4;
}

/* WhatsApp Card Specifics */
.whatsapp-hero-card {
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.12);
}

.whatsapp-hero-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #25d366;
}

.hero-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-google-wrapper {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.icon-whatsapp-wrapper {
  background: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hero-card-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.google-tag {
  background: rgba(251, 188, 5, 0.15);
  color: #fbbc05;
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.whatsapp-tag {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.gold-star-rating {
  color: #fbbc05;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(251, 188, 5, 0.5);
}

.active-badge-tag {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 600;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.hero-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-card-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.ai-powered-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.btn-hero-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.ai-action-btn {
  background: #4f46e5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.ai-action-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.55);
}

.google-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.google-action-btn:hover {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
}

.whatsapp-action-btn {
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.whatsapp-action-btn:hover {
  background: #1eb857;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   4. Social Channels Multi-Grid
   ========================================================================== */

.hub-section-block {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.hub-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hub-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.hub-section-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.hub-section-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  color: #cbd5e1;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.social-channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-channel-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.channel-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.social-channel-card:hover .channel-icon-badge {
  transform: scale(1.08);
}

/* Platform-Specific Brand Badges */
.badge-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.badge-linkedin {
  background: #0077b5;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.badge-facebook {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.badge-youtube {
  background: #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.badge-website {
  background: #4f46e5;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.badge-twitter {
  background: #0f1419;
  box-shadow: 0 4px 15px rgba(15, 20, 25, 0.5);
}

.badge-telegram {
  background: #229ED9;
  box-shadow: 0 4px 15px rgba(34, 158, 217, 0.4);
}

.badge-messenger {
  background: #0084FF;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4);
}

.badge-github {
  background: #24292e;
  box-shadow: 0 4px 15px rgba(36, 41, 46, 0.4);
}

.badge-discord {
  background: #5865F2;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.badge-calendly {
  background: #006BFF;
  box-shadow: 0 4px 15px rgba(0, 107, 255, 0.4);
}

.badge-behance {
  background: #1769ff;
  box-shadow: 0 4px 15px rgba(23, 105, 255, 0.4);
}

.badge-spotify {
  background: #1DB954;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.badge-pinterest {
  background: #E60023;
  box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
}

.badge-custom {
  background: #6366f1;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.badge-google {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.badge-whatsapp {
  background: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

button.social-channel-card {
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

/* Hide mobile-only grid items on desktop */
.mobile-only-grid-item {
  display: none;
}

.channel-arrow {
  color: var(--text-dim);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-channel-card:hover .channel-arrow {
  color: #fff;
  transform: translate(2px, -2px);
}

.channel-info {
  display: flex;
  flex-direction: column;
}

.channel-platform-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.channel-url-preview {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. Scan & Connect QR Showcase Station
   ========================================================================== */

.qr-showcase-station {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.qr-station-flex {
  display: flex;
  align-items: center;
  gap: 28px;
}

.qr-image-frame {
  position: relative;
  background: #ffffff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-station-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.qr-badge-overlay {
  position: absolute;
  bottom: -8px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.qr-station-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qr-station-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-accent);
  letter-spacing: 0.05em;
}

.qr-station-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
}

.qr-station-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.qr-station-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-qr-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-qr-download:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.btn-qr-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-qr-copy:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* ==========================================================================
   6. Global Footer & Toast
   ========================================================================== */

.public-fullpage-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  background: rgba(7, 10, 18, 0.8);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-brand strong {
  color: #cbd5e1;
}

/* Toast Feedback */
.public-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f8fafc;
}

/* Unavailable Fullscreen State */
.unavailable-fullscreen-card {
  max-width: 520px;
  margin: 80px auto;
  padding: 48px 32px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-elevated);
}

.unavailable-icon-glow {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.unavailable-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.unavailable-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ==========================================================================
   8. Gemini AI Google Review Assistant Modal Styles
   ========================================================================== */

.ai-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ai-modal-container {
  position: relative;
  z-index: 10;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(168, 85, 247, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ai-modal-container::-webkit-scrollbar {
  width: 5px;
}
.ai-modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.ai-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-modal-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-modal-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-sparkle-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-modal-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.ai-modal-subheading {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.ai-modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}

/* 2-Step Visual Flow Guidance Bar */
.ai-flow-guide-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-md);
}

.flow-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
}

.flow-step-arrow {
  color: #6366f1;
  font-weight: 800;
  font-size: 0.9rem;
}

.ai-section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* 1. Interactive Star Rating Selector */
.ai-star-rating-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(251, 188, 5, 0.06);
  border: 1px solid rgba(251, 188, 5, 0.22);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.ai-star-rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ai-star-score-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fbbc05;
  background: rgba(251, 188, 5, 0.15);
  border: 1px solid rgba(251, 188, 5, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
}

.ai-interactive-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-pick-btn {
  background: transparent;
  border: none;
  font-size: 1.85rem;
  line-height: 1;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2px 4px;
}

.star-pick-btn.active,
.star-pick-btn.hover-active {
  color: #fbbc05;
  text-shadow: 0 0 14px rgba(251, 188, 5, 0.6);
  transform: scale(1.12);
}

.star-pick-btn:hover {
  transform: scale(1.22);
}

/* 2. Business Category Filter Chips */
.ai-categories-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-categories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ai-section-hint {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.ai-category-chips-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ai-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-category-chip .chip-check-icon {
  display: none;
  font-size: 0.72rem;
  font-weight: 800;
  color: #38bdf8;
}

.ai-category-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.ai-category-chip.active {
  background: rgba(6, 182, 212, 0.16);
  border-color: #06b6d4;
  color: #38bdf8;
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.35);
}

.ai-category-chip.active .chip-check-icon {
  display: inline-block;
}

/* 3. Tone Filter Chips */
.ai-tone-chips-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ai-tone-chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-tone-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.ai-tone-chip.active {
  background: #4f46e5;
  border-color: #6366f1;
  color: #fff;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.4);
}

/* Custom Topic Input */
.ai-topic-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-topic-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: border-color 0.2s;
}

.ai-topic-input-wrapper:focus-within {
  border-color: #6366f1;
  background: rgba(15, 23, 42, 0.9);
}

.ai-topic-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
}

.ai-topic-input::placeholder {
  color: #64748b;
}

.btn-ai-regenerate {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-ai-regenerate:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* AI Suggestions List */
.ai-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-review-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.ai-review-card.selected {
  background: rgba(79, 70, 229, 0.12);
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1, 0 4px 18px rgba(79, 70, 229, 0.25);
}

.ai-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-card-stars {
  color: #fbbc05;
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.ai-card-selected-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.ai-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.ai-card-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ai-card-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ai-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Skeleton Loading */
.ai-loading-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton-line.short {
  width: 60%;
}

.shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmerAnim 1.5s infinite;
}

@keyframes shimmerAnim {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Review Editor Textarea */
.ai-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ai-char-counter {
  font-size: 0.75rem;
  color: #64748b;
}

.ai-review-textarea {
  width: 100%;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.ai-review-textarea:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 1px #4285f4;
}

/* Modal Footer Actions */
.ai-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.ai-direct-link {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.ai-direct-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.btn-post-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  background: #4285f4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.4);
  transition: all 0.22s ease;
}

.btn-post-google:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(66, 133, 244, 0.55);
}

.btn-post-google.copied-state {
  background: #16a34a !important;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4) !important;
}

/* ==========================================================================
   9. Entrance Animations & Interactive Micro-Interactions
   ========================================================================== */

.animate-fade-in-up {
  animation: fadeInUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stagger-1 {
  animation-delay: 0.12s;
}

.stagger-2 {
  animation-delay: 0.22s;
}

.stagger-3 {
  animation-delay: 0.32s;
}

/* Micro-interaction tap feel for buttons and cards */
.hero-identity-card,
.hub-hero-card,
.social-channel-card,
.qr-showcase-station {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-channel-card:active,
.mini-action-pill:active,
.btn-save-contact:active,
.btn-hero-action:active {
  transform: scale(0.97);
}

/* ==========================================================================
   10. Mobile Sticky Floating Quick Action Bar
   ========================================================================== */

.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom)) 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
  animation: slideUpSheet 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sticky-action-container {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr;
  gap: 10px;
  align-items: center;
}

.sticky-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.sticky-action-btn:active {
  transform: scale(0.95);
}

.sticky-btn-vcard {
  background: linear-gradient(135deg, var(--primary-accent, #6366f1), #4338ca);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.sticky-btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.sticky-btn-call {
  background: #0284c7;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.sticky-btn-review {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.sticky-btn-review:hover,
.sticky-btn-review:active {
  background: rgba(255, 255, 255, 0.16);
}

.sticky-btn-email {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Bottom Sheet Drag Handle */
.sheet-drag-handle {
  display: none;
  width: 100%;
  padding: 2px 0 10px 0;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.sheet-drag-bar {
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   11. Comprehensive Multi-Device Breakpoints
   ========================================================================== */

/* Tablet Landscape & Small Laptops (769px - 1024px) */
@media (max-width: 1024px) {
  .executive-profile-grid {
    grid-template-columns: 330px 1fr;
    gap: 24px;
    padding: 0 20px;
    margin: 24px auto;
  }

  .hero-avatar-img,
  .hero-avatar-fallback {
    width: 110px;
    height: 110px;
  }

  .hub-hero-card {
    padding: 20px 22px;
  }

  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait & Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  .fullpage-layout-wrapper {
    padding-bottom: 24px;
    overflow-x: hidden;
  }

  .mobile-sticky-action-bar {
    display: none !important;
  }

  .executive-profile-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 8px auto 0 auto;
    padding: 0 12px;
    max-width: 100%;
  }

  .hero-profile-sidebar {
    position: static;
    top: 0;
  }

  /* Ultra-Compact Executive Profile Header Card */
  .hero-identity-card {
    padding: 14px 12px;
    border-radius: 16px;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .card-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 8px;
  }

  .live-status-pill {
    padding: 2px 7px;
    font-size: 0.65rem;
  }

  .verified-shield {
    font-size: 0.68rem;
  }

  .hero-avatar-container {
    margin-bottom: 8px;
    animation: none;
  }

  .hero-avatar-img,
  .hero-avatar-fallback {
    width: 62px;
    height: 62px;
    border-width: 2px;
  }

  .hero-avatar-fallback {
    font-size: 1.5rem;
  }

  .avatar-check-badge {
    width: 20px;
    height: 20px;
    bottom: 1px;
    right: 1px;
    border-width: 2px;
  }

  .avatar-check-badge svg {
    width: 10px;
    height: 10px;
  }

  .hero-name {
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .hero-designation-chip {
    font-size: 0.76rem;
    margin-bottom: 3px;
    padding: 1px 8px;
  }

  .hero-company-affiliation {
    font-size: 0.70rem;
    margin-bottom: 6px;
    padding: 1px 8px;
  }

  .hero-bio-text {
    font-size: 0.76rem;
    line-height: 1.35;
    margin-bottom: 10px;
    padding: 0;
    max-height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .btn-save-contact {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 10px;
    gap: 6px;
  }

  .btn-save-contact svg {
    width: 14px;
    height: 14px;
  }

  .quick-mini-actions-grid {
    gap: 5px;
  }

  .mini-action-pill {
    padding: 6px 3px;
    font-size: 0.65rem;
    border-radius: 8px;
    gap: 2px;
  }

  .mini-action-pill svg {
    width: 12px;
    height: 12px;
  }

  .action-hub-column {
    gap: 12px;
  }

  /* Prominent Full-Width Google Review Rating Card on Mobile */
  .hero-ctas-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 2px !important;
  }

  /* Hide top WhatsApp banner on mobile as WhatsApp is in the 3x3 grid below */
  .whatsapp-hero-card {
    display: none !important;
  }

  /* Standout Full-Width 5-Star Google Rating Banner */
  .review-hero-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 13px 14px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98)) !important;
    border: 1.5px solid rgba(251, 188, 5, 0.45) !important;
    box-shadow: 0 6px 20px rgba(251, 188, 5, 0.16), 0 0 15px rgba(66, 133, 244, 0.1) !important;
    gap: 12px !important;
    cursor: pointer !important;
  }

  .review-hero-card .hero-card-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .review-hero-card .hero-icon-wrapper {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  }

  .review-hero-card .hero-icon-wrapper svg {
    width: 26px !important;
    height: 26px !important;
  }

  .review-hero-card .hero-card-content {
    min-width: 0 !important;
    flex: 1 !important;
  }

  .review-hero-card .hero-card-badge-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 2px !important;
    flex-wrap: wrap !important;
  }

  .review-hero-card .hero-card-tag {
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
  }

  .review-hero-card .gold-star-rating {
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
  }

  .review-hero-card .ai-powered-pill {
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
  }

  .review-hero-card .hero-card-title {
    font-size: 0.94rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .review-hero-card .hero-card-desc {
    display: none !important;
  }

  .review-hero-card .hero-card-action-group {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .review-hero-card .google-action-btn {
    padding: 9px 13px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: #4285f4 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.4) !important;
    gap: 6px !important;
  }

  .review-hero-card .google-action-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* 3x3 Unified App Launcher Matrix for Mobile */
  .hub-section-block {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .hub-section-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .hub-section-title {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .hub-section-subtitle {
    font-size: 0.72rem;
  }

  .hub-section-pill {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .social-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .social-channel-card {
    padding: 14px 6px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  }

  .channel-card-top {
    width: auto !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  /* Large, Highly Visible App Icon Badges */
  .channel-icon-badge {
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .channel-icon-badge svg {
    width: 28px !important;
    height: 28px !important;
  }

  .channel-arrow {
    display: none !important;
  }

  .channel-info {
    width: 100% !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .channel-platform-name {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #f8fafc !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    max-width: 100% !important;
    letter-spacing: -0.01em;
  }

  .channel-url-preview {
    display: none !important;
  }

  /* Compact Horizontal QR Showcase Station */
  .qr-showcase-station {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .qr-station-flex {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
  }

  .qr-image-frame {
    padding: 4px;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .qr-station-img {
    width: 58px;
    height: 58px;
  }

  .qr-badge-overlay {
    display: none;
  }

  .qr-station-details {
    flex: 1;
    gap: 4px;
  }

  .qr-station-badge {
    display: none;
  }

  .qr-station-title {
    font-size: 0.88rem;
  }

  .qr-station-desc {
    display: none;
  }

  .qr-station-actions {
    flex-direction: row;
    width: 100%;
    gap: 6px;
    margin-top: 2px;
  }

  .btn-qr-download,
  .btn-qr-copy {
    flex: 1;
    padding: 6px 8px;
    font-size: 0.72rem;
    border-radius: 8px;
    gap: 4px;
    justify-content: center;
  }

  .btn-qr-download svg,
  .btn-qr-copy svg {
    width: 13px;
    height: 13px;
  }

  /* Mobile Native Bottom-Sheet Transform for AI Review Modal */
  .sheet-drag-handle {
    display: flex;
  }

  .ai-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .ai-modal-container {
    border-radius: 26px 26px 0 0;
    max-height: 88vh;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px 26px 16px;
    border-bottom: none;
    animation: slideUpSheet 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .ai-modal-header {
    padding-bottom: 10px;
  }

  .ai-modal-heading {
    font-size: 1.15rem;
  }

  .ai-flow-guide-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 9px 12px;
  }

  .flow-step-arrow {
    display: none;
  }

  .ai-star-rating-section {
    padding: 10px 12px;
  }

  .star-pick-btn {
    font-size: 1.65rem;
    padding: 2px 2px;
  }

  .ai-category-chips-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ai-category-chips-grid::-webkit-scrollbar {
    display: none;
  }

  .ai-category-chip {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 5px 12px;
    font-size: 0.76rem;
  }

  .ai-tone-chips-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ai-tone-chips-grid::-webkit-scrollbar {
    display: none;
  }

  .ai-tone-chip {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .ai-topic-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .btn-ai-regenerate {
    width: 100%;
    justify-content: center;
    padding: 11px;
  }

  .ai-modal-footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
  }

  .btn-post-google {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 0.92rem;
  }

  .ai-footer-left {
    text-align: center;
  }

  .public-fullpage-footer {
    padding: 16px 12px 20px 12px;
    font-size: 0.72rem;
    text-align: center;
  }
}

/* Compact Smartphones (<= 480px) */
@media (max-width: 480px) {
  .public-topbar {
    padding: 8px 12px;
  }

  .topbar-brand {
    gap: 8px;
  }

  .topbar-logo-img {
    height: 28px;
  }

  .topbar-company-name {
    font-size: 0.84rem;
    max-width: 140px;
  }

  .topbar-verified-tag {
    font-size: 0.64rem;
  }

  .topbar-share-btn span {
    display: none;
  }

  .topbar-share-btn {
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex-shrink: 0;
  }

  .executive-profile-grid {
    padding: 0 8px;
    gap: 10px;
    margin-top: 6px;
  }

  .hero-identity-card {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .hero-avatar-img,
  .hero-avatar-fallback {
    width: 58px;
    height: 58px;
  }

  .hero-name {
    font-size: 1.15rem;
  }

  .hero-designation-chip {
    font-size: 0.72rem;
  }

  .hero-bio-text {
    font-size: 0.74rem;
    padding: 0;
  }

  .btn-save-contact {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .quick-mini-actions-grid {
    gap: 4px;
  }

  .mini-action-pill {
    padding: 6px 2px;
    font-size: 0.64rem;
    gap: 2px;
  }

  .mini-action-pill svg {
    width: 12px;
    height: 12px;
  }

  /* Compact Google Review Banner for 480px */
  .review-hero-card {
    padding: 11px 12px !important;
    border-radius: 16px !important;
    gap: 10px !important;
  }

  .review-hero-card .hero-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .review-hero-card .hero-icon-wrapper svg {
    width: 24px !important;
    height: 24px !important;
  }

  .review-hero-card .hero-card-title {
    font-size: 0.88rem !important;
  }

  .review-hero-card .gold-star-rating {
    font-size: 0.78rem !important;
    letter-spacing: 1px !important;
  }

  .review-hero-card .google-action-btn {
    padding: 8px 10px !important;
    font-size: 0.75rem !important;
    border-radius: 10px !important;
  }

  /* 3x3 App Launcher Grid for 480px */
  .social-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 9px !important;
  }

  .social-channel-card {
    padding: 12px 4px !important;
    border-radius: 16px !important;
    gap: 6px !important;
  }

  .channel-icon-badge {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
  }

  .channel-icon-badge svg {
    width: 26px !important;
    height: 26px !important;
  }

  .channel-platform-name {
    font-size: 0.74rem !important;
  }

  .hub-section-block,
  .qr-showcase-station {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .public-fullpage-footer {
    padding: 14px 10px 18px 10px;
    font-size: 0.68rem;
    text-align: center;
  }
}

/* Micro-Screens (<= 360px) */
@media (max-width: 360px) {
  .social-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .social-channel-card {
    padding: 10px 2px !important;
    border-radius: 13px !important;
    gap: 4px !important;
  }

  .channel-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .channel-icon-badge svg {
    width: 22px !important;
    height: 22px !important;
  }

  .channel-platform-name {
    font-size: 0.68rem !important;
  }
}

/* Global Micro-Interactions & Tactile Button Tap Animations */
.btn-save-contact:active,
.mini-action-pill:active,
.social-channel-card:active,
.btn-hero-action:active,
.btn-ai-regenerate:active,
.btn-post-google:active,
.topbar-share-btn:active,
.btn-qr-download:active,
.btn-qr-copy:active,
.btn-lead-submit:active,
.btn-lead-cancel:active,
.floating-lead-btn:active {
  transform: scale(0.92);
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Visitor Lead Capture Popup Modal
   ========================================================================== */

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: leadFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes leadFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lead-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: linear-gradient(175deg, rgba(20, 29, 51, 0.96) 0%, rgba(10, 15, 28, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 45px rgba(99, 102, 241, 0.22);
  padding: 28px;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  animation: leadScaleUp 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes leadScaleUp {
  from {
    transform: scale(0.92) translateY(18px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.lead-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.lead-header-info {
  flex: 1;
  min-width: 0;
}

.lead-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.lead-pill-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.45);
  color: #a5b4fc;
  letter-spacing: 0.2px;
}

.lead-verified-badge {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lead-modal-title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

.lead-modal-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.45;
}

.lead-modal-close-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.6);
  color: #fca5a5;
  transform: rotate(90deg) scale(1.08);
}

/* Lead Form Groups */
.lead-capture-form {
  display: flex;
  flex-direction: column;
}

.lead-form-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-section-group {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-section-group.optional-group {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.lead-section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lead-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #cbd5e1;
}

.lead-tag-required {
  font-size: 0.72rem;
  font-weight: 700;
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
}

.lead-tag-optional {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

.lead-input-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
}

.req-star {
  color: #f87171;
  font-weight: 700;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap .field-icon,
.input-icon-wrap svg {
  position: absolute;
  left: 12px;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
}

/* Ultra High-Contrast Vibrant Accent Colors for Form Icons */
.field-icon.icon-name {
  color: #818cf8 !important;
  filter: drop-shadow(0 0 4px rgba(129, 140, 248, 0.7));
}

.field-icon.icon-phone {
  color: #22c55e !important;
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.7));
}

.field-icon.icon-email {
  color: #38bdf8 !important;
  filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.7));
}

/* High-Contrast Calendar & Date Icons */
.field-icon.icon-dob {
  color: #facc15 !important; /* Bright Neon Yellow/Amber */
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.85));
  stroke-width: 2.4 !important;
}

.field-icon.icon-anniversary {
  color: #f43f5e !important; /* Bright Neon Coral/Rose */
  filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.85));
  stroke-width: 2.4 !important;
}

.field-icon.icon-city {
  color: #c084fc !important;
  filter: drop-shadow(0 0 4px rgba(192, 132, 252, 0.7));
}

.lead-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 11px 12px 11px 38px;
  color: #ffffff;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s ease;
}

/* High-Contrast Calendar Date Input Picker Indicator */
.lead-input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
  color: #ffffff !important;
}

.lead-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) brightness(2.2) drop-shadow(0 0 4px #818cf8);
  opacity: 1 !important;
  padding: 4px;
  border-radius: 6px;
  transform: scale(1.2);
  transition: all 0.2s ease;
}

.lead-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.35);
  filter: invert(1) brightness(3) drop-shadow(0 0 8px #a5b4fc);
}

.lead-input::placeholder {
  color: #94a3b8;
  font-size: 0.84rem;
}

.lead-input:focus {
  border-color: #818cf8;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
}

.input-icon-wrap:focus-within .field-icon,
.input-icon-wrap:focus-within svg {
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px currentColor);
}

/* Grids for inputs */
.lead-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

/* Alert Error Box */
.lead-form-alert {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  margin-top: 12px;
  animation: shakeAlert 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeAlert {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* Modal Actions Footer */
.lead-modal-actions-footer {
  display: flex;
  align-items: center;
  margin-top: 18px;
  width: 100%;
}

.btn-lead-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lead-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.55);
  filter: brightness(1.1);
}

.btn-lead-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Floating Re-Open Button */
.floating-lead-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(99, 102, 241, 0.45);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 22px rgba(99, 102, 241, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-lead-btn:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: #818cf8;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 0 0 30px rgba(99, 102, 241, 0.5);
}

.floating-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.spinner-icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile Responsiveness (Compact Bottom Sheet Modal on <= 640px - No Scroll Design) */
@media (max-width: 640px) {
  .lead-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .lead-modal-container {
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    padding: 10px 14px 16px 14px;
    max-height: 94vh;
    animation: leadSlideUpMobile 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes leadSlideUpMobile {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  /* Compact Drag Bar */
  .sheet-drag-handle {
    padding: 2px 0 6px 0;
  }

  .sheet-drag-bar {
    width: 36px;
    height: 4px;
  }

  /* Compact Header */
  .lead-modal-header {
    margin-bottom: 10px;
    gap: 8px;
    align-items: center;
  }

  .lead-badge-row {
    margin-bottom: 3px;
    gap: 6px;
  }

  .lead-pill-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .lead-verified-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  .lead-modal-title {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .lead-modal-subtitle {
    display: none; /* Hide multi-line subtitle on mobile to save critical screen height */
  }

  .lead-modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .lead-modal-close-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Compact Sections & Inputs */
  .lead-form-sections {
    gap: 8px;
  }

  .lead-section-group {
    padding: 9px 10px;
    border-radius: 14px;
    gap: 6px;
  }

  .lead-section-title-row {
    padding-bottom: 2px;
    margin-bottom: 4px;
  }

  .lead-section-label {
    font-size: 0.7rem;
  }

  .lead-tag-required,
  .lead-tag-optional {
    font-size: 0.65rem;
    padding: 1px 6px;
  }

  .lead-input-field {
    gap: 2px;
  }

  .field-label {
    font-size: 0.72rem;
    margin-bottom: 1px;
  }

  .lead-input {
    padding: 7px 10px 7px 32px;
    font-size: 0.8rem;
    border-radius: 9px;
  }

  .input-icon-wrap .field-icon,
  .input-icon-wrap svg {
    left: 9px;
    width: 14px;
    height: 14px;
  }

  .lead-input[type="date"]::-webkit-calendar-picker-indicator {
    padding: 2px;
    transform: scale(1.05);
  }

  /* Multi-Column Compact Grid on Mobile (2 side-by-side columns) */
  .lead-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .lead-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* City takes full width below DOB & Anniversary */
  .lead-grid-3col .lead-input-field:last-child {
    grid-column: span 2;
  }

  /* Actions Footer (Full Width Single Submit Button) */
  .lead-modal-actions-footer {
    display: flex;
    margin-top: 10px;
    width: 100%;
  }

  .btn-lead-submit {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.86rem;
    border-radius: 11px;
    gap: 6px;
  }

  .btn-lead-submit svg {
    width: 14px;
    height: 14px;
  }

  .floating-lead-btn {
    bottom: 16px;
    right: 16px;
    padding: 7px 13px;
    font-size: 0.78rem;
    border-radius: 999px;
  }
}

/* Micro Mobile Screens (<= 360px width) */
@media (max-width: 360px) {
  .lead-modal-container {
    padding: 8px 10px 14px 10px;
  }

  .lead-grid-2col,
  .lead-grid-3col {
    gap: 6px;
  }

  .lead-input {
    padding: 6px 8px 6px 28px;
    font-size: 0.76rem;
  }

  .field-label {
    font-size: 0.68rem;
  }
}





