/* Reset and base styles */

@media only screen and (max-width: 600px) 
{
.copyright
{
 font-size:13px !important; 
}
            
.legal-link
{
  font-weight: 100 !important;
} 
    
}

.footer-cta {
  text-align: center; /* centers the anchor itself if it's inline-block */
  margin-top: 1.5rem;
}

.footer-cta .cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb; /* Example color */
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 250px;
}

.footer-cta .cta-link span {
  display: block;
  text-align: center;
}


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

.testimonial-quote::before
{
left:-32px !important;
}

.testimonial-quote
{
margin-left:20px !important;

}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
  padding-top: 4rem; /* Account for fixed navbar height */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utility classes */
.hidden {
  display: none !important;
}
.text-blue {
  color: #2563eb;
}
.text-orange {
  color: #f97316;
}
.text-green {
  color: #16a34a;
}
.full-width {
  width: 100%;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-outline {
  background-color: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

.btn-orange {
  border-color: #f97316;
  color: #f97316;
}

.btn-orange:hover {
  background-color: #fff7ed;
}

.btn-large {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

/* Navigation - Remove duplicate styles, use shared-components.css */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: #f3f4f6;
}

.mobile-menu-btn i {
  font-size: 1.25rem;
  color: #374151;
}



.mobile-menu:not(.hidden) {
  opacity: 1;
  visibility: visible;
}



.mobile-menu:not(.hidden) .mobile-menu-content {
  transform: scale(1);
}

.mobile-nav-link {
  padding: 1rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  text-align: center;
}

.mobile-nav-link:hover {
  background-color: #f3f4f6;
}

.mobile-btn {
  margin-top: 0.5rem;
}

.mobile-nav-link:hover {
  color: #2563eb;
}

.mobile-menu-buttons {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hero Section */
.hero-section {
  /*background: linear-gradient(to bottom right, #eff6ff, #fff7ed);
  padding: 5rem 2rem;
  position: relative;
  padding-top: 4.5rem;*/
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom:80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.feature-showcase {
  background-color: white;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-question {
  margin-bottom: 1rem;
  color: #6b7280;
}

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

.feature-icon {
  color: #16a34a;
}

.feature-text {
  color: #16a34a;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.hero-buttons {
  /*display: flex;
  gap: 1rem;
  flex-wrap: wrap;*/
}

/* Hero Visual */
.hero-visual {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: 0;
}

.dashboard-mockup-hero {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.dashboard-header-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.window-controls-hero {
  display: flex;
  gap: 0.5rem;
}

.control-hero {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-hero.red {
  background-color: #ff5f57;
}
.control-hero.yellow {
  background-color: #ffbd2e;
}
.control-hero.green {
  background-color: #28ca42;
}

.dashboard-title-hero {
  font-size: 1rem;
  color: #9ca3af;
  font-weight: 500;
}

.stats-row-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card-hero {
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.stat-card-hero.purple {
  background-color: #e0e7ff;
}
.stat-card-hero.green {
  background-color: #d1fae5;
}
.stat-card-hero.orange {
  background-color: #fed7d7;
}

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

.stat-card-hero.purple .stat-value-hero {
  color: #5b21b6;
}
.stat-card-hero.green .stat-value-hero {
  color: #047857;
}
.stat-card-hero.orange .stat-value-hero {
  color: #dc2626;
}

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

.stat-card-hero.purple .stat-label-hero {
  color: #6d28d9;
}
.stat-card-hero.green .stat-label-hero {
  color: #065f46;
}
.stat-card-hero.orange .stat-label-hero {
  color: #b91c1c;
}

.task-list-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.task-item-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.task-dot-hero {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.task-dot-hero.green {
  background-color: #10b981;
}
.task-dot-hero.blue {
  background-color: #3b82f6;
}
.task-dot-hero.orange {
  background-color: #f59e0b;
}

.task-text-hero {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.floating-element-hero {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ai-alert-hero {
  background-color: #10b981;
  top: -0.75rem;
  right: -0.75rem;
}

.live-update-hero {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  bottom: -0.75rem;
  left: -0.75rem;
}

/* Trusted Section */
.trusted-section {
  background-color: white;
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #4b5563;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  transition: background-color 0.15s ease;
}

.industry-item:hover {
  background-color: #f9fafb;
}

.industry-icon {
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 50%;
  transition: transform 0.15s ease;
}

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

.industry-icon.blue {
  color: #2563eb;
}
.industry-icon.orange {
  color: #ea580c;
}
.industry-icon.green {
  color: #16a34a;
}
.industry-icon.purple {
  color: #7c3aed;
}
.industry-icon.pink {
  color: #db2777;
}
.industry-icon.yellow {
  color: #ca8a04;
}

.industry-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.industry-count {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 400;
}

.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

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

.trust-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trust-value.blue {
  color: #2563eb;
}
.trust-value.orange {
  color: #ea580c;
}
.trust-value.green {
  color: #16a34a;
}

.trust-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.divider {
  width: 1px;
  height: 3rem;
  background-color: #e5e7eb;
}

/* Problems Section */
.problems-section {
  background-color: #f9fafb;
  padding: 5rem 2rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.problems-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.problem-card {
  background-color: white;
  border: 2px solid #fecaca;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.15s ease;
}

.problem-card:hover {
  border-color: #fca5a5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  padding: 0.75rem;
  background-color: #fef2f2;
  border-radius: 50%;
  color: #ef4444;
  width: fit-content;
  margin: 0 auto 0.75rem;
}

.problem-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.problem-x {
  color: #ef4444;
}

.problem-content h3 {
  font-weight: 600;
  color: #111827;
}

.problem-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.stat-icon-small {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.solution-card {
  background: linear-gradient(to bottom right, #f0fdf4, #eff6ff);
  border: 2px solid #bbf7d0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.solution-icon {
  width: 5rem;
  height: 5rem;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #16a34a;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.solution-card p {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.solution-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.solution-stat .stat-value.blue {
  color: #2563eb;
}
.solution-stat .stat-value.green {
  color: #16a34a;
}

.solution-stat .stat-label {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Modules Section */
.modules-section {
  background-color: white;
  padding: 5rem 2rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.module-card {
  border: 2px solid;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.module-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.module-card.blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.module-card.green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.module-card.orange {
  background-color: #fff7ed;
  border-color: #fed7aa;
}

.module-card.purple {
  background-color: #faf5ff;
  border-color: #e9d5ff;
}

.module-card.cyan {
  background-color: #ecfeff;
  border-color: #a5f3fc;
}

.module-card.pink {
  background-color: #fdf2f8;
  border-color: #f9a8d4;
}

.module-card.gray {
  background-color: #f9fafb;
  border-color: #e5e7eb;
}

.module-card.indigo {
  background-color: #eef2ff;
  border-color: #c7d2fe;
}

.module-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

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

.module-card.blue .module-icon {
  background-color: #eff6ff;
  color: #2563eb;
}

.module-card.green .module-icon {
  background-color: #f0fdf4;
  color: #16a34a;
}

.module-card.orange .module-icon {
  background-color: #fff7ed;
  color: #ea580c;
}

.module-card.purple .module-icon {
  background-color: #faf5ff;
  color: #7c3aed;
}

.module-card.cyan .module-icon {
  background-color: #ecfeff;
  color: #0891b2;
}

.module-card.pink .module-icon {
  background-color: #fdf2f8;
  color: #db2777;
}

.module-card.gray .module-icon {
  background-color: #f9fafb;
  color: #4b5563;
}

.module-card.indigo .module-icon {
  background-color: #eef2ff;
  color: #4f46e5;
}

.module-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.module-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1rem;
}

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

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #059669;
  background-color: #ecfdf5;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 500;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.use-case-benefits {
  margin-top: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #059669;
  background-color: #ecfdf5;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 500;
}

.modules-cta {
  background: linear-gradient(to right, #eff6ff, #fff7ed);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.modules-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.modules-cta p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

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

/* Use Cases Section */
.use-cases-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  background-image:
    radial-gradient(
      circle at 10% 10%,
      rgba(22, 163, 74, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(234, 88, 12, 0.05) 0%,
      transparent 50%
    );
  padding: 5rem 2rem;
  position: relative;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.use-case-card {
  background-color: white;
  border: 2px solid;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.use-case-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--card-color),
    var(--card-color-dark)
  );
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.use-case-card.blue {
  border: 1.6px solid #bfdbfe;
  --card-color: #2563eb;
  --card-color-dark: #1d4ed8;
}

.use-case-card.green {
  border: 1.6px solid #bbf7d0;
  --card-color: #16a34a;
  --card-color-dark: #15803d;
}

.use-case-card.orange {
  border: 1.6px solid #fed7aa;
  --card-color: #ea580c;
  --card-color-dark: #c2410c;
}

.use-case-card.purple {
  border: 1.6px solid #e9d5ff;
  --card-color: #7c3aed;
  --card-color-dark: #6d28d9;
}

.use-case-card.cyan {
  border: 1.6px solid #a5f3fc;
  --card-color: #0891b2;
  --card-color-dark: #0e7490;
}

.use-case-card.pink {
  border: 1.6px solid #f9a8d4;
  --card-color: #db2777;
  --card-color-dark: #be185d;
}

.use-case-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

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

.use-case-card.blue .use-case-icon {
  background-color: #eff6ff;
  color: #2563eb;
}

.use-case-card.green .use-case-icon {
  background-color: #f0fdf4;
  color: #16a34a;
}

.use-case-card.orange .use-case-icon {
  background-color: #fff7ed;
  color: #ea580c;
}

.use-case-card.purple .use-case-icon {
  background-color: #faf5ff;
  color: #7c3aed;
}

.use-case-card.cyan .use-case-icon {
  background-color: #ecfeff;
  color: #0891b2;
}

.use-case-card.pink .use-case-icon {
  background-color: #fdf2f8;
  color: #db2777;
}

.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.use-case-card p {
  color: #4b5563;
  line-height: 1.625;
}

.use-cases-cta {
  background-color: white;
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.use-cases-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.use-cases-cta p {
  color: #4b5563;
  margin-bottom: 2rem;
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 50%
    );
  padding: 5rem 2rem;
  position: relative;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.step-number.blue {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.step-number.green {
  background: linear-gradient(to right, #16a34a, #15803d);
}

.step-number.orange {
  background: linear-gradient(to right, #ea580c, #c2410c);
}

.step-number.purple {
  background: linear-gradient(to right, #7c3aed, #6d28d9);
}

.step-number.cyan {
  background: linear-gradient(to right, #0891b2, #0e7490);
}

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

.step-icon.blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.step-icon.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.step-icon.orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.step-icon.purple {
  background-color: #faf5ff;
  color: #7c3aed;
}

.step-icon.cyan {
  background-color: #ecfeff;
  color: #0891b2;
}

.step-item h3 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}

.step-arrow {
  color: #9ca3af;
  margin: 0 0.5rem;
}

.how-it-works-cta {
  background: linear-gradient(to right, #eff6ff, #fff7ed);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.how-it-works-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* Differentiators Section */
.differentiators-section {
  background-color: #f9fafb;
  padding: 5rem 2rem;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.differentiator-card {
  background-color: white;
  border: 2px solid;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.differentiator-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.differentiator-card.blue {
  border-color: #bfdbfe;
}

.differentiator-card.green {
  border-color: #bbf7d0;
}

.differentiator-card.orange {
  border-color: #fed7aa;
}

.differentiator-card.purple {
  border-color: #e9d5ff;
}

.differentiator-card.cyan {
  border-color: #a5f3fc;
}

.differentiator-card.pink {
  border-color: #f9a8d4;
}

.differentiator-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

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

.differentiator-card.blue .differentiator-icon {
  background-color: #eff6ff;
  color: #2563eb;
}

.differentiator-card.green .differentiator-icon {
  background-color: #f0fdf4;
  color: #16a34a;
}

.differentiator-card.orange .differentiator-icon {
  background-color: #fff7ed;
  color: #ea580c;
}

.differentiator-card.purple .differentiator-icon {
  background-color: #faf5ff;
  color: #7c3aed;
}

.differentiator-card.cyan .differentiator-icon {
  background-color: #ecfeff;
  color: #0891b2;
}

.differentiator-card.pink .differentiator-icon {
  background-color: #fdf2f8;
  color: #db2777;
}

.differentiator-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.differentiator-card p {
  color: #4b5563;
  line-height: 1.625;
}

.comparison-visual {
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-visual h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.comparison-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.comparison-icon.red {
  background-color: #fef2f2;
  color: #ef4444;
}

.comparison-icon.yellow {
  background-color: #fffbeb;
  color: #f59e0b;
}

.comparison-icon.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.comparison-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.comparison-item:last-child h4 {
  color: #2563eb;
}

.comparison-item p {
  font-size: 0.875rem;
  color: #6b7280;
}

.comparison-item:last-child p {
  color: #4b5563;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background-color: white;
  padding: 5rem 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.metric-card {
  border: 2px solid;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.15s ease;
}

.metric-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.metric-card.blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.metric-card.green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.metric-card.orange {
  background-color: #fff7ed;
  border-color: #fed7aa;
}

.metric-card.purple {
  background-color: #faf5ff;
  border-color: #e9d5ff;
}

.metric-icon {
  width: 3rem;
  height: 3rem;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.metric-card.blue .metric-icon {
  color: #2563eb;
}

.metric-card.green .metric-icon {
  color: #16a34a;
}

.metric-card.orange .metric-icon {
  color: #ea580c;
}

.metric-card.purple .metric-icon {
  color: #7c3aed;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-card.blue .metric-value {
  color: #2563eb;
}

.metric-card.green .metric-value {
  color: #16a34a;
}

.metric-card.orange .metric-value {
  color: #ea580c;
}

.metric-card.purple .metric-value {
  color: #7c3aed;
}

.metric-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.metric-description {
  font-size: 0.875rem;
  color: #4b5563;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.15s ease;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-card p {
  color: #374151;
  font-style: italic;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-role {
  font-size: 0.875rem;
  color: #4b5563;
}

.testimonials-cta {
  background: linear-gradient(to right, #eff6ff, #fff7ed);
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.testimonials-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonials-cta p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
  background-color: white;
  padding: 5rem 2rem;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
}

.step-number.blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.4);
}

.step-number.green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 8px 25px -8px rgba(22, 163, 74, 0.4);
}

.step-number.orange {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 8px 25px -8px rgba(234, 88, 12, 0.4);
}

.step-number.purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 8px 25px -8px rgba(124, 58, 237, 0.4);
}

.step-number.cyan {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  box-shadow: 0 8px 25px -8px rgba(8, 145, 178, 0.4);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.05);
}

.step-icon.blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.step-icon.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.step-icon.orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.step-icon.purple {
  background-color: #faf5ff;
  color: #7c3aed;
}

.step-icon.cyan {
  background-color: #ecfeff;
  color: #0891b2;
}

.step-item h3 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.step-item p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}

.step-arrow {
  color: #9ca3af;
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.how-it-works-cta {
  background: linear-gradient(to right, #eff6ff, #fff7ed);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.how-it-works-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* Dashboard Interface Section */
.dashboard-interface-section {
  background-color: #f9fafb;
  padding: 5rem 2rem;
}

.dashboard-mockup-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: 3rem 0;
  display: flex;
  min-height: 600px;
}

/* Sidebar Styles */
.dashboard-sidebar {
  width: 250px;
  background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-item.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border-left-color: white;
}

.sidebar-item i {
  font-size: 1.1rem;
  width: 20px;
}

.sidebar-item span {
  font-weight: 500;
}

/* Main Dashboard Area */
.dashboard-main {
  flex: 1;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  background-color: white;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.header-breadcrumb .active {
  color: #1e293b;
  font-weight: 600;
}

.header-breadcrumb i {
  font-size: 0.75rem;
}

.dashboard-content {
  flex: 1;
  padding: 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

/* Left Content - Performance List */
.content-left {
  position: relative;
}

.performance-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.performance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.performance-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.performance-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.performance-avatar.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.performance-avatar.orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.performance-info {
  flex: 1;
}

.performance-title {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.performance-name {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.performance-score {
  font-size: 0.875rem;
  color: #6366f1;
  font-weight: 500;
}

.performance-score.green {
  color: #10b981;
}

.performance-score.orange {
  color: #f59e0b;
}

.ai-alert-badge {
  position: absolute;
  bottom: 0;
  left: 1rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Right Content - Main Feature */
.content-right {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
}

.feature-stats {
  display: flex;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-item i {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem;
  border-radius: 4px;
}

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-content p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-content p:last-child {
  margin-bottom: 0;
}

/* Dashboard Benefits Footer */
.dashboard-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.benefit-item i {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.benefit-item span {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

/* Content Section Management */
.content-section {
  position: relative;
}

.content-section.hidden {
  display: none;
}

/* Enhanced Performance Avatars */
.performance-avatar.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.performance-avatar.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Sidebar Item Click Effects */
.sidebar-item {
  position: relative;
  overflow: hidden;
}

.sidebar-item::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: left 0.5s;
}

.sidebar-item:hover::before {
  left: 100%;
}

/* Enhanced Feature Image Transitions */
#feature-image {
  transition: all 0.3s ease;
}

/* Enhanced Content Transitions */
#feature-title,
#feature-description {
  transition: opacity 0.3s ease;
}

/* Additional Avatar Color Variants */
.performance-score.blue {
  color: #3b82f6;
}

.performance-score.purple {
  color: #8b5cf6;
}

/* Testimonials Section */
.testimonials-section {
  background-color: white;
  padding: 5rem 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.metric-card {
  border: 2px solid;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.metric-card.blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.metric-card.green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.metric-card.orange {
  background-color: #fff7ed;
  border-color: #fed7aa;
}

.metric-card.purple {
  background-color: #faf5ff;
  border-color: #e9d5ff;
}

.metric-icon {
  width: 3rem;
  height: 3rem;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.metric-card.blue .metric-icon {
  color: #2563eb;
}

.metric-card.green .metric-icon {
  color: #16a34a;
}

.metric-card.orange .metric-icon {
  color: #ea580c;
}

.metric-card.purple .metric-icon {
  color: #7c3aed;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-card.blue .metric-value {
  color: #2563eb;
}

.metric-card.green .metric-value {
  color: #16a34a;
}

.metric-card.orange .metric-value {
  color: #ea580c;
}

.metric-card.purple .metric-value {
  color: #7c3aed;
}

.metric-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.metric-description {
  font-size: 0.875rem;
  color: #4b5563;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow:
    0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-card p {
  color: #374151;
  font-style: italic;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-role {
  font-size: 0.875rem;
  color: #4b5563;
}

.testimonials-cta {
  background: linear-gradient(to right, #eff6ff, #fff7ed);
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.testimonials-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonials-cta p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.blog-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b, #475569);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.blog-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 2xl;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
}

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

.blog-card.featured {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 2px solid #6366f1;
  position: relative;
}

.blog-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(99, 102, 241, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.blog-category.analytics {
  background: rgba(16, 185, 129, 0.9);
}

.blog-category.digital {
  background: rgba(249, 115, 22, 0.9);
}

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-cta {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
}

.blog-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.blog-cta p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-btn {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.blog-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: #4f46e5;
  transform: translateX(2px);
}

/* Responsive Design for Blog Section */
@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 1rem;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-cta {
    padding: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: auto;
  }

  .blog-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Mega Menu Styles */
.nav-item-with-mega {
  position: relative;
}

.nav-item-with-mega .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.mega-menu-section h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.mega-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
}

.mega-menu-item:hover {
  background-color: #f9fafb;
  transform: translateX(4px);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mega-menu-icon.blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.mega-menu-icon.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.mega-menu-icon.purple {
  background-color: #faf5ff;
  color: #7c3aed;
}

.mega-menu-icon.orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.mega-menu-icon.cyan {
  background-color: #ecfeff;
  color: #0891b2;
}

.mega-menu-icon.pink {
  background-color: #fdf2f8;
  color: #db2777;
}

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

.mega-menu-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-menu-title {
  font-weight: 500;
  color: #111827;
  font-size: 0.875rem;
}

.mega-menu-desc {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Product Page Styles */
.platform-overview-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  padding: 6rem 2rem 4rem;
  color: white;
  overflow: hidden;
  position: relative;
}

.platform-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.platform-overview-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-overview-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.platform-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
}

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

.platform-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.platform-overview-visual {
  position: relative;
}

.platform-dashboard-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.platform-dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.dashboard-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ef4444;
}
.control.yellow {
  background: #f59e0b;
}
.control.green {
  background: #10b981;
}

.dashboard-title {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.dashboard-content {
  display: flex;
  height: 300px;
}

.dashboard-sidebar {
  width: 200px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 1rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.sidebar-item.active {
  background: #2563eb;
  color: white;
}

.sidebar-item:hover:not(.active) {
  background: #e5e7eb;
}

.dashboard-main {
  flex: 1;
  padding: 1.5rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f9fafb;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.metric-icon.blue {
  background: #2563eb;
}
.metric-icon.green {
  background: #16a34a;
}
.metric-icon.orange {
  background: #ea580c;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.metric-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.dashboard-chart {
  background: #f9fafb;
  border-radius: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: #6b7280;
}

.chart-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

/* Key Features Section */
.key-features-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.feature-card.featured {
  border: 2px solid #2563eb;
  position: relative;
}

.feature-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.benefit-item i {
  color: #ffffff;
  font-size: 0.75rem;
}

/* How It Works Product Section */
.how-it-works-product-section {
  padding: 5rem 2rem;
  background: white;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 2;
}

.step-content {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.step-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -3px rgba(0, 0, 0, 0.15);
}

.step-content .step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.workflow-arrow {
  color: #d1d5db;
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.workflow-visual {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  text-align: center;
}

.workflow-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.flow-arrow {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Integrations Section */
.integrations-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.integration-category {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.integration-category h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.integration-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f9fafb;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #374151;
}

.integration-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.integration-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #6b7280;
}

.integration-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.integrations-cta {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.final-cta-section .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta-section .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Productivity Tracking Page Specific Styles */
.dashboard-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.metrics-section {
  background: white;
  padding: 4rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

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

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 8px rgba(59,130,246,0.07);
  text-align: center;
  word-break: break-word;
}

.metric-icon {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #3b82f6;
}

.metric-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
  white-space: normal;
  word-break: break-word;
}

.metric-description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 0.25rem;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metric-card {
    min-height: 140px;
    padding: 1rem 0.5rem;
  }
  .metric-value {
    font-size: 1.3rem;
  }
  .metric-label {
    font-size: 0.95rem;
  }
  .metric-description {
    font-size: 0.85rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.feature-card.large::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.highlight-item i {
  color: #fbbf24;
  font-size: 0.75rem;
}

.feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.benefit-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.benefits-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 5rem 2rem;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #4b5563;
  line-height: 1.6;
}

.benefits-visual {
  position: relative;
}

.benefits-chart {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.chart-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  height: 200px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #2563eb, #7c3aed);
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.bar-value {
  position: absolute;
  top: -30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.bar-label {
  position: absolute;
  bottom: -30px;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-feature i {
  color: #22c55e;
}

/* Responsive Design for Productivity Page */
@media (max-width: 768px) {
  .mega-menu {
    min-width: 350px;
    left: 0;
    transform: none;
    margin-top: 0.5rem;
  }

  .mega-menu.active {
    transform: none;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .platform-overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .platform-overview-title {
    font-size: 2.5rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 2rem;
  }

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

  .workflow-flow {
    flex-direction: column;
    gap: 1rem;
  }

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

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .integration-items {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 1;
  }

  .feature-highlights {
    grid-template-columns: 1fr;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chart-bars {
    height: 150px;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Footer */
.footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 2rem;
}

.footer-content {
  /*display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-bottom: 3rem;*/
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 64px;
  height: 48px;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: #4b5563;
}

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

.social-link {
  color: #9ca3af;
  transition: color 0.15s ease;
}

.social-link:hover {
  color: #2563eb;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: #2563eb;
}

/* Improved bottom footer styling */
.footer-bottom {
  /*border-top: 1px solid #e5e7eb;*/
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  text-align: center;
  color: #6b7280;
  background: #18181b;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0 0.3rem 0;
  font-size: 0.97rem;
  line-height: 1.5;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.legal-link {
  color: #f3f4f6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-weight: 500;
  transition: color 0.2s;
}
.legal-link i {
  font-size: 1em;
  vertical-align: middle;
}
.legal-link:hover {
  color: #60a5fa;
}
.separator {
  color: #52525b;
  font-size: 1.1em;
  margin: 0 0.3em;
}
.footer-bottom .footer-cta {
  margin-top: 1rem;
}
@media (max-width: 700px) {
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.97rem;
    line-height: 1.5;
  }
  .footer-bottom {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problems-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

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

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .dashboard-mockup {
    padding: 1rem;
  }

  .floating-element {
    position: static;
    margin: 0.5rem;
    display: inline-block;
  }

  .trust-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-arrow {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .dashboard-mockup-container {
    flex-direction: column;
    min-height: auto;
  }

  .dashboard-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
    gap: 0;
  }

  .sidebar-item {
    white-space: nowrap;
    padding: 0.75rem 1rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: auto;
  }

  .sidebar-item.active {
    border-left: none;
    border-bottom-color: white;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .dashboard-benefits {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trusted-section,
  .problems-section,
  .modules-section,
  .use-cases-section,
  .how-it-works-section,
  .differentiators-section,
  .testimonials-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .trust-value {
    font-size: 2rem;
  }
}

/* Animation classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

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

@media (max-width: 768px) {
  .dashboard-interface-section {
    padding: 2rem 0.5rem;
  }
  .dashboard-mockup-container {
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }
  .dashboard-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    gap: 0.5rem;
    border-radius: 12px 12px 0 0;
  }
  .sidebar-item {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: 90px;
    font-size: 0.95rem;
  }
  .sidebar-item.active {
    border-left: none;
    border-bottom-color: #fff;
  }
  .dashboard-main {
    padding: 0.5rem;
  }
  .dashboard-header {
    padding: 1rem 0.5rem;
  }
  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }
  .content-left, .content-right {
    padding: 0;
  }
  .main-feature-card {
    padding: 1rem 0.5rem;
  }
  .feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .dashboard-benefits {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .dashboard-interface-section {
    padding: 1rem 0.25rem;
  }
  .dashboard-sidebar {
    padding: 0.25rem 0.1rem;
    font-size: 0.85rem;
  }
  .sidebar-item {
    padding: 0.4rem 0.5rem;
    min-width: 70px;
  }
  .main-feature-card {
    padding: 0.5rem 0.1rem;
  }
  .feature-image img {
    border-radius: 8px;
  }
  .dashboard-header {
    padding: 0.5rem 0.1rem;
  }
}

@media (max-width: 768px) {
  .dashboard-interface-section .section-title {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .dashboard-interface-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  .dashboard-sidebar {
    font-size: 0.95rem;
  }
  .performance-title {
    font-size: 0.7rem;
  }
  .performance-name {
    font-size: 0.95rem;
  }
  .performance-score {
    font-size: 0.8rem;
  }
  .feature-content h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .feature-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .dashboard-interface-section .section-title {
    font-size: 1.05rem;
  }
  .dashboard-interface-section .section-subtitle {
    font-size: 0.9rem;
  }
  .dashboard-sidebar {
    font-size: 0.85rem;
  }
  .performance-title {
    font-size: 0.65rem;
  }
  .performance-name {
    font-size: 0.85rem;
  }
  .performance-score {
    font-size: 0.7rem;
  }
  .feature-content h3 {
    font-size: 1rem;
  }
  .feature-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .metrics-grid, .testimonials-grid {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .metric-card {
    font-size: 0.95rem;
    padding: 1rem 0.5rem;
  }
  .metric-value {
    font-size: 1.3rem;
  }
  .metric-label {
    font-size: 0.85rem;
    white-space: normal;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .metric-card {
    font-size: 0.9rem;
    padding: 0.75rem 0.25rem;
  }
  .metric-value {
    font-size: 1.1rem;
  }
  .metric-label {
    font-size: 0.8rem;
    white-space: normal;
    word-break: break-word;
  }
}

.metric-card {
  position: relative;
  overflow: hidden;
}
.metric-label,
.metric-card > span,
.metric-card > div {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100%;
  display: block;
}

/* Footer bottom layout improvements */
.footer-bottom .container {
  max-width: 1306px;
  margin: 0 auto;
  padding: 0 2rem;
}
.bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .footer-cta {
  margin-top: 0;
  margin-left: auto;
}
@media (max-width: 900px) {
  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-bottom .footer-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.copyright {
  text-align: center;
  width: 100%;
  margin-top: 1.2rem;
  color: #a1a1aa;
  font-size: 0.97rem;
  display: block;
}
.footer-bottom .copyright {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
}

.dashboard-preview {
  background: linear-gradient(135deg, #232946 60%, #1a1a2e 100%);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 420px;
  width: 100%;
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 900px) {
  .dashboard-preview {
    max-width: 100%;
    padding: 1.2rem 0.5rem;
  }
}

.navbar .logo {
  width: 215px;
  max-height: 197px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Force white text for footer CTA link */
.footer-cta .cta-link, .footer-cta .cta-link:hover {
  color: #fff !important;
}

.btn-outline.btn-orange:hover {
  background-color: white !important;
  color: #f97316 !important;
  border-color: #f97316 !important;
}

.btn-outline.btn-orange{
  color: #fff !important;
}
