/* Trust Center Page Styles */

.trust-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f1f33 100%);
  padding: 100px 24px 80px;
  text-align: center;
  color: white;
}

.trust-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.trust-hero h1 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.trust-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Documents Section */
.trust-docs {
  padding: 80px 24px;
  background: #f8fafc;
}

.trust-docs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.trust-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.trust-card-content {
  flex: 1;
  min-width: 0;
}

.trust-card-content h3 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.trust-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.trust-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-security {
  background: #dbeafe;
  color: #1e40af;
}

.badge-accessibility {
  background: #dcfce7;
  color: #166534;
}

.badge-privacy {
  background: #fef3c7;
  color: #92400e;
}

.badge-education {
  background: #fce7f3;
  color: #9d174d;
}

.badge-financial {
  background: #dbeafe;
  color: #1e40af;
}

/* Industry Badges */
.badge-industry {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 8px;
  vertical-align: middle;
}

.badge-cu {
  background: #dcfce7;
  color: #166534;
}

.badge-higher-ed {
  background: #fce7f3;
  color: #9d174d;
}

.badge-ai {
  background: #e0e7ff;
  color: #4338ca;
}

.trust-card-download {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 500;
}

/* Contact Section */
.trust-contact {
  padding: 80px 24px;
  text-align: center;
  background: white;
}

.trust-contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.trust-contact h2 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.trust-contact p {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

.trust-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  padding: 12px 32px;
  background: #eff6ff;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.trust-email:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Section Headers */
.trust-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-section-header h2 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.trust-section-header p {
  font-size: 16px;
  color: #666;
}

.trust-section-header-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.trust-section-header-icon-nda {
  background: #fef3c7;
  color: #d97706;
}

/* Gated Section */
.trust-docs-gated {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

/* NDA Section */
.trust-docs-nda {
  background: #fffbeb;
  border-top: 1px solid #fde68a;
}

/* Gated Card Styles */
.trust-card-gated {
  cursor: pointer;
  border: 1px solid #94a3b8;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.trust-card-gated:hover {
  border-color: #3b82f6;
}

.trust-card-gated .trust-card-download {
  color: #64748b;
}

.trust-card-gated.unlocked {
  background: white;
  border-color: #e5e7eb;
}

.trust-card-gated.unlocked .trust-card-download {
  color: #3b82f6;
}

/* NDA Card Styles */
.trust-card-nda {
  border: 1px solid #fcd34d;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.trust-card-nda:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, white 0%, #fef9c3 100%);
}

.trust-card-nda .trust-card-icon {
  background: #fef3c7;
  color: #d97706;
}

.trust-card-nda .trust-card-download {
  color: #d97706;
}

/* Badge Certification */
.badge-certification {
  background: #fef3c7;
  color: #92400e;
}

/* Email Gate Modal */
.trust-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.trust-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.trust-modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.trust-modal-overlay.active .trust-modal {
  transform: scale(1) translateY(0);
}

.trust-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #94a3b8;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.trust-modal-close:hover {
  background: #f1f5f9;
  color: #1a1a1a;
}

.trust-modal h2 {
  font-family: 'Poppins', var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.trust-modal p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.trust-modal form,
.trust-modal .gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-modal input[type="email"],
.trust-modal input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}

.trust-modal input[type="email"]:focus,
.trust-modal input[type="text"]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.trust-modal .cf-turnstile {
  display: flex;
  justify-content: center;
}

.trust-modal .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-hero {
    padding: 80px 20px 60px;
  }

  .trust-hero h1 {
    font-size: 32px;
  }

  .trust-hero p {
    font-size: 16px;
  }

  .trust-docs {
    padding: 48px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card {
    flex-direction: column;
    gap: 16px;
  }

  .trust-card-download {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
  }

  .trust-contact {
    padding: 48px 20px;
  }

  .trust-contact h2 {
    font-size: 24px;
  }

  .trust-contact p {
    font-size: 16px;
  }

  .trust-section-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-bottom: 24px;
  }

  .trust-section-header-icon {
    margin: 0 auto;
  }

  .trust-section-header h2 {
    font-size: 22px;
  }

  .trust-modal {
    padding: 32px 24px;
    margin: 20px;
  }

  .trust-modal h2 {
    font-size: 20px;
  }
}
