/* Solution Pages Styles - DohShield Enterprise */

/* Solution Hero Section */
.solution-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.solution-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E') repeat;
}

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

.solution-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #94d3ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.solution-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.solution-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 40px;
}

.solution-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.solution-stat {
  text-align: center;
}

.solution-stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 8px;
}

.solution-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Problem Section */
.problem-analysis {
  padding: 80px 0;
  background: #f8f9fa;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.problem-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.problem-cost {
  display: inline-block;
  background: #fee;
  color: #d00;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Solution Details */
.solution-details {
  padding: 80px 0;
  background: white;
}

.solution-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.approach-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.approach-list li::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #00d4ff;
  color: white;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  margin-right: 15px;
  font-weight: bold;
}

.approach-visual {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

/* Integration Section */
.integration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: white;
}

.integration-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.integration-pillar {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.integration-pillar h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00d4ff;
}

.integration-features {
  list-style: none;
  padding: 0;
}

.integration-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.integration-result {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #00d4ff;
}

/* Case Study Section */
.case-study-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.case-study-card {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.case-study-client h3 {
  font-size: 28px;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.case-study-industry {
  color: #666;
  font-size: 16px;
}

.case-study-results {
  text-align: right;
}

.result-number {
  font-size: 36px;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}

.result-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}

.case-study-content {
  margin-bottom: 30px;
}

.case-study-quote {
  font-size: 20px;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  padding: 30px;
  background: #f8f9fa;
  border-left: 4px solid #00d4ff;
  margin: 30px 0;
}

/* ROI Calculator */
.roi-calculator-section {
  padding: 80px 0;
  background: white;
}

.roi-calculator {
  max-width: 800px;
  margin: 50px auto;
}

.roi-inputs {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.roi-input-group {
  margin-bottom: 25px;
}

.roi-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.roi-input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.roi-results {
  background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.roi-result-item {
  margin-bottom: 20px;
}

.roi-result-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.roi-result-value {
  font-size: 42px;
  font-weight: 800;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

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

.comparison-table th {
  background: #1a1a2e;
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th.highlight {
  background: #00d4ff;
  color: #1a1a2e;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-mark {
  color: #00b341;
  font-size: 20px;
  font-weight: bold;
}

.x-mark {
  color: #d00;
  font-size: 20px;
  font-weight: bold;
}

/* CTA Section - WITH CONTRAST FIXES */
.solution-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: white !important;
  text-align: center;
}

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

.solution-cta h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white !important;
}

.solution-cta p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95) !important;
}

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

.btn-primary-large, .btn-secondary-large {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-large {
  background: #00d4ff;
  color: #1a1a2e;
}

.btn-primary-large:hover {
  background: #00b8e6;
  transform: translateY(-2px);
}

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

.btn-secondary-large:hover {
  background: white;
  color: #1a1a2e;
}

.phone-icon {
  width: 20px;
  height: 20px;
}

.cta-disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

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

/* Navigation */
nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #00d4ff;
}

.nav-cta {
  background: #00d4ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: #00b8e6;
}

/* Footer */
footer {
  background: #1a1a2e;
  color: white;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00d4ff;
}

/* CONTRAST FIXES FOR DARK SECTIONS */
.solution-hero,
.integration-section,
.solution-cta {
  color: white !important;
}

.solution-hero *,
.integration-section *,
.solution-cta * {
  color: white !important;
}

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

.solution-hero-subtitle,
.solution-cta p,
.integration-features li {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* COMPREHENSIVE MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    padding: 0 16px !important;
  }
  
  /* Hero Section */
  .solution-hero {
    padding: 80px 16px 40px !important;
  }
  
  .solution-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .solution-hero-subtitle {
    font-size: 1.05rem !important;
  }
  
  /* Solution Stats */
  .solution-stats-row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .solution-stat-number {
    font-size: 2rem !important;
  }
  
  /* Problem Grid */
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .problem-card {
    padding: 2rem 1.5rem !important;
  }
  
  .problem-icon {
    font-size: 2.5rem !important;
  }
  
  .problem-card h3 {
    font-size: 1.25rem !important;
  }
  
  /* Solution Approach */
  .solution-approach {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .approach-content h3 {
    font-size: 1.5rem !important;
  }
  
  /* Integration Pillars */
  .integration-pillars {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .integration-pillar {
    padding: 1.5rem !important;
  }
  
  .integration-pillar h4 {
    font-size: 1.25rem !important;
  }
  
  /* Case Study */
  .case-study-card {
    padding: 2rem !important;
  }
  
  .case-study-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .case-study-results {
    text-align: left;
  }
  
  .result-number {
    font-size: 2rem !important;
  }
  
  .case-study-quote {
    font-size: 1.1rem !important;
    padding: 1.5rem !important;
  }
  
  /* ROI Calculator */
  .roi-calculator {
    padding: 0 16px;
  }
  
  .roi-inputs {
    padding: 2rem !important;
  }
  
  .roi-results {
    padding: 2rem !important;
  }
  
  .roi-result-value {
    font-size: 2rem !important;
  }
  
  /* Comparison Table */
  .comparison-table {
    overflow-x: auto;
  }
  
  .comparison-table table {
    min-width: 600px;
  }
  
  /* CTA Section */
  .solution-cta {
    padding: 60px 16px !important;
  }
  
  .solution-cta h2 {
    font-size: 2rem !important;
  }
  
  .solution-cta p {
    font-size: 1.1rem !important;
  }
  
  /* 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;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .nav-container {
    padding: 1rem 16px !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;
  }
  
  /* Form inputs */
  input, textarea, select {
    font-size: 16px !important; /* Prevent iOS zoom */
    min-height: 44px;
  }
  
  /* Footer */
  footer {
    padding: 2rem 16px !important;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .solution-hero h1 {
    font-size: 1.75rem !important;
  }
  
  .solution-cta h2 {
    font-size: 1.75rem !important;
  }
  
  .container {
    padding: 0 12px !important;
  }
  
  .case-study-card {
    padding: 1.5rem !important;
  }
}