/* --- Base Styling & Variables for Landing Page --- */
.landing-wrapper {
  background-color: #0b0f19;
  color: #f3f4f6;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  line-height: 1.6;
}

/* --- Animated Background Orbs --- */
.gradient-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: plus-lighter;
}
.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
  top: -100px;
  right: 5%;
  animation: floatOrb 12s infinite alternate ease-in-out;
}
.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  top: 35%;
  left: -100px;
  animation: floatOrb 15s infinite alternate-reverse ease-in-out;
}
.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #a855f7 0%, rgba(168, 85, 247, 0) 70%);
  bottom: 8%;
  right: -50px;
  animation: floatOrb 18s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}

/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.toast-container.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.custom-toast {
  background: rgba(19, 27, 46, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-toast i {
  color: #10b981;
  font-size: 20px;
}
.custom-toast span {
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
}

/* --- Sticky Navigation Bar --- */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-symbol {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 4px;
}
.logo-symbol .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: #ffffff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn-login-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.2s;
}
.btn-login-link:hover {
  color: #ffffff;
}
.btn-cta-nav {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.btn-dashboard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-dashboard:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 50px 0;
}
.hero-container {
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 8px #6366f1;
}
.badge-text {
  font-size: 11px;
  font-weight: 700;
  color: #c7d2fe;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}
.gradient-text {
  background: linear-gradient(to right, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 19px;
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto 38px auto;
  font-weight: 400;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.btn-primary-hero {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}
.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3f4f6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.2s;
}
.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* --- Mockup Window Frame (Elegant & Professional) --- */
.mockup-wrapper {
  perspective: 1200px;
  margin-top: 30px;
}
.mockup-image-frame {
  background: #0f1422;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-align: left;
}
.main-hero-mockup {
  transform: rotateX(4deg) scale(0.97);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 100px rgba(99, 102, 241, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-hero-mockup:hover {
  transform: rotateX(0) scale(1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 120px rgba(99, 102, 241, 0.2);
}
.frame-header {
  background: #151b2d;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.window-controls {
  display: flex;
  gap: 6px;
}
.window-controls .control {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.window-controls .red { background-color: #ef4444; }
.window-controls .yellow { background-color: #f59e0b; }
.window-controls .green { background-color: #10b981; }
.mockup-title {
  margin: 0 auto;
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transform: translateX(-16px);
}
.tab-name-mini {
  margin-left: 14px;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}
.image-container {
  position: relative;
  background: radial-gradient(circle at top left, #161f38, #0c1020);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-image {
  width: 100%;
  height: auto; /* Let image define height */
  display: block;
}

/* --- Placeholder Fallbacks --- */
.placeholder-fallback {
  padding: 40px;
  text-align: center;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.placeholder-fallback i {
  font-size: 42px;
  color: #6366f1;
  margin-bottom: 16px;
}
.placeholder-fallback h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.placeholder-fallback p {
  font-size: 13px;
  max-width: 320px;
  margin-bottom: 20px;
}
.inner-icon {
  width: 68px;
  height: 68px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}
.inner-icon i {
  font-size: 28px;
  margin: 0;
}
.simulated-dashboard-ui {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 250px;
  align-items: center;
  margin-top: 10px;
}
.simulated-dashboard-ui .line-x {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.simulated-dashboard-ui .line-x.w-75 { width: 75%; }
.simulated-dashboard-ui .line-x.w-50 { width: 50%; }
.simulated-dashboard-ui .line-x.w-25 { width: 25%; }

/* --- Social Proof & Stats --- */
.social-proof-section {
  padding: 50px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(17, 24, 39, 0.2);
}
.proof-label {
  font-size: 11px;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
.stat-item {
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-item h3 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.stat-item p {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

/* --- alternating Feature Showcases --- */
.feature-showcase-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}
.section-header {
  max-width: 700px;
  margin: 0 auto 80px auto;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #ffffff;
}
.section-subtitle {
  font-size: 16px;
  color: #9ca3af;
}
.showcase-row {
  display: flex;
  margin-bottom: 100px;
  gap: 48px;
}
.showcase-row:last-child {
  margin-bottom: 0;
}
.showcase-content {
  padding-right: 20px;
}
.tag-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.text-indigo { color: #818cf8; }
.text-cyan { color: #22d3ee; }
.text-purple { color: #a78bfa; }
.text-rose { color: #fb7185; }
.text-green { color: #34d399; }
.text-orange { color: #fb923c; }
.text-blue { color: #60a5fa; }

.showcase-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.showcase-text {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 28px;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-list li i {
  font-size: 16px;
  margin-top: 2px;
}
.benefit-list li span {
  font-size: 14px;
  color: #d1d5db;
}
.benefit-list li span strong {
  color: #ffffff;
}
.feature-mock {
  width: 100%;
}

/* --- Interactive ERP Explorer Section --- */
.explorer-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.explorer-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.explorer-tabs {
  background: #0f1624;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.explorer-tabs button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #6b7280;
  padding: 20px 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.explorer-tabs button i {
  font-size: 18px;
}
.explorer-tabs button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}
.explorer-tabs button.active {
  color: #6366f1;
  border-bottom-color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}
.explorer-content-panel {
  padding: 40px;
}
.explorer-tab-pane {
  display: flex;
  gap: 40px;
  align-items: center;
  /* Removed Angular *ngIf, so only one pane will be visible by default */
}
.pane-details {
  flex: 1.2;
}
.pane-details h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.lead-desc {
  font-size: 15px;
  color: #818cf8;
  font-weight: 500;
  margin-bottom: 16px;
}
.pane-details p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
}
.menu-structure-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px;
}
.box-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.menu-badge:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: scale(1.03);
}
.dot-indicator {
  font-size: 6px;
  color: #6366f1;
}
.pane-visual {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-fallback {
  text-align: center;
  color: #4b5563;
  padding: 30px;
}
.visual-fallback i {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  color: rgba(99, 102, 241, 0.3);
}
.visual-fallback span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-badge-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.badge-pricing {
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.new-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.new-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.new-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.new-card.featured {
  border-color: #6366f1;
  background: linear-gradient(180deg, #111827 0%, #1e1b4b 100%);
}
.popular-ribbon-new {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #6366f1, #818cf8);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.new-card .plan-desc {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
  min-height: 40px;
}
.new-card .price-container {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}
.new-card .currency {
  font-size: 20px;
  font-weight: 600;
  color: #9ca3af;
  margin-top: 6px;
}
.new-card .current-price {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.new-card .price-period {
  font-size: 14px;
  color: #6b7280;
  align-self: flex-end;
  margin-bottom: 8px;
}
.monthly-equivalent {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}
.new-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 32px;
}
.new-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d1d5db;
}
.new-feature-list li i {
  font-size: 18px;
}
.new-feature-list .text-primary { color: #818cf8; }
.new-feature-list .text-success { color: #34d399; }

.btn-plan-new {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-plan-new.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-plan-new.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-plan-new.solid {
  background: #6366f1;
  border: 1px solid #6366f1;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.btn-plan-new.solid:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* --- Free Trial Banner --- */
.free-trial-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
}
.banner-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.banner-subtitle {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 24px;
}
.banner-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.banner-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-size: 15px;
  font-weight: 500;
}
.banner-features i {
  font-size: 18px;
}

/* --- Add-On Pricing Section --- */
.addon-pricing-section {
  margin-top: 80px;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.addon-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.addon-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #818cf8;
}
.addon-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.addon-price {
  font-size: 20px;
  font-weight: 700;
  color: #6366f1;
}
.addon-price span {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* --- Trust & Value Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
.trust-card i {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.trust-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 18px;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 40px;
}

.faq-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.custom-accordion .accordion-item {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px !important;
  margin-bottom: 12px;
}
.custom-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  border-radius: 12px !important;
  box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
}
.custom-accordion .accordion-button::after {
  filter: invert(1) grayscale(1) brightness(2);
}
.custom-accordion .accordion-body {
  color: #9ca3af;
  font-size: 14px;
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #6366f1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}
.contact-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
}
.contact-desc {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 40px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.info-item:hover .info-icon {
  background: rgba(99, 102, 241, 0.2);
  transform: rotate(5deg) scale(1.05);
}
.info-icon i {
  color: #818cf8;
  font-size: 20px;
}
.info-content {
  display: flex;
  flex-direction: column;
}
.info-content span {
  font-size: 12px;
  color: #6b7280;
}
.info-content strong {
  font-size: 15px;
  color: #ffffff;
}
.contact-form-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.contact-form-card .form-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.contact-form-card .form-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 28px;
}
.landing-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 8px;
}
.landing-input {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  font-size: 14px;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  transition: all 0.2s;
}
.landing-input:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15) !important;
}
.btn-submit-contact {
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.btn-submit-contact:hover:not(:disabled) {
  background: #4f46e5;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.btn-submit-contact:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Footer Section --- */
.landing-footer {
  background: #090c15;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 10;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.brand-brief {
  font-size: 13px;
  color: #6b7280;
  margin-top: 10px;
}
.footer-links-group {
  display: flex;
  gap: 32px;
}
.footer-links-group a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: #ffffff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
}
.domain-footer {
  font-weight: 600;
  color: #6b7280;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL EFFECTS
   ========================================================================== */

/* --- On Load Keyframe Animations --- */
.load-fade-down {
  animation: loadFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.load-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: loadSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.load-scale-in {
  opacity: 0;
  transform: rotateX(4deg) scale(0.9) translateY(40px);
  animation: loadScaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Progressive Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

@keyframes loadFadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loadSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loadScaleIn {
  from { opacity: 0; transform: rotateX(4deg) scale(0.9) translateY(40px); }
  to { opacity: 1; transform: rotateX(4deg) scale(0.97) translateY(0); }
}

/* --- Scroll Reveal Classes (Driven by IntersectionObserver) --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for scroll reveal grids */
.reveal-on-scroll.delay-100 { transition-delay: 100ms; }
.reveal-on-scroll.delay-200 { transition-delay: 200ms; }
.reveal-on-scroll.delay-300 { transition-delay: 300ms; }
.reveal-on-scroll.delay-400 { transition-delay: 400ms; }

/* Slide specific scroll reveals */
.reveal-slide-left {
  transform: translateX(-40px);
}
.reveal-slide-right {
  transform: translateX(40px);
}
.reveal-slide-left.revealed,
.reveal-slide-right.revealed {
  transform: translateX(0);
}

/* --- Micro-interactions (Pulse, Bounce, Fade) --- */
.animate-pulse {
  animation: pulseLight 3s infinite ease-in-out;
}
.animate-pulse-soft {
  animation: pulseSoft 4s infinite ease-in-out;
}
.animate-bounce-soft {
  animation: bounceSoft 3s infinite ease-in-out;
}

@keyframes pulseLight {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Explorer Pane Fade-in switch animation */
.pane-fade-in {
  animation: paneFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes paneFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 46px;
  }
  .showcase-row {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 80px;
  }
  .showcase-row .col-lg-6 {
    width: 100%;
  }
  .explorer-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
  .explorer-tab-pane {
    flex-direction: column;
    gap: 30px;
  }
  .new-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-links-group {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .explorer-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .explorer-content-panel {
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .new-pricing-grid {
    grid-template-columns: 1fr;
  }
  .addon-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .banner-features {
    flex-direction: column;
    align-items: center;
  }
  .free-trial-banner {
    padding: 24px;
  }
}
