/* Industry Page Styles - Combined from page.module.css */

/* Header and Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.headerContent {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.backButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.backButton:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(-3px);
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navLink {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navLink:hover {
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroBackgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.heroBgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.heroGradientOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.heroContent {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.heroTitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.heroDescription {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Statistics Section */
.statistics {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  scroll-margin-top: 100px;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.sectionTitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.statsVisualSection {
  margin-top: 3rem;
}


.statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.statCard {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.statCard:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 20px 40px rgba(0, 118, 163, 0.3);
  background: rgba(0, 118, 163, 0.08);
}

.statValue {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.statLabel {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.statChange {
  font-size: 0.9rem;
  color: #43e97b;
  font-weight: 600;
  margin-top: 0.5rem;
}

.statDescription {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

/* Case Studies Section */
.caseStudies {
  padding: 80px 20px;
  background: var(--bg-secondary);
  scroll-margin-top: 100px;
}

.caseStudiesGrid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.caseStudyCard {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.caseStudyImageWrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.caseStudyImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.caseStudyCard:hover .caseStudyImage {
  transform: scale(1.1);
}

.caseStudyImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.8) 100%);
  z-index: 1;
}

.caseStudyCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 20px 40px rgba(0, 118, 163, 0.3);
  background: rgba(0, 118, 163, 0.05);
}

.caseStudyHeader {
  margin-bottom: 0;
  padding: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.caseStudyMeta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.caseStudyIndustry,
.caseStudyDuration {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 118, 163, 0.15);
  color: #66b3d1;
  font-weight: 500;
}

.caseStudyTitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: left;
  width: 100%;
}

.caseStudyClient {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

.caseStudyContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2.5rem 2.5rem;
  position: relative;
  z-index: 2;
}

.caseStudySection {
  margin-bottom: 0;
  width: 100%;
}

.sectionLabel {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: block;
  text-align: left;
}

.sectionText {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  text-align: left;
  width: 100%;
}

.caseStudyResults {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.resultsTitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-align: left;
}

.resultsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resultsList li {
  padding: 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.resultsList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  color: #0076a3;
  font-weight: bold;
}

.caseStudyMetrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.metric {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metricValue {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.metricLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.caseStudyROI {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  background: rgba(0, 118, 163, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 118, 163, 0.3);
  width: 100%;
}

.roiLabel {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roiValue {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  background: var(--bg-primary);
}

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.testimonialCard {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonialCard::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 118, 163, 0.08);
  line-height: 1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  z-index: 0;
  opacity: 0.5;
}

.testimonialCard:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 118, 163, 0.4);
  box-shadow: 0 12px 30px rgba(0, 118, 163, 0.15);
  background: rgba(0, 118, 163, 0.03);
}

.testimonialHeader {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonialAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 118, 163, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonialAvatar::after {
  content: '✓';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  border: 2px solid var(--bg-secondary);
  font-weight: 700;
  z-index: 2;
}

.testimonialLogo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 6px;
}

.testimonialLogo::after {
  content: '✓';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  border: 2px solid var(--bg-secondary);
  font-weight: 700;
  z-index: 2;
}

.testimonialLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.testimonialRating {
  display: flex;
  gap: 0.15rem;
  margin-left: auto;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.testimonialRatingStar {
  color: #ffd700;
  font-size: 0.9rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
}

.testimonialQuote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-style: normal;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonialAuthor {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.authorInfo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.authorName {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.authorName::after {
  content: '✓';
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 900;
}

.authorRole {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-weight: 500;
}

.authorCompany {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.authorCompany::before {
  content: '🏢';
  font-size: 0.75rem;
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: var(--bg-primary);
  scroll-margin-top: 100px;
}

.servicesGrid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.serviceCard {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.serviceCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 15px 35px rgba(0, 118, 163, 0.25);
  background: rgba(0, 118, 163, 0.05);
}

.serviceTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: left;
  line-height: 1.3;
  letter-spacing: -0.01em;
  width: 100%;
}

.serviceDescription {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-align: left;
  width: 100%;
}

.serviceFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  text-align: left;
  width: 100%;
}

.serviceFeatures li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.serviceFeatures li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0076a3;
  font-weight: bold;
}

/* Benefits Section */
.benefits {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-secondary);
}

.benefitsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.benefitCard {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefitCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 15px 35px rgba(0, 118, 163, 0.25);
  background: rgba(0, 118, 163, 0.05);
}

.benefitTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: left;
  width: 100%;
}

.benefitDescription {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  text-align: left;
  margin: 0;
  width: 100%;
}

/* Process Section */
.process {
  padding: 100px 20px;
  background: var(--bg-primary);
  position: relative;
}

.processSteps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.processStep {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.processStepImageWrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.processStepImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.processStep:hover .processStepImage {
  transform: scale(1.1);
}

.processStepImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.8) 100%);
  z-index: 1;
}

.processStep:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 118, 163, 0.8);
  box-shadow: 0 20px 40px rgba(0, 118, 163, 0.25);
  background: rgba(0, 118, 163, 0.05);
}

.stepNumber {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  margin: -40px auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 118, 163, 0.3);
  transition: all 0.3s ease;
}

.processStep:hover .stepNumber {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 118, 163, 0.4);
}

.stepContent {
  flex: 1;
  width: 100%;
  padding: 0 2.5rem 2.5rem;
  position: relative;
  z-index: 2;
}

.stepTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.stepDescription {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* Detailed Metrics Section */
.detailedMetrics {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-secondary);
}

.metricsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.metricCategory {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metricCategoryTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metricItems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.metricItem {
  text-align: center;
}

.metricItemValue {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metricItemLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.faqList {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faqItem {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faqItem:hover {
  border-color: rgba(0, 118, 163, 0.3);
  box-shadow: 0 4px 12px rgba(0, 118, 163, 0.1);
}

.faqItem.active {
  border-color: rgba(0, 118, 163, 0.5) !important;
  background: rgba(0, 118, 163, 0.05) !important;
  box-shadow: 0 6px 20px rgba(0, 118, 163, 0.15) !important;
}

.faqHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.faqHeader:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faqHeader:focus {
  outline: 2px solid rgba(0, 118, 163, 0.5);
  outline-offset: -2px;
}

.faqHeader * {
  pointer-events: none;
}

.faqHeader * {
  pointer-events: none;
}

.faqQuestion {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  text-align: left;
  line-height: 1.5;
  padding-right: 1rem;
}

.faqIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #0076a3;
  pointer-events: none;
}

.faqItem.active .faqIcon {
  transform: rotate(180deg) !important;
  color: #0099cc !important;
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  padding: 0 2rem;
  display: block;
  visibility: hidden;
}

.faqItem.active .faqAnswer {
  max-height: 2000px !important;
  padding: 0 2rem 1.5rem 2rem !important;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
}

/* Force show when active - backup method */
.faqItem.active .faqAnswer p {
  display: block !important;
  visibility: visible !important;
}

.faqAnswer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.5rem;
}

/* CTA Section */
.cta {
  padding: 100px 20px;
  background: var(--bg-secondary);
  text-align: center;
}

.ctaInline {
  padding: 60px 20px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ctaInline .ctaTitle {
  font-size: 2rem;
}

.ctaInline .ctaDescription {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.ctaContent {
  max-width: 800px;
  margin: 0 auto;
}

.ctaTitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctaDescription {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ctaButton {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 118, 163, 0.3);
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}

.ctaButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 118, 163, 0.4);
}

.footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .headerContent {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero {
    padding: 40px 15px 30px;
    min-height: 220px;
  }

  .heroTitle {
    font-size: 2rem;
  }

  .heroDescription {
    font-size: 1rem;
  }

  .sectionTitle {
    font-size: 2rem;
  }

  .statsVisualSection {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .caseStudiesGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials {
    padding: 40px 15px;
  }

  .testimonialsGrid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonialCard {
    padding: 1.5rem;
  }

  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .processSteps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .benefitsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .sectionHeader {
    padding: 0 15px;
  }

  .metricsGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faqList {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ctaTitle {
    font-size: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .caseStudiesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    padding: 50px 20px;
  }

  .testimonialsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .processSteps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .benefitsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .processSteps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .servicesGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefitsGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .statsGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .servicesGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefitsGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sectionHeader {
    padding: 0 15px;
    margin-bottom: 3rem;
  }
  
  .serviceCard,
  .benefitCard {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .statsGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

