/*!
 * Homepage CSS - Valuize Theme
 * Homepage-specific styles and components
 * Version: 1.0.0
 */

/* ==========================================================================
   Hero Section - 2 Column Layout
   ========================================================================== */
.promo-bar {
    display: none !important;
}
.hero-section {
  position: relative;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF 38%, #4372B6 100%);
  overflow: hidden;
  padding: 120px 0 100px 0;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: var(--color-text-heading);
}

.hero-headline {
  font-family: var(--font-headings);
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1.05;
  color: #1B0B38;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.025em;
}

.hero-headline span {
    font-weight: 500;
}

p.hero-subheadline,
.hero-subheadline {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #1B0B38;
  margin-bottom: var(--spacing-xl);
}

/* Override entry-content p styles for hero-subheadline */
.entry-content p.hero-subheadline,
.all__content p.hero-subheadline {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #1B0B38;
  margin-bottom: var(--spacing-xl);
  padding-bottom: 0;
}


.hero-cta {
  margin-top: var(--spacing-lg);
}

.hero-cta .btn--primary {
  position: relative;
  background: var(--gradient-primary);
  color: var(--color-text-light);
  border: none;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  box-shadow: 0 4px 20px rgba(67, 114, 182, 0.3);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.hero-cta .btn--primary:before {
  border-radius: 100px;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--gradient-reverse);
  z-index: -1;
  transition: opacity 0.2s linear;
  opacity: 0;
}

.hero-cta .btn--primary:hover,
.hero-cta .btn--primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77, 53, 146, 0.4);
  color: var(--color-text-light);
}

.hero-cta .btn--primary:hover:before,
.hero-cta .btn--primary:focus:before {
  opacity: 1;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: var(--spacing-md);
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-image.mobile {
  display: none;
}

/* Hero Image Placeholder */
.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(12, 117, 188, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 117, 188, 0.2);
}

.hero-image-placeholder::before {
  content: "📊";
  font-size: 4rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: var(--spacing-xxl) 0;
    padding-top: 130px !important;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-image {
    order: 2;
    min-height: 300px;
    padding: var(--spacing-sm);
    display: none;
  }
  .hero-image.mobile {
    display: block;
    padding: 0;
    max-width: 400px !important;
    margin: 0 auto;
  }
  
  
  .hero-image-placeholder {
    height: 300px;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 460px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--spacing-xl) 0;
  }
  
  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.15;
  }
  
  .hero-subheadline {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero-image {
    min-height: 250px;
  }
  
  .hero-image img {
    max-height: 250px;
  }
  
  .hero-image-placeholder {
    height: 250px;
  }
}

/* ==========================================================================
   Challenge/Problem Section
   ========================================================================== */

.challenges-section {
  background: var(--color-bg-white);
  padding: 100px 0;
}

.challenges-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto var(--spacing-xxl) auto;
}

.challenges-intro h2 {
  margin-bottom: var(--spacing-lg);
}

.challenges-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.challenge-block {
  background: #957ABC;
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
}

/* Alternating colors - Blue for even items */
.challenge-block:nth-child(2n) {
  background: #0974BA;
}

/* Alternative pattern: Purple-Blue-Purple, Blue-Purple-Blue */
.challenge-block:nth-child(1), 
.challenge-block:nth-child(3),
.challenge-block:nth-child(5) {
  background: #957ABC;
}

.challenge-block:nth-child(2), 
.challenge-block:nth-child(4),
.challenge-block:nth-child(6) {
  background: #0974BA;
}

.challenge-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.challenge-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 2rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  color: white;
  flex-shrink: 0;
}

.challenge-icon i {
  font-size: 2rem;
}

.challenge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.challenge-title {
    font-family: var(--font-headings);
    font-weight: var(--weight-regular);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.3;
    padding-right: 3rem;
}

/* Override entry-content h3 styles for challenge-title */
.entry-content h3.challenge-title,
.all__content h3.challenge-title {
    font-family: var(--font-headings);
    font-weight: var(--weight-regular);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.3;
    padding-right: 3rem;
}

.challenge-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    flex-grow: 1;
    margin-top: 0.5rem;
}

/* Override entry-content p styles for challenge-description */
.entry-content p.challenge-description,
.all__content p.challenge-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    flex-grow: 1;
    margin-top: 0.5rem;
    padding-bottom: 0;
}

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

@media (max-width: 767px) {
  .challenges-section {
    padding: 3rem 0;
  }
  
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .challenge-block {
    padding: 1.5rem;
  }
  
  .challenge-icon {
    width: 50px;
    height: 50px;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .challenge-title {
    padding-right: 3rem;
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  background: linear-gradient(180deg, #483790 0%, #0974BA 100%);
  padding: 100px 0;
}

.services-intro {
  text-align: right;
  max-width: 1000px;
  margin: 0 0 var(--spacing-xxl) auto;
}

.services-intro h2 {
  margin-bottom: var(--spacing-lg);
  color: white;
}

.services-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

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

.service-block {
  background: var(--color-bg-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  border: 2px solid var(--color-bg-light);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-block:hover {
  border-color: var(--color-primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(12, 117, 188, 0.15);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4372B6;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 2rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
    font-family: var(--font-headings);
    font-weight: var(--weight-bold);
    font-size: 1.2rem;
    color: #1B0B38;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

/* Override entry-content h3 styles for service-title */
.entry-content h3.service-title,
.all__content h3.service-title {
    font-family: var(--font-headings);
    font-weight: var(--weight-bold);
    font-size: 1.2rem;
    color: #1B0B38;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.service-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1B0B38;
    margin-bottom: var(--spacing-lg);
}

/* Override entry-content p styles for service-description */
.entry-content p.service-description,
.all__content p.service-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1B0B38;
    margin-bottom: var(--spacing-lg);
    padding-bottom: 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  flex-grow: 1;
  margin-left: 0 !important;
}

.service-features li {
    list-style-type: none !important;
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: .9rem;
    line-height: 1.5;
    color: var(--color-text-primary);
}

/* Override entry-content ul li styles for service-features */
.entry-content ul.service-features li,
.all__content ul.service-features li {
    list-style-type: none !important;
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: .9rem;
    line-height: 1.5;
    color: var(--color-text-primary);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6EC1E4;
  font-weight: var(--weight-bold);
  font-size: 1.1rem;
}

.service-cta {
  margin-top: auto;
  padding-top: var(--spacing-md);
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  text-align: center;
}

.service-cta .btn {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #AB5BBF;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  transition: all var(--transition-normal);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.service-cta .btn i {
  color: white !important;
  font-size: 26px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.service-cta .btn:hover {
  background: #483790;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
  }
  
  @media (max-width: 767px) {
    .services-intro {
      text-align: center;
    }
    .services-section {
      padding: var(--spacing-xxl) 0;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xxl);
    }
    
    .service-block {
      padding: var(--spacing-lg);
    }
    
    .service-icon {
      width: 64px;
      height: 64px;
    }
  }

/* ==========================================================================
   ValueFlow Product Section
   ========================================================================== */

.valueflow-section {
  background: white;
  padding: 100px 0;
  color: #1B0B38;
}

.valueflow-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.valueflow-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.valueflow-image img {
  max-width: 100%;
  height: auto;
}

.valueflow-content {
  text-align: left;
}

.valueflow-content h2 {
  color: #1B0B38;
  margin-bottom: var(--spacing-lg);
}

.valueflow-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: #1B0B38;
}

@media (max-width: 1024px) {
  .valueflow-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .valueflow-image {
    order: 1;
  }
  
  .valueflow-content {
    order: 2;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .valueflow-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .valueflow-container {
    padding: 0 15px;
  }
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */

.social-proof-section {
  background: linear-gradient(180deg, #483790 0%, #0974BA 100%);
  padding: 100px 0;
}

.social-proof-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl) auto;
}

.social-proof-intro h2 {
  margin-bottom: var(--spacing-lg);
  color: white;
  text-align: left;
}

.social-proof-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

/* White outline button for social proof section */
.social-proof-section .btn--outline {
  color: white;
  border-color: white;
  background: transparent;
  margin-top: 2.5rem;
}

.social-proof-section .btn--outline:hover {
  background: white;
  color: #FFFFFF;
  border-color: white;
}

@media (max-width: 767px) {
  .social-proof-section {
    padding: var(--spacing-xxl) 0;
  }
  .social-proof-intro h2 {
    text-align: center;
  }
}

/* ==========================================================================
   Resources Section
   ========================================================================== */

.resources-section {
  background: white;
  padding: 100px 0;
}

.resources-intro {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.resources-intro h2 {
  margin-bottom: var(--spacing-lg);
  color: #1B0B38;
}

.resources-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.resources-carousel {
  padding-bottom: 50px;
}

.resources-carousel .swiper-slide {
  width: 350px;
  height: auto;
}

.resource-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  width: 100%;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
}

.resource-thumbnail {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  overflow: hidden;
  position: relative;
}

.resource-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(67, 114, 182, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.resource-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.25rem;
  color: #1B0B38;
  margin-bottom: 16px;
  line-height: 1.3;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-title a {
  color: inherit;
  text-decoration: none;
}

.resource-title a:hover {
  color: #4372B6;
}

.resource-excerpt {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: auto;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
}

.resource-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.resource-meta {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

/* Swiper Navigation Buttons */
.resources-carousel .swiper-button-next,
.resources-carousel .swiper-button-prev {
  color: #4372B6;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.resources-carousel .swiper-button-next:hover,
.resources-carousel .swiper-button-prev:hover {
  background: #4372B6;
  color: white;
  transform: scale(1.1);
}

.resources-carousel .swiper-button-next::after,
.resources-carousel .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* Swiper Pagination */
.resources-carousel .swiper-pagination {
  bottom: 15px;
}

.resources-carousel .swiper-pagination-bullet {
  background: #4372B6;
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.resources-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* Swiper Scrollbar */
.resources-carousel .swiper-scrollbar {
  background: rgba(0, 0, 0, 0.1);
  height: 4px;
  border-radius: 2px;
  bottom: 35px;
}

.resources-carousel .swiper-scrollbar-drag {
  background: #4372B6;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .resources-carousel-container {
    padding: 0 15px;
  }
  
  .resources-carousel .swiper-slide {
    width: 300px;
  }
}

@media (max-width: 767px) {
  .resources-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .resources-carousel-container {
    padding: 0 10px;
  }
  
  .resources-carousel .swiper-slide {
    width: 280px;
  }
  
  .resources-carousel .swiper-button-next,
  .resources-carousel .swiper-button-prev {
    display: none;
  }
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.final-cta-section {
  background: linear-gradient(90deg, #0c75bc 0%, #0c4cbc 49%, #0c75bc 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/waves.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

.final-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.final-cta-content h2 {
  margin-bottom: var(--spacing-lg);
  color: white;
  font-weight: 500;
}

.final-cta-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: white;
}

/* White outline button for final CTA section */
.final-cta-section .btn--outline {
  color: white;
  border-color: white;
  background: transparent;
  margin-top: 2.5rem;
}

.final-cta-section .btn--outline:hover {
  background: white;
  color: white;
  border-color: white;
}

@media (max-width: 767px) {
  .final-cta-section {
    padding: var(--spacing-xxl) 0;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: white;
  padding: 100px 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.faq-intro h2 {
  margin-bottom: var(--spacing-lg);
  color: #1B0B38;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {

  border-radius: 0;
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.faq-question {
  width: 100%;
  background: #4072B6;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 400;
  font-size: 1.1rem;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 0 !important;
  border-radius: 10px !important;
}

.faq-question:hover {
  background-image: linear-gradient(180deg, #4372b6 0%, #0974ba 100%);
}

.faq-question:focus {
  outline: 2px solid #4372B6;
  outline-offset: -2px;
}

.faq-question[aria-expanded="true"] {
  background-image: linear-gradient(180deg, #4372b6 0%, #0974ba 100%);
  color: white;
}

.faq-answer {
  padding: 24px;
  background: white;
  border-top: 1px solid #e5e5e5;
  display: none;
  border-radius: 0 0 8px 8px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer:not([hidden]) {
  display: block;
}

.faq-answer-content, .faq-answer-content p {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: #1B0B38;
  margin: 0;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #FFFFFF;
  font-size: 1.2rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-icon::before {
  content: '+';
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  content: '−';
}

/* Blue outline button for FAQ section */
.faq-section .btn--outline {
  color: #0974BA;
  border-color: #0974BA;
  background: transparent;
  margin-top: 2.5rem;
}

.faq-section .btn--outline:hover {
  background: #0974BA;
  color: white;
  border-color: #0974BA;
}
.faq-section .feature-title {
  color: #0974BA;
}
.faq-section .btn--outline {
  margin-top: 0;
}

@media (max-width: 767px) {
  .faq-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .faq-question {
    padding: var(--spacing-md);
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 20px var(--spacing-md) var(--spacing-md);
  }
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --spacing-xxl: 60px;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-xxl: 40px;
    --spacing-xl: 32px;
    --spacing-lg: 24px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  p.hero-subheadline, .hero-subheadline, .challenges-intro p, 
  .services-intro p, .resources-intro p, .valueflow-content p, 
  .faq-intro p, .social-proof-intro p, .final-cta-content p {
    font-size: 1.05rem;
  }
  .challenge-title, .service-title, .resource-title {
    font-size: 1.1rem;
  }
  .hero-cta .btn--primary, .btn-cta.btn--primary, .btn-cta.btn--outline {
    font-size: 1rem;
  }
} 

.home .footer-cta {
  display: none;
}

.mm-page.mm-slideout.wpmm-force-bg, .mm-wrapper__blocker.mm-slideout {
  z-index: 99999;
}

.twentyseventeen-front-page .top {
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
  z-index: 99;
  background-color: #FFFFFF;
}
.wpls-logo-slider .slick-next {
  right: -15px !important;
}