/* Industry-Specific Landing Page Styles */

/* Industry Hero Sections */
.industry-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--slate-secondary) 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.industry-hero-content {
  position: relative;
  z-index: 1;
}

.industry-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.industry-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.industry-hero-subtitle {
  font-size: 1.35rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 800px;
}

.industry-stats-row {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.industry-stat {
  flex: 1;
}

.industry-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.industry-stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pain Points Section */
.pain-points-section {
  padding: 80px 0;
  background: white;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pain-point-card {
  padding: 2rem;
  background: var(--light-grey);
  border-radius: 12px;
  border-left: 4px solid var(--alert-red);
  transition: all 0.3s ease;
}

.pain-point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pain-point-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pain-point-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.pain-cost {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--alert-red);
  font-size: 1.1rem;
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
  background: var(--light-grey);
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.solution-pillar {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.solution-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-primary), var(--accent-blue));
}

.solution-pillar h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.solution-pillar h4 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.solution-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
}

.solution-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.solution-result {
  background: linear-gradient(135deg, var(--success-green), var(--accent-blue));
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* Industry ROI Section */
.industry-roi-section {
  padding: 80px 0;
  background: white;
}

.roi-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.roi-before,
.roi-after {
  padding: 2.5rem;
  border-radius: 12px;
}

.roi-before {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 2px solid var(--alert-red);
}

.roi-after {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid var(--success-green);
  position: relative;
}

.roi-after::after {
  content: 'WITH DOH SUITE';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--success-green);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.roi-metrics {
  list-style: none;
  margin-top: 1.5rem;
}

.roi-metrics li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.roi-metrics strong {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Client Testimonial */
.client-testimonial {
  padding: 80px 0;
  background: var(--navy-primary);
  color: white;
  position: relative;
}

.testimonial-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 4rem;
  opacity: 0.3;
  position: absolute;
}

.testimonial-quote::before {
  top: -20px;
  left: -40px;
}

.testimonial-quote::after {
  bottom: -40px;
  right: -40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.author-title {
  opacity: 0.85;
  font-size: 0.95rem;
}

.author-company {
  font-weight: 600;
  color: var(--accent-blue);
}

/* Implementation Timeline */
.timeline-section {
  padding: 80px 0;
  background: var(--light-grey);
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--navy-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--navy-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 2rem;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Industry CTA - WITH CONTRAST FIXES */
.industry-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-primary), var(--slate-secondary));
  color: white !important;
  text-align: center;
}

.industry-cta * {
  color: white !important;
}

.industry-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: white !important;
}

.industry-cta p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-primary-large,
.btn-secondary-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-large {
  background: white;
  color: var(--navy-primary);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-secondary-large {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-large:hover {
  background: rgba(255,255,255,0.1);
}

.cta-disclaimer {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Competitor Comparison */
.competitor-section {
  padding: 80px 0;
  background: white;
}

.competitor-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 3rem;
}

.competitor-table table {
  width: 100%;
  border-collapse: collapse;
}

.competitor-table th,
.competitor-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.competitor-table th {
  background: var(--navy-primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.competitor-table td {
  color: var(--text-secondary);
}

.check-mark {
  color: var(--success-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.x-mark {
  color: var(--alert-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.table-highlight {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  border-left: 4px solid var(--accent-blue);
}

/* Industry-specific client logos */
.client-showcase {
  padding: 60px 0;
  background: var(--light-grey);
  text-align: center;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  color: var(--navy-primary);
  transform: scale(1.1);
}

/* CONTRAST FIXES FOR DARK SECTIONS */
.industry-hero,
.client-testimonial,
.industry-cta {
  color: white !important;
}

.industry-hero *,
.client-testimonial *,
.industry-cta * {
  color: white !important;
}

.industry-hero h1,
.industry-cta h2 {
  color: white !important;
}

.industry-hero-subtitle,
.industry-cta p,
.testimonial-quote {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* COMPREHENSIVE MOBILE RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .pain-points-grid,
  .solution-pillars {
    grid-template-columns: 1fr;
  }
  
  .industry-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .roi-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    padding: 0 16px !important;
  }
  
  /* Hero Section */
  .industry-hero {
    padding: 80px 16px 40px !important;
  }
  
  .industry-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .industry-hero-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.5;
  }
  
  /* Industry Stats */
  .industry-stats-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .industry-stat-number {
    font-size: 1.75rem !important;
  }
  
  .industry-stat-label {
    font-size: 0.85rem !important;
  }
  
  /* Pain Points Grid */
  .pain-points-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .pain-point-card {
    padding: 1.5rem !important;
  }
  
  .pain-icon {
    font-size: 2rem !important;
  }
  
  .pain-point-card h3 {
    font-size: 1.1rem !important;
  }
  
  .pain-cost {
    font-size: 1rem !important;
  }
  
  /* Solution Pillars */
  .solution-pillars {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .solution-pillar {
    padding: 1.5rem !important;
  }
  
  .solution-pillar h3 {
    font-size: 1.25rem !important;
  }
  
  /* ROI Comparison */
  .roi-comparison {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .roi-before,
  .roi-after {
    padding: 1.5rem !important;
  }
  
  /* Client Testimonial */
  .client-testimonial {
    padding: 60px 16px !important;
  }
  
  .testimonial-quote {
    font-size: 1.1rem !important;
  }
  
  .testimonial-quote::before,
  .testimonial-quote::after {
    font-size: 2.5rem !important;
  }
  
  /* Timeline */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 2rem;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 40px;
    padding: 1.5rem !important;
  }
  
  .timeline-marker {
    margin: 1rem 0;
    margin-left: 0;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  /* Industry CTA */
  .industry-cta {
    padding: 60px 16px !important;
  }
  
  .industry-cta h2 {
    font-size: 2rem !important;
  }
  
  .industry-cta p {
    font-size: 1.1rem !important;
    padding: 0 16px;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 16px;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100% !important;
    padding: 16px !important;
    font-size: 16px !important;
    min-height: 44px;
  }
  
  /* Competitor Table */
  .competitor-table {
    overflow-x: auto;
  }
  
  .competitor-table table {
    min-width: 600px;
  }
  
  .competitor-table th,
  .competitor-table td {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }
  
  /* Client Logos */
  .client-logos {
    gap: 1.5rem !important;
  }
  
  .client-logo {
    font-size: 1.25rem !important;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
  
  /* Section padding */
  section {
    padding: 40px 0 !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .industry-hero h1 {
    font-size: 1.75rem !important;
  }
  
  .industry-cta h2 {
    font-size: 1.75rem !important;
  }
  
  .industry-stat-number {
    font-size: 1.5rem !important;
  }
  
  .container {
    padding: 0 12px !important;
  }
  
  .timeline-content {
    padding: 1rem !important;
  }
}