/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #e8e8e8;
  color: #1a1a1a;
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}

/* Glassmorphic Navigation */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.nav-container.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo:hover {
  opacity: 0.6;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
  position: relative;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: #1a1a1a !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: none;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: #333 !important;
  transform: scale(1.05);
  opacity: 1 !important;
}

.nav-cta::after {
  display: none;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Logo Marquee */
.logo-marquee {
  background: white;
  padding: 30px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-marquee-content {
  display: flex;
  animation: scroll 53s linear infinite;
}

.logo-marquee-slide {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
  padding-right: 80px;
}

.marquee-logo {
  height: 35px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}

.marquee-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-marquee:hover .logo-marquee-content {
  animation-play-state: paused;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

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

.feature-number {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  margin-bottom: 80px;
  letter-spacing: 0.5px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: stretch;
}

.hero-image-container {
  background: #b8b8b8;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  height: 100%;
}

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

.pattern-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(255, 80, 35, 0.3) 25px, rgba(255, 80, 35, 0.3) 27px),
    repeating-linear-gradient(90deg, transparent, transparent 25px, rgba(255, 80, 35, 0.3) 25px, rgba(255, 80, 35, 0.3) 27px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  padding: 20px 0;
}

.hero-label {
  color: #ff4400;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.hero-description {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-right: 15px;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1a;
  cursor: pointer;
}

.cta-button-secondary:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

/* Services Section */
.services-section {
  background: white;
  border-radius: 24px;
  padding: 80px 40px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 50px 40px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.service-card:hover {
  background: #efefef;
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.service-features li {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Blog Section */
.blog-section {
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-card-category {
  font-size: 13px;
  color: #ff6b35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-date {
  font-size: 13px;
  color: #999;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-card-cta {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-read-time {
  font-size: 13px;
  color: #999;
}

/* Compare Hiring Options Section */
.comparison-section {
  background: white;
  border-radius: 24px;
  padding: 80px 40px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.comparison-title .highlight {
  color: #1a1a1a;
}

.comparison-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  max-width: 1100px;
  margin: 0 auto;
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  background: #f5f5f5;
  border-bottom: 2px solid #e8e8e8;
}

.comparison-header-cell {
  padding: 30px 25px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #1a1a1a;
}

.comparison-header-cell:first-child {
  text-align: left;
  padding-left: 40px;
}

.comparison-header-cell.highlight {
  color: #1a1a1a;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  border-bottom: 1px solid #e8e8e8;
  background: white;
  transition: background 0.3s ease;
}

.comparison-row:hover {
  background: #fafafa;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 35px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.comparison-cell:first-child {
  font-weight: 600;
  color: #1a1a1a;
  padding-left: 40px;
  font-size: 16px;
}

.comparison-cell:not(:first-child) {
  justify-content: center;
  text-align: center;
}

.comparison-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-icon.check {
  background: rgba(255, 107, 53, 0.1);
}

.comparison-icon.check svg {
  width: 14px;
  height: 14px;
  stroke: #ff6b35;
  stroke-width: 2.5;
}

.comparison-icon.cross {
  background: rgba(153, 153, 153, 0.1);
}

.comparison-icon.cross svg {
  width: 14px;
  height: 14px;
  stroke: #999;
  stroke-width: 2;
}

.comparison-icon.neutral {
  background: rgba(153, 153, 153, 0.08);
}

.comparison-icon.neutral svg {
  width: 14px;
  height: 14px;
  stroke: #999;
  stroke-width: 2;
}

.comparison-text {
  color: #1a1a1a;
}

.comparison-text.highlight {
  color: #1a1a1a;
  font-weight: 500;
}

.comparison-text.muted {
  color: #666;
}

/* Footer */
footer {
  background: transparent;
  padding: 80px 0 40px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer-description {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(26, 26, 26, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #1a1a1a;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #999;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

.footer-legal a:hover {
  color: #1a1a1a;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  margin: auto;
  padding: 50px;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-button {
  color: #999;
  float: right;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #1a1a1a;
}

.modal-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.modal-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: white;
}

.submit-button {
  width: 100%;
  background: #1a1a1a;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 20px;
}

.success-message,
.error-message {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.success-message {
  background: #d4edda;
  color: #155724;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
}

/* Animations */

/* Hero fade-in from blur animation */
@keyframes fadeInFromBlur {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Scroll-triggered fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section animations - fade in from blur on load */
.hero-label {
  animation: fadeInFromBlur 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-title {
  animation: fadeInFromBlur 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-description {
  animation: fadeInFromBlur 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-content .cta-button,
.hero-content .cta-button-secondary {
  animation: fadeInFromBlur 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-image-container {
  animation: fadeInFromBlur 1s ease-out 0.3s forwards;
  opacity: 0;
}

/* Scroll-triggered animations - elements start hidden */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Remove old animation from cards - will be scroll-triggered */
.feature-card {
  animation: none;
  opacity: 1;
}

.service-card {
  animation: none;
  opacity: 1;
}

.stat-card {
  animation: none;
  opacity: 1;
}

.blog-card {
  animation: none;
  opacity: 1;
}

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

  .hero-title {
    font-size: 56px;
  }

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

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

@media (max-width: 768px) {
  body {
    padding-top: 65px;
  }

  .container {
    padding: 40px 20px;
  }

  .nav {
    padding: 20px 25px;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 25px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    text-align: center;
    opacity: 1;
  }

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

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    max-width: 100%;
  }

  .cta-button,
  .cta-button-secondary {
    display: block;
    text-align: center;
    margin: 0 0 15px 0;
    width: 100%;
  }

  .section-title {
    font-size: 36px;
  }

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

  .stats-section {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    padding: 40px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 10% 5%;
  }

  .comparison-section {
    padding: 60px 25px;
  }

  .comparison-title {
    font-size: 32px;
  }

  .comparison-table {
    border-radius: 12px;
  }

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

  .comparison-header-cell {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
  }

  .comparison-header-cell:first-child {
    padding-left: 25px;
  }

  .comparison-header-cell:not(:first-child) {
    display: none;
  }

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

  .comparison-cell {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
  }

  .comparison-cell:first-child {
    padding-left: 25px;
    font-size: 15px;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 700;
  }

  .comparison-cell:not(:first-child) {
    justify-content: flex-start;
    padding-left: 45px;
  }

  .comparison-cell:nth-child(2)::before {
    content: 'Global Teams: ';
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 8px;
  }

  .comparison-cell:nth-child(3)::before {
    content: 'Local Hiring: ';
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 8px;
  }

  .comparison-row:last-child .comparison-cell:last-child {
    border-bottom: none;
  }
}

/* Funky Email Modal Styles */
.funky-email-modal {
  background: linear-gradient(135deg, #fff 0%, #fef5f2 100%);
  max-width: 520px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #ff4500;
  position: relative;
}

.funky-email-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff4500, #ff6b35, #ff4500);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.funky-email-modal .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  float: none;
  line-height: 1;
}

.funky-email-modal .close-button:hover {
  background: #ff4500;
  color: white;
  transform: rotate(90deg);
}

.funky-modal-header {
  background: white;
  padding: 50px 40px 30px;
  text-align: center;
  position: relative;
}

.funky-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.funky-icon {
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.funky-modal-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.funky-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  padding: 0 40px 30px;
  margin: 0;
  text-align: center;
}

.funky-form-group {
  padding: 0 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.funky-form-group input[type="email"] {
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.funky-form-group input[type="email"]:focus {
  outline: none;
  border-color: #ff4500;
  box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
}

.funky-submit-button {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.funky-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

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

.funky-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.funky-submit-button:active {
  transform: translateY(0);
}

.funky-submit-button svg {
  transition: transform 0.3s ease;
}

.funky-submit-button:hover svg {
  transform: translateX(4px);
}

.funky-disclaimer {
  font-size: 13px;
  color: #999;
  text-align: center;
  padding: 0 40px 40px;
  margin: 0;
}

/* Responsive funky modal */
@media (max-width: 768px) {
  .funky-email-modal {
    max-width: 90%;
    margin: 10% auto;
  }

  .funky-modal-header {
    padding: 40px 30px 25px;
  }

  .funky-modal-header h3 {
    font-size: 24px;
  }

  .funky-description {
    padding: 0 30px 25px;
    font-size: 15px;
  }

  .funky-form-group {
    padding: 0 30px 25px;
  }

  .funky-disclaimer {
    padding: 0 30px 30px;
  }

  .funky-icon-wrapper {
    width: 70px;
    height: 70px;
  }
}

/* Email form submission function */
.funky-email-modal .loading-message,
.funky-email-modal .success-message,
.funky-email-modal .error-message {
  margin: 0 40px 30px;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  animation: slideIn 0.3s ease;
}

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

.funky-email-modal .success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #b1dfbb;
}

.funky-email-modal .error-message {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f1aeb5;
}

/* Breadcrumb Navigation Styles - Site-wide */
.breadcrumbs {
  background: transparent;
  padding: 20px 0 10px;
  border: none;
}

.breadcrumbs .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li::before {
  display: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #999;
  margin-left: 8px;
}

.breadcrumbs a {
  color: #ff4500;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #e03e00;
  text-decoration: underline;
}

.breadcrumbs span[aria-current="page"] {
  color: #666;
  font-size: 14px;
}

/* Breadcrumb Mobile Responsive */
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 15px 0 10px;
  }
  
  .breadcrumbs .container {
    padding: 0 20px;
  }
  
  .breadcrumbs ol {
    font-size: 13px;
  }
  
  .breadcrumbs a {
    font-size: 13px;
  }
  
  .breadcrumbs span[aria-current="page"] {
    font-size: 13px;
  }
}
