/* @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/* Home Layout Styles */
.home-flash {
  z-index: 9999;
}

/* Home theme tokens (self-contained; do not rely on application.css variables) */
:root {
  --primary-color: #6f42c1;
  --primary-dark: #5a3dad;
  --primary-light: #f5f3ff;

  /* Bootstrap overrides */
  --bs-primary: var(--primary-color);
  --bs-primary-rgb: 111, 66, 193;
  --bs-font-sans-serif:
    "Calibri", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #ffffff !important;
  font-family:
    "Instrument Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-size: 19px !important;
  font-weight: 300 !important;
  color: #1a1a2e !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Poppins", sans-serif; */
  color: #3ccb70;
  /* background-image: linear-gradient(45deg, #3ccb70, #1210b2 50%, #d89766 100%); */
  background-color:#000 !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Gradient Background */
.bg-gradient-primary {
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); */
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-light) 100%
  );
}

/* Modern Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes workflowStep {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

.nav-link {
  font-weight: 500 !important;
  font-size: 0.9375rem !important;
}

/* Video/Demo Section */
.demo-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.demo-container {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.workflow-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 300px;
  padding: 2rem 0;
}

.demo-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  opacity: 1;
  transition: all 0.5s ease;
  position: relative;
}

.demo-step.active .demo-card {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  animation: workflowStep 2s ease-in-out infinite;
}

.demo-step:not(.active) .demo-card {
  opacity: 0.6;
  transform: scale(0.95);
}

.demo-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.5s ease;
  width: 100%;
}

.demo-arrow {
  font-size: 2.5rem;
  color: #667eea;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .workflow-demo {
    flex-direction: column;
    gap: 1rem;
  }
  .demo-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  .demo-step {
    max-width: 100%;
    width: 100%;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  border-radius: 1rem;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero-gradient {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* Clipart Styles */
.clipart-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clipart {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Hero illustration - transparent SVG */
.hero-illustration-wrapper {
  position: relative;
  text-align: center;
}

.hero-workflow-illustration {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-illustration-placeholder {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.hero-illustration-placeholder i {
  font-size: 8rem;
  opacity: 0.35;
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  /* background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%); */
  background: linear-gradient(135deg, #ff1563 0%, #feb11e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

/* CTA Button with Transparent Text */
.cta-button {
  background: white;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
  background-image: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Outline Light Button with White Text */
.btn-outline-light {
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  background-color: transparent !important;
}

.btn-outline-light:hover {
  color: white !important;
  border-color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

/* Home Survey Section */
.home-survey-section .home-survey-image-wrap {
  text-align: center;
}

.home-survey-section .home-survey-illustration {
  max-width: 280px;
  height: auto;
}

.home-survey-section .home-survey-badge {
  font-size: 0.9rem;
  font-weight: 600;
}

.home-survey-section .home-survey-benefits {
  margin-bottom: 0;
}

.home-survey-section .home-survey-benefit-item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.home-survey-section .home-survey-benefit-item i {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.home-survey-section .home-survey-cta {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .home-survey-section .home-survey-image-wrap {
    margin-bottom: 2rem;
  }
}

/* Improved spacing and visual hierarchy */
.hero-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Card improvements */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
}

/* Better badge styling */
.badge {
  letter-spacing: 0.01em;
}

/* Improved list items */
.list-unstyled li {
  margin-bottom: 0.75rem;
}

/* Better button consistency */
.btn {
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Improved text colors */
.text-muted {
  color: #64748b !important;
}

/* Better contrast for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a2e;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* Navbar Styles */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 800;
}

/* Brand Logo Styles */
.brand-container {
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.brand-container:hover {
  text-decoration: none;
  transform: scale(1.02);
}

.brand-logo {
  position: relative;
  margin-right: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.brand-container:hover .logo-icon::before {
  left: 100%;
}

.logo-icon i {
  font-size: 1.6rem;
  color: white;
  z-index: 1;
  position: relative;
  font-weight: bold;
}

.brand-container:hover .logo-icon {
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin-top: -2px;
}

.brand-container:hover .brand-name {
  transform: translateX(3px);
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-container:hover .brand-tagline {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .brand-text {
    display: none;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon i {
    font-size: 1.2rem;
  }
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link-purple {
  color: #8b5cf6 !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link-purple:hover {
  color: #7c3aed !important;
}

.nav-link-admin {
  color: #6b7280 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-link-admin:hover {
  color: #4b5563 !important;
}

.nav-link-admin i {
  font-size: 0.875rem;
}

.brand-text-gradient {
  background: linear-gradient(135deg, #10b981 0%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero-section {
  padding-top: 80px;
}

/* Workflow Animation Styles */
.workflow-animation-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-animation {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.approval-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: pulse 2s infinite;
}

.step:nth-child(1) {
  animation-delay: 0s;
}
.step:nth-child(3) {
  animation-delay: 0.5s;
}
.step:nth-child(5) {
  animation-delay: 1s;
}
.step:nth-child(7) {
  animation-delay: 1.5s;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 1.5rem;
  color: white;
}

.step-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  animation: slide 2s infinite;
}

/* Large Workflow Animation */
.workflow-animation-large {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approval-flow-large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 600px;
}

.step-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: bounce 3s infinite;
}

.step-large:nth-child(1) {
  animation-delay: 0s;
}
.step-large:nth-child(3) {
  animation-delay: 0.75s;
}
.step-large:nth-child(5) {
  animation-delay: 1.5s;
}
.step-large:nth-child(7) {
  animation-delay: 2.25s;
}

.step-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
  transition: all 0.3s ease;
}

.step-icon-large:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(111, 66, 193, 0.4);
}

.step-icon-large i {
  font-size: 2rem;
  color: white;
}

.step-label-large {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.flow-arrow-large {
  color: var(--bs-primary);
  font-size: 1.5rem;
  animation: slideLarge 3s infinite;
}

/* Feature Cards */
.feature-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Workflow Steps */
.workflow-step {
  transition: transform 0.3s ease;
}

.workflow-step:hover {
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--bs-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Contact Cards */
.contact-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Footer */
footer {
  background-color: #212529 !important;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

footer h6 {
  color: white !important;
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bs-primary) !important;
}

.social-links a {
  transition: color 0.3s ease;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

.social-links a:hover {
  color: var(--bs-primary) !important;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes slide {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@keyframes slideLarge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .approval-flow {
    flex-direction: column;
    gap: 2rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .approval-flow-large {
    flex-direction: column;
    gap: 2rem;
  }

  .flow-arrow-large {
    transform: rotate(90deg);
  }

  .hero-section {
    padding-top: 100px;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Button Hover Effects */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.shadow-sm {
  transition: box-shadow 0.3s ease;
}

.shadow-sm:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* ===== Streamlined Home Page (Folderit-inspired) ===== */
.home-nav-brand {
  text-decoration: none;
}

.home-nav-brand .navbar-logo {
  height: 40px;
  width: auto;
}

.navbar .nav-link {
  color: #667eea;
  font-weight: 500;
}

/* Hero */
.home-hero {
  padding: 120px 0 80px;
  min-height: auto;
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.home-cta-primary {
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.home-cta-secondary {
  border-radius: 50px;
  border-width: 2px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}

.home-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.home-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.home-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.home-hero-visual {
  text-align: center;
  position: relative;
}

.home-hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.home-hero-placeholder {
  width: 100%;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-placeholder i {
  font-size: 6rem;
  opacity: 0.3;
}

/* Sections */
.home-section {
  padding: 4rem 0;
}

.home-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.home-badge {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.home-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #667eea;
  margin: 0;
}

/* Module Cards */
.home-module-card {
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.home-module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.home-module-workflow {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.home-module-travel {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.home-module-invoice {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.home-module-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.home-module-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.home-module-desc {
  font-size: 0.9rem;
  opacity: 0.95;
  margin: 0;
}

/* Features (alternating layout) */
.home-features {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.home-feature-row {
  margin-bottom: 3rem;
}

.home-feature-row:last-child {
  margin-bottom: 0;
}

.home-feature-visual {
  text-align: center;
}

.home-feature-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.home-feature-placeholder {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-feature-placeholder i {
  font-size: 4rem;
  color: #667eea;
  opacity: 0.3;
}

.home-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.75rem;
}

.home-feature-desc {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.home-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
}

.home-feature-list li i {
  color: #667eea;
  font-size: 1.1rem;
}

/* Stats */
.home-stats {
  padding: 3rem 0;
}

.home-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.home-stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* CTA */
.home-cta {
  padding: 4rem 0;
}

.home-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.home-cta-subtitle {
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.home-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.home-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.home-footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.home-footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.home-footer-social a:hover {
  color: #667eea;
}

.home-footer-heading {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.home-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.home-footer-links a:hover {
  color: #667eea;
}

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

.home-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.home-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.home-footer-bottom a:hover {
  color: #667eea;
}

/* Modern Typography System - Redesigned */
/* Hero Section Typography */
.hero-title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000 !important;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.425rem;
  font-weight: 400;
  line-height: 1.7;
  color: #474b50 !important;
  margin-bottom: 1.5rem;
}

/* Hero Buttons */
.btn-hero-primary {
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #667eea;
  background: white;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Hero Badges */
.badge-hero {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Stats */
.hero-stats {
  font-size: 1.3375rem;
  font-weight: 800;
  color: rgb(25 160 234 / 85%);
}

.hero-stats i {
  font-size: 1rem;
  opacity: 0.8;
}

/* Section Typography */
.section-title {
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.425rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

.section-title-white {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  /* color: white; */
  margin-bottom: 1rem;
}

.section-subtitle-white {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Module Cards */
.module-title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  margin-bottom: 0.5rem;
}

.module-description {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.home-modules-video-card {
  max-width: 1160px;
  border-radius: 24px;
  border: 1px solid #dbeafe;
  background: linear-gradient(140deg, #eef2ff 0%, #f8fafc 45%, #e0f2fe 100%);
  box-shadow: 0 22px 48px rgba(30, 41, 59, 0.12);
  padding: 20px;
}

.home-modules-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.home-modules-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature Typography */
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
}

.feature-title-small {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

/* Info Box Typography */
.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.info-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
}

/* Industry Cards */
.industry-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.industry-description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #64748b;
}

/* Statistics */
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(15, 15, 16, 0.9);
}

/* Benefits */
.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
}

/* Advantages */
.advantage-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.advantage-description {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748b;
}

/* Security */
.security-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.security-description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #64748b;
}

/* CTA Section */
.cta-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  /* color: white; */
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  /* color: rgba(255, 255, 255, 0.95); */
}

.cta-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  /* color: rgba(255, 255, 255, 0.85); */
}

/* Badge Typography */
.badge {
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title,
  .section-title-white,
  .cta-title {
    font-size: 1.75rem;
  }

  .section-subtitle,
  .section-subtitle-white {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title,
  .section-title-white,
  .cta-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Modules Comparison Table */
.modules-comparison-table {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-modules {
  margin-bottom: 0;
  background: white;
  border-collapse: separate;
  border-spacing: 0;
}

.table-modules thead th {
  border: none;
  padding: 0;
  vertical-align: top;
}

.table-modules tbody td {
  border: none;
  padding: 1.25rem 1rem;
  vertical-align: middle;
}

.table-modules tbody tr {
  border-bottom: 1px solid #e9ecef;
}

.table-modules tbody tr:last-child {
  border-bottom: none;
}

.table-modules tbody tr:hover {
  background-color: #f8f9fa;
}

/* Feature Column */
.feature-column {
  width: 30%;
  background: #f8f9fa;
  font-weight: 600;
  color: #1a1a2e;
  padding: 1.5rem 1rem !important;
}

.feature-name {
  font-weight: 600;
  color: #1a1a2e;
}

.feature-name strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.feature-description-table {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Module Headers */
.module-header {
  width: 23.33%;
  padding: 0 !important;
  text-align: center;
}

.module-header.module-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.module-header.module-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.module-header.module-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.module-header-content {
  padding: 2rem 1.5rem;
  color: white;
}

.module-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.module-badge {
  display: inline-block;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.module-header.module-1 .module-badge {
  color: #667eea;
}

.module-header.module-2 .module-badge {
  color: #f5576c;
}

.module-header.module-3 .module-badge {
  color: #00f2fe;
}

.module-title-table {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.module-subtitle-table {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Module Cells */
.module-cell {
  text-align: center;
  padding: 1.25rem 1rem !important;
}

.module-cell i {
  font-size: 1.5rem;
}

.module-cell i.text-success {
  color: #10b981 !important;
}

.module-cell i.text-muted {
  color: #cbd5e1 !important;
}

.module-1-cell {
  background-color: rgba(102, 126, 234, 0.05);
}

.module-2-cell {
  background-color: rgba(245, 87, 108, 0.05);
}

.module-3-cell {
  background-color: rgba(0, 242, 254, 0.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .modules-comparison-table {
    overflow-x: auto;
  }

  .table-modules {
    min-width: 800px;
  }

  .module-header-content {
    padding: 1.5rem 1rem;
  }

  .module-icon-wrapper {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .module-title-table {
    font-size: 1rem;
  }

  .module-subtitle-table {
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .feature-column {
    width: 35%;
    padding: 1rem 0.75rem !important;
  }

  .module-header {
    width: 21.67%;
  }

  .module-header-content {
    padding: 1.25rem 0.75rem;
  }

  .module-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .module-title-table {
    font-size: 0.9375rem;
  }

  .module-subtitle-table {
    font-size: 0.75rem;
  }

  .feature-name strong {
    font-size: 0.9375rem;
  }

  .feature-description-table {
    font-size: 0.8125rem;
  }

  .module-cell {
    padding: 1rem 0.5rem !important;
  }

  .module-cell i {
    font-size: 1.25rem;
  }
}

/* Footer link hover (replaces inline styles) */
.footer-link-hover,
.demo-request-link {
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-link-hover:hover,
.demo-request-link:hover {
  color: #667eea !important;
}

.demo-request-link:hover {
  padding-left: 5px;
}

/* Demo request modal thank you state */
.demo-request-thank-you-icon {
  font-size: 3rem;
}
