.cta-section {
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--bg-dark);
  padding-bottom: 0px;
  text-align: center;
}

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

.cta-section h2 {
  color: var(--secondary-white);
  margin-bottom: 0.5em;
}

.cta-section p {
  color: #cccccc;
  font-size: clamp(16px, 3vw, 18px);
  margin-bottom: 2em;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin: 2em 0 3em;
  text-align: left;
}

.cta-feature {
  background: var(--bg-medium);
  padding: 2em;
  border-radius: 15px;
  border: 1px solid var(--border-dark);
}

.cta-feature h4 {
  color: var(--secondary-white);
  margin-bottom: 0.5em;
}

.cta-feature p {
  color: #cccccc;
  margin: 0;
}

.cta-button {
  display: inline-block;
  background: #e0a800;
  color: var(--bg-dark);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #ffd700;
}


/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .cta-section {
      padding: 70px 0;
  }

  .cta-features {
      grid-template-columns: repeat(2, 1fr);
      gap: 2em;
  }
}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .cta-section {
      padding: 60px 0;
  }

  .cta-features {
      grid-template-columns: 1fr;
      gap: 2em;
  }
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .cta-section {
      padding: 50px 0;
  }

  .cta-features {
      grid-template-columns: 1fr;
      gap: 2em;
  }

  .cta-feature {
      padding: 1.5em;
  }

  .cta-feature {
      padding: 1.5em;
  }

  .cta-button {
      padding: 16px 32px;
      font-size: 17px;
      display: block;
      text-align: center;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
}

@media (hover: none) and (pointer: coarse) {
  .cta-button {
      -webkit-tap-highlight-color: rgba(255, 186, 0, 0.2);
  }

  .cta-button:active {
      transform: scale(0.98);
  }
}

/* Landscape orientation optimization for tablets */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .cta-section {
      padding: 50px 0;
  }
}

/* Print styles */
@media print {
  .cta-button {
      display: none;
  }

  .cta-section {
      background: white;
      color: black;
  }
}