/* ============================================
   AUDIT PAGE STYLES
   Tawfeeqoh Hamzat - Premium Personal Brand
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  padding: 10rem 8vw 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  margin-bottom: 1.5rem;
}

.page-headline {
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   AUDIT SECTION
   ============================================ */

.audit-section {
  padding: var(--space-3xl) 0;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.audit-form-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: sticky;
  top: 100px;
}

.audit-form-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 15px;
}

.audit-form .form-group {
  margin-bottom: 1.5rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-periwinkle);
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--accent-periwinkle);
}

/* Audit Info */
.audit-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 2rem;
}

.audit-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.audit-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: var(--accent-periwinkle);
}

.feature-content h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Timeline */
.audit-timeline {
  background: rgba(123, 108, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.audit-timeline h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.timeline-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--accent-periwinkle);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.step-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.timeline-arrow {
  color: var(--accent-periwinkle);
  font-size: 12px;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.4);
}

.trust-title {
  margin-bottom: 3rem;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-periwinkle);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    padding: 8rem 6vw 3rem;
    min-height: auto;
  }
  
  .audit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .audit-form-card {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .audit-info {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .trust-stats {
    gap: 3rem;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 5vw 2rem;
  }
  
  .audit-form-card {
    padding: 2rem;
  }
  
  .audit-form-card h3 {
    font-size: 24px;
  }
  
  .audit-info h3 {
    font-size: 28px;
  }
  
  .audit-feature {
    gap: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 16px;
  }
  
  .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .timeline-arrow {
    transform: rotate(90deg);
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .audit-form-card {
    padding: 1.5rem;
  }
  
  .audit-timeline {
    padding: 1.25rem;
  }
}