/* ============================================================================
   SECTIONS.CSS - New 7-Section Landing Page Architecture
   Purpose: Calm, controlled, confident design for compliance software
   ============================================================================ */

/* Section 2: Value Framing */
.value-framing-section {
  padding: 80px 5%;
  background: white;
  text-align: center;
}

.value-framing-section .section-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.value-framing-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.value-framing-section p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: #4A5568;
  margin: 0;
}

/* Section 3: What It Does */
.what-it-does-section {
  padding: 80px 5%;
  background: #F8F9FA;
}

.what-it-does-section .section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.what-it-does-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3rem;
  text-align: center;
}

.what-it-does-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.what-it-does-item {
  text-align: left;
}

.what-it-does-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.what-it-does-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}

/* Section 4: Proof (Case Studies) */
.proof-section {
  padding: 80px 5%;
  background: white;
}

.proof-section .section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-section .section-label {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 3rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.case-study-card {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 2rem;
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  border-color: #2B7FE0;
  box-shadow: 0 4px 12px rgba(43, 127, 224, 0.1);
}

.case-study-icon {
  color: #64748b;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.case-study-icon svg {
  width: 24px;
  height: 24px;
}

.case-study-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.case-study-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #525252;
  margin-bottom: 1rem;
  font-weight: 400;
}

.case-study-card p:last-of-type {
  margin-bottom: 1.5rem;
}

.case-study-card p strong {
  color: #1A1A1A;
  font-weight: 700;
}

.case-study-card a {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2B7FE0;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.case-study-card a::after {
  content: ' →';
  margin-left: 0.25rem;
  transition: margin-left 0.3s ease;
}

.case-study-card a:hover {
  color: #1a237e;
}

.case-study-card a:hover::after {
  margin-left: 0.5rem;
}

.proof-section .disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 2rem auto 0;
  max-width: 700px;
}

/* Section 5: Ease & Experience */
.ease-section {
  padding: 80px 5%;
  background: #F8F9FA;
}

.ease-section .section-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ease-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ease-section p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 1.5rem;
}

.ease-section ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ease-section ul li {
  font-size: 1rem;
  color: #4A5568;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.ease-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7FE0;
  font-weight: 700;
}

/* Section 6: Social Proof (Testimonials) */
.social-proof-section {
  padding: 80px 5%;
  background: white;
}

.social-proof-section .section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-section h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-left: 3px solid #2B7FE0;
  background: #F8F9FA;
  border-radius: 4px;
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #1A1A1A;
  margin: 0 0 1.5rem 0;
  font-style: normal;
}

.testimonial-card cite {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

.testimonial-card cite .role {
  display: block;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .value-framing-section,
  .what-it-does-section,
  .proof-section,
  .ease-section,
  .social-proof-section {
    padding: 60px 5%;
  }

  .what-it-does-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .value-framing-section,
  .what-it-does-section,
  .proof-section,
  .ease-section,
  .social-proof-section {
    padding: 50px 5%;
  }

  .value-framing-section h2,
  .ease-section h2 {
    margin-bottom: 1rem;
  }

  .what-it-does-section h2,
  .social-proof-section h2 {
    margin-bottom: 2rem;
  }
}

/* ============================================================================
   SUPPORT PAGE STYLES
   Purpose: Support-specific styling for FAQ categories and contact card
   ============================================================================ */

/* Support Contact Card - Minimal Stripe-like design */
.support-contact-card {
  position: relative;
  border-top: 1px solid #E2E8F0;
}

.support-email {
  transition: color 0.2s ease;
}

.support-email:hover {
  color: #1a5fb4 !important;
}

/* Flat CTA Buttons */
.cta-button {
  background: #2B7FE0;
  border: none;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #1a5fb4;
}

/* FAQ Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-category-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  transition: border-color 0.2s ease;
}

.faq-category-card:hover {
  border-color: #cbd5e0;
}

/* FAQ Category Headings */
.faq-category-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #2B7FE0;
}

/* Help Category Cards - Text-first, left-aligned */
.help-category-card {
  text-align: left;
  padding: 1.5rem;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.help-category-card:hover {
  border-left-color: #2B7FE0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.help-category-icon {
  color: #2B7FE0;
  margin-bottom: 1rem;
  display: inline-block;
}

.help-category-icon svg {
  width: 28px;
  height: 28px;
}

/* Responsive adjustments for support page */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-category-card {
    padding: 1.5rem;
  }

  .support-email {
    font-size: 1.25rem !important;
  }

  .help-category-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .support-email {
    font-size: 1.125rem !important;
  }

  .faq-category-card {
    padding: 1.25rem;
  }
}
