/* Non-critical CSS loaded asynchronously */

/* CSS Custom Properties for Design System */
:root {
  /* Colors */
  --color-primary: #ff9900;
  --color-primary-dark: #e68a00;
  --color-primary-darker: #cc7a00;
  --color-black: #000000;
  --color-gray-900: #111111;
  --color-gray-800: #1f1f1f;
  --color-gray-700: #333333;
  --color-gray-600: #4a4a4a;
  --color-gray-500: #666666;
  --color-gray-400: #999999;
  --color-gray-300: #cccccc;
  --color-gray-200: #e5e5e5;
  --color-gray-100: #f5f5f5;
  --color-gray-50: #f9f9f9;
  --color-white: #ffffff;
  
  /* Typography */
  --font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;
  --space-96: 24rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* Apply Montserrat after it loads via Google Fonts */
body {
  font-family: var(--font-family);
  color: var(--color-black);
  line-height: 1.5;
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
*:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2);
  text-decoration: none;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-semibold);
}

.skip-link:focus {
  top: 6px;
}

/* Fade in animation */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* UNIFIED BUTTON STYLES - STREAMLINED DESIGN */
.cta-button {
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  padding: 10px 20px; /* Further reduced from 12px 24px */
  border-radius: var(--radius-sm); /* Smaller radius for flatter look */
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent; /* Thinner border */
  cursor: pointer;
  min-height: 40px; /* Further reduced from 44px */
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.025em; /* Slight letter spacing for cleaner look */
  touch-action: manipulation; /* Fix double-tap issue on mobile */
  box-sizing: border-box; /* Ensure padding is included in width calculations */
}

.cta-button.primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: none; /* Remove hover lift for flatter feel */
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black); /* Thinner border */
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
  background: var(--color-black);
  color: var(--color-white);
}

.cta-button.black {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.cta-button.black:hover,
.cta-button.black:focus {
  background: var(--color-gray-800);
  border-color: var(--color-gray-800);
  transform: none; /* Remove hover lift for flatter feel */
}

/* UNIFIED PRICING STYLES */
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  min-height: 600px;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-2px); /* Reduced from -4px */
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--color-black);
  padding-top: calc(var(--space-8) + var(--space-6));
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-xl);
}

.best-value {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-6);
  border-radius: 25px;
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
  z-index: 10;
}

.pricing-card h3 {
  font-family: var(--font-family);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.pricing-card.featured h3 {
  margin-top: var(--space-2);
}

.price {
  font-family: var(--font-family);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.price-period {
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-gray-500);
}

.pricing-subtitle {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-gray-500);
  margin-bottom: var(--space-8);
  line-height: 1.5;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-list {
  list-style: none;
  margin-bottom: var(--space-8);
  text-align: left;
  flex-grow: 1;
  padding: 0;
}

.features-list li {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-black);
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.5;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
}

.pricing-cta {
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  background: var(--color-black);
  text-decoration: none;
  padding: 10px 20px; /* Further reduced from 12px 24px */
  border-radius: var(--radius-sm); /* Smaller radius for flatter look */
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: none;
  cursor: pointer;
  min-height: 40px; /* Further reduced from 44px */
  line-height: 1.1;
  letter-spacing: 0.025em;
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

.pricing-cta:hover {
  background: var(--color-gray-800);
  transform: none; /* Remove hover lift for flatter feel */
}

/* UNIFIED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  line-height: 1.2;
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  font-family: var(--font-family);
  font-weight: var(--font-weight-light);
  color: var(--color-black);
  line-height: 1.5;
}

/* UNIFIED FAQ STYLES */
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  cursor: pointer;
  transition: background-color var(--transition-normal);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

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

.faq-question:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: var(--font-weight-light);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 var(--space-6);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--color-black);
  line-height: 1.5;
  margin: 0;
  padding-top: var(--space-2);
}

/* Navigation Styles */
.navigation {
  background: var(--color-white);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: var(--space-8);
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--color-black);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-normal);
  display: block;
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

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

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  min-width: 200px;
  z-index: 1001;
}

.dropdown-item {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-black); /* Fix: Explicitly set hamburger icon color to black */
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
}

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

/* Mobile menu dropdown styles */
.mobile-menu .nav-item {
  margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-gray-100);
  padding-bottom: var(--space-2);
}

.mobile-menu .nav-item:last-child {
  border-bottom: none;
}

.mobile-menu .nav-link {
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
}

.mobile-menu .mobile-dropdown-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .mobile-dropdown-toggle::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: var(--font-weight-light);
  transition: transform var(--transition-normal);
  color: var(--color-gray-600);
}

.mobile-menu .nav-item.active-mobile-dropdown .mobile-dropdown-toggle::after {
  transform: rotate(45deg);
}

.mobile-menu .dropdown {
  display: none;
  position: static;
  background: var(--color-gray-50);
  box-shadow: none;
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  margin-top: var(--space-2);
  min-width: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.mobile-menu .nav-item.active-mobile-dropdown .dropdown {
  display: block;
  max-height: 500px;
  padding: var(--space-3);
}

.mobile-menu .dropdown-item {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.mobile-menu .dropdown-item:last-child {
  border-bottom: none;
}

.mobile-menu .dropdown .nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-normal);
  color: var(--color-gray-700);
}

.mobile-menu .dropdown .nav-link:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: var(--radius-sm);
}

/* Hero Styles */
.hero-cta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Stats Styles */
.stats {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.stats h2 {
  font-family: var(--font-family);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-12);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.stat-number {
  font-family: var(--font-family);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.stat-title {
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.stat-description {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  line-height: 1.5;
}

/* Services Styles */
.services {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.services-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-24);
}

.service-card:last-child {
  margin-bottom: 0;
}

.service-card.reverse {
  direction: rtl;
}

.service-card.reverse > * {
  direction: ltr;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.services-header h2 {
  font-family: var(--font-family);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.services-header p {
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.service-content h2 {
  font-family: var(--font-family);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.service-content h3 {
  font-family: var(--font-family);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.service-content p {
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

.learn-more {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary-dark);
  padding-bottom: 2px;
  transition: color var(--transition-normal);
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

.learn-more:hover,
.learn-more:focus {
  color: var(--color-primary-dark);
}

.service-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-image {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
}

.service-features {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
}

.service-features li {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-black);
  margin-bottom: var(--space-2);
  padding-left: var(--space-5);
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-dark);
  font-weight: var(--font-weight-bold);
}

/* Team Styles */
.team {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.team h2 {
  font-family: var(--font-family);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-16);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-16);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
  object-fit: cover;
}

.member-name {
  font-family: var(--font-family);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.member-title {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
  display: block;
}

.member-bio {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  line-height: 1.5;
}

/* Testimonials Styles */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--color-gray-100);
}

.testimonials h2 {
  font-family: var(--font-family);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8) var(--space-6);
}

.testimonial-name {
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  line-height: 1.5;
}

/* Footer Styles */
.footer {
  padding: var(--space-24) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
}

.footer-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  margin-bottom: var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-12);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  margin-bottom: var(--space-12);
}

.footer-column h3 {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-6);
}

.footer-link {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-700);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-2);
  transition: color var(--transition-normal);
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

.footer-link:hover,
.footer-link:focus {
  color: var(--color-primary-dark);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  text-align: center;
  border-top: 1px solid var(--color-gray-200);
  padding-top: var(--space-12);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.social-link {
  color: var(--color-black);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-gray-100);
  text-decoration: none;
  touch-action: manipulation; /* Fix double-tap issue on mobile */
}

.social-link:hover,
.social-link:focus {
  color: #0077b5;
  background: #e8f4f8;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-light);
  color: var(--color-gray-500);
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  :root {
    --text-4xl: 1.875rem;
    --text-5xl: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

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

  .hero-cta {
    justify-content: center;
  }
  
  .service-card {
    grid-template-columns: 1fr;
  }
  
  .service-card.reverse {
    direction: ltr;
  }

  .service-image-container {
    min-height: 280px;
  }

  .service-image {
    max-height: 280px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-copyright {
    font-size: var(--text-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --text-4xl: 1.75rem;
    --text-5xl: 2.25rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    gap: 0;
  }

  .hero-cta .cta-button {
    margin-bottom: var(--space-4);
    margin-right: 0;
  }

  .hero-cta .cta-button:last-child {
    margin-bottom: 0;
  }

  .service-image-container {
    min-height: 220px;
  }

  .service-image {
    max-height: 220px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .cta-button.primary {
    background: var(--color-black);
    border-color: var(--color-black);
  }
  
  .stat-number {
    color: var(--color-black);
  }
  
  .service-features li::before {
    color: var(--color-black);
  }
  
  .learn-more {
    border-bottom-color: var(--color-black);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  section {
    opacity: 1;
    transform: none;
  }
}