/* CSS Variables */
:root {
  --background: 255 255 255;
  --foreground: 15 23 42;
  --card: 255 255 255;
  --card-foreground: 15 23 42;
  --popover: 255 255 255;
  --popover-foreground: 15 23 42;
  --primary: 59 130 246;
  --primary-foreground: 255 255 255;
  --secondary: 248 250 252;
  --secondary-foreground: 15 23 42;
  --muted: 248 250 252;
  --muted-foreground: 100 116 139;
  --accent: 248 250 252;
  --accent-foreground: 15 23 42;
  --destructive: 239 68 68;
  --destructive-foreground: 255 255 255;
  --border: 226 232 240;
  --input: 226 232 240;
  --ring: 59 130 246;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Showcase Section Styles - High Priority */
section.showcase-section {
  padding: 4rem 0 !important;
  background: linear-gradient(135deg, #f8fafc, #ffffff) !important;
  position: relative;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  section.showcase-section { padding: 3rem 0 !important; }
}

.showcase-section .showcase-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.showcase-section .showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-section .showcase-title {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
  color: rgb(17 24 39) !important;
  line-height: 1.2;
}

.showcase-section .showcase-description {
  font-size: 1.125rem !important;
  color: rgb(75 85 99) !important;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.showcase-section .showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem;
  margin-bottom: 4rem;
  width: 100%;
}

.showcase-section .showcase-card {
  background: white !important;
  padding: 2.5rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.showcase-section .showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.showcase-section .showcase-icon {
  width: 4rem !important;
  height: 4rem !important;
  background: linear-gradient(135deg, rgb(59 130 246), rgb(37 99 235)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem !important;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.showcase-section .showcase-card-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
  color: rgb(17 24 39) !important;
}

.showcase-section .showcase-card-description {
  color: rgb(75 85 99) !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem !important;
}

.showcase-section .showcase-features {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.showcase-section .feature-tag {
  background: rgba(59, 130, 246, 0.1) !important;
  color: rgb(59 130 246) !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 9999px !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  transition: all 0.2s ease;
  display: inline-block;
}

.showcase-section .feature-tag:hover {
  background: rgba(59, 130, 246, 0.15) !important;
  transform: translateY(-1px);
}

/* Preview Section Styles */
.showcase-section .preview-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.showcase-section .preview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-section .preview-device {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.showcase-section .device-frame {
  background: #1f2937;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.showcase-section .device-screen {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.showcase-section .preview-content {
  padding: 1rem;
  font-size: 0.75rem;
}

.showcase-section .preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.showcase-section .preview-nav {
  display: flex;
  gap: 0.25rem;
}

.showcase-section .nav-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #d1d5db;
  border-radius: 50%;
}

.showcase-section .preview-logo {
  font-weight: 700;
  color: rgb(59 130 246);
}

.showcase-section .preview-menu {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.showcase-section .menu-line {
  width: 1rem;
  height: 0.125rem;
  background: #6b7280;
}

.showcase-section .preview-hero {
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.showcase-section .preview-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.showcase-section .preview-subtitle {
  font-size: 0.625rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.showcase-section .preview-button {
  background: rgb(59 130 246);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.625rem;
  display: inline-block;
}

.showcase-section .preview-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.showcase-section .preview-feature {
  text-align: center;
  padding: 0.5rem;
}

.showcase-section .feature-icon {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.showcase-section .feature-text {
  font-size: 0.5rem;
  color: #6b7280;
}

.showcase-section .preview-content-section {
  background: #f9fafb;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.showcase-section .content-card {
  background: white;
  border-radius: 0.375rem;
  padding: 0.75rem;
}

.showcase-section .card-header {
  font-weight: 600;
  font-size: 0.625rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.showcase-section .card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-section .service-item {
  font-size: 0.5rem;
  color: #6b7280;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.showcase-section .preview-info {
  padding-left: 2rem;
}

.showcase-section .preview-info h3 {
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  color: rgb(17 24 39) !important;
  margin-bottom: 1rem;
}

.showcase-section .preview-info p {
  font-size: 1rem !important;
  color: rgb(75 85 99) !important;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.showcase-section .stat {
  text-align: center;
}

.showcase-section .stat-number {
  display: block;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: rgb(59 130 246) !important;
  margin-bottom: 0.5rem;
}

.showcase-section .stat-label {
  font-size: 0.875rem !important;
  color: rgb(75 85 99) !important;
  font-weight: 500;
}

@media (max-width: 768px) {
  .showcase-section .preview-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase-section .preview-info {
    padding-left: 0;
    text-align: center;
  }
  
  .showcase-section .preview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Brand Font */
.brand-font {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: rgb(15 23 42);
  background-color: rgb(255 255 255);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0.2rem 2rem 4rem;  /* Minimal top padding */
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(var(--background)), rgb(var(--card)));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgb(var(--foreground)), rgb(var(--primary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgb(var(--muted-foreground));
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-button-primary {
    background: rgb(var(--primary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-button-primary:hover {
    background: rgba(var(--primary), 0.9);
}

.hero-button-secondary {
    background: transparent;
    color: rgb(var(--primary));
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid rgb(var(--primary));
    transition: all 0.3s ease;
}

.hero-button-secondary:hover {
    background: rgb(var(--primary));
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 0.2rem 1rem 3rem;  /* Minimal top padding on mobile */
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Content Container */
.content-container {
    padding-top: 0.1rem; /* Minimal padding */
}

/* Navigation Styles */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(226 232 240);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: transparent;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(59 130 246);
}

.brand-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

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

.nav-link {
  color: rgb(15 23 42);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: rgb(59 130 246);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: rgb(59 130 246);
  color: white;
}

.btn-primary:hover {
  background: rgb(37 99 235);
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.nav-link {
  color: rgb(15 23 42);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: rgb(59 130 246);
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: rgb(15 23 42);
  padding: 0;
  transition: color 0.2s ease;
  text-decoration: none;
  position: relative;
}

.dropdown-toggle:hover {
  color: rgb(59 130 246);  /* Match nav-link hover color */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid rgb(var(--border));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Horizontal Dropdown Styles */
.horizontal-dropdown {
  min-width: 800px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  padding: 2rem;
  background: white;
  border: 1px solid rgb(var(--border));
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  position: absolute;
  top: 100%;
  z-index: 1000;
}

.horizontal-dropdown.show {
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dropdown-section {
  text-align: center;
  margin-bottom: 1rem;
}

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

.dropdown-description {
  font-size: 0.875rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.5;
}

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

.dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  color: rgb(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgb(var(--border) / 0.1);
  border-radius: 0.75rem;
  background: rgb(var(--background));
}

.dropdown-item:hover {
  background: rgb(var(--primary) / 0.05);
  border-color: rgb(var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.dropdown-item-icon {
  width: 3rem;
  height: 3rem;
  background: rgb(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: rgb(var(--primary));
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgb(var(--foreground));
}

.dropdown-item-content p {
  font-size: 0.875rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.5;
  margin: 0;
}

/* Submenu Styles */
.dropdown-item-with-submenu {
  position: relative;
}

.dropdown-item-with-submenu .dropdown-item {
  cursor: pointer;
  position: relative;
}

.submenu-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(var(--muted-foreground));
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.dropdown-item-with-submenu:hover .submenu-arrow {
  transform: translateY(-50%) rotate(90deg);
  color: rgb(var(--primary));
}

.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  border: 1px solid rgb(var(--border));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
  padding: 0.5rem;
}

.dropdown-item-with-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgb(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
}

.submenu-item:last-child {
  margin-bottom: 0;
}

.submenu-item:hover {
  background: rgb(var(--primary) / 0.05);
  color: rgb(var(--primary));
  transform: translateX(2px);
}

.submenu-item i {
  width: 1.5rem;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  color: rgb(var(--primary));
}

.submenu-item span {
  font-size: 0.875rem;
}

/* Responsive styles for horizontal dropdown */
@media (max-width: 1024px) {
  .horizontal-dropdown {
    min-width: 600px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  .dropdown-items {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .dropdown-item {
    padding: 1rem;
  }
  .dropdown-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .horizontal-dropdown {
    min-width: 90vw;
    left: 5vw;
    transform: translateY(-10px);
    padding: 1.5rem;
  }
  .horizontal-dropdown.show {
    transform: translateY(0);
  }
  .dropdown-section {
    margin-bottom: 0.75rem;
  }
  .dropdown-title {
    font-size: 1.25rem;
  }
  .dropdown-description {
    font-size: 0.8rem;
  }
  
  /* Mobile submenu styles */
  .submenu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgb(var(--muted) / 0.5);
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  
  .submenu-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .submenu-item i {
    width: 1.25rem;
    margin-right: 0.5rem;
    font-size: 0.75rem;
  }
  
  .submenu-arrow {
    display: none;
  }
  
  /* Mobile submenu styles */
  .mobile-solution-group {
    margin-bottom: 0.5rem;
  }
  
  .mobile-solution-header {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: rgb(var(--foreground));
    background: rgb(var(--muted) / 0.3);
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
  }
  
  .mobile-submenu {
    padding-left: 0.5rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background: rgb(var(--primary));
  color: rgb(var(--primary-foreground));
}

.btn-primary:hover {
  background: rgb(var(--primary) / 0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-ghost {
  background: transparent;
  color: rgb(var(--foreground));
}

.btn-ghost:hover {
  background: rgb(var(--muted));
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgb(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-bottom: 3rem;
}

.website-submission-form {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  background: white;
  border: 2px solid rgb(var(--border));
  border-radius: 0.75rem;
  padding: 0.25rem;
  box-shadow: var(--shadow-md);
}

.website-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  border-radius: 0.5rem;
}

.proposal-btn {
  background: rgb(var(--primary));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.proposal-btn:hover {
  background: rgb(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.no-website-section {
  text-align: center;
}

.no-website-text {
  color: rgb(var(--muted-foreground));
  font-size: 0.875rem;
}

.no-website-link {
  color: rgb(var(--primary));
  text-decoration: none;
  font-weight: 600;
}

.no-website-link:hover {
  text-decoration: underline;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  margin-left: -0.5rem;
  border: 2px solid white;
  border-radius: 50%;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stars {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.hero-trust {
  font-size: 0.75rem;
  color: rgb(var(--muted-foreground));
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgb(var(--primary) / 0.1);
  color: rgb(var(--primary));
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem; /* Room around modal to prevent clipping */
}

.modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  padding: 1.25rem; /* Default padding for unstructured modals */
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0; /* Match modal-content default padding */
  border-bottom: 1px solid rgb(var(--border));
  padding-bottom: 1rem;
}

/* When structured header/body are used, remove outer padding on container to avoid double spacing */
.modal-content:has(.modal-header,.modal-body) {
  padding: 0;
}

.modal-body {
  padding: 1.25rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(var(--foreground));
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: rgb(var(--muted-foreground));
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgb(var(--muted));
  color: rgb(var(--foreground));
}

.modal-body {
  padding: 1.25rem;
}

.modal-description {
  color: rgb(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.proposal-form, .consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: rgb(var(--foreground));
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid rgb(var(--border));
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(var(--primary));
  box-shadow: 0 0 0 3px rgb(var(--primary) / 0.1);
}

/* Ensure select dropdowns work properly in modals */
.modal .form-group select {
  position: relative;
  z-index: 2001;
  background-color: white;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  cursor: pointer;
  width: 100%;
  min-height: 44px; /* Ensure minimum touch target size */
  box-sizing: border-box;
}

/* Additional select styling to ensure it works */
.modal .form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  pointer-events: auto;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}

/* Ensure the select dropdown can expand above other elements */
.modal .form-group select:focus {
  position: relative;
  z-index: 2002;
}

/* Make sure the select is not being blocked by other elements */
.modal .form-group {
  position: relative;
  z-index: 2001;
}

/* Browser-specific select styling */
.modal .form-group select {
  /* Firefox */
  -moz-appearance: auto;
  /* Safari and Chrome */
  -webkit-appearance: auto;
  /* Standard */
  appearance: auto;
}

/* Ensure select works in all browsers */
.modal .form-group select::-ms-expand {
  display: block;
}

/* Remove default styling in WebKit browsers */
.modal .form-group select::-webkit-select-placeholder {
  color: rgb(var(--muted-foreground));
}

/* Ensure select options are visible */
.modal .form-group select option {
  background-color: white;
  color: rgb(var(--foreground));
  padding: 0.5rem;
}

/* Specific styling for required select elements */
.modal .form-group select[required] {
  position: relative;
  z-index: 2001;
  background-color: white;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  cursor: pointer;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

.modal .form-group select[required]:focus {
  z-index: 2002;
  outline: none;
  border-color: rgb(var(--primary));
  box-shadow: 0 0 0 3px rgb(var(--primary) / 0.1);
}

/* Ensure required select dropdowns work in all browsers */
.modal .form-group select[required]::-ms-expand {
  display: block;
}

/* Remove any browser-specific styling that might interfere */
.modal .form-group select[required]::-webkit-select-placeholder {
  color: rgb(var(--muted-foreground));
}

.submit-btn {
  background: rgb(var(--primary));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
  background: rgb(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

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

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Gradient Text */
.gradient-primary {
  background: linear-gradient(135deg, rgb(59 130 246), rgb(59 130 246 / 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Missing Tailwind CSS Classes */
.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-gray-50 {
  --tw-gradient-from: rgb(249 250 251);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(249 250 251 / 0));
}

.to-white {
  --tw-gradient-to: rgb(255 255 255);
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.mb-16 {
  margin-bottom: 4rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-gray-900 {
  color: rgb(17 24 39);
}

.text-lg {
  font-size: 1.125rem;
}

.text-gray-600 {
  color: rgb(75 85 99);
}

.max-w-3xl {
  max-width: 48rem;
}

.mt-16 {
  margin-top: 4rem;
}

/* Mobile Navigation Styles */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(226 232 240);
  border-radius: 1rem;
  margin: 0 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
  max-height: 80vh;
  overflow-y: auto;
}

#mobile-menu.hidden {
  display: none !important;
}

.mobile-dropdown-menu {
  padding-left: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.mobile-solution-group {
  margin-bottom: 1rem;
  width: 100%;
}

.mobile-solution-header {
  font-weight: 600;
  color: rgb(15 23 42);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgb(226 232 240);
  margin-bottom: 0.5rem;
  width: 100%;
}

.mobile-submenu {
  padding-left: 1rem;
  width: 100%;
}

.mobile-submenu a {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* Mobile Menu Button Styles */
#mobile-menu-button {
  display: none;  /* Hide by default */
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: rgb(15 23 42);
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

#mobile-menu-button:hover {
  background: rgb(243 244 246);
  color: rgb(59 130 246);
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-container {
      padding: 0 0.75rem;
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }
    
    .nav-brand {
      justify-self: center;
      grid-column: 2;
    }
    
    .nav-links {
      display: none;
    }
    
    /* Hide desktop consultation button on mobile */
    .hidden.md\:flex {
      display: none !important;
    }
    
    /* Show mobile menu button */
    .md\:hidden {
      display: flex !important;
      justify-self: end;
      grid-column: 3;
    }
    
    /* Ensure page content starts below fixed navigation */
    .hero {
      margin-top: 0; /* Remove extra gap globally; per-page can add padding as needed */
      padding-top: 70px;
      padding-bottom: 80px;
    }
    
    /* Remove global offset to prevent gaps before sections on mobile */
    section:not(.hero):first-of-type,
    main {
      margin-top: 0;
    }
    
    /* Mobile menu adjustments */
    #mobile-menu {
      margin-top: 0.25rem;
    }
    
    /* Fix mobile menu text width */
    #mobile-menu .space-y-2 > * {
      width: 100%;
    }
    
    #mobile-menu .mobile-dropdown button {
      width: 100%;
      text-align: left;
      padding: 0.75rem 1rem;
    }
    
    #mobile-menu .mobile-dropdown-menu {
      width: 100%;
    }
    
    #mobile-menu .mobile-dropdown-menu a {
      width: 100%;
      padding: 0.5rem 1rem 0.5rem 2rem;
      box-sizing: border-box;
    }
    
    /* Override inline styles for mobile menu links */
    #mobile-menu a.block {
      width: 100% !important;
      box-sizing: border-box !important;
    }
    
    #mobile-menu .mobile-submenu a {
      width: 100% !important;
      padding: 0.5rem 1rem 0.5rem 2rem !important;
      box-sizing: border-box !important;
      display: block !important;
    }
    
    #mobile-menu .mobile-solution-group {
      width: 100% !important;
    }
    
    #mobile-menu .mobile-solution-header {
      width: 100% !important;
      padding: 0.75rem 1rem !important;
      box-sizing: border-box !important;
    }
    
    #mobile-menu .mobile-submenu {
      width: 100% !important;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-description {
      font-size: 1.125rem;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }
    
    .hero-badges {
      gap: 0.5rem;
    }
    
    .badge {
      font-size: 0.625rem;
      padding: 0.375rem 0.75rem;
    }
  }

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .modal-content {
    margin: 0.5rem;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.25rem;
  }
} 

/* Tech Stack Section Styles */
.tech-stack-section {
  padding: 5rem 0;
  background: white;
}

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

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

.tech-categories-bottom {
  display: flex;
  justify-content: center;
}

.tech-category {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tech-category-wide {
  max-width: 800px;
  width: 100%;
}

.tech-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(17 24 39);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-category-title i {
  color: rgb(59 130 246);
  font-size: 1.5rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.tech-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.tech-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
}

.tech-icon {
  font-size: 2rem;
  color: rgb(59 130 246);
  margin-bottom: 0.5rem;
}

.tech-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(17 24 39);
  text-align: center;
}

.performance-metrics {
  margin-top: 4rem;
}

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

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(59 130 246);
  font-size: 1.25rem;
}

.metric-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(17 24 39);
  margin-bottom: 0.25rem;
}

.metric-content p {
  font-size: 0.875rem;
  color: rgb(75 85 99);
  margin: 0;
}

/* Testimonials Section Styles */
.card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(17 24 39);
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgb(75 85 99);
  margin: 0;
}

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

.testimonial-content {
  flex: 1;
  font-size: 1rem;
  color: rgb(55 65 81);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

/* Footer Styles */
.footer {
  background: rgb(17 24 39);
  color: white;
  padding: 4rem 0 2rem;
}

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

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

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgb(156 163 175);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: rgb(59 130 246);
}

.footer-bottom {
  border-top: 1px solid rgb(55 65 81);
  padding-top: 2rem;
}

.text-muted-foreground {
  color: rgb(156 163 175);
}

.text-foreground {
  color: white;
}

.bg-primary {
  background-color: rgb(59 130 246);
}

.hover\:bg-primary\/90:hover {
  background-color: rgba(59, 130, 246, 0.9);
}

/* Results Section Counter Animations */
.result-number {
  display: inline-block;
  font-weight: 700;
  color: rgb(59 130 246);
}

/* Additional utility classes */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.md\:flex-row { @media (min-width: 768px) { flex-direction: row; } }
.justify-between { justify-content: space-between; }
.transition-colors { transition: color 0.15s ease-in-out; } 

/* Statistics Cards */
.stats-card {
    @apply bg-white rounded-xl shadow-lg transition-all duration-300 hover:shadow-xl hover:scale-105;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-card-header {
    @apply p-6 border-b border-gray-100;
}

.stats-card-content {
    @apply p-6;
}

.stats-number {
    @apply text-4xl font-bold mb-2 bg-clip-text text-transparent;
    background-image: linear-gradient(to right, #2563eb, #3b82f6);
}

.stats-label {
    @apply text-gray-600 text-sm;
}

/* Impact Cards */
.impact-card {
    @apply bg-white rounded-xl p-6 transition-all duration-300 hover:shadow-lg;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-card-icon {
    @apply w-12 h-12 rounded-full flex items-center justify-center mb-4;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.impact-card-title {
    @apply text-xl font-bold mb-3 text-gray-900;
}

.impact-card-description {
    @apply text-gray-600 leading-relaxed;
}

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

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

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Enhanced Hover Effects */
.stats-card {
    @apply bg-white rounded-xl shadow-lg transition-all duration-300;
    transform: translateY(0);
}

.stats-card:hover {
    @apply shadow-xl;
    transform: translateY(-5px);
}

.impact-card {
    @apply bg-white rounded-xl p-6 transition-all duration-300;
    transform: translateY(0);
}

.impact-card:hover {
    @apply shadow-xl;
    transform: translateY(-5px);
    background: linear-gradient(to bottom right, #ffffff, #f8fafc);
}

.impact-card-icon {
    @apply w-12 h-12 rounded-full flex items-center justify-center mb-4 transition-all duration-300;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.impact-card:hover .impact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.impact-card-title {
    @apply text-xl font-bold mb-3 text-gray-900 transition-colors duration-300;
}

.impact-card:hover .impact-card-title {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-number {
    @apply text-4xl font-bold mb-2 transition-all duration-300;
    background: linear-gradient(to right, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card:hover .stats-number {
    transform: scale(1.1);
    background: linear-gradient(to right, #1d4ed8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Interactive Elements */
.interactive-element {
    @apply relative overflow-hidden transition-all duration-300;
}

.interactive-element::after {
    content: '';
    @apply absolute inset-0 bg-white opacity-0 transition-opacity duration-300;
}

.interactive-element:hover::after {
    @apply opacity-10;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Container Spacing */
    .max-w-7xl {
        @apply px-4;
    }
    
    /* Typography Scaling */
    h2 {
        @apply text-3xl !important;
    }
    
    h3 {
        @apply text-2xl !important;
    }
    
    h4 {
        @apply text-xl !important;
    }
    
    /* Card Layouts */
    .stats-card,
    .impact-card {
        @apply mx-0 mb-6;
        transform: none !important;
    }
    
    .stats-card:hover,
    .impact-card:hover {
        transform: none !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    .stats-number {
        @apply text-3xl;
    }
    
    .impact-card-icon {
        @apply w-10 h-10;
    }
    
    .impact-card-icon i {
        @apply text-lg;
    }
    
    /* Grid Adjustments */
    .grid {
        display: grid;
        gap: 1rem;
    }
    
    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-2 {
        @media (min-width: 768px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    
    .lg\:grid-cols-3 {
        @media (min-width: 1024px) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    
    /* Spacing Adjustments */
    .py-20 {
        @apply py-12;
    }
    
    .px-6 {
        @apply px-4;
    }
    
    .mb-16 {
        @apply mb-8;
    }
    
    .space-y-6 > * + * {
        @apply mt-4;
    }
    
    /* Text Adjustments */
    .text-xl {
        @apply text-lg;
    }
    
    .text-gray-600 {
        @apply text-gray-700;
    }
    
    /* Animation Adjustments */
    .animate-fade-in-up {
        animation-duration: 0.4s;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .max-w-7xl {
        @apply px-6;
    }
    
    .grid {
        @apply gap-6;
    }
    
    .stats-card,
    .impact-card {
        @apply mx-0;
    }
    
    .py-20 {
        @apply py-16;
    }
}

/* General Responsive Improvements */
.responsive-container {
    @apply w-full max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
}

.responsive-grid {
    @apply grid gap-4 sm:gap-6 lg:gap-8;
}

.responsive-text {
    @apply text-base sm:text-lg lg:text-xl;
}

.responsive-heading {
  @apply text-2xl sm:text-3xl lg:text-4xl font-bold;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 1rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #94a3b8;
}

.breadcrumb-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        display: none;
    }
} 

/* Background utilities (Tailwind-like) */
.bg-white { background-color: #ffffff !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.bg-muted { background-color: rgb(var(--muted)) !important; }
.bg-secondary { background-color: rgb(var(--secondary)) !important; }

/* Alternating section backgrounds - opt-in via body.alt-sections */
body.alt-sections main > section:not(.hero):not([class*="bg-"]):nth-of-type(even) {
  background-color: rgb(var(--muted));
} 

/* Extended utility classes for SEO subpages */
.bg-gradient-to-r { background: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Gradient stops */
.from-blue-50 { --tw-gradient-from: rgb(239 246 255); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(239 246 255 / 0)); }
.from-green-50 { --tw-gradient-from: rgb(240 253 244); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(240 253 244 / 0)); }
.from-purple-50 { --tw-gradient-from: rgb(250 245 255); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 245 255 / 0)); }
.from-orange-50 { --tw-gradient-from: rgb(255 247 237); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 247 237 / 0)); }
.from-red-50 { --tw-gradient-from: rgb(254 242 242); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(254 242 242 / 0)); }
.from-teal-50 { --tw-gradient-from: rgb(240 253 250); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(240 253 250 / 0)); }

.to-indigo-100 { --tw-gradient-to: rgb(224 231 255); }
.to-emerald-100 { --tw-gradient-to: rgb(209 250 229); }
.to-violet-100 { --tw-gradient-to: rgb(237 233 254); }
.to-amber-100 { --tw-gradient-to: rgb(254 243 199); }
.to-pink-100 { --tw-gradient-to: rgb(252 231 243); }
.to-cyan-100 { --tw-gradient-to: rgb(207 250 254); }
.to-gray-50 { --tw-gradient-to: rgb(249 250 251); }

.via-white { --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255), var(--tw-gradient-to, rgb(255 255 255 / 0)); }

/* Solid background colors */
.bg-blue-600 { background-color: rgb(37 99 235) !important; color: #fff; }
.bg-green-600 { background-color: rgb(22 163 74) !important; color: #fff; }
.bg-purple-600 { background-color: rgb(147 51 234) !important; color: #fff; }
.bg-orange-600 { background-color: rgb(234 88 12) !important; color: #fff; }
.bg-red-600 { background-color: rgb(220 38 38) !important; color: #fff; }
.bg-teal-600 { background-color: rgb(13 148 136) !important; color: #fff; }

/* Text colors */
.text-white { color: #ffffff !important; }
.text-red-100 { color: rgb(254 226 226) !important; }
.text-blue-100 { color: rgb(219 234 254) !important; }
.text-green-100 { color: rgb(220 252 231) !important; }

/* Rounding */
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* Sizing */
.w-16 { width: 4rem !important; }
.h-16 { height: 4rem !important; }
.w-20 { width: 5rem !important; }
.h-20 { height: 5rem !important; }

/* Spacing */
.p-8 { padding: 2rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.space-y-2 > * + * { margin-top: 0.5rem !important; }

/* Typography */
.text-2xl { font-size: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-sm { font-size: 0.875rem !important; }

/* Layout */
.gap-8 { gap: 2rem !important; }

/* Responsive grid helpers */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
} 

/* Additional gradient stop utilities */
.from-blue-600 { --tw-gradient-from: rgb(37 99 235); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(37 99 235 / 0)); }
.from-green-600 { --tw-gradient-from: rgb(22 163 74); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(22 163 74 / 0)); }
.from-red-600 { --tw-gradient-from: rgb(220 38 38); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(220 38 38 / 0)); }

.to-blue-600 { --tw-gradient-to: rgb(37 99 235); }
.to-purple-600 { --tw-gradient-to: rgb(147 51 234); }
.to-orange-600 { --tw-gradient-to: rgb(234 88 12); }

/* Text color utilities at 600 shade */
.text-blue-600 { color: rgb(37 99 235) !important; }
.text-green-600 { color: rgb(22 163 74) !important; }
.text-purple-600 { color: rgb(147 51 234) !important; }
.text-orange-600 { color: rgb(234 88 12) !important; }
.text-red-600 { color: rgb(220 38 38) !important; }
.text-teal-600 { color: rgb(13 148 136) !important; }

/* Additional backgrounds and widths */
.bg-gray-50 { background-color: rgb(249 250 251) !important; }
.max-w-4xl { max-width: 56rem !important; }
.text-3xl { font-size: 1.875rem !important; } 

