/* ==========================================================================
   REAL CRM - ENTERPRISE COMPONENTS (REF-FIXED & PRECISELY STYLED)
   ========================================================================== */

/* Navbar & Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(9, 13, 22, 0.98);
  border-bottom-color: var(--border-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-dark-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  transition: color var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Buttons (Gold Brand Button) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #0F172A;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  border: none;
}

.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.6);
  transform: translateY(-2px);
}

.btn-dark-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border-dark);
}

.btn-dark-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-light-outline {
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.btn-light-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2.4rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   LOFTY ARCH HERO BANNER (COMMON HERO STYLE FOR ALL PAGES)
   ========================================================================== */
.hero-lofty {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #EEF2FF 0%, #FAF5FF 40%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-lofty-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-lofty-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-lofty-grid .hero-ctas {
    justify-content: center;
  }
}

.hero-lofty-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem 0;
}

.hero-lofty-desc {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-arch-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-arch-card {
  width: 100%;
  max-width: 440px;
  height: 480px;
  background: linear-gradient(145deg, #090D16 0%, #1E293B 100%);
  border: 4px solid #FFFFFF;
  border-radius: 220px 220px 24px 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18), 0 0 40px rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-arch-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   SOLUTION COMPARISON CARDS (SPLIT WITH ANIMATION & BACKSHADOW)
   ========================================================================== */
.solution-comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
  .solution-comparison-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.col-challenge {
  background: #FFF8F0;
  border: 1px solid #FEE6D0;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.col-challenge:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(217, 119, 6, 0.18);
  border-color: #F59E0B;
}

.col-solution {
  background: #ECFDF5;
  border: 1px solid #D1FAE5;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.col-solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(5, 150, 105, 0.18);
  border-color: #10B981;
}

.tag-challenge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #D97706;
  margin-bottom: 0.75rem;
}

.tag-solution {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.75rem;
}

.comp-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.comp-desc {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
}

/* ==========================================================================
   LOFTY STYLE ABOUT PAGE COMPONENTS
   ========================================================================== */
.story-arch-card {
  background: linear-gradient(135deg, #090D16 0%, #111827 100%);
  border: 1px solid var(--border-dark);
  border-radius: 120px 120px 24px 24px;
  padding: 2.5rem 2rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.story-arch-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 1.4rem 1.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.lofty-cta-banner {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.35);
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lofty-cta-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   TIMELINE STORY CARDS (ABOUT US JOURNEY)
   ========================================================================== */
.timeline-story-card {
  background: #FFF8F0;
  border: 1px solid #FED7AA;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.12);
}

.timeline-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FFFBEB;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.timeline-step-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
}

/* Quote Banner */
.quote-banner {
  background: #090D16;
  color: #FFFFFF;
  padding: 4.5rem 2rem;
  text-align: center;
}

.quote-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.45;
  max-width: 850px;
  margin: 0 auto 1.5rem auto;
  color: #F8FAFC;
}

.quote-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Impact Stat Counters */
.impact-stat-card {
  text-align: center;
}

.impact-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: #F59E0B;
  line-height: 1;
}

.impact-label {
  font-size: 0.9rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ==========================================================================
   STUNNING 3D FLIP CARDS ("Hover to Flip & Reveal AI Specs")
   ========================================================================== */
.flip-card-wrapper {
  perspective: 1000px;
  height: 380px;
  position: relative;
  margin-bottom: 1.5rem;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.flip-card-wrapper:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.flip-card-front {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.flip-card-back {
  background: #090D16;
  border: 2px solid var(--primary);
  color: #FFFFFF;
  transform: rotateY(180deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.flip-hint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: #FFFBEB;
  color: #D97706;
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
  margin-top: auto;
}

/* ==========================================================================
   AI FEATURE SUITES (ALTERNATING REF-INSPIRED LAYOUT)
   ========================================================================== */
.suite-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

@media (max-width: 992px) {
  .suite-row { grid-template-columns: 1fr; gap: 2rem; }
}

.suite-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.suite-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.suite-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.suite-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1.75rem;
}

.suite-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.suite-list li span {
  color: var(--primary);
  font-weight: 800;
}

.simulator-card {
  background: #090D16;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.simulator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.2);
}

.simulator-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.simulator-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.4rem 0 1.25rem 0;
}

.simulator-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.65;
}

/* ==========================================================================
   PRICING CARDS - 3 DISTINCT CATEGORY DESIGNS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
  margin-top: 2rem;
}

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

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.starter {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.pricing-card.starter:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.pricing-card.featured {
  background: #FFFFFF;
  border: 2px solid var(--primary);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.28);
  transform: scale(1.04);
  z-index: 5;
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.4);
}

.pricing-card.enterprise {
  background: #090D16;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.enterprise:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.35);
}

.badge-plan-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.pricing-card.starter .badge-plan-tag {
  background: #F1F5F9;
  color: #475569;
}

.pricing-card.featured .badge-plan-tag {
  background: var(--gradient-gold);
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pricing-card.enterprise .badge-plan-tag {
  background: rgba(6, 182, 212, 0.15);
  color: #06B6D4;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.pricing-price {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin: 1.25rem 0 0.5rem 0;
}

.pricing-features-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

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

/* ==========================================================================
   TRADITIONAL CRM VS REAL CRM COMPARISON TABLE
   ========================================================================== */
.comparison-table-wrapper {
  margin-top: 3.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

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

.comparison-table th {
  background: #090D16;
  color: #FFFFFF;
  padding: 1.4rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.comparison-table th.brand-col {
  color: var(--primary);
  background: #0D1322;
}

.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.95rem;
  color: #334155;
}

.comparison-table tr:hover td {
  background: #F8FAFC;
}

.cell-check {
  color: #10B981;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cell-cross {
  color: #EF4444;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   STUNNING 3D GLASS POPUP CONTACT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-3d-card {
  background: linear-gradient(145deg, #0D1322 0%, #060911 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 30px 80px rgba(245, 158, 11, 0.35), 0 0 40px rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-3d-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #0F172A;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark-secondary);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

/* Footer */
.footer {
  background: #060911;
  color: #9CA3AF;
  padding: 5rem 0 2.5rem 0;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 4rem;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.92rem;
}

.footer-links a {
  color: #9CA3AF;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #6B7280;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  color: #0F172A;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   3D AI ROBOT MASCOT & VISUAL COMPONENT STYLES
   ========================================================================== */
.robot-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.15);
  background: var(--bg-dark-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.robot-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(245, 158, 11, 0.3);
}

.robot-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s ease;
}

.robot-hero-card:hover .robot-hero-img {
  transform: scale(1.03);
}

.robot-overlay-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.85rem 1.25rem;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.robot-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.robot-float-anim {
  animation: float-robot 4s ease-in-out infinite;
}

@keyframes float-robot {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.robot-card-sm {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  position: relative;
  background: #090D16;
}

.robot-card-sm img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ==========================================================================
   AI FEATURE CARDS - FUTURISTIC ANIMATION ENGINE
   ========================================================================== */
.ai-feature-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

/* Futuristic Animated Laser Scanline Beam */
.ai-feature-card::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0) 0%,
    rgba(245, 158, 11, 0.08) 45%,
    rgba(6, 182, 212, 0.25) 50%,
    rgba(245, 158, 11, 0.08) 55%,
    rgba(245, 158, 11, 0) 100%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease-out;
  pointer-events: none;
  z-index: 2;
}

.ai-feature-card:hover::before {
  transform: rotate(30deg) translateY(100%);
}

/* Glowing Border Beam on Hover */
.ai-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #F59E0B, #06B6D4, #D97706);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ai-feature-card:hover::after {
  opacity: 1;
}

.ai-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.18), 0 0 25px rgba(6, 182, 212, 0.12);
}

/* Animated Badge Icon Container */
.ai-icon-badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  z-index: 3;
}

.ai-feature-card:hover .ai-icon-badge {
  transform: scale(1.15) rotate(6deg);
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Pulsing Aura Ring around Icon */
.ai-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px dashed rgba(245, 158, 11, 0.4);
  animation: badge-spin-ring 12s linear infinite;
  opacity: 0.6;
}

.ai-feature-card:hover .ai-icon-ring {
  border-color: #06B6D4;
  animation: badge-spin-ring 4s linear infinite;
  opacity: 1;
}

@keyframes badge-spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Staggered entrance slide-up reveal */
.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   AI WORKFORCE SHOWCASE CARDS - HOLOGRAPHIC ANIMATIONS
   ========================================================================== */
.robot-card-ai-animated {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.robot-card-ai-animated:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.25);
}

.robot-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 270px;
}

.robot-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.robot-card-ai-animated:hover .robot-card-img-wrapper img {
  transform: scale(1.08);
}

/* Diagnostic Laser Beam Sweep Overlay */
.robot-card-scanline {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 182, 212, 0.4) 50%,
    rgba(245, 158, 11, 0.2) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.robot-card-ai-animated:hover .robot-card-scanline {
  opacity: 1;
  animation: scanline-robot-sweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scanline-robot-sweep {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Pulsing Neon Status Badges */
.robot-status-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(9, 13, 22, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 4;
  transition: all 0.3s ease;
}

.robot-status-badge.telecaller-badge {
  border: 1px solid rgba(6, 182, 212, 0.6);
  color: #06B6D4;
}

.robot-status-badge.whatsapp-badge {
  border: 1px solid rgba(16, 185, 129, 0.6);
  color: #10B981;
}

.robot-status-badge.architect-badge {
  border: 1px solid rgba(37, 99, 235, 0.6);
  color: #60A5FA;
}

.robot-card-ai-animated:hover .robot-status-badge {
  transform: scale(1.08);
  box-shadow: 0 0 20px currentColor;
}

/* Interactive CTA Link Arrow Bounce */
.robot-cta-link {
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.robot-card-ai-animated:hover .robot-cta-link {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.robot-card-ai-animated:hover .robot-cta-link span {
  transform: translateX(6px);
}

.robot-cta-link span {
  transition: transform 0.3s ease;
}

/* ==========================================================================
   ACTUAL CRM FEATURE & PROBLEM-SOLUTION AI ANIMATED CARDS
   ========================================================================== */
.solution-comparison-card-ai {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .solution-comparison-card-ai { grid-template-columns: 1fr; }
}

.challenge-card-ai {
  position: relative;
  background: #FFFBEB;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.challenge-card-ai:hover {
  transform: translateY(-5px);
  border-color: #F59E0B;
  box-shadow: 0 16px 35px rgba(245, 158, 11, 0.15);
}

.solution-card-ai {
  position: relative;
  background: #F0FDF4;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.solution-card-ai:hover {
  transform: translateY(-5px);
  border-color: #10B981;
  box-shadow: 0 16px 35px rgba(16, 185, 129, 0.18), 0 0 25px rgba(16, 185, 129, 0.12);
}

/* Diagnostic Laser Scanline on Solution Cards */
.solution-card-ai::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(16, 185, 129, 0.05) 45%,
    rgba(16, 185, 129, 0.25) 50%,
    rgba(16, 185, 129, 0.05) 55%,
    transparent 100%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease-out;
  pointer-events: none;
}

.solution-card-ai:hover::before {
  transform: rotate(30deg) translateY(100%);
}

.badge-tag-challenge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.badge-tag-solution {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* CRM Live Metrics Header Banner */
.crm-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

.crm-metric-pill {
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.crm-metric-pill:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.crm-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Solution Card Bullet Specs List */
.comp-solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: #065F46;
}

.comp-solution-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.comp-solution-list li span {
  color: #10B981;
  font-weight: 800;
}

/* ==========================================================================
   HOMEPAGE ABOUT US AI EXPERIENCE & ORBITAL INTEGRATIONS STYLES
   ========================================================================== */
.about-experience-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.25);
  background: var(--bg-dark-card);
  animation: float-slow 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.about-experience-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 45px rgba(245, 158, 11, 0.4);
}

.about-experience-card img {
  transition: transform 0.6s ease;
}

.about-experience-card:hover img {
  transform: scale(1.07) rotate(1deg);
}

.about-quote-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.98), rgba(217, 119, 6, 0.95));
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  color: #0F172A;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: float-counter 5s ease-in-out infinite;
  z-index: 4;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-counter {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(6px); }
}

.about-quote-badge::before {
  content: '“';
  font-size: 3.5rem;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 15px;
  color: rgba(15, 23, 42, 0.15);
  font-family: Georgia, serif;
}

/* Integrations Orbit Ring Animation Engine */
.integrations-orbit-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 28px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.orbit-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring-outer {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 2px dashed rgba(16, 185, 129, 0.35);
  border-radius: 50%;
  animation: orbit-spin-cw 30s linear infinite;
}

.orbit-ring-middle {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px dashed rgba(6, 182, 212, 0.35);
  border-radius: 50%;
  animation: orbit-spin-ccw 20s linear infinite;
}

.orbit-center-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #10B981;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-weight: 800;
  font-size: 0.9rem;
  color: #059669;
}

.orbit-node-pill {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  white-space: nowrap;
}

@keyframes orbit-spin-cw {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbit-spin-ccw {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ==========================================================================
   AI CTA BANNER CARD - OBSIDIAN & AMBER GOLD ANIMATED SHOWCASE
   ========================================================================== */
.ai-cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.98) 0%, rgba(9, 13, 22, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(245, 158, 11, 0.18);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.ai-cta-banner-card:hover {
  transform: translateY(-6px);
  border-color: #F59E0B;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(245, 158, 11, 0.3);
}

.ai-cta-scanline {
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(6, 182, 212, 0.08) 45%,
    rgba(245, 158, 11, 0.25) 50%,
    rgba(6, 182, 212, 0.08) 55%,
    transparent 100%
  );
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.8s ease-out;
  pointer-events: none;
  z-index: 2;
}

.ai-cta-banner-card:hover .ai-cta-scanline {
  transform: rotate(25deg) translateY(100%);
}

.ai-cta-robot-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-cta-robot-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 158, 11, 0.5);
  animation: badge-spin-ring 14s linear infinite;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

.ai-cta-robot-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F59E0B;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.ai-cta-banner-card:hover .ai-cta-robot-img {
  transform: scale(1.08) rotate(3deg);
}

.ai-cta-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 2rem 0;
}

.ai-cta-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  color: #D1D5DB;
  font-weight: 600;
}

.ai-cta-list li span {
  color: #10B981;
  font-weight: 900;
}

/* ==========================================================================
   AI ROBOT SCROLL CURSOR FOLLOWER - PURE 3D ROBOT GRAPHIC (TRANSPARENT SVG)
   ========================================================================== */
.ai-scroll-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 14px rgba(6, 182, 212, 0.8));
}

.ai-scroll-cursor-follower img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ai-scroll-cursor-follower.active-scrolling {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}











