/* Corporate Services page — hero, ROI calculator, pricing tiers,
   testimonials, FAQ, CTA. Extracted from CorporateServices.jsx
   (2026-08-30) so the component can stay focused on presentation. */
.corporate-services-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero Section */
.corporate-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.corporate-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width=%2760%27 height=%2760%27 viewBox=%270 0 60 60%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23334155%27 fill-opacity=%270.15%27%3E%3Ccircle cx=%2730%27 cy=%2730%27 r=%271%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtext {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  color: #94a3b8;
  margin-top: 16px;
}

.text-red-500 {
  color: #ef4444;
}

.hero-description {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ef4444;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-secondary:hover {
  color: #f8fafc;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #64748b;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
  color: #f8fafc;
}

.section-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Crisis Section */
.crisis-section {
  padding: 100px 0;
  background: #f8fafc;
}

.animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

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

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 8px;
}

.stat-comparison {
  font-size: 0.8rem;
  color: #ef4444;
  font-weight: 500;
}

.crisis-quote {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 48px;
  border-radius: 20px;
  text-align: center;
}

.crisis-quote blockquote {
  font-size: 1.25rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin: 0 0 24px;
  font-style: italic;
}

.crisis-quote blockquote strong {
  color: #60a5fa;
  font-style: normal;
}

.crisis-quote cite {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Pain Section */
.pain-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 48px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.impact-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  margin-bottom: 16px;
}

.impact-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.impact-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #f87171;
}

.impact-stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.impact-card h3 {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 12px;
}

.impact-card p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pain-callout {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 32px;
}

.callout-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.callout-content svg {
  color: #f87171;
  flex-shrink: 0;
}

.callout-content h3 {
  color: #f87171;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.callout-content p {
  color: #e2e8f0;
  line-height: 1.6;
}

.callout-content strong {
  color: #fca5a5;
}

/* Research Section */
.research-section {
  padding: 100px 0;
  background: #f8fafc;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 48px;
}

.research-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.research-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.research-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.research-finding {
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.research-source {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.evidence-summary {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 48px;
  border-radius: 20px;
}

.evidence-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.evidence-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.evidence-content strong {
  color: #93c5fd;
}

/* Solution Section */
.solution-section {
  padding: 100px 0;
  background: white;
}

.solution-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .solution-intro {
    grid-template-columns: 1fr;
  }
}

.intro-content .section-tag {
  margin-bottom: 16px;
}

.intro-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
}

.intro-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.intro-content strong {
  color: #1e293b;
}

.image-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 32px;
  border-radius: 16px;
}

.image-card h3 {
  color: #f8fafc;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.image-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.image-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.image-card li:last-child {
  border-bottom: none;
}

.image-card li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}

.feature-card {
  background: #f8fafc;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ROI Section */
.roi-section {
  padding: 100px 0;
  background: #f8fafc;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 48px;
}

.roi-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.roi-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 8px;
}

.roi-metric {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 8px;
}

.roi-description {
  font-size: 0.875rem;
  color: #64748b;
}

.roi-case-study {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  padding: 40px;
  border-radius: 20px;
}

.case-study-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.case-study-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-study-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.case-study-content li {
  color: white;
  padding: 8px 0;
  font-size: 1.05rem;
}

.case-study-content li strong {
  font-size: 1.25rem;
}

.case-study-source {
  font-style: italic;
  opacity: 0.8;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #3b82f6;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  color: #1e293b;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #64748b;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #3b82f6;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #64748b;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cta-subtext {
  color: #64748b;
  margin-bottom: 48px !important;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-card svg {
  color: #60a5fa;
  margin-bottom: 16px;
}

.contact-card h3 {
  color: #f8fafc;
  margin-bottom: 8px;
}

.contact-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.contact-link {
  display: inline-block;
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #93c5fd;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 20px 32px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

.guarantee-badge span {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.guarantee-badge strong {
  color: #22c55e;
}

/* Sources Section */
.sources-section {
  padding: 48px 0;
  background: #f1f5f9;
}

.sources-section h3 {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sources-list p {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.sources-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

@media (max-width: 768px) {
  .sources-list ul {
    columns: 1;
  }
}

.sources-list li {
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crisis-quote {
    padding: 32px 24px;
  }

  .crisis-quote blockquote {
    font-size: 1.05rem;
  }

  .callout-content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-badge {
    flex-direction: column;
    text-align: center;
  }
}


/*# sourceMappingURL=897.43a95c0f.chunk.css.map*/