/* ============================================
   SynthBridge — Catholic Schools & Parishes
   Section-specific styles layered over style.css
   ============================================ */

/* --- Hero tweaks --- */
.catholic-hero .hero-label {
  background: linear-gradient(90deg, rgba(212,160,23,0.18), rgba(212,160,23,0.05));
}

.parish-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.parish-visual svg {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(212,160,23,0.08));
}

.hero-fineprint {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.85;
  display: flex;
  align-items: center;
}

/* --- Trust strip --- */
.trust-strip {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}

.trust-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* --- VS comparison section --- */
.vs-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.vs-table-wrap {
  max-width: 900px;
  margin: 60px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.vs-table thead th {
  background: rgba(212,160,23,0.06);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.vs-table thead th.us {
  background: rgba(212,160,23,0.14);
  color: var(--gold-light);
}

.vs-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
}

.vs-table tbody tr:last-child td {
  border-bottom: none;
}

.vs-table tbody td:first-child {
  color: var(--white);
  font-weight: 500;
}

.vs-table tbody td.us {
  background: rgba(212,160,23,0.04);
  color: var(--gold-light);
  font-weight: 600;
  border-left: 2px solid rgba(212,160,23,0.4);
}

.vs-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.vs-table tbody tr:hover td.us {
  background: rgba(212,160,23,0.08);
}

/* --- Faith why-us section --- */
.faith-why {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* --- CTA band --- */
.cta-band {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.08) 0%, var(--bg-primary) 70%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-content .hero-buttons {
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Pricing page --- */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
}

.pricing-card.featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 20px 60px rgba(212,160,23,0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price small {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a017' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 4px;
}

.pricing-features li.x:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.5;
}

.pricing-features li.x {
  opacity: 0.5;
}

.pricing-cta {
  margin-top: 28px;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

.pricing-footnote {
  text-align: center;
  margin-top: 60px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- Migrate page --- */
.migrate-section {
  padding: var(--section-padding);
}

.migrate-steps {
  max-width: 800px;
  margin: 60px auto 0;
  display: grid;
  gap: 20px;
}

.migrate-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color var(--transition);
}

.migrate-step:hover {
  border-color: var(--glass-border-hover);
}

.migrate-step-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.migrate-step h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.migrate-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.migrate-step .day {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item details {
  padding: 22px 0;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary:after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item details[open] summary:after {
  content: "−";
}

.faq-item details p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-top: 14px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .vs-table { font-size: 0.85rem; }
  .vs-table thead th, .vs-table tbody td { padding: 12px 14px; }
  .cta-content h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .migrate-step { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
  .migrate-step-num { width: 40px; height: 40px; font-size: 1.2rem; }
}
