/* 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;
}

/* Trust Statement */
.trust-statement {
  text-align: center;
  margin: 50px 0 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-text {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.2px;
}

/* 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: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-label {
  color: #666;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  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);
}

/* Payment Trust Badge */
.payment-trust-badge {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeInFromBlur 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

.trust-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.lock-icon {
  stroke: #999;
  flex-shrink: 0;
}

.trust-header span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.payment-methods-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.powered-by-stripe {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 91, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(99, 91, 255, 0.1);
}

.powered-by-stripe span {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icon {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  background: white;
  padding: 4px 6px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  transform: scale(1.05);
  border-color: #ddd;
}

/* Payment Trust Stripe Section */
.payment-trust-stripe {
  background: white;
  padding: 25px 40px;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-stripe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-stripe-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stripe-item span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}

.trust-stripe-item.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stripe-divider {
  width: 1px;
  height: 30px;
  background: #e8e8e8;
}

.trust-stripe-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon-small {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.payment-icon-small:hover {
  transform: scale(1.1);
  border-color: #ddd;
}

/* 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;
  }

  /* Mobile responsive payment trust badge */
  .payment-trust-badge {
    margin-top: 30px;
    padding-top: 25px;
  }

  .trust-header {
    flex-direction: column;
    gap: 6px;
  }

  .trust-header span {
    font-size: 12px;
  }

  .powered-by-stripe {
    padding: 6px 12px;
  }

  .powered-by-stripe span {
    font-size: 11px;
  }

  .powered-by-stripe svg {
    width: 42px;
    height: auto;
  }

  .payment-methods {
    gap: 8px;
  }

  .payment-icon {
    height: 24px;
  }

  /* Mobile responsive payment trust stripe */
  .payment-trust-stripe {
    padding: 20px 25px;
  }

  .trust-stripe-content {
    gap: 15px;
  }

  .trust-stripe-divider {
    display: none;
  }

  .trust-stripe-item span {
    font-size: 12px;
  }

  .payment-icon-small {
    height: 20px;
  }
}

/* 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;
  }
}

/* Why Build With Us Section - New Design */
.why-build-section {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 60px;
  box-shadow: none;
}

.why-build-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-build-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.why-build-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-build-highlight {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.why-build-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.highlight-icon svg {
  stroke: white;
}

.why-build-highlight h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.why-build-highlight p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.why-build-highlight strong {
  color: white;
  font-weight: 700;
}

.why-build-description {
  background: white;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-build-description p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.why-build-description strong {
  color: #1a1a1a;
  font-weight: 600;
}

.why-build-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  stroke: #ff4500;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive for Why Build Section */
@media (max-width: 1024px) {
  .why-build-main {
    grid-template-columns: 1fr;
  }
  
  .why-build-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-build-highlight {
    padding: 30px 25px;
  }
  
  .why-build-highlight h3 {
    font-size: 24px;
  }
  
  .why-build-description {
    padding: 30px 25px;
  }
  
  .benefit-card {
    padding: 30px 25px;
  }
}

/* Case Study Section */
.case-study-section {
  margin-bottom: 60px;
}

.case-study-header {
  text-align: center;
  margin-bottom: 50px;
}

.case-study-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 45% 55%;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.case-study-image {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.case-study-content {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
}

.case-study-category {
  display: inline-block;
  color: #ff4500;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.case-study-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.case-study-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.case-study-stat {
  text-align: center;
}

.case-study-stat .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.case-study-stat .stat-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.case-study-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tech-tag {
  background: #f5f5f5;
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(255, 69, 0, 0.1);
  color: #ff4500;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.case-study-link:hover {
  color: #ff4500;
  gap: 12px;
}

.case-study-link svg {
  transition: transform 0.3s ease;
}

.case-study-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Case Study */
@media (max-width: 1024px) {
  .case-study-card {
    grid-template-columns: 1fr;
  }
  
  .case-study-image {
    min-height: 300px;
  }
  
  .case-study-content {
    padding: 40px 35px;
  }
}

@media (max-width: 768px) {
  .case-study-title {
    font-size: 24px;
  }
  
  .case-study-content {
    padding: 30px 25px;
  }
  
  .case-study-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-study-stat .stat-value {
    font-size: 28px;
  }
}

/* Case Study Detail Page Styles */
.case-study-hero {
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.case-study-hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.case-study-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.case-study-hero-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.case-study-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

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

.hero-stat-value {
  font-size: 40px;
  font-weight: 700;
  color: #ff4500;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.case-study-featured-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  margin-bottom: 80px;
}

.case-study-main {
  background: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.case-study-section {
  margin-bottom: 50px;
}

.case-study-section:last-child {
  margin-bottom: 0;
}

.case-study-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.case-study-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.case-study-section p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-study-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.case-study-section ul li {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.case-study-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff4500;
  font-weight: 600;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.solution-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px 20px;
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.results-highlight {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 30px 0;
  border: 2px solid rgba(255, 69, 0, 0.1);
}

.result-item {
  margin-bottom: 30px;
}

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

.result-metric {
  font-size: 36px;
  font-weight: 700;
  color: #ff4500;
  margin-bottom: 8px;
}

.result-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.tech-category h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.project-details {
  display: grid;
  gap: 15px;
}

.project-details dt {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.project-details dd {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.project-details dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-cta {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  color: white;
}

.sidebar-cta h3 {
  color: white;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta .cta-button {
  background: white;
  color: #ff4500;
  width: 100%;
}

.sidebar-cta .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #ff4500;
}

.related-case-studies {
  margin-bottom: 60px;
}

.related-case-studies .section-title {
  text-align: center;
  margin-bottom: 15px;
}

.related-case-studies .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

/* Responsive Case Study Detail Page */
@media (max-width: 1024px) {
  .case-study-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-study-body {
    grid-template-columns: 1fr;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .case-study-hero {
    padding: 40px 30px;
  }
  
  .case-study-hero-title {
    font-size: 32px;
  }
  
  .case-study-hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-study-main {
    padding: 30px 25px;
  }
  
  .case-study-section h2 {
    font-size: 28px;
  }
  
  .results-highlight {
    padding: 30px 25px;
  }
  
  .result-metric {
    font-size: 28px;
  }
}

/* Case Studies Page Styles */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.page-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.case-study-detail-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 550px 1fr;
  min-height: 500px;
}

.case-study-detail-image {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.case-study-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-detail-content {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
}

.case-study-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-study-detail-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.case-study-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 25px 0;
  margin-bottom: 30px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

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

.detail-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #ff4500;
  margin-bottom: 6px;
}

.detail-stat-label {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.expandable-section {
  margin-bottom: 25px;
}

.expandable-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.expandable-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.solution-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 15px;
}

.solution-item {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.solution-item strong {
  color: #1a1a1a;
  display: inline;
  margin-right: 4px;
}

.results-list {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.result-point {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .case-study-detail-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .case-study-detail-image {
    height: 350px;
  }
  
  .case-study-detail-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coming-soon-section {
  margin-bottom: 60px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coming-soon-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.coming-soon-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.coming-soon-icon svg {
  stroke: #ff4500;
}

.coming-soon-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.coming-soon-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.coming-soon-badge {
  display: inline-block;
  background: #e8e8e8;
  color: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Responsive Case Studies Page */
@media (max-width: 1024px) {
  .case-study-detail-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-highlights {
    grid-template-columns: 1fr;
  }
  
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }
  
  .case-study-detail-image {
    height: 280px;
  }
  
  .case-study-detail-content {
    padding: 30px 25px;
  }
  
  .case-study-detail-title {
    font-size: 28px;
  }
  
  .case-study-detail-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .detail-stat-value {
    font-size: 32px;
  }
  
  .expandable-section h3 {
    font-size: 20px;
  }
}

/* Enhanced Service Cards with Gradients */
.service-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* Benefit Hover Effect */
.benefit-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Mobile Responsive for Enhanced Services */
@media (max-width: 1024px) {
  .services-section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  .services-section [style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .service-card-enhanced {
    min-height: auto !important;
    padding: 35px 30px !important;
  }
  
  .service-card-enhanced h3 {
    font-size: 22px !important;
  }
  
  .service-card-enhanced p {
    font-size: 15px !important;
  }
}
