/* Benefits Page Styles */
    .benefits-hero {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
      padding: 100px 16px 80px;
      text-align: center;
      color: white;
    }

    .benefits-hero h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      margin-bottom: 16px;
      color: white;
    }

    .benefits-hero p {
      font-size: 20px;
      line-height: 32px;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.95;
    }

    .benefit-section {
      padding: 80px 0;
    }

    .benefit-section:nth-of-type(odd) {
      background: white;
    }

    .benefit-section:nth-of-type(even) {
      background: var(--medical-gray);
    }

    .section-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .benefit-section h2 {
      font-size: 36px;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 24px;
      text-align: center;
    }

    .benefit-section p.section-intro {
      font-size: 18px;
      line-height: 30px;
      color: var(--brand-neutral);
      max-width: 700px;
      margin: 0 auto 48px;
      text-align: center;
    }

    /* Featured Prevention Section */
    .prevention-featured {
      background: white;
      padding: 64px 32px;
      border-radius: 16px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      border: 3px solid var(--brand-accent);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .prevention-featured h2 {
      color: var(--brand-dark);
      font-size: 32px;
      margin-bottom: 24px;
    }

    .prevention-stat {
      font-size: 96px;
      font-weight: 700;
      line-height: 1;
      margin: 24px 0;
      color: var(--brand-accent);
    }

    .prevention-featured p {
      font-size: 18px;
      line-height: 28px;
      color: var(--brand-dark);
      margin-bottom: 24px;
    }

    .prevention-featured .btn-white {
      background: var(--brand-accent);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .prevention-featured .btn-white:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    }

    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .clinical-benefits-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      justify-content: center;
    }

    .benefit-card {
      background: white;
      padding: 32px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      text-align: center;
    }

    .benefit-section:nth-of-type(even) .benefit-card {
      background: white;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .benefit-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 20px;
    }

    .benefit-card h3 {
      font-size: 22px;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 12px;
    }

    .benefit-card p {
      font-size: 16px;
      line-height: 26px;
      color: var(--brand-neutral);
      margin: 0;
    }

    /* Comparison Table */
    .comparison-table-wrapper {
      max-width: 900px;
      margin: 48px auto 0;
      overflow-x: auto;
    }

    .comparison-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .comparison-table thead th {
      background: var(--brand-primary);
      color: white;
      padding: 18px 16px;
      font-size: 18px;
      font-weight: 600;
      text-align: left;
      vertical-align: middle;
    }

    .comparison-table thead th:first-child,
    .comparison-table tbody td:first-child {
      width: 28%;
    }

    .comparison-table thead th:nth-child(2),
    .comparison-table thead th:nth-child(3),
    .comparison-table tbody td:nth-child(2),
    .comparison-table tbody td:nth-child(3) {
      width: 36%;
    }

    .comparison-table tbody tr:nth-child(even) {
      background: var(--medical-blue-light);
    }

    .comparison-table tbody td {
      padding: 14px 16px;
      font-size: 16px;
      line-height: 24px;
      color: var(--brand-dark);
      border-bottom: 1px solid #e2e8f0;
      vertical-align: top;
    }

    .comparison-table tbody tr:last-child td {
      border-bottom: none;
    }

    .comparison-table .traditional {
      color: var(--brand-neutral);
    }

    .comparison-table .woundblaster {
      color: var(--brand-primary);
      font-weight: 600;
    }

    /* Audience Cards */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .audience-card {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      border-top: 4px solid var(--brand-primary);
    }

    .benefit-section:nth-of-type(even) .audience-card {
      background: white;
    }

    .audience-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .audience-icon {
      width: 80px;
      height: 80px;
      background: var(--medical-blue-light);
      color: var(--brand-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin-bottom: 20px;
    }

    .audience-card h3 {
      font-size: 24px;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 16px;
    }

    .audience-card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .audience-card li {
      font-size: 16px;
      line-height: 28px;
      color: var(--brand-dark);
      padding-left: 28px;
      position: relative;
      margin-bottom: 12px;
    }

    .audience-card li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--brand-accent);
      font-weight: 700;
      font-size: 18px;
    }

    .audience-card a {
      color: var(--brand-primary);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      transition: all 0.3s ease;
    }

    .audience-card a:hover {
      color: var(--brand-accent);
      gap: 12px;
    }

    /* CTA Section */
    .benefits-cta {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
      padding: 80px 32px;
      text-align: center;
      color: white;
    }

    .benefits-cta h2 {
      font-size: 36px;
      font-weight: 700;
      color: white;
      margin-bottom: 16px;
    }

    .benefits-cta p {
      font-size: 18px;
      line-height: 28px;
      max-width: 600px;
      margin: 0 auto 32px;
      opacity: 0.95;
    }

    .benefits-cta .btn-primary {
      background: white;
      color: var(--brand-primary);
      padding: 16px 40px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      margin: 0 8px;
    }

    .benefits-cta .btn-primary:hover {
      background: var(--medical-blue-light);
      transform: translateY(-2px);
    }

    .benefits-cta .btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 16px 40px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      margin: 0 8px;
    }

    .benefits-cta .btn-outline:hover {
      background: white;
      color: var(--brand-primary);
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .benefits-hero h1 {
        font-size: 32px;
        line-height: 40px;
      }

      .prevention-stat {
        font-size: 72px;
      }

      .benefits-grid,
      .clinical-benefits-grid {
        grid-template-columns: 1fr;
      }

      .audience-grid {
        grid-template-columns: 1fr;
      }

      .comparison-table {
        font-size: 14px;
      }

      .comparison-table thead th,
      .comparison-table tbody td {
        padding: 12px;
      }
    }
