/* ===== Pro Page Styles ===== */

.pro-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Hero Section */
.pro-hero {
  text-align: center;
  margin-bottom: 40px;
}

.pro-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.3;
}

.pro-subtitle {
  font-size: 1.1rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.pro-subtitle strong {
  color: #111827;
}

/* Hero CTA */
.pro-hero-cta {
  margin-top: 28px;
}

.pro-cta-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 12px 0 0;
}

/* Context Section */
.pro-context {
  text-align: center;
  padding: 24px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 48px;
}

.pro-context p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}

/* Features Section */
.pro-features {
  margin-bottom: 48px;
}

.pro-features h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.feature-list li div {
  flex: 1;
}

.feature-list li strong {
  display: block;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 4px;
}

.feature-list li p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Pricing Section */
.pro-pricing {
  margin-bottom: 48px;
}

.price-card {
  background: #ffffff;
  border: 2px solid #111827;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.price-label {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.price-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 24px;
}

.pro-cta {
  display: inline-block;
  padding: 16px 32px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.pro-cta:hover {
  background: #1f2937;
}

.pro-cta.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

.pro-cta.loading::after {
  content: "...";
  animation: dots 1s steps(3, end) infinite;
}

@keyframes dots {
  0%, 20% { content: "."; }
  40% { content: ".."; }
  60%, 100% { content: "..."; }
}

.price-guarantees {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-guarantees li {
  font-size: 0.85rem;
  color: #059669;
}

/* Philosophy Section */
.pro-philosophy {
  text-align: center;
  padding: 32px 24px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 48px;
}

.pro-philosophy h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 20px;
}

.pro-philosophy p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 16px;
  line-height: 1.7;
}

.pro-philosophy p:last-of-type {
  margin-bottom: 0;
}

.philosophy-closing {
  font-size: 1.1rem;
  color: #111827;
  margin-top: 24px !important;
}

/* FAQ Section */
.pro-faq {
  margin-bottom: 48px;
}

.pro-faq h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px;
  text-align: center;
}

.pro-faq details {
  border-bottom: 1px solid #e5e7eb;
}

.pro-faq details:first-of-type {
  border-top: 1px solid #e5e7eb;
}

.pro-faq summary {
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  list-style: none;
}

.pro-faq summary::-webkit-details-marker {
  display: none;
}

.pro-faq summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  font-weight: 400;
  color: #6b7280;
}

.pro-faq details[open] summary::before {
  content: "−";
}

.pro-faq details p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 16px 20px;
  line-height: 1.6;
}

/* Final CTA Section */
.pro-final-cta {
  text-align: center;
  padding: 40px 24px;
  background: #111827;
  border-radius: 12px;
  color: #ffffff;
}

.pro-final-cta p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.pro-final-cta .pro-cta {
  background: #ffffff;
  color: #111827;
}

.pro-final-cta .pro-cta:hover {
  background: #f3f4f6;
}

.final-note {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 16px 0 0;
}

.terms-link {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 12px 0 0;
}

.terms-link a {
  color: #d1d5db;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .pro-hero h1 {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .feature-list li {
    flex-direction: column;
    gap: 8px;
  }

  .feature-icon {
    width: auto;
    text-align: left;
  }
}
