/* =======================
   Partners Page Styles
   ======================= */

   .partners-page {
    font-family: "Inter", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
  }
  
  /* -----------------------
     HERO
  ----------------------- */
  .partners-hero {
    position: relative;
    color: #fff;
    padding: 6rem 1rem;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-image: url('/images/Partner Page.jpg');
  }
  .partners-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
  .partners-hero .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
  }
  .partners-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .partners-hero .subhead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  .partners-hero .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .partners-hero .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
  }
  .partners-hero .btn-primary {
    background: #BF3331;
    color: #fff;
  }
  .partners-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid #fff;
  }
  .partners-hero .hero-badges {
    list-style: none;   /* removes default bullets */
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .partners-hero .hero-badges li {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
  }
  
  /* -----------------------
     SECTIONS (general)
  ----------------------- */
  section {
    padding: 4rem 1rem;
  }
  section:nth-of-type(even) {
    background: #fafafa;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* -----------------------
     PILLARS (4 cards)
  ----------------------- */
  /* Pillars: 4 → 2 → 1 */
  .pillars-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr); /* mobile default */
  }

  @media (min-width: 600px) {
    .pillars-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .pillars-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .pillar-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .pillar-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #BF3331;
  }
  .pillar-card h3 {
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  /* -----------------------
     HOW IT WORKS (steps)
  ----------------------- */

  /* Steps: 3 → 1 */
  .steps-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr); /* mobile default */
  }

  @media (min-width: 900px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .step {
    text-align: center;
  }
  .step-number {
    background: #BF3331;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
  }
  .partners-how .btn-wrap {
    text-align: center; /* centers inline elements like <a> */
    margin-top: 2rem;
  }
  .partners-how .btn-wrap .btn {
    display: inline-block;
  }
  
  /* -----------------------
     PROOF (logos + testimonials)
  ----------------------- */
  .logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .logo-strip img {
    max-height: 50px;
    opacity: 0.7;
    filter: grayscale(100%);
  }
  .testimonials {
    display: grid;
    gap: 2rem;
  }
  blockquote {
    background: #fff;
    border-left: 4px solid #BF3331;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-style: italic;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  blockquote footer {
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: normal;
  }
  
  /* -----------------------
     FAQ (accordion)
  ----------------------- */
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid #ddd;
  }
  .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }
  .faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    color: #444;
  }
  .faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
  }
  
  /* -----------------------
     CTA Bands
  ----------------------- */
  .partners-cta {
    background: #BF3331 !important;
    color: #fff;
    text-align: center;
  }
  .partners-cta h2 {
    color: #fff;
  }
  .partners-cta .btn-primary {
    background: #fff;
    color: #BF3331;
    margin-top: 1rem;
  }
  
  /* -----------------------
     FORM (iframe wrapper)
  ----------------------- */
  .partners-form iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  /* -----------------------
     Utility
  ----------------------- */
  .btn {
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
  }
  .btn:hover {
    opacity: 0.9;
  }
  