/* ====================
   SOCIAL MEDIA TRUST CRISIS - ARTICLE STYLES
   Fully Responsive
   ==================== */

/* CSS Variables */
:root {
  --primary: #0c84c0;
  --primary-dark: #0c5e7a;
  --primary-light: #e1f0f7;
  --secondary: #10b981;
  --secondary-dark: #0d9c6e;
  --accent: #ef4444;
  --accent-dark: #dc2626;
  --warning: #f59e0b;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.trust-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.trust-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="white" d="M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z"/></svg>') repeat;
  background-size: 50px;
  pointer-events: none;
}

.trust-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.crisis-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--warning));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-text h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: #a5f3fc;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-highlight {
  color: #ef4444;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* Quick Navigation */
.quick-nav {
  background: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 80px;
  z-index: 98;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.quick-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.nav-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--light);
  border-radius: 2rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.nav-card i {
  color: var(--accent);
  font-size: 0.9rem;
}

.nav-card:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  border-color: var(--accent);
}

.nav-card:hover i {
  color: white;
}

.nav-card.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.nav-card.active i {
  color: white;
}

/* Article Content */
.article-content {
  padding: 3rem 0;
}

.content-wrapper {
  display: flex;
  gap: 3rem;
}

.main-content {
  flex: 2;
}

.sidebar {
  flex: 1;
}

/* Section Styles */
.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.content-section h2 i {
  color: var(--accent);
  font-size: 1.6rem;
}

.article-intro {
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
}

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.problem-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.problem-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.problem-card li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.85rem;
}

.problem-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.problem-stat {
  background: var(--light);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  border-left: 3px solid var(--accent);
}

/* Signal Card */
.signal-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-light);
}

.signal-result {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-light);
  font-weight: 600;
  color: var(--accent);
}

/* Duplication Cycle */
.duplication-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}

.cycle-step {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.duplication-cycle i {
  color: var(--accent);
}

.duplication-result {
  background: #fef2f2;
  padding: 1rem;
  border-radius: 0.75rem;
  border-left: 3px solid var(--accent);
  margin: 1rem 0;
}

/* Consequences Grid */
.consequences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.consequence-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.consequence-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.consequence-card i {
  font-size: 2rem;
  color: var(--warning);
  margin-bottom: 1rem;
  display: block;
}

.consequence-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.consequence-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.facebook-warning {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.facebook-warning i {
  font-size: 2rem;
}

.facebook-warning p {
  margin: 0;
  font-size: 0.9rem;
}

/* Solution Section */
.solution-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 2rem;
  border-radius: 1rem;
}

.solution-card {
  text-align: center;
}

.solution-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.verification-tick-demo {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.tick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tick-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.tick-icon span {
  font-weight: 600;
  color: var(--dark);
}

.tick-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tick-features div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.tick-features i {
  color: var(--secondary);
  width: 1.25rem;
}

.solution-link {
  margin-top: 1.5rem;
}

/* Cycle Table */
.cycle-table {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin: 1.5rem 0;
}

.cycle-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.cycle-row.header {
  background: var(--light);
  font-weight: 600;
}

.cycle-row.current {
  background: #fef2f2;
}

.current-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

/* Future Grid */
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.future-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.future-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.future-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.future-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.future-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Paradox Table */
.paradox-table {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin: 1.5rem 0;
}

.paradox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.paradox-row.header {
  background: var(--light);
  font-weight: 600;
}

.paradox-row i {
  margin-right: 0.5rem;
}

.paradox-row i.fa-bolt {
  color: var(--warning);
}

.paradox-row i.fa-users {
  color: var(--primary);
}

.paradox-row i.fa-chart-line {
  color: var(--secondary);
}

.paradox-row i.fa-robot {
  color: var(--accent);
}

.paradox-row i.fa-exclamation-triangle,
.paradox-row i.fa-question-circle,
.paradox-row i.fa-comments,
.paradox-row i.fa-heart-broken {
  color: var(--accent);
}

.paradox-conclusion {
  text-align: center;
  padding: 1rem;
  background: var(--light);
  border-radius: 0.75rem;
  font-weight: 500;
}

/* Opportunity Section */
.opportunity-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  padding: 2rem;
  border-radius: 1rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.opportunity-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: var(--transition);
}

.opportunity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.opportunity-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.opportunity-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.opportunity-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Conclusion Section */
.conclusion-section {
  margin-top: 2rem;
}

.conclusion-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
  padding: 2rem;
  border-radius: 1rem;
  color: white;
  text-align: center;
}

.conclusion-card p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.conclusion-quote {
  margin-top: 1.5rem;
  padding: 1rem;
  position: relative;
}

.conclusion-quote i {
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.5;
}

.conclusion-quote i:first-child {
  position: absolute;
  top: -0.5rem;
  left: 0;
}

.conclusion-quote i:last-child {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
}

.conclusion-quote p {
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  padding: 0 2rem;
}

/* Related Article Box */
.related-article-box {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.related-article-box h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.related-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.related-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.related-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.related-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.btn-small {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.75rem;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* Article Footer */
.article-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tags-label {
  font-weight: 600;
  color: var(--dark);
}

.tag {
  background: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  color: var(--gray);
  text-decoration: none;
}

.tag:hover {
  background: var(--accent);
  color: white;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-light);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--light);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
}

.tool-item:hover {
  background: var(--primary);
  color: white;
}

.tool-item i {
  color: var(--primary);
  width: 1.25rem;
}

.tool-item:hover i {
  color: white;
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article {
  display: block;
  padding: 0.75rem;
  background: var(--light);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.related-article:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

.related-article h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: 0.5rem;
  font-family: inherit;
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.2rem;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
    order: 2;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .consequences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .future-grid {
    grid-template-columns: 1fr;
  }
  
  .opportunity-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .trust-hero {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .quick-nav {
    top: 70px;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .quick-nav-grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem;
  }
  
  .nav-card {
    flex-shrink: 0;
  }
  
  .duplication-cycle {
    flex-direction: column;
  }
  
  .duplication-cycle i {
    transform: rotate(90deg);
  }
  
  .consequences-grid {
    grid-template-columns: 1fr;
  }
  
  .cycle-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .paradox-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .conclusion-quote p {
    padding: 0;
    font-size: 0.9rem;
  }
  
  .conclusion-quote i {
    display: none;
  }
  
  .related-card {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary,
  .cta-buttons .btn-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .trust-hero {
    padding: 80px 0 40px;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
  }
  
  .hero-text h2 {
    font-size: 1rem;
  }
  
  .crisis-badge {
    font-size: 0.7rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .content-section h2 {
    font-size: 1.4rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .problem-card h3 {
    font-size: 1rem;
  }
  
  .signal-card p {
    font-size: 0.85rem;
  }
  
  .future-card h3 {
    font-size: 0.9rem;
  }
  
  .opportunity-card h3 {
    font-size: 0.9rem;
  }
  
  .conclusion-card p {
    font-size: 0.9rem;
  }
  
  .facebook-warning {
    flex-direction: column;
    text-align: center;
  }
  
  .solution-section {
    padding: 1rem;
  }
  
  .opportunity-section {
    padding: 1rem;
  }
  
  .verification-tick-demo {
    max-width: 100%;
  }
  
  .final-cta {
    padding: 2rem 0;
  }
  
  .cta-content h2 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.85rem;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 1.4rem;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .content-section h2 {
    font-size: 1.2rem;
  }
  
  .content-section h2 i {
    font-size: 1.2rem;
  }
  
  .cycle-step {
    font-size: 0.75rem;
  }
  
  .tick-icon span {
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .sidebar,
  .quick-nav,
  .whatsapp-float,
  #backToTop,
  .final-cta,
  .newsletter-widget,
  .hero-buttons,
  .cta-buttons {
    display: none !important;
  }
  
  .trust-hero {
    background: white;
    padding: 1rem 0;
    color: black;
  }
  
  .trust-hero .hero-text h1,
  .trust-hero .hero-text h2 {
    color: black;
  }
  
  .hero-description {
    color: #333;
  }
  
  .stat-number {
    color: var(--dark);
  }
  
  .problem-card,
  .signal-card,
  .future-card,
  .opportunity-card {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
  
  .solution-section,
  .opportunity-section {
    background: none;
    border: 1px solid #ccc;
  }
  
  .conclusion-card {
    background: none;
    border: 1px solid #ccc;
    color: black;
  }
  
  .conclusion-card p {
    color: #333;
  }
}