/* ── Early access trust ─────────────────────────────────── */
.proof {
  padding: 88px 24px;
  background: #FFFFFF;
  color: #1A1D3A;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-promise {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  border-radius: 22px;
  background: #F7F8FF;
  border: 1px solid rgba(79, 126, 255, 0.10);
  box-shadow: 0 8px 28px rgba(26, 31, 132, 0.05);
}

.proof-promise strong {
  font-size: 18px;
  font-weight: 800;
  color: #1A1D3A;
  line-height: 1.35;
}

.proof-promise p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5C5A66;
}

.proof-promise a {
  color: #4F7EFF;
  font-weight: 700;
  text-decoration: none;
}

.proof-promise a:hover {
  color: #1A1F84;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.proof-cta {
  margin-top: 40px;
  text-align: center;
}

.proof-cta .btn-primary {
  display: inline-flex;
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing {
  padding: 88px 24px;
  background: #F7F8FF;
  color: #1A1D3A;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(79, 126, 255, 0.12);
  box-shadow: 0 4px 20px rgba(26, 31, 132, 0.04);
}

.price-card.featured {
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, #1A1F84, #4F7EFF, #6474FF) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 44px rgba(26, 31, 132, 0.12);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1A1F84, #4F7EFF);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-card .price-desc {
  font-size: 13px;
  color: #6B6660;
  line-height: 1.6;
  margin-bottom: 22px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.price-amount strong {
  font-size: 40px;
  font-weight: 800;
  color: #1A1D3A;
  line-height: 1;
}

.price-amount span {
  font-size: 14px;
  color: #4A4A55;
  font-weight: 600;
}

.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}

.price-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.55;
  color: #2A2D42;
}

.price-features svg {
  color: #4F7EFF;
  margin-top: 2px;
}

.price-card .btn-primary,
.price-card .btn-ghost {
  width: 100%;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F7F8FF;
  color: #1A1D3A;
  border: 1px solid rgba(79, 126, 255, 0.18);
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-ghost:hover {
  background: #EEF1FF;
  border-color: rgba(79, 126, 255, 0.32);
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #4A4A55;
}

.pricing-note.reveal {
  margin-top: 28px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 88px 24px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 126, 255, 0.08), transparent 70%),
    #F7F8FF;
  color: #1A1D3A;
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(79, 126, 255, 0.10);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 800;
  color: #1A1D3A;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #1A1F84;
  background: rgba(79, 126, 255, 0.14);
  border: 1px solid rgba(26, 31, 132, 0.18);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #6B6660;
}

.faq-item p a {
  color: #4F7EFF;
  font-weight: 700;
  text-decoration: none;
}

.faq-item p a:hover {
  color: #1A1F84;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
  padding: 88px 24px;
  background: #FFFFFF;
  color: #1A1D3A;
}

.contact-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.contact-copy .section-badge {
  margin-bottom: 16px;
}

.contact-copy h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.contact-copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: #6B6660;
  margin-bottom: 24px;
}

.contact-meta {
  display: grid;
  gap: 12px;
}

.contact-meta a,
.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #2A2D42;
  text-decoration: none;
}

.contact-meta svg {
  color: #4F7EFF;
  flex-shrink: 0;
}

.contact-meta a:hover {
  color: #4F7EFF;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px 24px;
  border-radius: 24px;
  background: #F7F8FF;
  border: 1px solid rgba(79, 126, 255, 0.12);
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: #2A2D42;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(79, 126, 255, 0.16);
  background: #FFFFFF;
  color: #1A1D3A;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(79, 126, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(79, 126, 255, 0.12);
}

.contact-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 4px;
}

.contact-status {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #16A34A;
  text-align: center;
}

.contact-status.is-visible {
  display: block;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 56px 24px 28px;
  background: #0F1230;
  color: #E8EAF8;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232, 234, 248, 0.68);
  max-width: 28ch;
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(232, 234, 248, 0.68);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(232, 234, 248, 0.55);
}

.footer-bottom a {
  font-size: 13px;
  color: rgba(232, 234, 248, 0.55);
  text-decoration: none;
  margin-inline-start: 16px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .proof,
  .pricing,
  .faq,
  .contact {
    padding: 72px 16px;
  }

  .proof-promises {
    grid-template-columns: 1fr;
  }

  .proof-cta {
    margin-top: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin-inline-start: 0;
    margin-inline-end: 14px;
  }
}
