html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 1.5rem;
  font-family: 'Spectral', serif, Arial, sans-serif; /* Better font stack */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
  gap: 0px;
  box-sizing: border-box;
  /* Ensure body scroll is properly supported for sticky positioning */
  overflow-x: hidden;
  overflow-y: auto;
  /* Enhanced font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.site-container {
  width: 100%;
  max-width: 57.4375rem; /* 919px */
  border: 0.25rem solid #1A1A1A; /* 4px - refined thickness */
  border-radius: 1rem; /* 16px - more premium rounded corners */
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.2), 
              0 1.25rem 2.5rem rgba(0, 0, 0, 0.12),
              0 0.625rem 1.25rem rgba(0, 0, 0, 0.08);
  background: #FFFFFF; /* Clean white background */
  overflow: visible; /* Changed from hidden to allow sticky header to work */
  position: relative;
  /* Subtle border glow */
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.1),
              0 2.5rem 5rem rgba(0, 0, 0, 0.2), 
              0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
}

/* Content wrapper to handle overflow while preserving sticky header */
.site-content {
  overflow: hidden;
  border-radius: 0 0 0.375rem 0.375rem; /* Only bottom corners for content */
}

.hero-section {
  width: 100%;
  height: 12rem; /* 192px - back to original height */
  position: -webkit-sticky; /* Safari compatibility */
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 0.375rem 0.375rem 0 0;
  border-bottom: 0.125rem solid #1A1A1A;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  gap: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15),
              0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  /* Enhanced sticky header with subtle animation */
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Enhanced sticky header */
}

.header-top {
  display: contents;
}

.service-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.service-nav-button {
  background: #1A1A1A;
  color: white;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 0.125rem 0.5rem rgba(26, 26, 26, 0.2),
              0 0.0625rem 0.25rem rgba(26, 26, 26, 0.3);
  position: relative;
  overflow: hidden;
}

.service-nav-button:hover {
  background: #FF1744;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(255, 23, 68, 0.3),
              0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
}

/* Add subtle animation on nav buttons */
.service-nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease-in-out;
}

.service-nav-button:hover::before {
  left: 100%;
}

.service-nav-button.active {
  background: #FF1744;
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
}

/* Hide service nav on mobile to save space */
@media (max-width: 768px) {
  .service-nav {
    display: none;
  }
  
  .hero-section {
    height: 12rem; /* Back to original mobile height */
    grid-template-columns: auto 1fr auto; /* 3 columns on mobile without service nav */
    /* Force sticky behavior on mobile */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .hero-section .cta-button {
    justify-self: center; /* Center the CTA button in its grid cell */
  }
}

.hero-image {
  width: 8rem; /* 128px - reduced for compact header */
  height: 8rem; /* 128px - reduced for compact header */
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.hero-text {
  position: static; /* Remove absolute positioning */
  grid-column: 1 / -1; /* Span all columns */
  text-align: center;
  color: #1A1A1A;
  font-size: 2.25rem; /* 36px - BIGGER for web view */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  word-wrap: break-word;
  text-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
  display: none; /* Hide on all devices since content moved to services section */
}

/* Desktop-only larger font */
@media (min-width: 769px) {
  .hero-text {
    font-size: 2.5rem; /* 40px - EVEN BIGGER for desktop */
  }
}

.hero-text h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

/* Comparison page hero text - no absolute positioning */
.comparison-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1A1A1A;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  line-height: 1.2;
}

.comparison-hero-text h1 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Spectral SC', serif;
  color: #1A1A1A;
}

.comparison-hero-text p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: 'Spectral', serif;
  color: #666;
  font-style: italic;
}

@media (min-width: 769px) {
  .comparison-hero-text h1 {
    font-size: 1.75rem;
  }
  
  .comparison-hero-text p {
    font-size: 1rem;
  }
}

/* Page title section - below header */
.page-title-section {
  background: #F8F9FA;
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-bottom: 1px solid #E5E5E5;
}

.page-title-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-title-container h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Spectral SC', serif;
  color: #1A1A1A;
  line-height: 1.2;
}

.page-title-container p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'Spectral', serif;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .page-title-section {
    padding: 2rem 0 1.5rem 0;
  }
  
  .page-title-container h1 {
    font-size: 1.875rem;
  }
  
  .page-title-container p {
    font-size: 1rem;
  }
}

/* Pricing Callout as Service Cards */
.pricing-callout-section {
  margin: 2rem 0;
}

.pricing-callout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.pricing-callout-container h2 {
  font-family: 'Spectral SC', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: #1A1A1A;
  text-align: center;
}

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

/* Homepage bundled pricing card - single card layout */
.pricing-callout-section .pricing-callout-grid {
  max-width: 500px;
  margin: 0 auto 1rem auto;
  grid-template-columns: 1fr;
}

.pricing-callout-item {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-callout-item:hover {
  border-color: #FF1744;
  box-shadow: 0 0.5rem 2rem rgba(255, 23, 68, 0.15);
  transform: translateY(-2px);
}

.pricing-callout-item h3 {
  font-family: 'Spectral SC', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #1A1A1A;
}

.pricing-callout-price {
  font-family: 'Spectral SC', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #FF1744;
}

.pricing-callout-item p:last-child {
  font-size: 1rem;
  margin: 0;
  color: #666;
  font-family: 'Spectral', serif;
  line-height: 1.4;
}

.pricing-callout-note {
  font-size: 0.875rem;
  margin: 1rem 0 0 0;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Quick Pricing Callout as Service Card */
.quick-pricing-callout {
  margin: 2rem 0;
}

.quick-pricing-content {
  background: #FFFFFF;
  border: 2px solid #FF1744;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 0.25rem 1rem rgba(255, 23, 68, 0.15);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quick-pricing-content h3 {
  font-family: 'Spectral SC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #1A1A1A;
}

.quick-pricing-range {
  font-family: 'Spectral SC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #FF1744;
}

.quick-pricing-details {
  font-size: 1rem;
  margin: 0;
  color: #666;
  font-family: 'Spectral', serif;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pricing-callout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pricing-callout-container h2 {
    font-size: 1.5rem;
  }
  
  .pricing-callout-section {
    padding: 1rem 0.75rem; /* Enhanced mobile padding */
  }
  
  .pricing-callout-item {
    padding: 1.5rem 1.25rem; /* Better mobile padding */
    margin: 0 auto;
    max-width: 95%; /* Prevent edge touching */
  }
  
  .pricing-callout-price {
    font-size: 1.75rem; /* Larger for mobile readability */
    margin-bottom: 0.75rem;
  }
  
  .pricing-callout-item h3 {
    font-size: 1.125rem; /* Better mobile size */
    line-height: 1.3;
  }
  
  .pricing-callout-item p {
    font-size: 0.95rem; /* Enhanced readability */
    line-height: 1.5;
  }
  

  
  .quick-pricing-callout {
    padding: 1.5rem;
  }
  
  .quick-pricing-content h3 {
    font-size: 1.25rem;
  }
  
  .quick-pricing-range {
    font-size: 1.5rem;
  }
}

.menu-button {
  width: 4rem; /* 64px - proper desktop size */
  height: 4rem; /* 64px */
  position: absolute;
  top: 50%; /* VERTICAL CENTER like the logo */
  right: 1.25rem; /* 20px */
  transform: translateY(-50%); /* CENTER VERTICALLY */
  display: flex;
  flex-direction: column;
  align-items: center; /* HORIZONTALLY CENTER THE HAMBURGER LINES */
  justify-content: center; /* VERTICALLY CENTER THE HAMBURGER LINES */
  background: #FF1744;
  border-radius: 0.75rem; /* 12px */
  border: 0.0625rem solid #1A1A1A;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.25rem; /* 4px */
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.3);
  z-index: 100;
}

.menu-button:hover {
  background: #E91E63;
  transform: translateY(-50%) translateY(-0.1875rem); /* MAINTAIN CENTER + HOVER EFFECT */
  box-shadow: 0 0 0.3125rem red,
              0 0 0.625rem red,
              0 0 0.9375rem rgba(255, 0, 0, 0.8),
              0 0 1.25rem rgba(255, 0, 0, 0.6);
}

.hamburger-line {
  width: 2rem; /* 32px - proper size for 64px button */
  height: 0.25rem; /* 4px - thicker for visibility */
  background: #FFFFFF; /* White hamburger lines */
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  overflow-y: auto;
}

/* Menu Overlay Mask */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(4px);
}

.menu-overlay.open {
  display: block !important;
}

.mobile-menu.open {
  display: flex !important;
}



.mobile-menu a {
  background: #1A1A1A;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  line-height: 1.2;
  width: 15rem;
  max-width: 90%;
  margin: 0 auto;
  box-shadow: 0 0.125rem 0.25rem rgba(26, 26, 26, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-menu a:hover {
  background: #FF1744;
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
}

.mobile-menu-divider {
  color: #1A1A1A;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem 0 0.5rem 0;
  margin: 0.5rem 0;
  border-top: 2px solid #E5E7EB;
}

.services-section {
  width: 100%;
  min-height: 5rem; /* Proportional to header size */
  position: relative;
  background: #F8F9FA;
  border-radius: 0;
  border-bottom: 0.0625rem solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* Balanced spacing */
  padding: 1.5rem 2rem; /* Proportional padding */
  box-sizing: border-box;
}

/* Desktop-only services section spacing */
@media (min-width: 769px) {
  .services-section {
    padding: 2rem 2rem; /* Balanced padding for desktop */
    gap: 1.25rem; /* Proportional spacing */
    min-height: 6rem; /* Properly sized */
  }
}

.services-header {
  text-align: center;
  color: #1A1A1A;
  font-size: 2rem; /* 32px - properly proportioned */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-shadow: none;
  line-height: 1.2;
  padding: 0;
  margin: 0 auto 1rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.services-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.services-overview-description {
  text-align: center;
  color: #1E1E1E;
  font-size: 1.375rem; /* 22px */
  font-family: 'Spectral', serif;
  font-weight: 600;
  line-height: 1.5;
  max-width: 50rem; /* 800px */
  margin: 0 auto;
}

.cta-button {
  background: #FF1744;
  color: white; /* Changed to white text like mobile view */
  border: none;
  padding: 0.875rem 1.5rem; /* 14px 24px */
  border-radius: 0.375rem; /* 6px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  width: 100%;
  max-width: 240px;
  /* Enhanced sophisticated glow */
  box-shadow: 0 0 0.75rem rgba(255, 23, 68, 0.5),
              0 0 1.5rem rgba(255, 23, 68, 0.3),
              0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
  position: relative;
  overflow: hidden;
}

/* Header CTA Button - Consolidated and Right-Aligned */
.hero-section .cta-button {
  width: auto; /* Let content determine width */
  max-width: none; /* Remove max-width constraint */
  min-width: 8rem; /* 128px - minimum consolidated width */
  padding: 0.75rem 1rem; /* 12px 16px - more compact padding */
  font-size: 0.875rem; /* 14px - slightly smaller for header */
  justify-self: end; /* Align to far right in grid */
  align-self: center; /* Center vertically */
  white-space: nowrap; /* Prevent text wrapping */
}

/* Override for the main hero section CTA button to center it */
.services-section .cta-button {
  display: block;
  margin: 0 auto;
}

.cta-button:hover {
  background: #E91E63;
  transform: translateY(-2px);
  box-shadow: 0 0 1.25rem rgba(255, 0, 0, 0.8),
              0 0 2rem rgba(255, 0, 0, 0.6),
              0 0.5rem 1rem rgba(255, 0, 0, 0.4);
}

/* Add subtle shimmer effect to CTA buttons */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.8s ease-in-out;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem; /* 24px */
  margin-bottom: 1rem; /* 16px */
}

.service-cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* MUCH smaller gap */
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem; /* MUCH smaller margin */
}

.service-cta-button {
  background: #FF1744;
  color: black;
  border: none;
  padding: 0.875rem 1.5rem; /* 14px 24px */
  border-radius: 0.375rem; /* 6px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 0 0.625rem rgba(255, 23, 68, 0.6),
              0 0 1.25rem rgba(255, 23, 68, 0.4),
              0 0 1.875rem rgba(255, 23, 68, 0.2);
}

.service-cta-button:hover {
  background: #E91E63;
  transform: translateY(-1px);
  box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 1.0),
              0 0 1.5625rem rgba(255, 0, 0, 0.8),
              0 0 2.1875rem rgba(255, 0, 0, 0.6);
}

.industry-cta-button {
  background: #1A1A1A;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.3;
  max-width: 280px;
  box-shadow: 0 0.125rem 0.25rem rgba(26, 26, 26, 0.3);
  white-space: nowrap;
}

.industry-cta-button:hover {
  background: #FF1744;
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
}

/* Industries Grid Styles - CONDENSED & CENTERED */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; /* Condensed spacing */
  padding: 1.5rem 2rem; /* Condensed padding */
  max-width: 1200px;
  margin: 0 auto; /* CENTER the grid */
  background: #FFFFFF;
  justify-items: center; /* CENTER grid items */
  align-items: center; /* VERTICAL CENTER */
}

/* Remove special positioning - let all cards flow naturally in 3x3 grid */

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF; /* Clean white background */
  border: 0.0625rem solid #E5E7EB; /* Subtle border */
  border-radius: 0.75rem; /* 12px - more rounded */
  padding: 2rem; /* 32px - more padding */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05),
              0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* Subtler shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
  min-height: 140px; /* Slightly taller */
  justify-content: center;
}

.industry-card:hover {
  transform: translateY(-3px); /* Slightly more movement */
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1),
              0 0.375rem 0.75rem rgba(0, 0, 0, 0.15); /* More elegant shadow */
  border-color: #D1D5DB; /* Slightly darker border on hover */
}

.industries-section .section-header {
  text-align: center;
  margin: 0 auto 0.5rem auto; /* 75% smaller margin */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* VERTICAL CENTER */
  padding: 0.5rem 0; /* Much smaller padding */
}

.industries-section .section-header h2 {
  font-family: 'Spectral SC', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.industries-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem auto;
  max-width: 900px;
  width: 100%;
  justify-items: center; /* CENTER all grid items */
  align-items: center; /* VERTICAL CENTER all grid items */
}

.industry-cta-button {
  background: #1A1A1A;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem; /* 14px 24px */
  border-radius: 0.375rem; /* 6px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  width: 100%;
  height: 4rem; /* Fixed height for consistency */
  min-height: 4rem;
  max-width: 240px;
  box-shadow: 0 0.125rem 0.25rem rgba(26, 26, 26, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.industry-cta-button:hover {
  background: #FF1744;
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.4);
}

/* Bio Toggle Button Styles - Match Industry CTA Buttons */
.bio-toggle-btn:hover,
.coo-bio-toggle-btn:hover {
  background: #FF1744 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.5rem rgba(255, 23, 68, 0.4) !important;
}





/* Bottom Line Section Styles */
.bottom-line-section {
  width: 100%;
  background: #F8F9FA; /* Clean light gray */
  border-bottom: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 2rem 2rem; /* 32px */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Final CTA Section Styles */
.final-cta-section {
  width: 100%;
  background: #FFFFFF; /* Clean white background */
  border-bottom: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 2rem 2rem; /* 32px - reduced from 48px */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.final-cta-container {
  display: flex;
  gap: 1rem; /* CONDENSED spacing */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  width: 100%;
  margin: 1rem auto; /* CONDENSED margin */
  padding: 1rem 0; /* CONDENSED padding */
  min-height: 4rem; /* CONDENSED height */
}

/* Desktop-only final CTA container spacing reduction */
@media (min-width: 769px) {
  .final-cta-container {
    margin: 0.75rem auto; /* FURTHER CONDENSED for desktop */
    padding: 0.75rem 0; /* FURTHER CONDENSED for desktop */
  }
}

.final-cta-container .cta-button {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 300px;
  width: auto;
  white-space: nowrap;
  font-size: 1rem; /* 16px */
  padding: 0.5rem 2rem; /* 8px 32px - much smaller */
  display: block;
}

.pricing-section {
  width: 100%;
  min-height: 1rem; /* Minimal height */
  position: relative;
  background: #F8F9FA;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.125rem; /* Very condensed gap */
  padding: 0.5rem; /* Very condensed padding */
  box-sizing: border-box;
  border-bottom: 0.0625rem solid #E5E7EB;
}

.services-container {
  width: 100%;
  background: #FFFFFF; /* Clean white background */
  border-radius: 0;
  border-bottom: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 0.5rem 1rem; /* Much more condensed - 8px 16px */
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Much more condensed - 8px */
  align-items: center;
  box-sizing: border-box;
}

/* Desktop-only services container spacing reduction */
@media (min-width: 769px) {
  .services-container {
    padding: 0.75rem 2rem; /* Condensed for desktop - 12px 32px */
    gap: 0.75rem; /* Condensed for desktop - 12px */
  }
}

.service-card {
  width: 100%;
  max-width: 50rem; /* 800px - wider for better desktop use */
  background: #FFFFFF; /* Clean white background */
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06),
              0 0.125rem 0.375rem rgba(0, 0, 0, 0.08); /* Enhanced shadow */
  border-radius: 0.75rem; /* 12px - more rounded */
  border: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 1rem 1.5rem; /* Much more condensed - 16px 24px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; /* Much more condensed - 12px */
  position: relative;
  min-height: 4rem; /* Much more condensed - 64px */
  justify-content: flex-start;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother, longer easing */
  cursor: pointer;
  overflow: hidden;
}

/* Desktop-only service card spacing reduction */
@media (min-width: 769px) {
  .service-card {
    padding: 0.75rem 1.25rem; /* Very condensed for desktop - 12px 20px */
  }
}

.service-card:hover {
  transform: translateY(-0.375rem); /* -6px - more noticeable lift */
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12),
              0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* More dramatic shadow */
  border-color: #D1D5DB; /* Slightly darker border */
}

/* Add subtle card animation */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 1s ease-in-out;
  z-index: 1;
}

.service-card:hover::before {
  left: 100%;
}

.pricing-header {
  text-align: center;
  color: #1A1A1A; /* Darker for better contrast */
  font-size: 2.25rem; /* 36px - larger for better hierarchy */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  word-wrap: break-word;
  text-shadow: none; /* Remove heavy shadow */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem; /* 64px - taller */
  line-height: 1.3; /* Better readability */
  margin: 0 auto; /* Center the header */
  width: 100%;
}

.pricing-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.service-title {
  color: #1E1E1E;
  font-size: 1.5rem; /* 24px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.25); /* 2px 4px */
  margin: 0;
}

.service-title h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.service-features {
  text-align: center; /* Changed to center by default */
  color: #1E1E1E;
  font-size: 1rem; /* Reduced to 16px for more compact */
  font-family: 'Spectral', serif;
  font-weight: 600;
  line-height: 1.3; /* Tighter line height */
  max-width: 37.5rem; /* 600px */
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* Consistent spacing - 4px */
}

.feature-item {
  position: relative;
  padding-left: 0; /* Remove left padding for center alignment */
  display: inline-block; /* Changed to inline-block for center alignment */
  text-align: center;
  width: 100%;
  justify-content: center;
}

.feature-item::before {
  content: "• ";
  color: #FF1744;
  font-size: 1.5rem; /* 24px */
  position: static; /* Changed to static for center alignment */
  display: inline; /* Changed to inline for center alignment */
  line-height: 1.6;
  font-weight: 900;
}

.service-description {
  color: #1E1E1E;
  text-align: center; /* ENSURE all service descriptions are centered */
  font-size: 1.125rem; /* 18px */
  font-family: 'Spectral', serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  padding: 0 1rem;
  max-width: 37.5rem; /* 600px */
}

.floating-menu-button {
  position: fixed;
  bottom: 1.875rem; /* 30px */
  right: 1.875rem; /* 30px */
  background: #FF1744;
  border: none; /* Match CTA button - no border */
  border-radius: 0.5rem; /* Enhanced rounded corners for premium feel */
  width: 4.25rem; /* 68px - slightly larger for better mobile touch */
  height: 4.25rem; /* 68px */
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem; /* 5px - enhanced spacing */
  /* Enhanced premium box-shadow */
  box-shadow: 0 0.5rem 1rem rgba(255, 23, 68, 0.4),
              0 0.25rem 0.5rem rgba(255, 23, 68, 0.6),
              0 0 1.5rem rgba(255, 23, 68, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-menu-button .hamburger-line {
  width: 1.5rem;
  height: 0.2rem;
  background: #FFFFFF; /* White hamburger lines on red background */
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.floating-menu-button:hover {
  background: #E91E63;
  transform: translateY(-3px) scale(1.05); /* Enhanced hover effect */
  /* Enhanced premium hover box-shadow */
  box-shadow: 0 0.75rem 1.5rem rgba(255, 23, 68, 0.5),
              0 0.375rem 0.75rem rgba(255, 23, 68, 0.7),
              0 0 2rem rgba(255, 0, 0, 0.3);
}

.service-overview-section {
  width: 100%;
  background: #F8F9FA; /* Clean light gray */
  border-radius: 0;
  border-bottom: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 1rem 1.5rem; /* Much more condensed - 16px 24px */
  display: flex;
  flex-direction: column;
  align-items: center; /* CENTER all content */
  gap: 0.75rem; /* Much more condensed - 12px */
  box-sizing: border-box;
}

/* Desktop-only service overview section spacing reduction */
@media (min-width: 769px) {
  .service-overview-section {
    padding: 1.25rem 2rem; /* Condensed for desktop - 20px 32px */
    gap: 1rem; /* Condensed for desktop - 16px */
  }
}

.service-overview-header {
  text-align: center;
  color: #1E1E1E;
  font-size: 2.25rem; /* 36px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25); /* 4px */
  margin-bottom: 1.25rem; /* 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem; /* Add consistent height for vertical centering */
}

.service-overview-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.service-overview-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* CENTER all content items */
  gap: 1.5625rem; /* 25px */
  max-width: 50rem; /* 800px */
  margin: 0 auto;
  text-align: center; /* ENSURE text centering */
}

.overview-item {
  background: #FFFFFF; /* Clean white background */
  border-radius: 0.75rem; /* 12px */
  border: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 2rem; /* 32px - more padding */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05),
              0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* Subtler shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
  cursor: pointer;
}

/* Desktop-only overview item spacing reduction */
@media (min-width: 769px) {
  .overview-item {
    padding: 1.5rem; /* Reduced from 2rem to 1.5rem for desktop */
  }
}

.overview-item:hover {
  transform: translateY(-0.25rem); /* -4px - more subtle */
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1),
              0 0.375rem 0.75rem rgba(0, 0, 0, 0.15); /* Elegant shadow */
  border-color: #D1D5DB; /* Slightly darker border */
}

.overview-title {
  color: #1E1E1E;
  font-size: 1.5rem; /* 24px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.9375rem; /* 15px */
  text-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.15); /* 2px 4px */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem; /* Add consistent height for vertical centering */
}

.overview-title h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.overview-description {
  color: #1E1E1E;
  font-size: 1.125rem; /* 18px */
  font-family: 'Spectral', serif;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  max-width: 43.75rem; /* 700px */
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section {
  width: 100%;
  background: #F3EBDD;
  border-radius: 0;
  border-bottom: 0.1875rem solid #000000; /* 3px */
  padding: 1rem 1.5rem 1.5rem 1.5rem; /* 16px 24px 24px 24px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; /* 20px */
  box-sizing: border-box;
  margin-top: 0;
}

.about-header {
  text-align: center;
  color: black;
  font-size: 2.25rem; /* 36px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  word-wrap: break-word;
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25); /* 4px */
}

.about-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.about-image {
  width: 9.875rem; /* 158px */
  height: 9.875rem; /* 158px */
  border-radius: 50%;
  object-fit: cover;
  border: 0.25rem solid #2C2C2C; /* 4px */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3); /* 8px 16px */
}

.about-content {
  text-align: center;
  color: black;
  font-size: 1.75rem; /* 28px */
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  max-width: 53.125rem; /* 850px */
  margin: 0 auto;
}

.about-content a {
  color: #FF1744;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-content a:hover {
  color: #E91E63;
}

.about-signature {
  text-align: center;
  color: black;
  font-size: 1.75rem; /* 28px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1.25rem; /* 20px */
}

.company-about-section {
  width: 100%;
  background: #F3EBDD;
  border-radius: 0;
  padding: 1.5rem; /* 24px - much more condensed */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px - further condensed */
  box-sizing: border-box;
}

.company-section {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px - reduced from 20px */
  max-width: 50rem; /* 800px */
  margin: 0 auto;
}

.company-section-header {
  text-align: center;
  color: #1E1E1E;
  font-size: 2rem; /* 32px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25); /* 4px */
}

.company-section-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.company-section-content {
  text-align: center;
  color: #1E1E1E;
  font-size: 1.375rem; /* 22px */
  font-family: 'Spectral', serif;
  font-weight: 600;
  line-height: 1.5;
}

.company-section-content h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}

.process-section {
  width: 100%;
  background: #F8F9FA; /* Clean light gray */
  border-radius: 0;
  border-bottom: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 2rem 2rem; /* 32px - reduced from 64px */
  display: flex;
  flex-direction: column;
  align-items: center; /* CENTER all process content */
  gap: 1.5rem; /* 24px - reduced from 48px */
  box-sizing: border-box;
}

.process-header {
  text-align: center;
  color: #1A1A1A; /* Darker for better contrast */
  font-size: 2.5rem; /* 40px - larger for better hierarchy */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-shadow: none; /* Remove heavy shadow */
  line-height: 1.3; /* Better readability */
}

.process-header h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.process-step {
  background: #FFFFFF; /* Clean white background */
  border-radius: 1rem; /* 16px - more rounded */
  border: 0.0625rem solid #E5E7EB; /* Subtle border */
  padding: 1.5rem; /* 24px - reduced from 40px */
  max-width: 55rem; /* 880px - wider for desktop */
  margin: 0 auto;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05),
              0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* Subtler shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
}

.process-step-title {
  color: #1A1A1A; /* Darker for better contrast */
  font-size: 2rem; /* 32px */
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem; /* 16px - reduced from 24px */
  text-shadow: none; /* Remove heavy shadow */
  line-height: 1.3; /* Better readability */
}

.process-step-title h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-shadow: inherit;
}

.process-step-description {
  color: #4A5568; /* Muted charcoal for description text */
  font-size: 1.5rem; /* 24px - slightly smaller for better hierarchy */
  font-family: 'Spectral', serif; /* Regular Spectral for body text */
  font-style: normal; /* Remove italic for better readability */
  font-weight: 400; /* Regular weight */
  text-align: center;
  line-height: 1.6; /* Better readability */
}

.footer-section {
  width: 100%;
  background: #FFFFFF; /* Clean white background */
  border-radius: 0 0 0.75rem 0.75rem; /* 12px - more rounded */
  padding: 2rem 2rem; /* 32px - reduced from 48px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* 24px - reduced from 32px */
  box-sizing: border-box;
  position: relative;
  border-top: 0.0625rem solid #E5E7EB; /* Subtle top border */
}

/* Desktop-only footer height reduction */
@media (min-width: 769px) {
  .footer-section {
    padding: 1.5rem 2rem; /* Further reduced from 2rem to 1.5rem for desktop */
    gap: 1rem; /* Further reduced from 1.5rem to 1rem for desktop */
  }
  
  .footer-logo {
    width: 6rem; /* Further reduced from 8rem to 6rem for desktop */
    height: 6rem; /* Further reduced from 8rem to 6rem for desktop */
  }
}

.footer-logo {
  width: 12.4375rem; /* 199px */
  height: 12.4375rem; /* 199px */
  border-radius: 0.25rem; /* 4px */
  object-fit: cover;
}

.footer-cta-button {
  background: #FF1744;
  border-radius: 0.375rem; /* Match CTA button rounded corners */
  border: none; /* Match CTA button - no border */
  padding: 0.875rem 1.5rem; /* Match CTA button padding */
  color: white; /* Match CTA button white text */
  font-size: 1.25rem; /* 20px */
  font-family: 'Spectral SC', serif; /* Match CTA button font family */
  font-style: normal; /* Remove italic */
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  min-width: 16.5rem; /* 264px */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Match CTA button box-shadow */
  box-shadow: 0 0 0.625rem rgba(255, 23, 68, 0.6),
              0 0 1.25rem rgba(255, 23, 68, 0.4),
              0 0 1.875rem rgba(255, 23, 68, 0.2);
}

.footer-cta-button:hover {
  background: #E91E63;
  transform: translateY(-1px); /* Match CTA button transform */
  /* Match CTA button hover box-shadow */
  box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 1.0),
              0 0 1.5625rem rgba(255, 0, 0, 0.8),
              0 0 2.1875rem rgba(255, 0, 0, 0.6);
}

.footer-text {
  text-align: center;
  color: #4A5568; /* Muted charcoal */
  font-size: 1rem; /* 16px - more reasonable size */
  font-family: 'Spectral', serif;
  font-style: normal; /* Remove italic */
  font-weight: 400; /* Regular weight */
  line-height: 1.5; /* Better readability */
}

.footer-menu-button {
  width: 3.9375rem; /* 63px */
  height: 3.9375rem; /* 63px */
  position: absolute;
  right: 1.25rem; /* 20px */
  top: 1.25rem; /* 20px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FF1744;
  border-radius: 0.5rem; /* 8px */
  border: 0.0625rem solid #2C2C2C;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.25rem; /* 4px */
}

.footer-menu-button:hover {
  background: #E91E63;
  transform: translateY(-0.1875rem); /* -3px */
  box-shadow: 0 0 0.3125rem red,
              0 0 0.625rem red,
              0 0 0.9375rem rgba(255, 0, 0, 0.8),
              0 0 1.25rem rgba(255, 0, 0, 0.6);
}

.footer-hamburger-line {
  width: 1.875rem; /* 30px */
  height: 0.1875rem; /* 3px */
  background: #FFFFFF; /* White hamburger lines */
  border-radius: 0.125rem; /* 2px */
  transition: all 0.3s ease;
}

.social-links {
  display: flex;
  gap: 1rem; /* 16px */
  margin-top: 0.625rem; /* 10px */
}

.social-icon {
  color: #1E1E1E;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.5rem; /* 8px */
  border-radius: 0.25rem; /* 4px */
}

.social-icon:hover {
  color: #FF1744;
  transform: translateY(-0.125rem); /* -2px */
}

.social-icon svg {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

/* Pricing Chart Styles - BOLD & DRAMATIC Pop Effect */
.pricing-chart-wrapper {
  width: 98%;
  max-width: 1400px; /* EVEN WIDER for maximum prominence */
  margin: 3rem auto; /* MORE spacing for emphasis */
  overflow: visible;
  background: #FFFFFF; /* Clean white background */
  border-radius: 1.5rem; /* 24px - EVEN MORE premium rounded */
  padding: 3rem; /* 48px - MAXIMUM generous padding */
  border: 0.1875rem solid #E5E7EB; /* THICKER border for prominence */
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12),
              0 1rem 2rem rgba(0, 0, 0, 0.15),
              0 0.5rem 1rem rgba(0, 0, 0, 0.2),
              0 0 2rem rgba(255, 23, 68, 0.08); /* DRAMATIC shadow with red glow */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: scale(1.05); /* START slightly larger */
}

/* AGGRESSIVE Pop Effect on Hover */
.pricing-chart-wrapper:hover {
  transform: translateY(-1rem) scale(1.08); /* MASSIVE lift and scale for pop effect */
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.15),
              0 2rem 4rem rgba(0, 0, 0, 0.18),
              0 1rem 2rem rgba(0, 0, 0, 0.22),
              0 0 3rem rgba(255, 23, 68, 0.15); /* INTENSE shadow with red glow */
  border-color: #FF1744;
  border-width: 0.25rem; /* THICKER border on hover */
}

/* ENHANCED table scaling on wrapper hover */
.pricing-chart-wrapper:hover .pricing-chart-table {
  transform: scale(1.03); /* MUCH more dramatic */
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25),
              0 1rem 2rem rgba(0, 0, 0, 0.18),
              0 0 2rem rgba(255, 23, 68, 0.2); /* BOLD shadow with red accent */
}

/* BOLD glow animation to charts */
@keyframes chartGlow {
  0%, 100% { 
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12),
                0 1rem 2rem rgba(0, 0, 0, 0.15),
                0 0.5rem 1rem rgba(0, 0, 0, 0.2),
                0 0 2rem rgba(255, 23, 68, 0.08);
  }
  50% { 
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12),
                0 1rem 2rem rgba(0, 0, 0, 0.15),
                0 0.5rem 1rem rgba(0, 0, 0, 0.2),
                0 0 4rem rgba(255, 23, 68, 0.2),
                0 0 6rem rgba(255, 23, 68, 0.1); /* INTENSE red glow */
  }
}

.pricing-chart-wrapper {
  animation: chartGlow 3s ease-in-out infinite; /* Faster animation */
}



.pricing-chart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Spectral SC', serif;
  border-radius: 1rem; /* 16px - match wrapper */
  overflow: visible;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15),
              0 0.375rem 0.75rem rgba(0, 0, 0, 0.1);
  position: relative;
  table-layout: fixed;
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles */
.chart-header-row {
  background: #1A1A1A; /* Dark charcoal background */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Management fee tables with light background override */
.chart-header-row[style*="background: #F8F9FA"] {
  background: #F8F9FA !important;
}

.tier-header,
.price-header {
  padding: 1.75rem 1rem; /* Even more generous padding */
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem; /* 18px - increased for better readability */
  color: white;
  font-family: 'Spectral SC', serif;
  text-transform: uppercase;
  letter-spacing: 0.75px; /* More prominent spacing */
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.2); /* Subtler border */
  position: relative;
  width: 16.66%;
  text-shadow: none; /* Remove heavy glow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Management fee headers with light background should have dark text */
.chart-header-row[style*="background: #F8F9FA"] .tier-header,
.chart-header-row[style*="background: #F8F9FA"] .price-header {
  color: #1A1A1A !important;
  border-right: 0.0625rem solid rgba(26, 26, 26, 0.2);
}

.price-header:last-child {
  border-right: none;
}

.bundle-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 23, 68, 0.3));
  position: relative;
  box-shadow: 
    inset 0 0 20px rgba(255, 215, 0, 0.3),
    0 0 15px rgba(255, 215, 0, 0.5);
}



.header-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: 'Spectral', serif;
  opacity: 0.9;
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0.3px;
}

.header-sub em {
  font-style: italic;
  color: #FF1744;
  font-weight: 600;
  text-shadow: 
    0 0 5px rgba(255, 23, 68, 0.8),
    1px 1px 2px rgba(0, 0, 0, 0.8);
}

.discount-text {
  display: block;
  font-size: 0.8rem;
  color: white;
  font-weight: 700;
  font-family: 'Spectral', serif;
  font-style: italic;
  margin-top: 2px;
  text-shadow: 
    0 0 8px rgba(255, 23, 68, 0.9),
    0 0 15px rgba(255, 23, 68, 0.7),
    2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Data Row Styles */
.chart-data-row {
  background: linear-gradient(135deg, rgba(29, 27, 32, 0.05), rgba(29, 27, 32, 0.02));
  border-bottom: 2px solid rgba(29, 27, 32, 0.1);
  transition: all 0.4s ease;
}

.chart-data-row:hover {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.15), rgba(255, 23, 68, 0.08));
  transform: scale(1.04); /* Slightly more dramatic scale */
  box-shadow: 
    0 0 25px rgba(255, 23, 68, 0.7),
    0 0 50px rgba(255, 23, 68, 0.5),
    0 10px 40px rgba(255, 23, 68, 0.4);
  z-index: 10;
  position: relative;
}

.chart-data-row:nth-child(even) {
  background: linear-gradient(135deg, rgba(29, 27, 32, 0.08), rgba(29, 27, 32, 0.03));
}

.lizard-king-row {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.25), rgba(255, 23, 68, 0.15)) !important;
  border: 4px solid #FF1744;
  position: relative;
  box-shadow: 
    0 0 20px rgba(255, 23, 68, 0.8),
    0 0 40px rgba(255, 23, 68, 0.6),
    inset 0 0 20px rgba(255, 23, 68, 0.2);
}

.lizard-king-row .bundle-cell {
  position: relative;
  overflow: visible;
}

.lizard-king-row .bundle-cell::after {
  content: "BEST VALUE";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #000;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 900;
  border: 2px solid #1D1B20;
  box-shadow: 
    0 0 10px rgba(255, 215, 0, 0.8),
    0 0 20px rgba(255, 215, 0, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  z-index: 10;
}



/* Cell Styles */
.tier-name {
  padding: 1rem 0.4rem;
  font-weight: 700;
  color: #1D1B20;
  font-size: 1rem; /* Increased from 0.9rem for better readability */
  font-family: 'Spectral SC', serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  border-right: 2px solid rgba(29, 27, 32, 0.2);
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.15), rgba(255, 23, 68, 0.05));
  width: 16.66%;
}

.price-cell {
  padding: 1rem 0.4rem;
  text-align: center;
  font-weight: 600;
  color: #1D1B20;
  font-size: 0.95rem;
  font-family: 'Spectral', serif;
  border-right: 2px solid rgba(29, 27, 32, 0.2);
  position: relative;
  width: 16.66%;
}

.price-cell:last-child {
  border-right: none;
}

.bundle-cell {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 23, 68, 0.15));
  color: #1D1B20;
  font-weight: 700;
  font-family: 'Spectral', serif;
  position: relative;
  box-shadow: 
    inset 0 0 15px rgba(255, 215, 0, 0.3),
    0 0 10px rgba(255, 215, 0, 0.4);
}

.bundle-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Tablet & Mobile Responsive Styles */
@media (max-width: 1024px) {
  .site-container {
    max-width: 95%; /* Responsive scaling for tablets */
  }
  
  .hero-text {
    left: 12rem; /* 192px - adjusted for tablet */
    width: 30rem; /* 480px */
  }
  
  .menu-button {
    right: 1.25rem; /* 20px */
  }
}

@media (max-width: 768px) {
  /* COMPLETE MOBILE LAYOUT OVERHAUL */
  
  /* Hero Section - Mobile flex layout optimized for iPhone 16 */
  .hero-section {
    height: auto !important;
    min-height: 8vh !important;
    padding: 0.5rem 0.75rem !important; /* Balanced padding for proportional logo */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    box-sizing: border-box !important;
  }
  
  .hero-image {
    width: 8rem !important; /* 128px - bigger for mobile */
    height: 8rem !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    margin-right: 0.25rem !important; /* Small right margin for balance */
    object-fit: contain !important;
  }
  
  .header-cta-button {
    width: auto !important;
    height: 2.75rem !important;
    flex-shrink: 0 !important;
    position: static !important;
    z-index: 1000 !important;
    background: #FF1744 !important;
    border: 0.0625rem solid #2C2C2C !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-left: 0.25rem !important;
    padding: 0.5rem 0.75rem !important;
    color: #FFFFFF !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    font-family: 'Spectral SC', serif !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  
  .header-cta-button:hover {
    background: #E91E63 !important;
    transform: translateY(-0.1875rem) !important; /* -3px like footer */
    box-shadow: 0 0 0.3125rem red,
                0 0 0.625rem red,
                0 0 0.9375rem rgba(255, 0, 0, 0.8),
                0 0 1.25rem rgba(255, 0, 0, 0.6) !important;
  }

  /* Header Navigation Styles */
  .header-nav {
    display: none !important; /* Hidden completely */
  }

  /* Desktop Header Navigation - DISABLED */
  @media (min-width: 768px) {
    .header-nav {
      display: none !important;
    }

    .header-nav-link {
      background: transparent !important;
      border: 0.125rem solid #FF1744 !important;
      border-radius: 0.5rem !important;
      color: #FF1744 !important;
      padding: 0.5rem 0.75rem !important;
      font-size: 0.875rem !important;
      font-weight: 600 !important;
      font-family: 'Spectral SC', serif !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
      white-space: nowrap !important;
    }

    .header-nav-link:hover {
      background: #FF1744 !important;
      color: #FFFFFF !important;
      transform: translateY(-0.125rem) !important;
      box-shadow: 0 0.25rem 0.75rem rgba(255, 23, 68, 0.3) !important;
    }
  }
  
  .hamburger-line {
    width: 1.5rem !important; /* 24px - proportional to smaller button */
    height: 0.2rem !important; /* 3.2px */
    background: #FFFFFF !important; /* White hamburger lines */
    border-radius: 0.125rem !important;
    transition: all 0.3s ease !important;
  }
  
  .hero-text {
    flex: 1 !important;
    text-align: center !important;
    margin: 0 0.5rem !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero-text h1 {
    font-size: 1rem !important; /* 16px - better proportion for hero */
    line-height: 1.2 !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 !important;
    color: #1A1A1A !important;
    font-family: 'Spectral SC', serif !important;
    font-weight: 700 !important;
    width: 100% !important;
    display: block !important;
  }
  
  .hero-text p {
    font-size: 0.875rem !important; /* 14px - proportional subtitle */
    line-height: 1.3 !important;
    margin: 0.25rem auto 0 auto !important;
    text-align: center !important;
    color: #666 !important;
    font-style: italic !important;
    width: 100% !important;
    display: block !important;
  }
  
  /* Make each line display properly on mobile - 3 separate lines */
  .hero-text h1 br {
    display: block !important;
  }

  /* Services Section - Mobile optimization with AGGRESSIVE CENTERING */
  .services-section {
    padding: 0.75rem 0.5rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .services-header {
    max-width: 100% !important;
    margin: 0 auto 0.5rem auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .services-header h2 {
    font-size: 1.1rem !important; /* Slightly larger for better visibility */
    line-height: 1.3 !important;
    padding: 0 !important;
    margin: 0.2rem auto !important; /* Center with auto margins */
    text-align: center !important;
    color: #1A1A1A !important;
    font-family: 'Spectral SC', serif !important;
    font-weight: 700 !important;
    display: block !important;
    white-space: normal !important; /* Allow text wrapping */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important; /* Ensure full width for centering */
  }
  
  /* ALIGN HEADERS TO MATCH CTA BUTTONS - EXACT SAME CONTAINER */
  .services-header,
  .pricing-header,
  .section-header,
  .page-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 320px !important; /* Same as service-cta-container */
    margin: 1rem auto !important; /* Same as service-cta-container */
    padding: 0 1rem !important; /* Same as service-cta-container */
  }
  
  /* Service Buttons - Fully centered for mobile */
  .service-cta-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 320px !important; /* Wider for better mobile fit */
    margin: 1rem auto !important; /* Center the entire container */
    padding: 0 1rem !important;
  }
  
  .service-cta-button {
    width: 100% !important;
    max-width: 300px !important; /* Consistent button width */
    font-size: 0.9rem !important;
    padding: 1rem 0.75rem !important;
    text-align: center !important;
    margin: 0 auto !important; /* Individual button centering */
  }

  /* Industries Section - Mobile optimization */
  .industries-section {
    padding: 1.5rem 1rem !important;
    text-align: center !important;
  }
  
  .section-header {
    margin-bottom: 1rem !important;
  }
  
  .section-header h2 {
    font-size: 1.1rem !important; /* 17.6px */
    margin: 0 !important;
    text-align: center !important;
  }
  
  .industries-grid-3x3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    margin: 1rem 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .industry-cta-button {
    font-size: 0.75rem !important; /* 12px */
    padding: 0.8rem 0.4rem !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 3.5rem !important; /* 56px */
    text-align: center !important;
    word-wrap: break-word !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.375rem !important;
  }

  /* Other Service Business button - Center above View Pricing */
  .industry-cta-button:last-child {
    grid-column: 1 / -1 !important; /* Span full width */
    justify-self: center !important;
    max-width: 300px !important; /* Match other CTA buttons */
    margin: 0.5rem auto 0 auto !important;
  }
  
  /* View Pricing Button - Perfectly centered for mobile */
  .final-cta-container {
    margin: 2rem auto !important;
    padding: 0 1rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 320px !important; /* Match service buttons container */
    width: 100% !important;
  }
  
  .final-cta-container .cta-button {
    width: 100% !important;
    max-width: 300px !important; /* Match service button width */
    font-size: 1rem !important;
    padding: 1rem 0.75rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  /* Service Card CTA buttons - Desktop-like styling */
  .service-card .cta-button {
    background: #FF1744 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 0.375rem !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    align-self: flex-start !important;
  }
  
  .service-card .cta-button:hover {
    background: #E91E63 !important;
    transform: translateY(-0.0625rem) !important;
  }

  /* Clean up content for mobile - Remove ALL bullet points */
  .service-description, .service-description *,
  .process-step-description, .process-step-description *,
  .service-card, .service-card *,
  .process-step, .process-step *,
  ul, ol, li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }
  
  /* Remove ALL pseudo-elements that create bullets */
  .service-description *::before, .service-description *::after,
  .process-step-description *::before, .process-step-description *::after,
  .service-card *::before, .service-card *::after,
  .process-step *::before, .process-step *::after,
  ul::before, ol::before, li::before,
  ul::after, ol::after, li::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }

  /* Global mobile container */
  body {
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-container {
    border-radius: 0 !important;
    border-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Pricing Section - Mobile optimization */
  .pricing-section {
    padding: 1.5rem 0.75rem !important;
    text-align: center !important;
  }
  
  /* FORCE ALL TEXT TO ALIGN WITH CTA BUTTONS */
  .pricing-header,
  .pricing-header h2,
  .services-header,
  .services-header h2,
  .section-header,
  .section-header h2,
  h1, h2, h3, h4, h5, h6 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
  }
  
  /* Hero text - perfect vertical center alignment */
  .hero-text,
  .hero-text h1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 320px !important; /* Match other containers */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 1rem !important;
  }
  
  /* Description text - left-aligned in centered container, except for brand messaging */
  .hero-description {
    text-align: left !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 90% !important;
    display: block !important;
    padding: 0 1rem !important;
  }

  /* Center the brand messaging specifically */
  .services-section .hero-description {
    text-align: center !important;
  }
  
  /* Pricing Charts - Fit to mobile frame */
  .pricing-chart-wrapper {
    margin: 1rem 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }
  
  .pricing-chart-table {
    font-size: 0.6rem !important; /* Much smaller to fit */
    width: 100% !important;
    table-layout: fixed !important; /* Force equal column widths */
    border-collapse: collapse !important;
  }

  .tier-header, .price-header {
    font-size: 0.6rem !important; /* Slightly larger for visibility */
    padding: 0.3rem 0.15rem !important; /* More padding for readability */
    border: 0.0625rem solid #E5E7EB !important;
    background: #F8F9FA !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    line-height: 1.2 !important;
    font-weight: 700 !important; /* Bold headers */
    text-align: center !important;
    vertical-align: middle !important;
  }

  .tier-name, .price-cell {
    font-size: 0.55rem !important; /* Very small text */
    padding: 0.25rem 0.1rem !important; /* Minimal padding */
    border: 0.0625rem solid #E5E7EB !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    line-height: 1.1 !important;
  }
  
  /* Management Fee Charts - Mobile frame fit */
  .pricing-tier-card {
    margin: 1rem 0 !important;
    padding: 0.75rem !important;
    border-radius: 0.75rem !important;
  }
  
  /* Specific management fee table styling */
  .pricing-tier-card table[style*="font-size: 0.875rem"] {
    font-size: 0.55rem !important;
    table-layout: fixed !important;
  }
  
  .pricing-tier-card table[style*="font-size: 0.875rem"] th,
  .pricing-tier-card table[style*="font-size: 0.875rem"] td {
    font-size: 0.55rem !important; /* Readable size for management fees */
    padding: 0.25rem 0.1rem !important; /* Better padding */
    word-wrap: break-word !important;
    line-height: 1.1 !important;
  }
  
  /* Management fee table headers specifically */
  .pricing-tier-card table[style*="font-size: 0.875rem"] th {
    font-weight: 700 !important; /* Bold headers */
    text-align: center !important;
    background: #F8F9FA !important;
    border: 0.0625rem solid #E5E7EB !important;
  }
  
  /* Bundle headers - visible text */
  .bundle-header {
    font-size: 0.55rem !important;
    font-weight: 700 !important;
  }
  
  .header-sub {
    font-size: 0.5rem !important;
    display: block !important;
    font-weight: 400 !important;
    margin-top: 0.1rem !important;
  }
  
  /* Chart header row styling */
  .chart-header-row {
    background: #F8F9FA !important;
  }
  
  .chart-header-row th {
    font-weight: 700 !important;
    text-align: center !important;
    color: #1A1A1A !important;
  }
  
  /* Process Section - Mobile layout with PERFECT CENTERING */
  .services-container {
    padding: 1.5rem 1rem !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  /* FORCE ALL MOBILE SECTIONS TO CENTER */
  .services-section,
  .pricing-section,
  .services-container,
  .process-section,
  .about-section,
  .industry-section {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* LEFT-ALIGN ALL DESCRIPTION TEXT IN CENTERED CONTAINERS, except brand messaging */
  .hero-description,
  .service-description,
  .process-description {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 1rem auto !important;
    padding: 0 1rem !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
  
  .service-card {
    background: #FFFFFF !important;
    border: 0.0625rem solid #E5E7EB !important;
    border-radius: 0.75rem !important;
    padding: 1.5rem 1.25rem !important;
    margin: 1.5rem auto !important; /* Center with auto margins */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    min-height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 90% !important; /* Prevent edge touching */
  }
  
  .service-title {
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 0.0625rem solid #E5E7EB !important;
  }
  
  .service-title h3 {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
    color: #1A1A1A !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .service-description {
    font-size: 0.875rem !important; /* 14px */
    line-height: 1.6 !important;
    color: #374151 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .service-description p {
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    text-align: center !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }
  
  .service-description p:last-child {
    margin-bottom: 0 !important;
  }
  
  /* Fix specific content layout issues */
  .service-description strong,
  .service-description b {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
  }
  
  .service-description br {
    display: block !important;
    margin: 0.5rem 0 !important;
    content: "" !important;
  }
  
  /* Remove red bullet points from Lead Generation page - Mobile only */
  .service-description span[style*="color: #FF1744"],
  .service-description span[style*="color:#FF1744"] {
    display: none !important;
    visibility: hidden !important;
  }

  /* Remove duplicate mobile hero rules - using unified rules above */

  .services-section {
    padding: 1.25rem 1rem; /* 20px 16px - condensed */
  }

  .services-header {
    font-size: 1.75rem; /* 28px - proportional for tablet */
    margin-bottom: 1rem; /* Balanced spacing */
    text-align: center;
  }

  .services-header h2 {
    margin: 0;
    line-height: 1.2;
  }

  .cta-button {
    font-size: 1.125rem; /* 18px */
    padding: 0.75rem 1.25rem; /* 12px 20px */
    min-width: auto;
  }

  .service-cta-container {
    gap: 0.75rem; /* 12px */
    margin-top: 1.25rem; /* 20px */
  }

  /* Industries Grid Mobile Styles */
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem; /* 20px - condensed spacing */
    padding: 1.5rem 1rem; /* 24px 16px - condensed padding */
  }
  
  .industry-card {
    padding: 1.25rem; /* 20px - condensed padding */
    min-height: auto; /* Auto height for cleaner flow */
    text-align: center; /* Center content */
  }

  /* Remove duplicate services-container rule */

  /* Fix mobile layout centering and spacing */
  .site-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  /* Proper section spacing for mobile */
  section {
    margin: 0;
    padding: 1.5rem 1rem !important;
  }

  /* Hide any CTA buttons in industry sections */
  .industry-cta-button,
  .industry-cta-container,
  .service-card .cta-button:not(.final-cta-section .cta-button) {
    display: none !important;
  }
  
  .industry-cta-button {
    display: none !important; /* Hide CTA buttons on mobile */
  }

  /* Hide individual industry CTA containers on mobile */
  .industry-cta-container {
    display: none !important;
  }

  /* Bottom Line Mobile Styles */
  .bottom-line-section {
    padding: 1.5rem 1rem; /* 24px 16px */
  }

  /* Final CTA Mobile Styles */
  .final-cta-section {
    padding: 1.5rem 1rem; /* 24px 16px */
  }
  
  .final-cta-container {
    gap: 1.5rem; /* 24px */
    flex-direction: column;
  }

  .final-cta-container .cta-button {
    width: 100%;
    max-width: 280px;
    min-width: 280px;
    font-size: 0.95rem; /* 15.2px */
    padding: 0.875rem 1rem; /* 14px 16px */
  }

  .service-cta-button {
    font-size: 0.9375rem; /* 15px */
    padding: 0.5rem 1rem; /* 8px 16px */
    min-width: 8rem; /* 128px */
    width: 100%;
    max-width: 12rem; /* 192px */
  }

  .pricing-header {
    font-size: 1.75rem; /* 28px */
  }

  .pricing-chart-wrapper {
    padding: 1.5rem 0.75rem 3rem 0.75rem; /* ENHANCED padding for better mobile charts */
    margin: 2rem auto;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    transform: scale(1.35); /* MUCH BIGGER charts for mobile - 35% larger */
    transform-origin: center;
    border-radius: 1.25rem; /* MORE premium mobile chart rounded corners */
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15),
                0 0.75rem 1.5rem rgba(0, 0, 0, 0.12),
                0 0 2rem rgba(255, 23, 68, 0.1); /* ENHANCED mobile shadow with red glow */
    border: 0.125rem solid #E5E7EB; /* Add border on mobile */
  }
  
  .pricing-tier-card {
    margin: 1rem 0 1.5rem 0; /* Condensed spacing */
    padding: 1.25rem; /* Reduced padding */
  }
  
  .tier-header,
  .price-header {
    padding: 1.125rem 0.625rem; /* Enhanced mobile chart padding */
    font-size: 0.9375rem; /* 15px - improved mobile readability */
    line-height: 1.4; /* Better line spacing */
    font-weight: 700; /* Stronger text weight for mobile */
  }
  
  .header-sub {
    font-size: 0.625rem; /* 10px */
    margin-top: 2px;
  }
  
  .tier-name,
  .price-cell {
    padding: 1.125rem 0.625rem; /* Enhanced mobile chart cell padding */
    font-size: 1.0625rem; /* 17px - improved mobile readability */
    line-height: 1.4; /* Better line spacing */
    font-weight: 600; /* Enhanced text weight for clarity */
  }

  .pricing-section {
    padding: 1.5rem 1rem; /* Condensed section padding */
  }

  .pricing-header {
    font-size: 1.625rem; /* 26px - slightly smaller */
    margin-bottom: 1rem; /* 16px */
  }

  /* Condensed Mobile Typography and Spacing */
  .hero-container {
    padding: 1rem; /* Condensed padding */
  }

  .hero-tagline {
    font-size: 1rem; /* 16px - condensed */
    line-height: 1.3;
    margin-bottom: 1rem; /* 16px - condensed */
    padding: 0;
  }

  /* Enhanced Content Spacing for Premium Mobile Experience */
  .about-section,
  .services-section,
  .process-section {
    padding: 1.5rem 1.25rem; /* 24px 20px - enhanced mobile spacing */
    margin-bottom: 0.5rem; /* Better section separation */
  }

  /* Condensed Mobile Headers */
  .section-header {
    font-size: 1.5rem; /* 24px - condensed */
    margin-bottom: 0.75rem; /* 12px - condensed */
    line-height: 1.2;
    text-align: center;
  }

  /* Enhanced hero description with premium mobile spacing */
  .hero-description {
    font-size: 1.0625rem !important; /* 17px - enhanced readability */
    line-height: 1.65 !important; /* Premium line spacing */
    margin: 2.25rem 0 !important; /* Enhanced vertical space */
    padding: 0 1.25rem !important; /* Enhanced horizontal padding */
    font-weight: 500; /* Slightly bolder for mobile clarity */
    letter-spacing: 0.25px; /* Subtle letter spacing for readability */
  }
  
  /* Specific styling for Industries page hero description on tablet/mobile */
  .services-section .hero-description {
    font-size: 1.05rem !important; /* 16.8px - slightly larger for importance */
    line-height: 1.8 !important; /* Even more spacing between lines */
    margin: 2rem 0 !important; /* Full desktop spacing */
    padding: 0 1.25rem !important; /* Extra breathing room */
  }
  
  /* Mobile line control to prevent awkward wrapping */
  .mobile-line {
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .lizard-king-row .bundle-cell::after {
    font-size: 0.55rem;
    padding: 3px 6px;
    bottom: -16px;
  }
  
  .lizard-king-row::before {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  .services-container {
    padding: 1.25rem 1rem; /* 20px 16px */
    gap: 1.25rem; /* 20px */
  }

  .service-card {
    padding: 1.5rem 1.25rem; /* 24px 20px - enhanced padding */
    margin: 0 0 1rem 0; /* Better card separation */
    min-height: 9rem; /* 144px - slightly taller for better proportions */
    gap: 1rem; /* 16px - improved spacing */
    border-radius: 0.75rem; /* More rounded for premium mobile feel */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08),
                0 0.125rem 0.25rem rgba(0, 0, 0, 0.12); /* Enhanced mobile shadows */
  }

  .service-title h3 {
    font-size: 1.5rem; /* 24px - enhanced mobile headers */
    margin-bottom: 1rem; /* 16px - better spacing */
    line-height: 1.3; /* Improved line height */
    font-weight: 700; /* Strong emphasis */
  }

  .feature-item {
    font-size: 1rem; /* 16px - improved mobile readability */
    line-height: 1.5; /* Better line spacing */
    padding: 0.25rem 0; /* Subtle vertical padding for better spacing */
    line-height: 1.4;
    padding: 0.375rem 0; /* 6px 0 */
  }

  .service-description {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.4;
    margin-top: 0.75rem; /* 12px */
    padding-top: 0.75rem; /* 12px */
  }

  .service-title {
    font-size: 1.25rem; /* 20px */
  }

  .service-features {
    font-size: 1rem; /* 16px */
  }
  
  .feature-item {
    font-size: 1rem; /* 16px */
  }

  .service-overview-section {
    padding: 1.25rem; /* 20px */
    gap: 1.25rem; /* 20px */
  }

  .service-overview-header {
    font-size: 1.75rem; /* 28px */
  }

  .overview-item {
    padding: 1rem; /* 16px */
  }

  .service-overview-content {
    gap: 1rem; /* 16px */
  }

  .overview-title {
    font-size: 1.25rem; /* 20px */
  }

  .overview-description {
    font-size: 1rem; /* 16px */
    padding: 0 0.5rem;
  }

  .services-overview-description {
    font-size: 1rem; /* 16px */
    padding: 0 0.5rem;
  }

  .service-description {
    font-size: 1rem; /* 16px */
    padding: 0 0.5rem;
  }

  .about-section {
    padding: 1.25rem; /* 20px */
    gap: 1rem; /* 16px */
  }

  .about-header {
    font-size: 1.75rem; /* 28px */
  }

  .about-image {
    width: 7rem; /* 112px */
    height: 7rem; /* 112px */
  }

  .about-content {
    font-size: 1.25rem; /* 20px */
  }

  .about-signature {
    font-size: 1.25rem; /* 20px */
  }

  .company-about-section {
    padding: 2rem 1rem; /* 32px 16px */
  }

  .company-section-header {
    font-size: 1.5rem; /* 24px */
  }

  .company-section-content {
    font-size: 1.125rem; /* 18px */
  }

  .process-section {
    padding: 2rem 1rem; /* 32px 16px */
  }

  .process-header {
    font-size: 1.5rem; /* 24px */
  }

  .process-step {
    padding: 1rem; /* 16px */
  }

  .process-step-title {
    font-size: 1.5rem; /* 24px */
  }

  .process-step-description {
    font-size: 1.25rem; /* 20px */
  }

  .footer-section {
    padding: 2rem 1.25rem; /* 32px 20px - enhanced footer spacing */
    gap: 1.25rem; /* Better element spacing */
  }

  .footer-logo {
    width: 8rem; /* 128px */
    height: 8rem; /* 128px */
  }

  .footer-cta-button {
    font-size: 1.1875rem; /* 19px - enhanced mobile readability */
    padding: 0.875rem 1.25rem; /* 14px 20px - better touch targets */
    min-width: auto;
    border-radius: 0.5rem; /* Enhanced mobile rounded corners */
    box-shadow: 0 0.375rem 0.75rem rgba(255, 23, 68, 0.4),
                0 0.125rem 0.25rem rgba(255, 23, 68, 0.6); /* Enhanced mobile shadow */
  }

  .footer-text {
    font-size: 1.125rem; /* 18px */
  }

  .footer-menu-button {
    width: 3.25rem; /* 52px - enhanced mobile size */
    height: 3.25rem; /* 52px */
    right: 1.25rem; /* 20px - better mobile positioning */
    top: 1.25rem; /* 20px */
    border-radius: 0.625rem; /* Enhanced mobile rounded corners */
    box-shadow: 0 0.375rem 0.75rem rgba(255, 23, 68, 0.4),
                0 0.125rem 0.25rem rgba(255, 23, 68, 0.6); /* Enhanced mobile shadow */
  }

  .floating-cta-button {
    bottom: 1rem; /* 16px */
    right: 1rem; /* 16px */
    font-size: 1rem; /* 16px */
    padding: 0.75rem 1rem; /* 12px 16px */
  }

  /* Mobile menu inherits desktop styles - no overrides needed */

  .mobile-menu-divider {
    font-size: 1rem;
    padding: 0.875rem 0 0.5rem 0;
    margin: 0.75rem 0 0.5rem 0;
  }
}

@media (max-width: 480px) {
  /* TARGETED BULLET REMOVAL: Only affect text content areas */
  .service-description, .service-description *,
  .process-step-description, .process-step-description *,
  .pricing-description, .pricing-description *,
  .service-card p, .service-card p *,
  .process-step p, .process-step p * {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
  }
  
  /* Remove bullets from specific list elements */
  .service-description ul, .service-description ol, .service-description li,
  .process-step ul, .process-step ol, .process-step li,
  .pricing-section ul, .pricing-section ol, .pricing-section li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }
  
  /* Remove only text-related pseudo-element bullets */
  .service-description *::before, .service-description *::after,
  .process-step *::before, .process-step *::after {
    content: none !important;
  }

  body {
    padding: 0.125rem; /* 2px - minimal padding for very small screens */
  }

  /* Extra Small Mobile Hero Optimizations */
  .hero-section {
    padding: 1rem 0.5rem; /* 16px 8px - very condensed */
  }

  .hero-text {
    font-size: 1.5rem; /* 24px - very condensed */
    line-height: 1.1;
    padding: 0 0.5rem; /* Match extra small mobile padding */
    margin-bottom: 0.75rem; /* 12px - very condensed */
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100%;
  }

  .hero-text h1 {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
  }

  .hero-tagline {
    font-size: 0.875rem !important; /* 14px - very condensed */
    line-height: 1.3 !important;
    margin: 0.75rem 0 !important; /* 12px - very condensed */
    padding: 0 !important;
  }
  
  .hero-description {
    font-size: 0.9375rem !important; /* 15px - larger for readability on small screens */
    line-height: 1.6 !important; /* Better spacing between lines like desktop */
    margin: 1.5rem 0 !important; /* More space like desktop */
    padding: 0 0.75rem !important; /* Breathing room */
  }
  
  /* Ensure proper spacing for Industries page hero text on mobile */
  .services-section .hero-description {
    font-size: 1rem !important; /* 16px - even larger for readability */
    line-height: 1.8 !important; /* Maintain desktop-like spacing */
    margin: 2rem 0 !important; /* Full desktop spacing */
    padding: 0 1rem !important; /* More breathing room */
  }
  
  /* Override mobile line control for smaller screens */
  .mobile-line {
    display: block;
    margin-bottom: 0.3rem;
  }

  /* Keep brand messaging centered on all screen sizes */
  .services-section .hero-description {
    text-align: center !important;
  }

  /* Industries Grid Extra Small Mobile Styles */
  .industries-grid {
    gap: 0.75rem; /* 12px */
    padding: 1.25rem 0.75rem; /* 20px 12px */
  }
  
  .industry-card {
    padding: 1rem; /* 16px */
    min-height: 90px;
  }
  
  .industry-cta-button {
    display: block !important;
    visibility: visible !important;
    text-align: center !important;
    margin: 1rem auto !important;
  }

  /* Show industries section on extra small mobile with proper layout */
  .industries-grid,
  .industry-card,
  .industry-cta-container,
  .industry-cta-button {
    display: block !important;
    visibility: visible !important;
  }
  
  .industries-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .industry-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Hide line breaks in service descriptions on 480px mobile, but preserve overview descriptions */
  .service-description br {
    display: none !important;
  }
  
  /* Preserve spacing in overview descriptions on small mobile */
  .overview-description br {
    display: block !important;
    margin-bottom: 0.75rem;
  }
  
  /* Small mobile overview description formatting */
  .overview-description {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin: 1.25rem 0 !important;
    padding: 0 0.75rem !important;
  }

  /* Hide any remaining red bullet points on 480px mobile */
  .service-description::before,
  .service-description li::before,
  .service-description *::before {
    display: none !important;
    content: none !important;
  }

  /* Remove list styling completely on 480px mobile */
  .service-description ul,
  .service-description ol,
  .service-description li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Extra Small Mobile Service Cards */
  .service-card {
    padding: 1rem; /* 16px - reduced */
    min-height: 7rem; /* 112px - more condensed */
  }

  .service-title h3 {
    font-size: 1.25rem; /* 20px - smaller */
  }

  /* Extra Small Mobile Pricing */
  .pricing-tier-card {
    padding: 1rem; /* 16px - reduced */
  }

  .tier-header,
  .price-header {
    font-size: 0.75rem; /* 12px */
    padding: 0.75rem 0.25rem; /* Very condensed */
  }

  .tier-name,
  .price-cell {
    font-size: 0.875rem; /* 14px */
    padding: 0.75rem 0.25rem;
  }

  /* Mobile Menu Button Optimization */
  .menu-button {
    width: 3rem; /* 48px */
    height: 3rem; /* 48px */
  }

  /* Section Spacing Optimization */
  .about-section,
  .services-section,
  .process-section,
  .pricing-section {
    padding: 0.75rem 0.5rem; /* 12px 8px - extremely condensed */
    text-align: center; /* Center all content */
    margin: 0; /* Remove all margins */
  }

  .section-header {
    font-size: 1.375rem; /* 22px - very condensed */
    text-align: center;
    margin-bottom: 0.5rem; /* 8px - very condensed */
  }

  /* Condense service cards on extra small mobile */
  .service-card {
    padding: 0.75rem; /* 12px - very condensed */
    margin: 0.5rem 0; /* 8px vertical - very condensed */
    min-height: 5rem; /* 80px - very condensed */
  }

  .service-title h2 {
    font-size: 1.125rem; /* 18px - very condensed */
    margin-bottom: 0.5rem; /* 8px */
  }

  .service-description {
    font-size: 0.8125rem; /* 13px - very condensed */
    line-height: 1.3;
    margin: 0.5rem 0; /* 8px */
  }

  /* Extra Small Mobile Layout Centering */
  .services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Ensure all text content is centered and condensed */
  .service-description {
    text-align: center !important;
    font-size: 0.8125rem !important; /* 13px */
    line-height: 1.4 !important; /* Better line spacing */
    margin: 0.5rem 0 !important; /* 8px */
    padding: 0 0.5rem !important; /* Add horizontal padding */
    word-spacing: 0.1em !important; /* Better word spacing */
  }
  
  /* Clean up service descriptions on mobile - remove line breaks and bullets, but preserve overview descriptions */
  .service-description br {
    display: none !important;
  }
  
  /* Ensure overview descriptions maintain proper spacing on extra small mobile */
  .overview-description br {
    display: block !important;
    margin-bottom: 0.8rem;
  }
  
  /* Extra small mobile overview description formatting */
  .overview-description {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin: 1.5rem 0 !important;
    padding: 0 0.5rem !important;
  }

  /* Hide any remaining red bullet points on extra small mobile */
  .service-description::before,
  .service-description li::before,
  .service-description *::before {
    display: none !important;
    content: none !important;
  }

  /* Remove list styling completely on extra small mobile */
  .service-description ul,
  .service-description ol,
  .service-description li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .service-title {
    text-align: center !important;
    margin-bottom: 0.5rem !important; /* 8px */
  }

  .service-title h2 {
    font-size: 1.125rem !important; /* 18px */
    margin: 0 !important;
  }

  /* Show the Industries section on mobile */
  .industries-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  /* Show industry cards and buttons on regular mobile */
  .industry-card {
    display: flex !important;
    visibility: visible !important;
  }
  
  .industry-cta-button,
  .industry-cta-container {
    display: block !important;
    visibility: visible !important;
  }

  /* Hide line breaks in service descriptions on regular mobile, but preserve overview descriptions */
  .service-description br {
    display: none !important;
  }
  
  /* Preserve spacing in overview descriptions */
  .overview-description br {
    display: block !important;
    margin-bottom: 0.5rem;
  }
  
  /* Enhanced mobile formatting for overview descriptions */
  .overview-description {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 1rem 0 !important;
    padding: 0 1rem !important;
  }

  /* Hide any remaining red bullet points on mobile */
  .service-description::before,
  .service-description li::before,
  .service-description *::before {
    display: none !important;
    content: none !important;
  }

  /* Remove list styling completely on mobile */
  .service-description ul,
  .service-description ol,
  .service-description li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Show service card CTAs on mobile */
  .services-container .cta-button,
  .services-container .cta-container,
  .service-card .cta-button,
  .service-card .cta-container {
    display: block !important;
    visibility: visible !important;
    text-align: center !important;
    margin: 1rem auto !important;
  }

  /* Exception for main navigation CTAs */
  .hero-section .cta-container,
  .final-cta-section .cta-container,
  footer .cta-container {
    display: flex !important;
    visibility: visible !important;
  }
  


  /* Bottom Line Extra Small Mobile Styles */
  .bottom-line-section {
    padding: 1.25rem 0.75rem; /* 20px 12px */
  }

  /* Final CTA Extra Small Mobile Styles */
  .final-cta-section {
    padding: 1.25rem 0.75rem; /* 20px 12px */
  }
  
  .final-cta-container {
    gap: 1rem; /* 16px */
  }

  .final-cta-container .cta-button {
    width: 100%;
    max-width: 260px;
    min-width: 260px;
    font-size: 0.9rem; /* 14.4px */
    padding: 0.875rem 0.75rem; /* 14px 12px */
  }

  .hero-text {
    font-size: 1.25rem; /* 20px */
    line-height: 1.3;
  }

  .services-header {
    font-size: 1.5rem; /* 24px - proportional for mobile */
  }

  .pricing-header {
    font-size: 1.5rem; /* 24px */
  }

  .service-title {
    font-size: 1.125rem; /* 18px */
  }

  .service-features {
    font-size: 0.9375rem; /* 15px */
  }
  
  .feature-item {
    font-size: 0.9375rem; /* 15px */
  }

  .service-description {
    font-size: 0.9375rem; /* 15px */
    padding: 0 0.25rem;
  }

  .service-overview-header {
    font-size: 1.5rem; /* 24px */
  }

  .overview-title {
    font-size: 1.125rem; /* 18px */
  }

  .overview-description {
    font-size: 0.9375rem; /* 15px */
    padding: 0 0.25rem;
  }

  .services-overview-description {
    font-size: 0.9375rem; /* 15px */
    padding: 0 0.25rem;
  }

  .about-header {
    font-size: 1.5rem; /* 24px */
  }

  .about-content {
    font-size: 1.125rem; /* 18px */
  }

  .about-signature {
    font-size: 1.125rem; /* 18px */
  }

  .company-section-header {
    font-size: 1.25rem; /* 20px */
  }

  .company-section-content {
    font-size: 1rem; /* 16px */
  }

  .process-header {
    font-size: 1.25rem; /* 20px */
  }

  .process-step-title {
    font-size: 1.25rem; /* 20px */
  }

  .process-step-description {
    font-size: 1.125rem; /* 18px */
  }

  .footer-text {
    font-size: 1rem; /* 16px */
  }

  .floating-cta-button {
    font-size: 0.9375rem; /* 15px */
    padding: 0.5rem 0.75rem; /* 8px 12px */
  }

  .service-card {
    padding: 0.75rem; /* 12px */
    margin: 0 0.25rem; /* 4px */
    min-height: 7rem; /* 112px */
    gap: 0.75rem; /* 12px */
  }

  .overview-item {
    padding: 0.75rem; /* 12px */
  }

  .services-container {
    padding: 0.75rem; /* 12px */
    gap: 0.75rem; /* 12px */
  }

  .service-overview-section {
    padding: 1rem; /* 16px */
    gap: 1rem; /* 16px */
  }

  .service-overview-content {
    gap: 0.75rem; /* 12px */
  }

  .about-section {
    padding: 1rem; /* 16px */
    gap: 0.75rem; /* 12px */
  }

  .services-section {
    padding: 1rem; /* 16px */
  }

  .pricing-section {
    padding: 1rem; /* 16px */
    min-height: 5rem; /* 80px */
  }
}

/* Comparison Page Styles */
.comparison-hero-section {
  width: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #FFFFFF;
  padding: 2rem;
  text-align: center;
}

.comparison-hero-header h1 {
  font-family: 'Spectral SC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
}

.comparison-subtitle {
  font-family: 'Spectral', serif;
  font-size: 1.25rem;
  color: #E5E7EB;
  margin: 0;
  font-style: italic;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.comparison-card {
  background: #FFFFFF;
  border-radius: 1rem;
  border: 2px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.comparison-card.lizardking-strength {
  border-color: #FF1744;
  box-shadow: 0 0.5rem 1rem rgba(255, 23, 68, 0.2);
}

.comparison-card.salesforce-weakness {
  border-color: #DC2626;
  box-shadow: 0 0.5rem 1rem rgba(220, 38, 38, 0.15);
}

.comparison-category {
  background: #F8F9FA;
  padding: 1rem 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.comparison-category h3 {
  font-family: 'Spectral SC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
  text-align: center;
}

.comparison-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.salesforce-side, .lizardking-side {
  padding: 1.5rem;
}

.salesforce-side {
  background: #FEF2F2;
  border-right: 1px solid #E5E7EB;
}

.lizardking-side {
  background: #F0FDF4;
}

.salesforce-side h4 {
  font-family: 'Spectral SC', serif;
  font-size: 1.125rem;
  color: #DC2626;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}

.lizardking-side h4 {
  font-family: 'Spectral SC', serif;
  font-size: 1.125rem;
  color: #059669;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}

.comparison-split p {
  font-family: 'Spectral', serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #374151;
}

.comparison-conclusion {
  max-width: 50rem;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.conclusion-header h2 {
  font-family: 'Spectral SC', serif;
  font-size: 2rem;
  color: #1A1A1A;
  margin: 0 0 1.5rem 0;
}

/* Mobile Responsive for Comparison Page */
@media (max-width: 768px) {
  .comparison-hero-header h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
  }
  
  .comparison-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .comparison-hero-section {
    padding: 1.5rem 1rem;
  }
  
  .conclusion-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    white-space: nowrap; /* Keep "THE BOTTOM LINE" on one line */
  }
  
  .comparison-conclusion {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .conclusion-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
  }
  
  .bottom-line-section {
    padding: 1.5rem 1rem;
  }
  
  .final-cta-section {
    padding: 1.5rem 1rem;
  }
  
  .comparison-card {
    margin: 0 0 1.5rem 0;
    padding: 1rem;
  }
  
  .comparison-category h3 {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }
  
  .comparison-split {
    gap: 1rem;
  }
  
  .salesforce-side h4,
  .lizardking-side h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
  }
  
  .salesforce-side p,
  .lizardking-side p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

.conclusion-content p {
  font-family: 'Spectral', serif;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: #374151;
}

.cta-button-secondary {
  background: transparent;
  color: #FF1744;
  border: 2px solid #FF1744;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Spectral SC', serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button-secondary:hover {
  background: #FF1744;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(255, 23, 68, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .comparison-hero-header h1 {
    font-size: 2rem;
  }
  
  .comparison-split {
    grid-template-columns: 1fr;
  }
  
  .salesforce-side {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }
  
  .comparison-hero-section {
    padding: 1.5rem 1rem;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  /* TARGETED BULLET REMOVAL: Only affect text content areas */
  .service-description, .service-description *,
  .process-step-description, .process-step-description *,
  .pricing-description, .pricing-description *,
  .service-card p, .service-card p *,
  .process-step p, .process-step p * {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
  }
  
  /* Remove bullets from specific list elements */
  .service-description ul, .service-description ol, .service-description li,
  .process-step ul, .process-step ol, .process-step li,
  .pricing-section ul, .pricing-section ol, .pricing-section li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }
  
  /* Remove only text-related pseudo-element bullets */
  .service-description *::before, .service-description *::after,
  .process-step *::before, .process-step *::after {
    content: none !important;
  }
  .hero-text {
    font-size: 1.125rem; /* 18px */
  }

  .services-header {
    font-size: 1.375rem; /* 22px - proportional for small mobile */
  }

  .pricing-header {
    font-size: 1.25rem; /* 20px */
  }

  .service-title {
    font-size: 1rem; /* 16px */
  }

  .service-description {
    font-size: 0.875rem; /* 14px */
  }

  .overview-title {
    font-size: 1rem; /* 16px */
  }

  .overview-description {
    font-size: 0.875rem; /* 14px */
  }

  .services-overview-description {
    font-size: 0.875rem; /* 14px */
  }

  .about-content {
    font-size: 1rem; /* 16px */
  }

  .about-signature {
    font-size: 1rem; /* 16px */
  }
}

/* Bio dropdown animation styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-content {
  animation: fadeIn 0.3s ease;
}

.bio-toggle-btn:hover,
.coo-bio-toggle-btn:hover {
  background: #E91E63 !important;
  transform: translateY(-1px);
  box-shadow: 0 0 0.9375rem rgba(255, 0, 0, 1.0),
              0 0 1.5625rem rgba(255, 0, 0, 0.8),
              0 0 2.1875rem rgba(255, 0, 0, 0.6);
}

/* AI Service Card Styles */
.ai-service {
  border: 2px solid #FF1744 !important;
  position: relative;
  background: #FFFFFF;
}

.ai-service .service-title h3 {
  color: #FF1744;
  text-shadow: 0 0 0.3rem rgba(255, 23, 68, 0.3);
}

.ai-service .feature-item::before {
  color: #FF1744 !important;
  text-shadow: 0 0 0.2rem rgba(255, 23, 68, 0.4);
}

.ai-service:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 1.5rem rgba(255, 23, 68, 0.2),
              0 0.375rem 0.75rem rgba(255, 23, 68, 0.3);
  border-color: #E91E63;
}

/* Pricing Navigation CTA Styles */
.pricing-nav-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 1.25rem 1rem;
  border-bottom: 2px solid #E0E0E0;
}

.pricing-nav-container {
  max-width: 57.4375rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-nav-title {
  font-family: 'Spectral SC', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 100%;
}

.pricing-nav-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #1A1A1A;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-nav-cta:hover {
  transform: translateY(-4px);
  border-color: #FF1744;
  box-shadow: 0 8px 16px rgba(255, 23, 68, 0.2),
              0 4px 8px rgba(255, 23, 68, 0.1);
  color: #1A1A1A;
  text-decoration: none;
}

.pricing-nav-cta h3 {
  font-family: 'Spectral SC', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.25rem 0;
  transition: color 0.3s ease;
  text-align: center;
}

.pricing-nav-cta:hover h3 {
  color: #FF1744;
}

.pricing-nav-cta p {
  font-family: 'Spectral', serif;
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

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

/* Add spacing before sections when navigating via anchor links */
#system-infrastructure,
#website-development,
#lead-generation,
#management-tiers {
  scroll-margin-top: 2rem;
}

/* Mobile responsive adjustments for pricing nav */
@media (max-width: 768px) {
  .pricing-nav-section {
    padding: 1.5rem 1rem;
  }

  .pricing-nav-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

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

  .pricing-nav-cta {
    padding: 0.75rem 0.5rem;
  }

  .pricing-nav-cta h3 {
    font-size: 1rem;
  }

  .pricing-nav-cta p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-nav-title {
    font-size: 1.5rem;
  }

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

  .pricing-nav-cta {
    padding: 0.5rem 0.25rem;
  }

  .pricing-nav-cta h3 {
    font-size: 0.9rem;
  }

  .pricing-nav-cta p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}