/* Ultra-modern E-Gatepay design system */
:root {
  --primary-color: #f04f36;
  --secondary-color: #f89043;
  --accent-color: #b096bf;
  --section-heading-color: #f59e24;
  --dark-color: #0f172a;
  --light-color: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --font-heading: "Sora", sans-serif;
  --font-body: "Poppins", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  font-size: 2.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1.875rem;
  font-weight: 600;
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

h6 {
  font-size: 1.25rem;
  font-weight: 600;
}

.text-primary {
  color: var(--primary-color) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text {
  color: var(--section-heading-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  color: var(--section-heading-color);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Ultra-modern Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
}

.brand-logo {
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.nav-link {
  color: var(--gray-600) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem !important;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(240, 79, 54, 0.05);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link-alt {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  transition: var(--transition);
}

.nav-link-alt:hover {
  color: var(--primary-color);
  background-color: rgba(240, 79, 54, 0.05);
}

/* Premium Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--border-radius);
  padding: 1rem 2rem;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e03e2a 100%);
  color: var(--light-color);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--light-color);
}

.btn-outline-secondary {
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  background: transparent;
}

.btn-outline-secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--gray-800);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Revolutionary Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-color) 50%, var(--gray-50) 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 15%;
  animation-delay: 10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: 15s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(240, 79, 54, 0.1);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(240, 79, 54, 0.2);
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero-subtitle {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 550px;
  text-align: center;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-pill i {
  color: var(--primary-color);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Enhanced Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;

}

.hero-image-container,
.about-image-container,
.features-image-container,
.dashboard-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);

}

.hero-image-container::before,
.about-image-container::before,
.features-image-container::before,
.dashboard-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(240, 79, 54, 0.1), rgba(248, 144, 67, 0.1));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.hero-image-container:hover::before,
.about-image-container:hover::before,
.features-image-container:hover::before,
.dashboard-image-container:hover::before {
  opacity: 1;
}

.hero-image,
.about-image,
.features-image,
.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-2xl);
  transition: var(--transition);
  object-fit: cover;
  display: block;
  opacity: 1;
  visibility: visible;
}

.hero-image:hover,
.about-image:hover,
.features-image:hover {
  transform: scale(1.02);
}

.floating-ui-card {
  position: absolute;
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  animation: floatCard 8s ease-in-out infinite;
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
}

.card-success {
  top: 15%;
  right: -15%;
  animation-delay: 0s;
}

.card-analytics {
  bottom: 25%;
  left: -15%;
  animation-delay: 2.5s;
}

.card-security {
  top: 50%;
  right: -10%;
  animation-delay: 5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.ui-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  font-size: 1.25rem;
}

.ui-card-content {
  display: flex;
  flex-direction: column;
}

.ui-card-title {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.ui-card-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* Enhanced About Section */
.about-section {
  padding: 8rem 0;
  background: var(--light-color);
  position: relative;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  object-fit: cover;
  display: block;
  opacity: 1;
  visibility: visible;
}

.floating-metric {
  position: absolute;
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
  animation: floatMetric 6s ease-in-out infinite;
  border: 1px solid var(--gray-200);
}

.metric-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.metric-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 3s;
}

@keyframes floatMetric {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.dotted-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
}

.about-features {
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateX(5px);
  background: var(--light-color);
  box-shadow: var(--shadow-md);
}

.feature-icon-small {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-content h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.9rem;
}

/* Modern Services Section */
.services-section {
  padding: 8rem 0;
  background: var(--gray-50);
}

.service-card {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(240, 79, 54, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--light-color);
  font-size: 1.75rem;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(240, 79, 54, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(240, 79, 54, 0.2);
}

/* Enhanced Industries Section */
.industries-section {
  padding: 8rem 0;
  background: var(--light-color);
}

.industry-card {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.industry-card:hover::after {
  opacity: 0.05;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light-color);
  font-size: 2rem;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.industry-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.industry-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: var(--gray-50);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Enhanced Onboarding Section */
.onboarding-section {
  padding: 8rem 0;
  background: var(--gray-50);
  position: relative;
}

.onboarding-step {
  text-align: center;
  position: relative;
  padding: 2rem;
  background: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.onboarding-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(240, 79, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition);
}

.onboarding-step:hover .step-icon {
  background: var(--primary-color);
  color: var(--light-color);
  transform: scale(1.1);
}

.onboarding-step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.onboarding-step p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-feature {
  background: var(--gray-50);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.onboarding-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  z-index: -1;
}

.connector-line {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}

/* Modern Features Section */
.features-section {
  padding: 8rem 0;
  background: var(--light-color);
}

.features-content {
  padding-right: 2rem;
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  background: var(--light-color);
}

.feature-check {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--success-color), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.feature-content h6 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

.features-visual {
  position: relative;
}

.features-image-container {
  position: relative;
}

.features-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  object-fit: cover;
  display: block;
  opacity: 1;
  visibility: visible;
}

.floating-benefit {
  position: absolute;
  background: var(--light-color);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  animation: floatBenefit 8s ease-in-out infinite;
  border: 1px solid var(--gray-200);
}

.benefit-1 {
  top: 20%;
  right: -15%;
  animation-delay: 0s;
}

.benefit-2 {
  top: 50%;
  left: -15%;
  animation-delay: 2.5s;
}

.benefit-3 {
  bottom: 20%;
  right: -10%;
  animation-delay: 5s;
}

@keyframes floatBenefit {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.benefit-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 0.875rem;
}

/* Enhanced Dashboard Section */
.dashboard-section {
  padding: 8rem 0;
  background: var(--gray-50);
}

.dashboard-preview {
  position: relative;
  margin-top: 3rem;
}

.dashboard-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-2xl);
}

.dashboard-image {
  width: 100%;
  display: block;
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 79, 54, 0.1), rgba(248, 144, 67, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dashboard-stat {
  background: var(--light-color);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Premium Footer */
.footer-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--gray-300);
  padding: 6rem 0 2rem;
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--gray-700);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter {
  background: var(--gray-800);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  margin: 3rem 0;
  border: 1px solid var(--gray-700);
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.newsletter-description {
  color: var(--gray-400);
  margin-bottom: 0;
}

.newsletter-form .form-control {
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  color: var(--light-color);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .form-control:focus {
  background: var(--gray-600);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(240, 79, 54, 0.1);
  color: var(--light-color);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-divider {
  border-color: var(--gray-700);
  margin: 2rem 0 1.5rem;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

.footer-tagline {
  color: var(--gray-400);
  font-style: italic;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-color);
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {

  .floating-ui-card,
  .floating-metric,
  .floating-benefit {
    display: none;
  }
}

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

  .section-title {
    font-size: 2.5rem;
  }

  .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .dotted-pattern {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-visual {
    position: relative;
    overflow: hidden;
  }

  .features-visual {
    position: relative;
    overflow: hidden;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-actions {}

  .hero-stats {}

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .card-success {
    right: 0;
  }

  .card-analytics {
    left: 0;
  }

  .card-security {
    right: 0;
  }

  .metric-1 {
    right: 0;
  }

  .metric-2 {
    left: 0;
  }

  .benefit-1 {
    right: 0;
  }

  .benefit-2 {
    left: 0;
  }

  .benefit-3 {
    right: 0;
  }

  .dotted-pattern {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .floating-ui-card,
  .floating-metric,
  .floating-benefit,
  .dotted-pattern,
  .dashboard-stats {
    display: none;
  }
}

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

  .section-title {
    font-size: 2.5rem;
  }

  .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-actions {}

  .hero-stats {}

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Added styles for inner pages and full-width card images */

/* Inner Page Styles */
.inner-page-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  color: var(--light-color);
}

.inner-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1926&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

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

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: var(--light-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: rgba(255, 255, 255, 0.6);
}

/* Full Width Card Images */
.service-card img,
.industry-card img,
.onboarding-step img,
.feature-item img,
.blog-card img,
.payment-method img,
.merchant-solution img,
.resource-card img,
.service-card-image {
  width: 100% !important;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.blog-card img {
  height: 180px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-bottom: 0;
}

.payment-method img,
.merchant-solution img {
  height: 160px;
}

/* Blog/Resource Cards */
.blog-card {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Payment Method Cards */
.payment-method {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.payment-method h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.payment-method p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Merchant Solution Cards */
.merchant-solution {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.merchant-solution:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.merchant-solution h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.merchant-solution p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-features {
  list-style: none;
  padding: 0;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.solution-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Contact Form Styles */
.contact-form {
  background: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

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

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(240, 79, 54, 0.1);
}

.form-control.is-invalid {
  border-color: var(--error-color);
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light-color);
  font-size: 1.5rem;
}

.contact-info-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.contact-info-card p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* FAQ Styles */
.faq-item {
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--gray-50);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-card {
  background: var(--light-color);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--light-color);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.pricing-period {
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.pricing-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .inner-page-banner {
    padding: 6rem 0 3rem;
  }

  .service-card img,
  .industry-card img,
  .blog-card img,
  .payment-method img,
  .merchant-solution img {
    height: 150px;
  }

  .contact-form {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-section {
    margin-top: 70px;
  }

  .hero-stats {
    gap: 2rem;
  }

  .service-card img,
  .industry-card img,
  .blog-card img {
    height: 120px;
  }
}

/* =================================
   PAGE-SPECIFIC STYLES
   ================================= */

/* Merchants Page Styles */
.merchants-page .merchant-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.merchants-page .merchant-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15) !important;
}

.merchants-page .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Our Company Page Styles */
.company-page .stats-card {
  transition: all 0.3s ease;
}

.company-page .stats-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Contact Us Page Styles */
.contact-page .contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-page .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-page .contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-page .form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-page .contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-page .office-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-page .office-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-page .map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Resources Page Styles */
.resources-page .blog-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.resources-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.resources-page .blog-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.resources-page .blog-date {
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 500;
}

.resources-page .blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #2c3e50;
}

.resources-page .blog-title:hover {
  color: #ff6b35;
}

.resources-page .interview-card {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.resources-page .interview-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.resources-page .play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

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

/* Global Animation Keyframes */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Pricing Rate Styles */
.pricing-rate {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
  font-family: var(--font-heading);
}

/* Hero Stats Styles */
.hero-stat {
  text-align: center;
  padding: 1rem;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-stat p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Text Color Utilities */
.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}