/* ========================================
   Solution Page Specific Styles
   ======================================== */

/* ========================================
   SOLUTION HERO SECTION
   ======================================== */
.hero.solution-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero.solution-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 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,59,59,0.3)"/><path d="M0,10 L20,10 M10,0 L10,20" stroke="rgba(255,59,59,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
  opacity: 0.4;
}

.hero.solution-hero .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
}

.hero.solution-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero.solution-hero .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intersection-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.intersection-image:hover {
  transform: scale(1.05);
}

.hero.solution-hero .hero-text {
  text-align: left;
}

.hero.solution-hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white !important;
  line-height: 1.1;
}

.hero.solution-hero .hero-text .highlight {
  color: var(--primary-red);
}

.hero.solution-hero .hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero.solution-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero.solution-hero .btn-secondary {
  background: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero.solution-hero .btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ========================================
   IMAGE COMPARISON SLIDER SECTION
   ======================================== */
.comparison-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.image-comparison-container {
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%; /* Wider aspect ratio for larger screens */
  overflow: hidden;
  border-radius: 15px;
  cursor: grab;
}

.image-container:active {
  cursor: grabbing;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.after-image {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  cursor: grab;
  z-index: 10;
  transform: translateX(-50%);
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-line {
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
  color: white;
  gap: 2px;
}

.slider-button svg {
  width: 12px;
  height: 12px;
}

.comparison-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0 1rem;
}

.label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
}

.before-label {
  color: var(--primary-red);
}

.after-label {
  color: var(--secondary-gray);
}

.section-header.centered {
  text-align: center;
}

/* ========================================
   COMPARISON CHART SECTION
   ======================================== */
.comparison-chart-section {
  padding: 5rem 0;
  background: white;
}

.t-chart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.chart-column {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.chart-column:hover {
  transform: translateY(-5px);
}

.chart-column.traditional {
  border: 2px solid #e2e8f0;
}

.chart-column.labbra {
  border: 2px solid var(--primary-red);
  background: linear-gradient(135deg, #fff5f5 0%, var(--light-gray) 100%);
}

.column-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.column-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.column-header .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.labbra .comparison-item:hover {
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.2);
}

.item-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 10px;
  flex-shrink: 0;
}

.labbra .item-icon {
  background: linear-gradient(135deg, var(--primary-red), #e53e3e);
  color: white;
}

.item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.item-content p {
  color: var(--secondary-gray);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d2d 100%);
  color: white;
}

.timeline-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.timeline-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.timeline-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.timeline-header strong {
  color: var(--primary-red);
}

.funding-cta {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-red);
}

.funding-cta:hover {
  background: transparent;
  color: var(--primary-red);
  transform: translateY(-2px);
}

.timeline-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.phase-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.phase-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phase-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 59, 59, 0.3);
}

.phase-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-red);
}

.phase-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.phase-duration {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.phase-goals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.goal {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  border-left: 3px solid var(--primary-red);
  transition: all 0.3s ease;
}

.goal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* ========================================
   TEAM UPDATES SECTION
   ======================================== */
.team-updates-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.linkedin-button-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #0077B5;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}

.linkedin-btn:hover {
  background: transparent;
  color: #0077B5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.linkedin-btn svg {
  transition: transform 0.3s ease;
}

.linkedin-btn:hover svg {
  transform: scale(1.15);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 5rem 0;
  background: var(--light-gray);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--secondary-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.primary {
  background: var(--primary-red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-red);
}

.cta-button.primary:hover {
  background: transparent;
  color: var(--primary-red);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button.secondary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large screens - make slider even bigger */
@media (min-width: 1440px) {
  .image-comparison-container {
    max-width: 1600px;
    padding: 4rem;
  }
  
  .image-container {
    padding-bottom: 45%; /* Even wider on very large screens */
  }
}

@media (min-width: 1920px) {
  .image-comparison-container {
    max-width: 1800px;
    padding: 5rem;
  }
  
  .image-container {
    padding-bottom: 40%; /* Ultra-wide on 4K screens */
  }
}

@media (max-width: 1024px) {
  .hero.solution-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero.solution-hero .hero-text h1 {
    font-size: 3rem;
  }

  .hero.solution-hero .hero-buttons {
    justify-content: center;
  }

  .t-chart {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-container {
    padding-bottom: 55%; /* Better aspect ratio for tablets */
  }

  .timeline-phases {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .comparison-section {
    padding: 4rem 0;
  }

  .image-comparison-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero.solution-hero {
    padding: 80px 0 40px 0;
    min-height: 100vh;
  }

  .hero.solution-hero .hero-container {
    padding: 0 1rem;
    min-height: calc(100vh - 80px);
  }

  .hero.solution-hero .hero-content {
    gap: 2.5rem;
  }

  .hero.solution-hero .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero.solution-hero .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .hero.solution-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero.solution-hero .hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px; /* Better touch target */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intersection-image {
    max-width: 320px;
    width: 90%;
  }

  /* Comparison Section Mobile Improvements */
  .comparison-section {
    padding: 3rem 0;
  }

  .image-comparison-container {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }

  .image-container {
    padding-bottom: 65%; /* Better mobile aspect ratio */
    border-radius: 12px;
  }

  .slider-handle {
    width: 6px; /* Thicker for easier mobile interaction */
  }

  .slider-button {
    width: 60px; /* Larger touch target */
    height: 60px;
  }

  .slider-button svg {
    width: 14px;
    height: 14px;
  }

  .comparison-labels {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    margin-top: 1.5rem;
  }

  .label {
    font-size: 1.1rem;
    font-weight: 700;
  }

  /* Comparison Chart Mobile Improvements */
  .comparison-chart-section {
    padding: 3rem 0;
  }

  .t-chart {
    gap: 2rem;
    padding: 0 1rem;
  }

  .chart-column {
    padding: 1.5rem;
  }

  .comparison-items {
    gap: 1.25rem;
  }

  .comparison-item {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }

  .item-icon {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    flex-shrink: 0;
  }

  .item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .item-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Team Updates Mobile Improvements */
  .team-updates-section {
    padding: 3rem 0;
  }

  .updates-container {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .update-post {
    padding: 1.25rem;
  }

  .post-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .avatar-image {
    width: 44px;
    height: 44px;
  }

  .post-author h4 {
    font-size: 0.95rem;
  }

  .post-badge {
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
  }

  .post-meta {
    font-size: 0.8rem;
  }

  .post-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hashtag {
    font-size: 0.8rem;
  }

  .engagement-actions {
    gap: 0.5rem;
  }

  .engagement-btn {
    padding: 0.5rem;
    font-size: 0.8rem;
    border-radius: 4px;
  }

  .engagement-btn svg {
    width: 14px;
    height: 14px;
  }

  .view-more-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Timeline Mobile Improvements */
  .timeline-section {
    padding: 3rem 0;
  }

  .timeline-header {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .timeline-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .timeline-header p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .funding-cta {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    min-height: 48px;
  }

  .timeline-phases {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .phase-card {
    padding: 2rem 1.5rem;
  }

  .phase-header h3 {
    font-size: 1.6rem;
  }

  .phase-subtitle {
    font-size: 1.1rem;
  }

  .phase-duration {
    font-size: 1rem;
  }

  .goal {
    font-size: 0.95rem;
    padding: 1rem;
    line-height: 1.5;
  }

  /* CTA Section Mobile Improvements */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-content {
    padding: 0 1rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button.primary,
  .cta-button.secondary {
    width: 100%;
    max-width: 280px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero.solution-hero {
    padding: 70px 0 30px 0;
  }

  .hero.solution-hero .hero-container {
    padding: 0 0.75rem;
  }

  .hero.solution-hero .hero-text h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero.solution-hero .hero-text p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero.solution-hero .hero-buttons a {
    max-width: 260px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .intersection-image {
    max-width: 280px;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }

  .section-header p {
    font-size: 0.95rem !important;
    padding: 0 0.5rem;
  }

  /* Comparison Section */
  .image-comparison-container {
    padding: 1rem 0.75rem;
    margin: 0 0.75rem;
  }

  .image-container {
    padding-bottom: 70%; /* Taller aspect ratio for small screens */
    border-radius: 10px;
  }

  .slider-handle {
    width: 5px;
  }

  .slider-button {
    width: 50px;
    height: 50px;
  }

  .slider-button svg {
    width: 12px;
    height: 12px;
  }

  .comparison-labels {
    margin-top: 1rem;
  }

  .label {
    font-size: 1rem;
  }

  /* Comparison Chart */
  .t-chart {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }

  .chart-column {
    padding: 1.25rem;
  }

  .column-header h3 {
    font-size: 1.3rem;
  }

  .column-header .icon {
    font-size: 2rem;
  }

  .comparison-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .item-content h4 {
    font-size: 1rem;
  }

  .item-content p {
    font-size: 0.9rem;
  }

  /* Team Updates Small Mobile */
  .updates-container {
    padding: 0 0.75rem;
  }

  .update-post {
    padding: 1rem;
  }

  .post-header {
    gap: 0.5rem;
  }

  .avatar-image {
    width: 40px;
    height: 40px;
  }

  .post-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .post-author h4 {
    font-size: 0.9rem;
  }

  .post-badge {
    font-size: 0.65rem;
  }

  .post-meta {
    font-size: 0.75rem;
  }

  .linkedin-logo svg {
    width: 16px;
    height: 16px;
  }

  .post-content p {
    font-size: 0.85rem;
  }

  .hashtag {
    font-size: 0.75rem;
  }

  .engagement-stats {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .engagement-actions {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .engagement-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    flex: 1;
    justify-content: center;
    min-width: 80px;
  }

  .engagement-btn svg {
    width: 12px;
    height: 12px;
  }

  .view-more-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .view-more-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Timeline */
  .timeline-header {
    padding: 0 0.75rem;
  }

  .timeline-header h2 {
    font-size: 1.9rem;
  }

  .timeline-header p {
    font-size: 1rem;
  }

  .funding-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .timeline-phases {
    padding: 0 0.75rem;
  }

  .phase-card {
    padding: 1.5rem 1.25rem;
  }

  .phase-header h3 {
    font-size: 1.4rem;
  }

  .phase-subtitle {
    font-size: 1rem;
  }

  .phase-duration {
    font-size: 0.9rem;
  }

  .goal {
    font-size: 0.9rem;
    padding: 0.875rem;
  }

  /* CTA Section */
  .cta-content {
    padding: 0 0.75rem;
  }

  .cta-section h2 {
    font-size: 1.9rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button.primary,
  .cta-button.secondary {
    max-width: 260px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Additional Mobile Touch Improvements */
@media (max-width: 768px) {
  /* Improve touch targets */
  .comparison-item:hover {
    transform: none; /* Disable hover effects on mobile */
  }

  .chart-column:hover {
    transform: none;
  }

  .phase-card:hover {
    transform: none;
  }

  .goal:hover {
    transform: none;
  }

  /* Disable team updates hover effects on mobile */
  .update-post:hover {
    transform: none;
  }

  .engagement-btn:hover {
    background: transparent;
    color: #666;
    border-color: transparent;
  }

  .hashtag:hover {
    color: #0077B5;
    text-decoration: none;
  }

  /* Better mobile scrolling */
  .comparison-section,
  .comparison-chart-section,
  .team-updates-section,
  .timeline-section,
  .cta-section {
    overflow-x: hidden;
  }

  /* Ensure proper spacing */
  .container {
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Disable image hover effects on mobile */
  .intersection-image:hover {
    transform: none;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero.solution-hero {
    min-height: 100vh;
    padding: 60px 0 30px 0;
  }

  .hero.solution-hero .hero-content {
    gap: 2rem;
  }

  .image-container {
    padding-bottom: 50%; /* Shorter in landscape */
  }
}