/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

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

/* Add any additional custom styles here */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* You can move other custom styles here */

/* Base styles */
:root {
  --primary-color: #00A3FF;
  --secondary-color: #6C63FF;
  --text-color: #FFFFFF;
  --background-color: #111827;
  --container-padding: 1rem;
  --section-spacing: 3rem;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  --container-padding-mobile: 1rem;
  --container-padding-tablet: 2rem;
  --container-padding-desktop: 4rem;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #00A3FF, #6C63FF);
}

/* Navigation */
.nav-link {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  color: var(--text-color);
  font-size: 1.5rem;
  text-decoration: none;
  padding: 1rem;
  transition: color 0.3s ease;
}

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

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 640px) {
  .cta-button {
    width: auto;
  }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 163, 255, 0.25);
}

/* Cards */
.feature-card-container {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

/* Responsive containers */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Section spacing */
.section-padding {
  padding: var(--section-spacing) 0;
}

/* Grid layouts */
.grid-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Calendly Integration */
.calendly-inline-widget {
  min-width: 320px;
  height: 600px;
}

@media (min-width: 768px) {
  .calendly-inline-widget {
    height: 700px;
  }
}

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .nav-link:hover::after {
    width: 0;
  }
  
  .cta-button:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .mobile-menu,
  .cta-button,
  .calendly-inline-widget {
    display: none;
  }
}

/* Base responsive styles */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

/* Improve touch targets on mobile */
@media (max-width: 640px) {
  button, 
  a {
    min-height: 44px;
    padding: 0.75rem 1rem;
  }
  
  .calendly-inline-widget {
    height: 500px !important;
  }
}

/* Container Fluid */
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: var(--container-padding-mobile);
}

@media (min-width: 640px) {
  .container-fluid {
    padding: var(--container-padding-tablet);
  }
}

@media (min-width: 1024px) {
  .container-fluid {
    padding: var(--container-padding-desktop);
  }
}

/* Logo */
.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  background: linear-gradient(to right, #00A3FF, #6C63FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: var(--spacing-sm);
}

@media (min-width: 640px) {
  .logo-text {
    font-size: var(--font-size-2xl);
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
}

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

.mobile-menu-container {
  padding: var(--spacing-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  padding: var(--spacing-md);
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--spacing-xl);
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: var(--font-size-xl);
  padding: var(--spacing-md);
}

/* Hero Section */
.hero-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
}

@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-xl);
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    flex: 1;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(to right, #00A3FF, #6C63FF);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-button {
    width: auto;
    margin: 0;
  }
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Feature Cards */
.feature-cards {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (min-width: 640px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-cards {
    flex: 1;
    margin-top: 0;
  }
}

.feature-card {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: var(--spacing-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.teal {
  background: rgba(45, 212, 191, 0.2);
  color: #2DD4BF;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Utilities */
@media (max-width: 1023px) {
  .lg\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section Blocks */
.section-block {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-block {
    padding: 100px 40px;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(to right, rgba(0, 163, 255, 0.1), rgba(108, 99, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #00A3FF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Title */
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  gap: 16px;
}

.divider-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  border-radius: 2px;
}

.divider-icon {
  color: #00A3FF;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  position: relative;
}

.divider-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Section Description */
.section-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

/* Animation for Section Headers */
.reveal-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background Accent */
.section-header::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }

  .section-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .divider-line {
    width: 40px;
  }

  .divider-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* Solutions Section Styles */
.solutions-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution-card-header {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.solution-card-header.teal {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(45, 212, 191, 0.2));
}

.solution-card-header.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
}

.solution-card-header.purple {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(167, 139, 250, 0.2));
}

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

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

.solution-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 212, 191, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.solution-icon {
  width: 64px;
  height: 64px;
  color: #2DD4BF; /* teal-400 */
  transition: transform 0.3s ease;
}

.solution-card-body {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .solution-card-body {
    padding: 2rem;
  }
}

.solution-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.solution-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  color: #2DD4BF;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.7);
}

/* Icon Wrapper Colors */
.solution-card-header.blue .solution-icon-wrapper {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.solution-card-header.purple .solution-icon-wrapper {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.2);
}

/* Icon Colors */
.solution-card-header.blue .solution-icon {
  color: #3B82F6; /* blue-500 */
}

.solution-card-header.purple .solution-icon {
  color: #A78BFA; /* purple-400 */
}

/* Hover Effects */
.solution-card:hover .solution-icon-wrapper {
  transform: scale(1.05);
}

.solution-card-header.blue:hover .solution-icon-wrapper {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.solution-card-header.purple:hover .solution-icon-wrapper {
  background: rgba(167, 139, 250, 0.15);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.2);
}

/* Animation Variations */
.solution-card:nth-child(2) .solution-icon-wrapper {
  animation-delay: 0.2s;
}

.solution-card:nth-child(3) .solution-icon-wrapper {
  animation-delay: 0.4s;
}

/* High-contrast Mode Adjustments */
@media (prefers-contrast: high) {
  .solution-card-header.blue .solution-icon-wrapper {
    border: 2px solid #3B82F6;
  }

  .solution-card-header.purple .solution-icon-wrapper {
    border: 2px solid #A78BFA;
  }
}

/* Results Section Styles */
.results-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #1a1f2d, #111827);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Results Header */
.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.results-header p {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Responsive grid adjustments */
@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Result Cards */
.result-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Result Icon */
.result-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.result-icon.teal {
    background: rgba(45, 212, 191, 0.1);
    color: #2dd4bf;
}

.result-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.result-icon.purple {
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
}

/* Result Content */
.result-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.result-stat {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.result-description {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .results-section {
        padding: 60px 16px;
    }

    .results-header h2 {
        font-size: 28px;
    }

    .results-header p {
        font-size: 16px;
    }

    .result-card {
        padding: 20px;
    }

    .result-content h3 {
        font-size: 18px;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .results-section {
        padding: 70px 24px;
    }

    .result-card {
        padding: 22px;
    }
}

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

.result-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animation for cards */
.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .result-card {
        animation: none;
        transform: none;
    }
    
    .result-card:hover {
        transform: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #111827, #1a1f2d);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
}

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

.testimonial-author h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: #9ca3af;
}

.testimonial-rating {
    margin-left: auto;
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    color: #9ca3af;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #1a1f2d, #111827);
}

.contact-container {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
}

.contact-info {
    display: grid;
    gap: 24px;
}

.info-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: #9ca3af;
}

.calendly-container {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 600px;
}

@media (min-width: 768px) {
    .calendly-inline-widget {
        height: 700px;
    }
}

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

.testimonial-card,
.info-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animations */
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .info-card {
        animation: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .testimonials-section,
    .contact-section {
        padding: 60px 16px;
    }

    .testimonial-card,
    .info-card {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .metric-value {
        font-size: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 60px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
    }
}

/* Company Info */
.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    color: #00A3FF;
    margin-right: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #00A3FF, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.company-description {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

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

.social-link:hover {
    color: #00A3FF;
}

/* Footer Links */
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00A3FF;
}

/* Contact Info */
.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #9ca3af;
}

.footer-contact svg {
    margin-right: 12px;
    flex-shrink: 0;
    color: #00A3FF;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #00A3FF;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00A3FF;
}

.newsletter-form button {
    padding: 12px 24px;
    background: linear-gradient(to right, #00A3FF, #6C63FF);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00A3FF;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 639px) {
    .footer-main {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

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

    .newsletter-form button {
        width: 100%;
    }
}

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

.footer-main > div {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animations */
.footer-company { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }
.footer-newsletter { animation-delay: 0.4s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-main > div {
        animation: none;
    }
}

/* Utility Classes */
.gradient-bg {
  background: linear-gradient(to right, #00A3FF, #6C63FF);
}

.gradient-text {
  background: linear-gradient(to right, #00A3FF, #6C63FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Print Styles */
@media print {
  .section-block {
    page-break-inside: avoid;
  }
  
  .calendly-wrapper,
  .social-links {
    display: none;
  }
}

/* Feature Cards Container */
.feature-cards-container {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Responsive Grid Layout */
@media (min-width: 640px) {
    .feature-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .feature-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
}

/* Feature Card */
.feature-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Feature Icon */
.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

/* Icon Colors */
.feature-icon-wrapper.teal {
    background: rgba(45, 212, 191, 0.1);
    color: #2DD4BF;
}

.feature-icon-wrapper.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.feature-icon-wrapper.purple {
    background: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

.feature-icon-wrapper.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: "→";
    margin-right: 0.5rem;
    color: currentColor;
}

/* Feature Stats */
.feature-stats {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hover Effects */
.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-card:hover .feature-list li {
    transform: translateX(5px);
}

/* Animation */
.feature-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Mobile Optimizations */
@media (max-width: 639px) {
    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }

    .feature-content h3 {
        font-size: 1.125rem;
    }

    .feature-list {
        margin: 0.75rem 0;
    }

    .stat-value {
        font-size: 1.25rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .feature-card:hover {
        transform: none;
    }

    .feature-card:hover .feature-icon-wrapper {
        transform: none;
    }

    .feature-card:hover .feature-list li {
        transform: none;
    }
}

/* High-DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-card {
        border-width: 0.5px;
    }
}

/* Hero Features Section */
.hero-features {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem 0;
}

.features-card {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* AI Solutions Label */
.ai-solutions-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background: rgba(45, 212, 191, 0.1);
    color: #2DD4BF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

/* Feature Icons */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.teal {
    background: rgba(45, 212, 191, 0.1);
    color: #2DD4BF;
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.feature-icon.purple {
    background: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-card {
        padding: 1.5rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

/* Animation */
.features-card {
    animation: fadeIn 0.6s ease-out;
}

.feature-item {
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

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

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

/* Glass Effect Enhancement */
@supports (backdrop-filter: blur(10px)) {
    .features-card {
        background: rgba(31, 41, 55, 0.8);
        backdrop-filter: blur(10px);
    }
}

/* High-contrast Mode */
@media (prefers-contrast: high) {
    .features-card {
        background: #1F2937;
        border: 2px solid #ffffff;
    }
}

/* Solution Icon Wrapper */
.solution-icon-wrapper {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    transition: all 0.3s ease;
}

.solution-icon-wrapper svg {
    width: 4rem;
    height: 4rem;
    color: #2DD4BF; /* teal-400 color */
    transition: transform 0.3s ease;
}

/* Hover effects */
.solution-card:hover .solution-icon-wrapper {
    transform: scale(1.05);
    background: rgba(45, 212, 191, 0.15);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution-icon-wrapper {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem;
    }

    .solution-icon-wrapper svg {
        width: 3rem;
        height: 3rem;
    }
}

/* Animation */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.solution-icon-wrapper {
    animation: iconFloat 3s ease-in-out infinite;
}

/* High-contrast Mode */
@media (prefers-contrast: high) {
    .solution-icon-wrapper {
        background: #1F2937;
        border: 2px solid #2DD4BF;
    }
}

.logo-image {
    height: 40px;  /* Adjust based on your navbar height */
    width: auto;   /* Maintains aspect ratio */
    object-fit: contain;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;  /* Slightly smaller on mobile */
    }
}

.footer {
    background-color: #111827; /* dark gray/blue background */
    color: #F9FAFB;
    padding: 4rem 0;          /* Top and bottom padding */
    margin-top: 6rem;         /* Space between footer and main content */
}

.footer-content {
    max-width: 1280px;        /* Match other container widths */
    margin: 0 auto;           /* Center the content */
    padding: 0 2rem;          /* Left and right padding */
}

.footer-logo {
    margin-bottom: 2.5rem;    /* Space after logo */
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;      /* Space before copyright */
}

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

.footer-section h3 {
    color: #F9FAFB;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #F9FAFB;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
        margin-top: 4rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }

    .footer-sections {
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }
} 