/* Main Stylesheet - Imports all CSS modules */

@import url('variables.css');
@import url('reset.css');
@import url('layout.css');
@import url('components.css');
@import url('header.css');
@import url('footer.css');

/* Additional Global Styles */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding: 0;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Right to Left Slide Animation */
.hero-slide.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.hero-slide.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.hero-slide.slide-out-left {
  animation: slideOutLeft 0.6s ease-out forwards;
}

.hero-slide.slide-out-right {
  animation: slideOutRight 0.6s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
    visibility: visible;
  }
  to {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
    visibility: visible;
  }
  to {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-white);
  padding: var(--spacing-4) var(--spacing-4);
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0;
  padding-left: 0;
}

.hero-text-content {
  max-width: 650px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-highlight-text {
  margin-bottom: var(--spacing-5);
}

.hero-highlight-line {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: clamp(1.24rem, 2.48vw, 1.93rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-5);
  color: var(--color-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.hero-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-6);
  max-width: 450px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: var(--spacing-3) var(--spacing-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.btn-hero-secondary {
  padding: var(--spacing-3) var(--spacing-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Slider Navigation - Hidden by default */
.hero-slider-nav {
  display: none;
}

/* Client Logo Marquee */
.client-logo-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  padding: 0 var(--spacing-6);
  flex-shrink: 0;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.marquee-logo-link:hover {
  transform: scale(1.1);
}

a.marquee-logo-link:hover {
  opacity: 0.9;
}

.marquee-logo {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.marquee-logo-link:hover .marquee-logo {
  filter: none;
  opacity: 1;
}

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

@media (max-width: 1024px) {
  .hero-text-content {
    max-width: 500px;
  }
  
  .hero-highlight-line {
    font-size: clamp(1.24rem, 2.48vw, 1.93rem);
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 85vh;
    min-height: 450px;
  }
  
  .hero-slide::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
  
  .hero-slide-content {
    padding: var(--spacing-4) var(--spacing-3);
    align-items: flex-start;
    text-align: left;
    padding-top: var(--spacing-6);
  }
  
  .hero-content-wrapper {
    margin: 0;
    padding-left: 0;
  }
  
  .hero-text-content {
    max-width: 100%;
  }
  
  .hero-highlight-line {
    font-size: clamp(1.1rem, 5.5vw, 1.65rem);
  }
  
  .hero-description {
    font-size: var(--font-size-sm);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-sm);
  }
  
  .hero-slider-nav {
    bottom: 20px;
  }
  
  .hero-slider-prev,
  .hero-slider-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .hero-slider-dot {
    width: 10px;
    height: 10px;
  }
  
  /* Marquee mobile adjustments */
  .client-logo-marquee {
    height: 80px;
  }
  
  .marquee-content {
    gap: var(--spacing-8);
    padding: 0 var(--spacing-4);
    animation-duration: 15s;
  }
  
  .marquee-logo {
    max-height: 35px;
    max-width: 100px;
  }
}

/* Section Styles */
.section {
  padding: var(--spacing-16) 0;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-4);
  color: var(--color-gray-900);
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.text-muted {
  color: var(--color-gray-600);
}

.text-primary {
  color: var(--color-primary);
}

.text-success {
  color: var(--color-success);
}

.text-danger {
  color: var(--color-danger);
}

.text-warning {
  color: var(--color-warning);
}

.bg-gray-50 {
  background-color: var(--color-gray-50);
}

.bg-white {
  background-color: var(--color-white);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

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

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Responsive Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--color-gray-200);
  margin: var(--spacing-8) 0;
}

/* Why Choose Section */
.why-choose-section {
  padding: var(--spacing-16) 0;
  background: #f8fafc; /* Solid color background */
  position: relative;
}

/* Why Choose Section - Thin Left-Aligned Header (matching solution page style) */
.why-choose-section .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  text-align: left;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.why-choose-section .section-subtitle {
  text-align: left;
  font-weight: 300;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-10);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-8);
}

.why-choose-card {
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  text-align: center;
}

.why-choose-card.clickable {
  cursor: pointer;
}

.why-choose-card-image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-4);
}

.why-choose-card-image img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
}

.why-choose-card-content {
  padding: var(--spacing-4) var(--spacing-2);
}

.why-choose-card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-3) 0;
  line-height: 1.3;
}

.why-choose-card-description {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  margin: 0;
  line-height: 1.7;
}

/* Powerful Solutions Section */
.solutions-section {
  padding: var(--spacing-16) 0;
  background: linear-gradient(180deg, #f7fef9 0%, #f0fdf4 50%, #dcfce7 100%);
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
}

.solution-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
  background: var(--color-white);
}

.solution-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-4);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  overflow: hidden;
}

.solution-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.solution-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.solution-card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0 0 var(--spacing-3) 0;
  line-height: 1.3;
}

.solution-card-description {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  margin: 0 0 var(--spacing-5) 0;
  line-height: 1.7;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  color: #10b981;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.solution-card-link:hover {
  gap: var(--spacing-3);
}

.solution-card-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   Home Solutions Showcase - Razorpay-style Stacking Cards
   ============================================ */
.home-solutions-showcase {
  background: linear-gradient(180deg, #f7fef9 0%, #f0fdf4 50%, #dcfce7 100%);
  padding: 80px 0 0;
  position: relative;
}

/* Section Header */
.home-solutions-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-solutions-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: #111827;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.home-solutions-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

/* Anchor Navigation Strip */
.home-solutions-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 64px;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}

.home-solutions-nav.is-sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.home-solutions-nav-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-solutions-nav-inner::-webkit-scrollbar {
  display: none;
}

.home-solutions-nav-link {
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.home-solutions-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.home-solutions-nav-link:hover {
  color: #111827;
}

.home-solutions-nav-link.active {
  color: #111827;
  font-weight: 600;
}

.home-solutions-nav-link.active::after {
  width: calc(100% - 40px);
}

/* Stacking Cards Container */
.home-solutions-cards-wrapper {
  padding: 60px 0 100px;
  position: relative;
}

.home-solutions-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: calc(70vh * 2);
  margin: 0 auto;
}

/* Individual Card */
.home-solution-card {
  position: sticky;
  top: 140px;
  background: #ffffff;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  will-change: transform;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
}

.home-solution-card:nth-child(1) { top: 140px; z-index: 1; }
.home-solution-card:nth-child(2) { top: 140px; z-index: 2; }
.home-solution-card:nth-child(3) { top: 140px; z-index: 3; }
.home-solution-card:nth-child(4) { top: 140px; z-index: 4; }
.home-solution-card:nth-child(5) { top: 140px; z-index: 5; }
.home-solution-card:nth-child(6) { top: 140px; z-index: 6; }

.home-solution-card.is-stacked {
  transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.home-solution-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px;
  align-items: center;
  height: 100%;
}

/* Media Section */
.home-solution-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-solution-media-frame {
  background: linear-gradient(145deg, #e8f4f8 0%, #f0f7f4 100%);
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  padding: 24px;
}

.home-solution-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.home-solution-icon-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.home-solution-icon-placeholder svg {
  width: 60px;
  height: 60px;
  color: #fff;
}

/* Content Section */
.home-solution-content {
  padding: 20px 0;
}

.home-solution-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.home-solution-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 16px;
}

.home-solution-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 24px;
}

.home-solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

.home-solution-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #10b981;
  margin-top: 2px;
}

.home-solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.home-solution-cta:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  color: #fff;
}

.home-solution-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.home-solution-cta:hover svg {
  transform: translateX(4px);
}

/* View All Solutions Button */
.home-solutions-more {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  margin-top: 590px;
  position: relative;
  z-index: 10;
}

.home-solutions-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.home-solutions-more-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: #fff;
}

.home-solutions-more-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.home-solutions-more-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles for Home Solutions Showcase */
@media (max-width: 992px) {
  .home-solutions-cards {
    max-width: 100%;
  }
  
  .home-solution-card {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  
  .home-solution-card-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    height: auto;
  }
  
  .home-solution-media {
    order: -1;
  }
  
  .home-solution-media-frame {
    max-width: 100%;
    padding: 20px;
    aspect-ratio: 16/9;
  }
  
  .home-solutions-nav-link {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  .home-solutions-more {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .home-solutions-showcase {
    padding: 60px 0 0;
  }
  
  .home-solutions-header {
    margin-bottom: 32px;
  }
  
  .home-solutions-nav {
    top: 56px;
  }
  
  .home-solutions-nav-inner {
    justify-content: flex-start;
    padding: 0 16px;
  }
  
  .home-solution-card {
    top: 120px !important;
    margin-bottom: 24px;
  }
  
  .home-solution-card-inner {
    padding: 24px;
    gap: 24px;
  }
  
  .home-solution-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }
  
  .home-solution-icon-placeholder svg {
    width: 40px;
    height: 40px;
  }
  
  .home-solutions-cards-wrapper {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .home-solutions-nav-link {
    padding: 12px 14px;
    font-size: 12px;
  }
  
  .home-solution-heading {
    font-size: 20px;
  }
  
  .home-solution-description {
    font-size: 14px;
  }
  
  .home-solution-features li {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-choose-section {
    padding: var(--spacing-12) 0;
  }
  
  .why-choose-section .section-title {
    font-size: 2rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .why-choose-card-content {
    padding: var(--spacing-4);
  }
  
  .why-choose-card-title {
    font-size: var(--font-size-lg);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-20) 0;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
  margin-top: var(--spacing-12);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(99, 102, 241, 0.1);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-4);
  position: relative;
  z-index: 1;
}

.testimonial-star {
  color: #e5e7eb;
  font-size: 20px;
  transition: color 0.2s;
}

.testimonial-star.filled {
  color: #fbbf24;
}

.testimonial-text {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--color-gray-700);
  margin: 0 0 var(--spacing-6) 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--color-gray-200);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin-bottom: 2px;
}

.testimonial-author-title {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: var(--spacing-12) 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .testimonial-card {
    padding: var(--spacing-6);
  }
}

/* Case Studies Section */
.case-studies-section {
  padding: var(--spacing-20) 0;
  background: linear-gradient(135deg, #fffef7 0%, #fffbeb 50%, #fef3c7 100%);
  position: relative;
}

.case-studies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
  pointer-events: none;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
  margin-top: var(--spacing-12);
  position: relative;
  z-index: 1;
}

.case-study-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 2px solid rgba(251, 191, 36, 0.2);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(251, 191, 36, 0.25);
  border-color: rgba(251, 191, 36, 0.5);
}

.case-study-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-gray-100);
  position: relative;
}

.case-study-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

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

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

.case-study-card-content {
  padding: var(--spacing-6);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  flex: 1;
}

.case-study-card-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  flex-wrap: wrap;
}

.case-study-card-client {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: #92400e;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.case-study-card-industry {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--color-gray-100);
}

.case-study-card-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-study-card-challenge {
  flex: 1;
}

.case-study-card-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: #92400e;
  margin-bottom: var(--spacing-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-study-card-challenge p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-gray-700);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: var(--spacing-12) 0;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .case-study-card-image {
    height: 200px;
  }
  
  .case-study-card-content {
    padding: var(--spacing-5);
  }
  
  .case-study-card-title {
    font-size: var(--font-size-base);
  }
}

/* Blog Posts Section */
.blog-posts-section {
  padding: var(--spacing-20) 0;
  background: linear-gradient(135deg, #fefcff 0%, #fdf4ff 50%, #fae8ff 100%);
  position: relative;
}

.blog-posts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.3), transparent);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
  margin-top: var(--spacing-12);
}

.blog-post-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid rgba(192, 132, 252, 0.15);
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(192, 132, 252, 0.2);
  border-color: rgba(192, 132, 252, 0.4);
}

.blog-post-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-gray-100);
  position: relative;
}

.blog-post-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.blog-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-card-image img {
  transform: scale(1.08);
}

.blog-post-card-content {
  padding: var(--spacing-6);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  flex: 1;
}

.blog-post-card-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  flex-wrap: wrap;
}

.blog-post-card-date {
  font-size: var(--font-size-xs);
  color: #7c3aed;
  font-weight: var(--font-weight-semibold);
}

.blog-post-card-tag {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  background: #fae8ff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-post-card-title {
  margin: 0;
  line-height: 1.4;
}

.blog-post-card-title a {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.blog-post-card-title a:hover {
  color: #7c3aed;
}

.blog-post-card-excerpt {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #7c3aed;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-post-card-link:hover {
  gap: 8px;
}

@media (max-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-posts-section {
    padding: var(--spacing-12) 0;
  }
  
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .blog-post-card-image {
    height: 180px;
  }
  
  .blog-post-card-content {
    padding: var(--spacing-5);
  }
}

/* ============================================
   Homepage CTA Banner Section
   Full-width banner with image, overlay, two-line heading, and CTA button
   ============================================ */

/* Main Section */
.home-cta-banner {
    padding: 4rem 1.5rem;
    background: #f8fafc;
    /* CSS Variables with defaults */
    --cta-banner-overlay-color: rgba(0,0,0,0.5);
    --cta-banner-overlay-intensity: 0.5;
    --cta-banner-heading-color: #ffffff;
    --cta-banner-button-bg: #ffffff;
    --cta-banner-button-text: #2563eb;
}

/* Container with max-width and rounded corners */
.home-cta-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

/* Image Wrapper */
.home-cta-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Background Image */
.home-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay Shadow - Uses CSS variables for dynamic color and intensity */
.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--cta-banner-overlay-color) 0%,
        color-mix(in srgb, var(--cta-banner-overlay-color) 70%, transparent) 50%,
        color-mix(in srgb, var(--cta-banner-overlay-color) 40%, transparent) 100%
    );
    opacity: var(--cta-banner-overlay-intensity);
    z-index: 2;
}

/* Content Container */
.home-cta-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3.5rem 4rem;
    min-height: 320px;
}

/* Two-Line Heading - Uses CSS variable for color */
.home-cta-heading {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--cta-banner-heading-color);
    margin: 0 0 2rem;
    max-width: 600px;
}

.home-cta-heading span {
    display: block;
}

/* CTA Button - Uses CSS variables for background and text color */
.home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--cta-banner-button-bg);
    color: var(--cta-banner-button-text);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--cta-banner-button-bg);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-cta-button:hover {
    background: transparent;
    color: var(--cta-banner-heading-color);
    border-color: var(--cta-banner-heading-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.home-cta-button:focus {
    outline: 2px solid var(--cta-banner-heading-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-cta-banner {
        padding: 3rem 1.25rem;
    }
    
    .home-cta-container {
        min-height: 280px;
    }
    
    .home-cta-content {
        padding: 2.5rem 3rem;
        min-height: 280px;
    }
    
    .home-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .home-cta-banner {
        padding: 2.5rem 1rem;
    }
    
    .home-cta-container {
        min-height: 260px;
        border-radius: 12px;
    }
    
    .home-cta-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
    
    .home-cta-content {
        padding: 2rem 1.5rem;
        min-height: 260px;
        align-items: center;
        text-align: center;
    }
    
    .home-cta-heading {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .home-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .home-cta-banner {
        padding: 2rem 0.75rem;
    }
    
    .home-cta-container {
        min-height: 240px;
        border-radius: 10px;
    }
    
    .home-cta-content {
        padding: 1.5rem 1.25rem;
        min-height: 240px;
    }
    
    .home-cta-heading {
        font-size: 1.375rem;
        line-height: 1.4;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .home-cta-button {
        transition: none;
    }
    
    .home-cta-button:hover {
        transform: none;
    }
}

/* ============================================
   Homepage FAQ Section - Professional Design
   ============================================ */
.home-faqs {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Dark Theme */
.home-faqs.home-faqs-dark {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    color: #ffffff;
}

/* Light Theme */
.home-faqs.home-faqs-light {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
}

/* Background Effects */
.home-faqs-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-faqs-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
}

.home-faqs-dark .home-faqs-gradient {
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.home-faqs-light .home-faqs-gradient {
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.home-faqs-pattern {
    position: absolute;
    inset: 0;
    background-size: 32px 32px;
}

.home-faqs-dark .home-faqs-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
}

.home-faqs-light .home-faqs-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
}

/* Floating Orbs */
.home-faqs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.home-faqs-dark .home-faqs-orb-1 {
    width: 500px;
    height: 500px;
    background: #10b981;
    top: -200px;
    right: -150px;
    opacity: 0.12;
}

.home-faqs-dark .home-faqs-orb-2 {
    width: 350px;
    height: 350px;
    background: #059669;
    bottom: -150px;
    left: -100px;
    opacity: 0.08;
}

.home-faqs-light .home-faqs-orb-1 {
    width: 500px;
    height: 500px;
    background: #10b981;
    top: -200px;
    right: -150px;
    opacity: 0.06;
}

.home-faqs-light .home-faqs-orb-2 {
    width: 350px;
    height: 350px;
    background: #059669;
    bottom: -150px;
    left: -100px;
    opacity: 0.04;
}

.home-faqs-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.home-faqs-sidebar {
    position: sticky;
    top: 120px;
}

.home-faqs-sidebar-content {
    position: relative;
    z-index: 2;
}

.home-faqs-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.home-faqs-dark .home-faqs-title {
    color: #ffffff;
}

.home-faqs-light .home-faqs-title {
    color: #0f172a;
}

.home-faqs-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.home-faqs-dark .home-faqs-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.home-faqs-light .home-faqs-subtitle {
    color: #64748b;
}

.home-faqs-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.home-faqs-dark .home-faqs-contact-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.home-faqs-dark .home-faqs-contact-btn:hover {
    background: #10b981;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.home-faqs-light .home-faqs-contact-btn {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.home-faqs-light .home-faqs-contact-btn:hover {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.home-faqs-contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Decoration Circles */
.home-faqs-decoration {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
}

.home-faqs-decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.home-faqs-dark .home-faqs-decoration-circle {
    border-color: rgba(255, 255, 255, 0.1);
}

.home-faqs-light .home-faqs-decoration-circle {
    border-color: rgba(16, 185, 129, 0.15);
}

.home-faqs-decoration-circle-1 {
    width: 200px;
    height: 200px;
    animation: homeFaqPulse 4s ease-in-out infinite;
}

.home-faqs-decoration-circle-2 {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    animation: homeFaqPulse 4s ease-in-out infinite 0.5s;
}

.home-faqs-decoration-circle-3 {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    animation: homeFaqPulse 4s ease-in-out infinite 1s;
}

@keyframes homeFaqPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* FAQ Content */
.home-faqs-content {
    position: relative;
}

.home-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Dark Theme - FAQ Items */
.home-faqs-dark .home-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.home-faqs-dark .home-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.home-faqs-dark .home-faq-item[data-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #10b981;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

/* Light Theme - FAQ Items */
.home-faqs-light .home-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.home-faqs-light .home-faq-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.home-faqs-light .home-faq-item[data-expanded="true"] {
    border-color: #10b981;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12);
}

.home-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-faqs-dark .home-faq-question {
    color: #ffffff;
}

.home-faqs-dark .home-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.home-faqs-light .home-faq-question {
    color: #0f172a;
}

.home-faqs-light .home-faq-question:hover {
    background: #f8fafc;
}

.home-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-faqs-dark .home-faq-number {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.home-faqs-light .home-faq-number {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
}

.home-faq-item[data-expanded="true"] .home-faq-number,
.home-faq-question[aria-expanded="true"] .home-faq-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.home-faq-question-text {
    flex: 1;
    line-height: 1.5;
}

.home-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-faqs-dark .home-faq-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.home-faqs-dark .home-faq-toggle svg {
    stroke: rgba(255, 255, 255, 0.6);
}

.home-faqs-light .home-faq-toggle {
    background: #f1f5f9;
}

.home-faqs-light .home-faq-toggle svg {
    stroke: #64748b;
}

.home-faq-toggle svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.home-faq-icon-minus {
    display: none;
}

.home-faq-question[aria-expanded="true"] .home-faq-toggle {
    background: #10b981;
}

.home-faq-question[aria-expanded="true"] .home-faq-toggle svg {
    stroke: #fff;
}

.home-faq-question[aria-expanded="true"] .home-faq-icon-plus {
    display: none;
}

.home-faq-question[aria-expanded="true"] .home-faq-icon-minus {
    display: block;
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.home-faq-question[aria-expanded="true"] + .home-faq-answer {
    max-height: 500px;
}

.home-faq-answer-inner {
    padding: 0 28px 28px 80px;
}

.home-faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.home-faqs-dark .home-faq-answer p {
    color: rgba(255, 255, 255, 0.7);
}

.home-faqs-light .home-faq-answer p {
    color: #64748b;
}

/* FAQ Footer */
.home-faqs-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 28px 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.home-faqs-dark .home-faqs-footer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.home-faqs-light .home-faqs-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.home-faqs-footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.home-faqs-footer-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

.home-faqs-footer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-faqs-footer-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.home-faqs-footer-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.home-faqs-footer-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-faqs-dark .home-faqs-footer-btn {
    background: #10b981;
    color: #fff;
}

.home-faqs-dark .home-faqs-footer-btn:hover {
    background: #fff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.home-faqs-light .home-faqs-footer-btn {
    background: #fff;
    color: #0f172a;
}

.home-faqs-light .home-faqs-footer-btn:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .home-faqs-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .home-faqs-sidebar {
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .home-faqs-title {
        font-size: 36px;
    }
    
    .home-faqs-title br {
        display: none;
    }
    
    .home-faqs-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-faqs {
        padding: 80px 0;
    }
    
    .home-faqs-title {
        font-size: 28px;
    }
    
    .home-faq-question {
        padding: 20px;
        gap: 12px;
    }
    
    .home-faq-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .home-faq-answer-inner {
        padding: 0 20px 20px 64px;
    }
    
    .home-faqs-footer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .home-faqs-footer-text {
        align-items: center;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .home-faq-item,
    .home-faq-question,
    .home-faq-number,
    .home-faq-toggle,
    .home-faq-toggle svg,
    .home-faq-answer,
    .home-faqs-contact-btn,
    .home-faqs-footer-btn,
    .home-faqs-decoration-circle {
        transition: none;
        animation: none;
    }
}

/* Focus visible for keyboard navigation */
.home-faq-question:focus {
    outline: none;
}

.home-faq-question:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    border-radius: 12px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .home-faqs-dark .home-faq-item {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .home-faqs-light .home-faq-item {
        border-color: rgba(0, 0, 0, 0.2);
    }
}
