/* Trust Center Pages Styles - DohShield Enterprise */

/* Override body padding for trust pages */
body {
  padding-top: 0 !important;
}

/* Trust Hero Section - WITH CONTRAST FIXES */
.trust-hero {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  color: white !important;
}

.trust-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1), transparent 50%);
}

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

.trust-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.trust-hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.trust-hero-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 40px;
}

/* About Section */
.about-story {
  padding: 100px 0;
  background: white;
}

.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #00d4ff, #0f3460);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 4px solid #00d4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #00d4ff;
  z-index: 10;
}

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

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.mission-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

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

.mission-card p {
  color: #666;
  line-height: 1.6;
}

/* Results Section */
.results-showcase {
  padding: 100px 0;
  background: white;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.result-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 50px;
  border-radius: 16px;
  color: white;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 40%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.result-number {
  font-size: 72px;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 15px;
  display: block;
  position: relative;
  z-index: 1;
}

.result-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.result-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Case Studies Hub */
.case-studies-hub {
  padding: 80px 0;
  background: #f8f9fa;
}

.case-study-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: #00d4ff;
  color: white;
  border-color: #00d4ff;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.case-study-preview {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.case-study-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.case-study-image {
  height: 200px;
  background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.case-study-info {
  padding: 30px;
}

.case-study-category {
  display: inline-block;
  background: #e6f7ff;
  color: #0f3460;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.case-study-preview p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-study-metric {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}

.metric-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
}

/* Incident Library */
.incident-library {
  padding: 80px 0;
  background: white;
}

.incident-stats-bar {
  background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
  padding: 40px;
  border-radius: 12px;
  color: white;
  margin-bottom: 60px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.incident-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #00d4ff;
}

.incident-type {
  font-size: 12px;
  text-transform: uppercase;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.incident-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.incident-details {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.incident-outcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.amount-saved {
  font-size: 20px;
  font-weight: 700;
  color: #00b341;
}

.incident-date {
  font-size: 14px;
  color: #999;
}

/* Comparison Pages */
.comparison-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 100px 0 60px;
  color: white;
}

.comparison-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.comparison-subtitle {
  font-size: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.comparison-matrix {
  padding: 80px 0;
  background: white;
}

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

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

.matrix-table thead {
  background: #1a1a2e;
}

.matrix-table th {
  padding: 25px;
  color: white;
  font-weight: 600;
  text-align: left;
}

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

.matrix-table th.highlight::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}

.matrix-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.matrix-table tbody tr:hover {
  background: #f8f9fa;
}

.matrix-table td {
  padding: 25px;
  font-size: 16px;
}

.feature-name {
  font-weight: 600;
  color: #333;
}

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

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

.partial {
  color: #ffa500;
  font-weight: 600;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00d4ff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: #00d4ff;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: #00b8e6;
}

.contact-info {
  padding: 40px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 32px;
  margin-right: 20px;
  color: #00d4ff;
}

.contact-details h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.contact-details a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

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

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

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 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 !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem !important;
  grid-template-columns: unset !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

/* CONTRAST FIXES FOR DARK SECTIONS */
.trust-hero,
.comparison-hero,
.incident-stats-bar,
section[style*="background: linear-gradient"] {
  color: white !important;
}

.trust-hero *,
.comparison-hero *,
.incident-stats-bar * {
  color: white !important;
}

.trust-hero h1,
.comparison-title {
  color: white !important;
}

.trust-hero-subtitle,
.comparison-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Results Section with dark backgrounds */
.result-card {
  color: white !important;
}

.result-card * {
  color: white !important;
}

/* COMPREHENSIVE RESPONSIVE DESIGN */

/* Tablets - iPad, iPad Pro landscape (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px !important;
  }
  
  .trust-hero,
  .comparison-hero {
    padding: 100px 24px 60px !important;
  }
  
  .trust-hero h1,
  .comparison-title {
    font-size: 2.5rem !important;
  }
  
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .incidents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  section {
    padding: 60px 0 !important;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    padding: 0 16px !important;
  }
  
  /* Trust Hero */
  .trust-hero {
    padding: 80px 16px 40px !important;
  }
  
  .trust-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .trust-hero-subtitle {
    font-size: 1.05rem !important;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 40px;
    padding: 1.5rem !important;
  }
  
  .story-timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
    width: 35px;
    height: 35px;
  }
  
  /* Mission Grid */
  .mission-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .mission-card {
    padding: 2rem 1.5rem !important;
  }
  
  .mission-icon {
    font-size: 2.5rem !important;
  }
  
  .mission-card h3 {
    font-size: 1.25rem !important;
  }
  
  /* Results Grid */
  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .result-card {
    padding: 2rem !important;
  }
  
  .result-number {
    font-size: 3rem !important;
  }
  
  /* Case Studies Hub */
  .case-study-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .case-study-preview {
    margin-bottom: 1rem;
  }
  
  .case-study-info {
    padding: 1.5rem !important;
  }
  
  /* Incident Library */
  .incident-stats-bar {
    padding: 2rem 16px !important;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .stat-value {
    font-size: 1.75rem !important;
  }
  
  .incidents-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .incident-card {
    padding: 1.5rem !important;
  }
  
  /* Comparison Pages */
  .comparison-hero {
    padding: 80px 16px 40px !important;
  }
  
  .comparison-title {
    font-size: 2rem !important;
  }
  
  .comparison-subtitle {
    font-size: 1.05rem !important;
    padding: 0 16px;
  }
  
  .matrix-table {
    overflow-x: auto;
  }
  
  .matrix-table table {
    min-width: 600px;
  }
  
  .matrix-table th,
  .matrix-table td {
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }
  
  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .contact-form {
    padding: 2rem !important;
  }
  
  .contact-info {
    padding: 2rem !important;
  }
  
  .contact-method {
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    font-size: 1.5rem !important;
  }
  
  /* Form Inputs */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important; /* Prevent iOS zoom */
    min-height: 44px;
  }
  
  .form-submit {
    padding: 16px !important;
    font-size: 16px !important;
    min-height: 44px;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .nav-container {
    padding: 1rem 16px !important;
  }
  
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
  }
  
  /* Section Headers */
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
    padding: 0 16px;
  }
  
  /* 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;
  }
  
  /* 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) {
  .trust-hero h1 {
    font-size: 1.75rem !important;
  }
  
  .comparison-title {
    font-size: 1.75rem !important;
  }
  
  .section-title {
    font-size: 1.75rem !important;
  }
  
  .result-number {
    font-size: 2.5rem !important;
  }
  
  .container {
    padding: 0 12px !important;
  }
}

/* ============================================
   CTA Section - Enterprise Styled
   ============================================ */

.solution-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f44 0%, #1a365d 50%, #0f3460 100%);
  color: white !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.solution-cta .container {
  position: relative;
  z-index: 1;
}

.solution-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: white !important;
  letter-spacing: -0.02em;
}

.solution-cta > .container > p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.solution-cta .cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.solution-cta .btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #0a1f44 !important;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.solution-cta .btn-primary-large:hover {
  background: #f0f4f8;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.solution-cta .btn-secondary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.solution-cta .btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.solution-cta .cta-disclaimer {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-top: 1rem;
}

/* Mobile responsive for CTA */
@media (max-width: 768px) {
  .solution-cta {
    padding: 60px 16px;
  }
  
  .solution-cta h2 {
    font-size: 1.75rem !important;
  }
  
  .solution-cta > .container > p {
    font-size: 1.05rem;
    padding: 0 16px;
  }
  
  .solution-cta .cta-buttons {
    flex-direction: column;
    padding: 0 16px;
  }
  
  .solution-cta .btn-primary-large,
  .solution-cta .btn-secondary-large {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}