:root{
    --ink:#12313F;
    --charcoal:#182B2E;
    --bg:#F4F7F6;
    --panel:#FFFFFF;
    --healing:#2E6E5E;
    --healing-deep:#204F44;
    --coral:#E4573E;
    --coral-deep:#C7412A;
    --teal:#0EA5A0;
    --teal-deep:#0C8C87;
    --amber:#F59E0B;
    --violet:#7C3AED;
    --line: rgba(18,49,63,0.14);
    --muted: rgba(24,43,46,0.62);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --gradient-hero: linear-gradient(135deg, #F4F7F6 0%, #E0F2EE 40%, #D4EDE8 100%);
    --gradient-accent: linear-gradient(135deg, var(--healing) 0%, var(--teal) 100%);
    --gradient-coral: linear-gradient(135deg, var(--coral) 0%, #FF7A5C 100%);
    --gradient-card-hover: linear-gradient(145deg, #E8FAF5 0%, #F0F8FF 100%);
  }

  /* ========== SCROLL-REVEAL ANIMATION KEYFRAMES ========== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(228,87,62,0.45); }
    50%      { box-shadow: 0 0 0 12px rgba(228,87,62,0); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  @keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ========== SCROLL-REVEAL UTILITY CLASSES ========== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--charcoal);
    font-family:var(--font-body);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{display:block;max-width:100%;}
  a{color:inherit;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 28px;}
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12.5px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--healing-deep);
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .eyebrow::before{
    content:"";
    width:6px;height:6px;border-radius:50%;
    background:var(--coral);
    flex:none;
  }
  h1,h2,h3{font-family:var(--font-display);margin:0;color:var(--ink);}
  h2{font-size:clamp(28px,3.6vw,42px);font-weight:600;letter-spacing:-0.01em;}
  h3{font-size:20px;font-weight:600;}
  p{margin:0;}
  .muted{color:var(--muted);}

  /* ---------- stitch divider signature ---------- */
  .stitch{
    width:100%;
    height:22px;
    display:block;
  }
  .stitch line{
    stroke:var(--ink);
    stroke-width:2;
    stroke-linecap:round;
    opacity:.35;
  }
  .stitch.coral line{stroke:var(--coral);opacity:.55;}

  /* ---------- header ---------- */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(244,247,246,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex;align-items:center;justify-content:space-between;
    padding:16px 0;
  }
  .brand{
    display:flex;align-items:center;gap:12px;line-height:1.1;
    font-family:var(--font-display);
  }
  .brand-logo{
    width:54px;height:54px;object-fit:contain;flex:none;border-radius:12px;
  }
  .brand-text{display:flex;flex-direction:column;}
  .brand strong{font-size:19px;color:var(--ink);letter-spacing:.02em;}
  .brand span{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--healing-deep);}
  .call-btn{
    display:flex;align-items:center;gap:10px;
    background:var(--coral);color:#fff;
    padding:11px 20px;border-radius:999px;
    font-weight:600;font-size:14.5px;text-decoration:none;
    box-shadow:0 6px 18px rgba(228,87,62,0.28);
    transition:transform .15s ease, box-shadow .15s ease;
    white-space:nowrap;
  }
  .call-btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(228,87,62,0.34);}
  .call-btn svg{width:16px;height:16px;flex:none;}

  /* ---------- hero ---------- */
  .hero{
    padding:88px 0 56px;
    position:relative;
    overflow:hidden;
    background: var(--gradient-hero);
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,160,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,87,62,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:56px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(36px,5vw,58px);
    font-weight:600;
    line-height:1.06;
    letter-spacing:-0.015em;
    margin:18px 0 22px;
  }
  .hero h1 em{
    font-style:italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p.lead{
    font-size:18px;
    color:var(--muted);
    max-width:48ch;
    margin-bottom:30px;
  }
  .hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px;}
  .btn-primary{
    background:var(--gradient-accent);color:#fff;padding:14px 26px;border-radius:10px;
    font-weight:600;font-size:15px;text-decoration:none;
    display:inline-flex;align-items:center;gap:10px;
    transition:transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 16px rgba(46,110,94,0.25);
  }
  .btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,110,94,0.35);
  }
  .btn-ghost{
    border:1.5px solid var(--line);
    padding:13px 24px;border-radius:10px;
    font-weight:600;font-size:15px;text-decoration:none;color:var(--ink);
    display:inline-flex;align-items:center;gap:10px;
  }
  .hero-stats{
    display:flex;gap:32px;
    font-family:var(--font-mono);
  }
  .hero-stats div strong{
    display:block;font-size:26px;color:var(--ink);font-weight:500;
  }
  .hero-stats div span{font-size:11.5px;color:var(--muted);letter-spacing:.04em;}

  /* dressing-layers illustration */
  .dressing{
    position:relative;
    aspect-ratio: 1/1.05;
    background:var(--panel);
    border-radius:20px;
    border:1px solid var(--line);
    padding:26px;
    display:flex;flex-direction:column;justify-content:flex-end;
    gap:10px;
    box-shadow:0 24px 60px -30px rgba(18,49,63,0.35);
  }
  .dressing .cap{
    font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;
    color:var(--muted);margin-bottom:6px;
  }
  .layer-image{
    width:100%;
    max-width:640px;
    margin:24px auto 0;
    display:block;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(18,49,63,0.12);
  }
  .layer{
    height:34px;border-radius:7px;
    display:flex;align-items:center;padding:0 14px;
    font-family:var(--font-mono);font-size:12px;color:#fff;
    letter-spacing:.02em;
  }

  /* ---------- section shells ---------- */
  section{padding:64px 0;}
  .section-head{max-width:640px;margin-bottom:40px;}
  .section-head .eyebrow{margin-bottom:14px;}
  .section-head p{color:var(--muted);font-size:16.5px;margin-top:14px;}

  /* ---------- services grid ---------- */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
  }
  .service-card{
    background:var(--panel);
    padding:28px 24px;
    display:flex;flex-direction:column;gap:14px;
    transition:background .25s ease, transform .25s ease;
  }
  .service-card:hover{
    background: var(--gradient-card-hover);
  }
  .service-card .icon{
    width:42px;height:42px;
    border-radius:11px;
    background:var(--gradient-accent);
    display:flex;align-items:center;justify-content:center;
    flex:none;
    transition: transform 0.3s ease;
  }
  .service-card:hover .icon{
    transform: scale(1.1) rotate(-3deg);
  }
  .service-card .icon svg{width:20px;height:20px;stroke:#fff;fill:none;}
  .service-card h3{font-size:16.5px;line-height:1.3;}
  .service-card p{font-size:14px;color:var(--muted);}

  /* ---------- why choose ---------- */
  .why{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:56px;
    align-items:start;
  }
  .why-panel{
    background:var(--ink);
    border-radius:18px;
    padding:36px 32px;
    color:#EAF1EF;
  }
  .why-panel .eyebrow{color:#8FCBB6;}
  .why-panel .eyebrow::before{background:var(--coral);}
  .why-panel h2{color:#fff;margin:14px 0 12px;}
  .why-panel p{color:rgba(234,241,239,0.72);font-size:15.5px;}
  .why-list{list-style:none;margin:0;padding:0;display:grid;gap:0;}
  .why-list li{
    display:flex;gap:16px;align-items:flex-start;
    padding:20px 0;border-bottom:1px solid var(--line);
  }
  .why-list li:first-child{padding-top:0;}
  .why-list .num{
    font-family:var(--font-mono);font-size:13px;color:var(--coral);
    flex:none;width:28px;padding-top:3px;
  }
  .why-list h3{font-size:16.5px;margin-bottom:4px;}
  .why-list p{font-size:14.5px;color:var(--muted);}

  /* ---------- process timeline ---------- */
  .process{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  .step{position:relative;padding-top:18px;}
  .step::before{
    content:"";
    position:absolute;top:0;left:0;right:0;height:3px;
    background:var(--line);
    border-radius:2px;
  }
  .step.active::before{
    background:var(--gradient-accent);
  }
  .step .step-num{
    font-family:var(--font-mono);
    font-size:13px;
    background: var(--gradient-coral);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    font-weight:700;
    margin-bottom:14px;display:block;
  }
  .step h3{font-size:17px;margin-bottom:8px;}
  .step p{font-size:14px;color:var(--muted);}

  /* ---------- team section ---------- */
  .team-grid{
    display:grid;
    grid-template-columns:1fr;
    max-width:900px;
    margin:0 auto;
  }
  .team-card{
    background:var(--panel);
    border-radius:18px;
    border:1px solid var(--line);
    overflow:hidden;
    box-shadow:0 16px 50px rgba(18,49,63,0.18);
    transition:transform .2s ease, box-shadow .2s ease;
    padding-bottom:28px;
  }
  .team-card:hover{transform:translateY(-4px);box-shadow:0 22px 62px rgba(18,49,63,0.24);}
  .team-image{
    width:100%;
    aspect-ratio:4/3;
    max-height:320px;
    min-height:220px;
    background:#f0f0f0;
    display:flex;align-items:center;justify-content:center;
    padding:12px;
    overflow:hidden;
  }
  .team-image img{
    width:auto;
    height:100%;
    object-fit:contain;
  }
  .team-card h3{
    font-size:20px;
    padding:28px 28px 8px;
    margin:0;
  }
  .team-card .role{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--healing-deep);
    padding:0 28px 12px;
    margin:0;
  }
  .team-card p{
    padding:0 28px 0;
    color:var(--muted);
    font-size:15px;
    line-height:1.8;
    margin:0;
  }
  .team-card p + p{
    margin-top:18px;
  }
  .team-card p:last-of-type{
    padding-bottom:28px;
  }
  .team-card .team-features{
    list-style:none;
    margin:18px 0 0;
    padding:0 28px 28px;
    display:grid;
    gap:10px;
  }
  .team-card .team-features li{
    position:relative;
    padding-left:18px;
    color:var(--muted);
  }
  .team-card .team-features li::before{
    content:"•";
    position:absolute;
    left:0;
    top:0;
    color:var(--coral);
    font-size:16px;
    line-height:1;
  }

  /* ---------- areas served ---------- */
  .chips{display:flex;flex-wrap:wrap;gap:10px;}
  .chip{
    font-family:var(--font-mono);
    font-size:13px;
    padding:8px 16px;
    border-radius:999px;
    border:1px solid var(--line);
    background:var(--panel);
    color:var(--ink);
    transition: all 0.2s ease;
  }
  .chip:hover {
    background: var(--gradient-accent);
    color: #fff;
    border-color: var(--healing);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,110,94,0.2);
  }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(135deg, var(--healing-deep) 0%, var(--teal-deep) 50%, var(--healing) 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius:22px;
    padding:52px 48px;
    display:flex;justify-content:space-between;align-items:center;gap:32px;
    color:#fff;
    position:relative;
    overflow:hidden;
  }
  .cta-banner::before {
    content:'';
    position:absolute;
    top:-50%;right:-20%;
    width:400px;height:400px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events:none;
  }
  .cta-banner h2{color:#fff;max-width:14ch;}
  .cta-banner p{color:rgba(255,255,255,0.75);margin-top:10px;font-size:15.5px;max-width:38ch;}
  .cta-actions{display:flex;gap:14px;flex:none;flex-wrap:wrap;}
  .btn-white{
    background:#fff;color:var(--healing-deep);
    padding:14px 26px;border-radius:10px;font-weight:700;font-size:15px;
    text-decoration:none;display:inline-flex;align-items:center;gap:10px;
  }
  .btn-outline-white{
    border:1.5px solid rgba(255,255,255,0.5);
    color:#fff;padding:13px 24px;border-radius:10px;font-weight:600;font-size:15px;
    text-decoration:none;display:inline-flex;align-items:center;gap:10px;
  }

  /* ---------- footer ---------- */
  footer{padding:56px 0 40px;border-top:1px solid var(--line);}
  .footer-grid{
    display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:40px;
    margin-bottom:40px;
  }
  footer h3{font-size:14px;color:var(--ink);margin-bottom:14px;font-family:var(--font-body);font-weight:700;letter-spacing:.02em;}
  footer p{color:var(--muted);font-size:14.5px;}
  footer ul{list-style:none;padding:0;margin:0;display:grid;gap:9px;}
  footer a{text-decoration:none;color:var(--muted);font-size:14.5px;}
  footer a:hover{color:var(--ink);}
  .foot-bottom{
    display:flex;justify-content:space-between;align-items:center;
    padding-top:24px;border-top:1px solid var(--line);
    font-size:13px;color:var(--muted);flex-wrap:wrap;gap:10px;
  }

  /* ---------- floating call button (mobile) ---------- */
  .float-call{
    position:fixed;bottom:20px;right:20px;z-index:60;
    background:var(--gradient-coral);color:#fff;
    width:60px;height:60px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 10px 24px rgba(228,87,62,0.4);
    text-decoration:none;
    animation: pulseGlow 2.5s ease-in-out infinite, floatBounce 3s ease-in-out infinite;
    transition: transform 0.2s ease;
  }
  .float-call:hover {
    transform: scale(1.12);
    animation-play-state: paused;
  }
  .float-call svg{width:24px;height:24px;}

  @media (max-width: 860px){
    .hero-grid, .why, .footer-grid{grid-template-columns:1fr;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .process{grid-template-columns:repeat(2,1fr);row-gap:32px;}
    .cta-banner{flex-direction:column;align-items:flex-start;padding:36px 26px;}
    .hero{padding-top:100px;}
  }
  @media (max-width: 520px){
    .services-grid{grid-template-columns:1fr;}
    .process{grid-template-columns:1fr;}
    .call-btn span{display:none;}
  }

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;animation:none !important;}
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
      opacity:1 !important;
      transform:none !important;
    }
  }

  :focus-visible{
    outline:2px solid var(--coral);
    outline-offset:2px;
  }

  /* ---------- INTERACTIVE SERVICE CARD ---------- */
  .service-card.interactive-card {
    position: relative;
    cursor: pointer;
    border: 1.5px solid rgba(46,110,94,0.2);
    background: #F8FAF9;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .service-card.interactive-card:hover,
  .service-card.interactive-card:focus-visible {
    background: var(--gradient-card-hover);
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(14,165,160,0.15);
  }
  .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gradient-accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
  }
  .card-link {
    font-family: var(--font-mono);
    font-size: 12.5px;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
  }
  .service-card.interactive-card:hover .card-link {
    gap: 10px;
  }

  /* ---------- ADVANCED WOUND ASSESSMENT MODAL ---------- */
  .modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 49, 63, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .modal-container {
    position: relative;
    z-index: 1001;
    background: var(--panel);
    width: 100%;
    max-width: 960px;
    max-height: 88vh;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(18, 49, 63, 0.45);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
  }
  .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
  }
  .modal-close-btn:hover {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    transform: rotate(90deg);
  }

  /* Modal Header */
  .modal-header {
    padding: 36px 40px 28px;
    background: #F0F6F4;
    border-bottom: 1px solid var(--line);
  }
  .modal-header h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 8px 0 14px;
  }
  .modal-intro {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 82ch;
  }

  /* Modal Body */
  .modal-body {
    padding: 36px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  .modal-body::-webkit-scrollbar {
    width: 8px;
  }
  .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .modal-body::-webkit-scrollbar-thumb {
    background: #c5d3d0;
    border-radius: 4px;
  }

  /* Overview Grid: Why & Who */
  .modal-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .overview-box {
    border-radius: 16px;
    padding: 26px 24px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .box-why {
    background: #F3F8F6;
    border-color: rgba(46,110,94,0.2);
  }
  .box-who {
    background: #F7FAF9;
    border-color: rgba(18,49,63,0.15);
  }
  .box-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .box-icon svg { width: 22px; height: 22px; stroke: #fff; }
  .overview-box h3 { font-size: 18px; margin: 4px 0 2px; }
  .box-sub { font-size: 14px; color: var(--muted); }
  
  .check-list {
    list-style: none;
    padding: 0; margin: 6px 0 0;
    display: grid; gap: 8px;
  }
  .check-list li {
    font-size: 14px;
    color: var(--charcoal);
    position: relative;
    padding-left: 22px;
    line-height: 1.45;
  }
  .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--healing);
    font-weight: 700;
    font-size: 13px;
  }

  .patient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  .pt-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  }

  /* Evaluation Section */
  .modal-section-head {
    margin-bottom: 24px;
  }
  .modal-section-head h3 {
    font-size: 24px;
    margin: 4px 0 6px;
  }
  .modal-section-head p {
    color: var(--muted);
    font-size: 15px;
  }

  .eval-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .eval-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(18,49,63,0.04);
    transition: transform 0.15s ease, border-color 0.15s ease;
  }
  .eval-card:hover {
    border-color: var(--healing);
    transform: translateY(-2px);
  }
  .eval-num {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--coral-deep);
    background: rgba(228,87,62,0.1);
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex: none;
  }
  .eval-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  .eval-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--ink);
    margin: 0;
  }
  .eval-desc {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
  }
  .eval-content ul {
    list-style: disc;
    padding-left: 18px;
    margin: 4px 0 0;
    font-size: 13.5px;
    color: var(--charcoal);
    display: grid;
    gap: 4px;
  }
  .sub-eval {
    margin-top: 4px;
    font-size: 13.5px;
  }
  .sub-eval strong {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--healing-deep);
  }
  .eval-note {
    font-size: 12.5px;
    font-style: italic;
    color: var(--healing-deep);
    background: rgba(46,110,94,0.07);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 6px;
    border-left: 3px solid var(--healing);
  }

  /* Technologies Grid */
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .tech-card {
    background: #F4F8F7;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .tech-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
  }
  .tech-icon svg { width: 18px; height: 18px; stroke: #fff; }
  .tech-card span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
  }
  .tech-footer-note {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
    font-style: italic;
  }

  /* Modal CTA Box */
  .modal-cta-box {
    background: var(--ink);
    color: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
  }
  .modal-cta-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
  }
  .modal-cta-box p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
  }
  .modal-cta-actions {
    display: flex;
    gap: 12px;
    flex: none;
  }

  @media (max-width: 860px) {
    .modal-header, .modal-body { padding: 24px 20px; }
    .modal-overview-grid { grid-template-columns: 1fr; }
    .eval-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-cta-box { flex-direction: column; align-items: flex-start; }
    .modal-cta-actions { width: 100%; flex-wrap: wrap; }
  }