/* ProDentim Story LP - Custom Styles */
/* Mobile-first, performance optimized for MGID / Native Ads traffic */

:root {
  --primary-teal: #0f766e;
  --accent-teal: #14b8a6;
  --dark-text: #1f2937;
  --light-bg: #f8fafc;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Strong brand buttons */
.cta-button {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgb(15 118 110 / 0.2), 0 4px 6px -4px rgb(15 118 110 / 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgb(15 118 110 / 0.2), 0 8px 10px -6px rgb(15 118 110 / 0.2);
  background: linear-gradient(135deg, #115e59 0%, #0f766e 100%);
}

.cta-button:active {
  transform: translateY(0);
}

/* Trust badge pills */
.trust-badge {
  background-color: #f0fdfa;
  color: #0f766e;
  border: 1px solid #99f6e4;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Testimonial card */
.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

/* Pricing card highlight */
.pricing-card.best-value {
  border: 3px solid #14b8a6;
  position: relative;
  box-shadow: 0 10px 15px -3px rgb(20 184 166 / 0.15);
}

.pricing-card.best-value::before {
  content: "BEST VALUE • 97% Choose This";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #14b8a6;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 16px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

/* FAQ details styling */
details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary .faq-icon {
  transform: rotate(180deg);
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.1;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

/* Accessibility & performance */
img {
  max-width: 100%;
  height: auto;
}