* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* Smooth Pulse Animation for CTAs */
@keyframes gentle-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
  }
}

@keyframes gentle-pulse-secondary {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  }
}

@keyframes gentle-pulse-inline {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.5);
  }
}

@keyframes gentle-pulse-white {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  }
}

.hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.6) 100%),
    url('images/hero-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 20px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Two Column Layout */
.hero-two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content-left {
  text-align: left;
}

.hero-content-left .badge {
  display: inline-block;
}

.hero-content-left h1 {
  text-align: left;
}

.hero-content-left p {
  text-align: left;
}

.hero-form-right {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form {
  width: 100%;
}

.hero-form input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hero-form button {
  width: 100%;
}

.hero-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
  animation: gentle-pulse-white 1.5s ease-in-out infinite;
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  margin-right: 16px;
  margin-bottom: 16px;
  animation: gentle-pulse 2s ease-in-out 2s infinite;
}

.cta-primary:hover {
  animation: gentle-pulse 1.5s ease-in-out infinite;
}

.cta-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  animation: gentle-pulse-secondary 2s ease-in-out 2.5s infinite;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  animation: gentle-pulse-secondary 1.5s ease-in-out infinite;
}

.inline-cta {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 20px;
  animation: gentle-pulse-inline 2s ease-in-out 2s infinite;
}

.inline-cta:hover {
  animation: gentle-pulse-inline 1.5s ease-in-out infinite;
}

.problem-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.problem-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-color: #ef4444;
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #dc2626;
  font-weight: 700;
}

.problem-card p {
  color: #64748b;
  line-height: 1.7;
}

.solution-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.solution-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.solution-section .section-title {
  color: white;
}

@keyframes rotation_9018 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.highlight-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
}

.highlight-box:first-child {
  margin-bottom: 40px;
}

.highlight-box:last-child {
  margin-top: 40px;
}

.highlight-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #60a5fa;
}

.highlight-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
}

.case-study {
  padding: 80px 20px;
  background: white;
}

.result-banner-wrapper {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 3px 1px #ffffff88;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 40px;
}

.result-banner-wrapper:first-child {
  margin-bottom: 40px;
}

.result-banner-wrapper:last-child {
  margin-top: 40px;
}

.result-banner-wrapper .result-banner {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.result-banner::before {
  opacity: 0;
  transition: opacity 300ms;
  content: " ";
  display: block;
  background: white;
  width: 5px;
  height: 50px;
  position: absolute;
  filter: blur(50px);
  overflow: hidden;
}

.result-banner-wrapper:hover .result-banner::before {
  opacity: 1;
}

.result-banner-wrapper::before {
  opacity: 1;
  content: " ";
  position: absolute;
  display: block;
  width: 1200px;
  height: 60px;
  background: linear-gradient(#ff2288, #387ef0);
  transition: opacity 300ms;
  animation: rotation_9018 6000ms infinite linear;
  animation-play-state: running;
}

.result-banner-wrapper:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.result-banner-wrapper::after {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff33;
  backdrop-filter: blur(50px);
}

.result-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin: 10px;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.result-number {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.result-text {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.95;
}

.clients-section {
  padding: 80px 20px;
  background: #f8fafc;
  overflow: hidden;
}

.client-grid {
  display: flex;
  align-items: center;
  margin-top: 40px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.client-grid:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-card {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  margin: 0 20px;
  min-width: 250px;
  flex-shrink: 0;
}

.client-card img {
  width: fit-content;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-category {
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.client-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.client-link {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.client-link:hover {
  color: #3b82f6;
}

/* Industried Card */
.industries-section {
  padding: 80px 20px;
  background: white;
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.industry-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* FAQ Section Styles */
.faq-section {
  background: #fff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #3b82f6;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: #3b82f6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 30px 24px 30px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.faq-answer ul {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
  margin: 4px 0 0 24px;
}

/* Team Section Styles */
.team-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 30px;
  position: relative;
}

.team-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-family: 'Montserrat', sans-serif;
}

.team-designation {
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 16px 0;
  font-weight: 500;
}

.team-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  /* margin: 0 0 20px 0; */
}

.team-linkedin {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 119, 181, 0.9);
  color: #fff;
  border-radius: 500px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 2;
  /* backdrop-filter: blur(4px); */
}

.team-linkedin:hover {
  background: rgba(0, 88, 133, 1);
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .team-card {
    border-radius: 12px;
  }

  .team-content {
    padding: 24px;
  }

  .team-name {
    font-size: 1.5rem;
  }

  .team-designation {
    font-size: 0.9rem;
  }

  .team-image {
    height: 300px;
  }

  .industry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .industry-card {
    border-radius: 16px;
    padding: 30px 14px;
  }

  .industry-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 40px;
    margin: 0 auto 24px;
  }

  .industry-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .team-grid {
    gap: 20px;
  }

  .team-content {
    padding: 20px;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-description {
    font-size: 0.95rem;
  }

  .team-image {
    height: 280px;
  }

  .industry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 60px;
  }

  .industry-card {
    border-radius: 16px;
    padding: 20px 10px;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 40px;
    margin: 0 auto 14px;
  }

  .industry-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.3;
  }
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #2563eb;
  padding: 20px 50px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: gentle-pulse-white 2s ease-in-out 2s infinite;
}

.cta-button:hover {
  animation: gentle-pulse-white 1.5s ease-in-out infinite;
}

footer .footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

footer .footer-info img {
  height: 60px;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {

  /* Mobile Sticky Bottom Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: 2px solid rgba(59, 130, 246, 0.3);
  }

  .mobile-sticky-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    gap: 6px;
  }

  .mobile-sticky-bar a:first-child {
    border-right: 1px solid rgba(59, 130, 246, 0.3);
  }

  .mobile-sticky-bar a:active {
    background: rgba(59, 130, 246, 0.2);
  }

  .mobile-sticky-bar a:hover {
    background: rgba(59, 130, 246, 0.15);
  }

  .mobile-sticky-bar-text {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
  }

  @media (max-width: 768px) {

    /* Hero Section */
    .hero {
      padding: 30px 20px 80px;
    }

    /* Hero Two Column - Stack on Mobile */
    .hero-two-column {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-content-left {
      text-align: center;
    }

    .hero-content-left h1 {
      text-align: center;
    }

    .hero-content-left p {
      text-align: center;
    }

    .hero-form-right {
      padding: 30px 24px;
    }

    .hero-form h3 {
      font-size: 20px !important;
    }

    /* Hero logo - override inline styles */
    .hero-content img {
      min-height: 60px !important;
      max-height: 60px !important;
      margin-bottom: 16px !important;
    }

    h1 {
      font-size: 32px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .badge {
      font-size: 12px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }

    .cta-primary,
    .cta-secondary {
      width: 100%;
      margin-right: 0;
      margin-bottom: 12px;
      padding: 16px 30px;
      font-size: 16px;
    }

    /* Section Titles */
    .section-title {
      font-size: 28px;
      margin-bottom: 30px;
      line-height: 1.3;
    }

    /* Problem Section */
    .problem-section {
      padding: 60px 20px;
    }

    .problem-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .problem-card {
      padding: 30px 20px;
    }

    .problem-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .problem-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .problem-card p {
      font-size: 15px;
    }

    /* Problem section inline text */
    .problem-section>div>div[style*="text-align"] p {
      font-size: 18px !important;
      margin-bottom: 20px !important;
    }

    /* Solution Section */
    .solution-section {
      padding: 60px 20px;
    }

    .solution-section p,
    .solution-section .solution-content>p {
      font-size: 16px !important;
      margin-bottom: 30px !important;
    }

    .highlight-box {
      padding: 24px 20px;
      margin: 30px 0;
    }

    .highlight-box h3 {
      font-size: 22px;
      margin-bottom: 16px;
    }

    .highlight-box p {
      font-size: 15px;
      line-height: 1.6;
    }

    /* Case Study Section */
    .case-study {
      padding: 60px 20px;
    }

    .result-banner-wrapper {
      margin-bottom: 30px;
    }

    .result-banner {
      padding: 40px 20px;
      margin: 8px;
    }

    .result-number {
      font-size: 56px;
      margin-bottom: 12px;
    }

    .result-text {
      font-size: 18px;
    }

    /* Case study content container */
    .case-study>.container>div[style*="max-width"] {
      max-width: 100% !important;
      padding: 0 10px;
    }

    .case-study p,
    .case-study div[style*="max-width"] p {
      font-size: 16px !important;
      line-height: 1.6 !important;
      margin-bottom: 24px !important;
    }

    /* Clients Section */
    .clients-section {
      padding: 60px 0;
    }

    .clients-section .container {
      padding: 0 20px;
    }

    .client-grid {
      margin-top: 30px;
    }

    .client-card {
      min-width: 200px;
      padding: 12px;
      margin: 0 12px;
    }

    .client-card img {
      max-height: 60px;
    }

    /* Clients section inline text */
    .clients-section div[style*="margin-top"] p {
      font-size: 18px !important;
      margin-bottom: 20px !important;
    }

    /* CTA Section */
    .cta-section {
      padding: 60px 20px;
    }

    .cta-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .cta-section p {
      font-size: 16px;
      margin-bottom: 30px;
    }

    /* Contact Form */
    #contactForm {
      max-width: 100% !important;
      padding: 30px 20px !important;
      margin: 30px auto 0 !important;
    }

    #contactForm input,
    #contactForm input[type="text"],
    #contactForm input[type="tel"],
    #contactForm input[type="email"] {
      padding: 14px !important;
      font-size: 15px !important;
    }

    #contactForm>div {
      margin-bottom: 18px !important;
    }

    #contactForm button {
      padding: 16px !important;
      font-size: 16px !important;
    }

    .inline-cta {
      padding: 12px 24px;
      font-size: 15px;
    }

    /* Footer */
    footer {
      padding: 40px 20px 20px !important;
      margin-bottom: 60px;
    }

    footer .footer-info {
      gap: 20px;
      margin-bottom: 20px;
    }

    footer .footer-info img {
      width: 100%;
      height: auto;
      margin-bottom: 16px;
    }

    footer h4 {
      font-size: 16px !important;
      margin-bottom: 16px !important;
    }

    footer p,
    footer li {
      font-size: 14px !important;
      line-height: 1.6 !important;
    }

    footer div[style*="border-top"] {
      padding-top: 24px !important;
    }

    footer div[style*="border-top"] p {
      font-size: 13px !important;
    }

    /* FAQ Section */
    .faq-section {
      padding: 60px 20px;
    }

    .faq-section>div>p {
      font-size: 16px !important;
      margin-bottom: 40px !important;
    }

    .faq-item {
      margin-bottom: 12px;
    }

    .faq-question {
      padding: 18px 20px;
      font-size: 16px;
    }

    .faq-question span:first-child {
      padding-right: 15px;
    }

    .faq-icon {
      font-size: 24px;
      width: 24px;
      height: 24px;
    }

    .faq-answer {
      padding: 0 20px;
    }

    .faq-item.active .faq-answer {
      padding: 0 20px 18px 20px;
    }

    .faq-answer p {
      font-size: 15px;
      line-height: 1.6;
    }

    .faq-answer ul {
      font-size: 15px;
      line-height: 1.6;
    }

    .faq-section div[style*="margin-top"] p {
      font-size: 18px !important;
      margin-bottom: 20px !important;
    }
  }
}

/* Reduce animation intensity on mobile for better performance */
@keyframes gentle-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  }
}

@keyframes gentle-pulse-secondary {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
}

@keyframes gentle-pulse-inline {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
  }
}

@keyframes gentle-pulse-white {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }
}