
    * { box-sizing: border-box; }
    .survey-shell {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .survey-card {
      width: 100%;
      max-width: 860px;
      background: #ffffff;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }
    .survey-left { padding: 42px; }
    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #26804f;
      background: #e9f8ef;
      padding: 8px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    h1 {
      margin: 0 0 10px;
      font-size: 42px;
      line-height: 1.1;
    }
    .subheading {
      margin: 0 0 12px;
      color: #5b6472;
      font-size: 17px;
      line-height: 1.7;
      max-width: 720px;
    }
    .caption {
      margin: 0 0 28px;
      color: #2e8b57;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.6;
    }
    .partnerships {
      margin: 0 0 28px;
      padding: 18px;
      border: 1px solid #dce8df;
      background: linear-gradient(180deg, #f9fbfa 0%, #f3f8f5 100%);
    }
    .partnerships-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .partnerships-title {
      margin: 0 0 6px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #2e8b57;
    }
    .partnerships-copy {
      margin: 0;
      color: #5b6472;
      font-size: 14px;
      line-height: 1.6;
    }
    .gallery-controls {
      display: flex;
      gap: 10px;
    }
    .gallery-btn {
      width: 40px;
      height: 40px;
      border: 1px solid #d8e0db;
      border-radius: 999px;
      background: #fff;
      color: #2e8b57;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      flex-shrink: 0;
    }
    .gallery-btn:hover {
      background: #eef7f0;
    }
    .partnerships-gallery {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(220px, 1fr);
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 4px;
      scrollbar-width: none;
    }
    .partnerships-gallery::-webkit-scrollbar {
      display: none;
    }
    .partnership-card {
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e3e8e5;
      padding: 16px;
      scroll-snap-align: start;
      min-height: 132px;
    }
    .partnership-logo {
      width: 100%;
      height: 72px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #e8f6ee 0%, #d7ecdf 100%);
      overflow: hidden;
    }
    .partnership-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .partnership-name {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #1f2937;
    }
    .partnership-type {
      margin: 6px 0 10px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #2e8b57;
    }
    .partnership-copy {
      margin: 0;
      font-size: 13px;
      line-height: 1.6;
      color: #5b6472;
    }
    .partnership-link {
      display: inline-flex;
      align-items: center;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 700;
      color: #2e8b57;
      text-decoration: none;
    }
    .partnership-link:hover {
      text-decoration: underline;
    }
    .progress-track {
      height: 10px;
      width: 100%;
      background: #edf2ee;
      border-radius: 999px;
      overflow: hidden;
      margin-bottom: 28px;
    }
    .progress-fill {
      height: 100%;
      width: 16.66%;
      background: #2e8b57;
      border-radius: 999px;
      transition: width 0.35s ease;
    }
    .step-panel { animation: fadeUp 0.28s ease; }
    .step-title {
      font-size: 32px;
      line-height: 1.2;
      margin: 0 0 14px;
    }
    .step-desc {
      margin: 0 0 26px;
      color: #5b6472;
      font-size: 17px;
      line-height: 1.7;
    }
    .options-grid, .checkbox-list {
      display: grid;
      gap: 14px;
      margin-bottom: 28px;
    }
    .option-card, .checkbox-card {
      position: relative;
      border: 1px solid #e3e8e5;
      background: #f9fbfa;
      border-radius: 18px;
      padding: 16px 16px 16px 52px;
      cursor: pointer;
      transition: all 0.25s ease;
      min-height: 62px;
      display: flex;
      align-items: center;
      font-weight: 600;
      color: #344054;
      line-height: 1.5;
    }
    .option-card:hover, .checkbox-card:hover {
      border-color: #8dc9a6;
      background: #f3fbf6;
      transform: translateY(-1px);
    }
    .option-card.selected, .checkbox-card.selected {
      border-color: #2e8b57;
      background: #ecf8f0;
      box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
    }
    .option-card input, .checkbox-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .option-mark, .checkbox-mark {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
    }
    .option-mark {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid #a8b3ab;
    }
    .option-card.selected .option-mark {
      border-color: #2e8b57;
      background: #2e8b57;
      box-shadow: inset 0 0 0 4px #fff;
    }
    .checkbox-mark {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      border: 2px solid #a8b3ab;
    }
    .checkbox-card.selected .checkbox-mark {
      border-color: #2e8b57;
      background: #2e8b57;
    }
    .checkbox-card.selected .checkbox-mark::after {
      content: '✓';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
    }
    .survey-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .btn {
      border: 0;
      border-radius: 16px;
      padding: 15px 22px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-primary { background: #2e8b57; color: #fff; }
    .btn-primary:hover { background: #256f46; }
    .btn-secondary {
      background: #fff;
      color: #334155;
      border: 1px solid #d8e0db;
    }
    .btn-secondary:hover { background: #f8faf9; }
    .step-dots {
      display: flex;
      gap: 8px;
      margin-top: 22px;
    }
    .step-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #c8d1cb;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .step-dot.active {
      width: 42px;
      background: #2e8b57;
    }
    .form-message {
      display: none;
      margin-bottom: 20px;
      padding: 14px 16px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      background: #fdecea;
      color: #8a1c1c;
      border: 1px solid #f5c2c0;
    }
    .result-box {
      display: none;
      margin-top: 18px;
      padding: 20px;
      border-radius: 20px;
      background: #f7fbf8;
      border: 1px solid #dce8df;
    }
    .result-box h4 {
      margin: 0 0 10px;
      font-size: 22px;
    }
    .result-box pre {
      white-space: pre-wrap;
      word-break: break-word;
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: #334155;
      font-family: Arial, Helvetica, sans-serif;
    }
    select {
      width: 100%;
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px solid #cfd8d1;
      font-size: 18px;
      margin-bottom: 14px;
      background: #fff;
      color: #344054;
      outline: none;
    }
    .loading-wrap {
      padding: 28px 0 10px;
    }
    .loading-bar {
      width: 100%;
      height: 12px;
      background: #edf2ee;
      border-radius: 999px;
      overflow: hidden;
      margin-top: 24px;
    }
    .loading-bar-fill {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #7fcf8c, #2e8b57);
      border-radius: 999px;
      transition: width 0.35s linear;
    }
    .results-header {
      margin-bottom: 24px;
    }
    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .profile-card {
      border: 1px solid #e3e8e5;
      background: #fff;
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
    }
    .profile-top {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-bottom: 12px;
    }
    .profile-avatar-wrap {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      padding: 3px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #111827;
    }
    .profile-avatar-wrap.status-online {
      background: #16a34a;
    }
    .profile-avatar-wrap.status-busy {
      background: #dc2626;
    }
    .profile-avatar-wrap.status-offline {
      background: #111827;
    }
    .profile-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #dff0d9;
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #2e8b57;
      font-size: 18px;
      border: 2px solid #fff;
    }
    .profile-name {
      margin: 0;
      font-size: 18px;
      line-height: 1.2;
    }
    .profile-meta {
      margin: 4px 0 0;
      font-size: 13px;
      color: #5b6472;
      line-height: 1.5;
    }
    .profile-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 12px 0 16px;
    }
    .profile-tag {
      font-size: 12px;
      font-weight: 700;
      background: #eef7f0;
      color: #2e8b57;
      border-radius: 999px;
      padding: 8px 10px;
    }
    .profile-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      text-decoration: none;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 14px;
      font-weight: 700;
      background: #2e8b57;
      color: #fff;
      margin-top: auto;
    }
    .profile-btn:hover { background: #256f46; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 700px) {
      .survey-left { padding: 24px; }
      .options-grid, .profiles-grid { grid-template-columns: 1fr; }
      h1 { font-size: 30px; }
      .step-title { font-size: 24px; }
      .subheading, .step-desc, .caption { font-size: 15px; }
      .btn { width: 100%; }
      .survey-actions { flex-direction: column; }
      .partnerships-head {
        flex-direction: column;
      }
      .partnerships-gallery {
        grid-auto-columns: 85%;
      }
    }

      .therapy-grid-section {
            padding: 24px 14px;
            background: #f7f7f7;
        }

        .therapy-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* 4 equal columns */
            grid-auto-rows: 180px;
            /* every row same height */
            gap: 10px;
        }

        .therapy-card {
            position: relative;
            display: block;
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            min-height: unset;
            /* important */
        }

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

        /* Featured card = 2 columns x 2 rows */
        .therapy-card.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        /* Every small card = exactly 1 cell */
        .therapy-card.small {
            grid-column: span 1;
            grid-row: span 1;
        }

        .therapy-overlay {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.72);
        }

        .therapy-content {
            position: relative;
            z-index: 2;
            padding: 28px 26px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .therapy-card.featured .therapy-content {
            justify-content: space-between;
        }

        .therapy-content h2,
        .therapy-content h3 {
            margin: 0;
            color: #4b4b4b;
            font-family: Arial, sans-serif;
            line-height: 1.05;
        }

        .therapy-content h2 {
            font-size: 34px;
            font-weight: 500;
            margin-bottom: 14px;
        }

        .therapy-content h3 {
            font-size: 28px;
            font-weight: 500;
            max-width: 80%;
        }

        .therapy-content p {
            margin: 0;
            color: #5d5d5d;
            font-size: 21px;
            line-height: 1.4;
            font-family: Arial, sans-serif;
            max-width: 75%;
        }

        .therapy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            align-self: flex-start;
            margin-top: 24px;
            min-width: 310px;
            height: 62px;
            padding: 0 24px;
            border-radius: 8px;
            background: #2e8b57;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            font-family: Arial, sans-serif;
            text-align: center;
        }

        /* Tablet */
        @media (max-width: 1200px) {
            .therapy-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
            }

            .therapy-card.featured {
                grid-column: span 2;
                grid-row: span 2;
            }

            .therapy-content h2 {
                font-size: 30px;
            }

            .therapy-content h3 {
                font-size: 26px;
            }

            .therapy-content p {
                font-size: 18px;
                max-width: 90%;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .therapy-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }

            .therapy-card.featured,
            .therapy-card.small {
                grid-column: span 1;
                grid-row: span 1;
                min-height: 160px;
            }

            .therapy-card.featured {
                max-height: 340px !important;
            }

            .therapy-content {
                padding: 22px;
            }

            .therapy-content h2 {
                font-size: 28px;
            }

            .therapy-content h3 {
                font-size: 24px;
                max-width: 100%;
            }

            .therapy-content p {
                font-size: 16px;
                max-width: 100%;
            }

            .therapy-btn {
                min-width: 100%;
                width: 100%;
                height: 56px;
                font-size: 18px;
            }
        }