html, body { overflow-x: hidden; max-width: 100%; }
    /* ── Pharmacy Hero ── */
    .pharm-hero {
      background: linear-gradient(135deg, #080f14 0%, #1c5266 55%, #226673 100%);
      padding: 220px 0 80px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .pharm-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 65% 50%, rgba(126,166,172,0.14) 0%, transparent 65%);
      pointer-events: none;
    }
    /* subtle pill/cross pattern */
    .pharm-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .pharm-hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr minmax(0, 480px);
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .pharm-hero-pills { min-width: 0; overflow: hidden; }
    .pharm-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #7ea6ac;
      border-left: 3px solid #7ea6ac;
      padding-left: 12px;
      margin-bottom: 20px;
      display: block;
    }
    .pharm-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      letter-spacing: 1px;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .pharm-hero h1 span { color: #7ea6ac; }
    .pharm-hero-sub {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.02rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 520px;
    }
    .pharm-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    .pharm-ai-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(34,102,115,0.15); border: 1px solid rgba(34,102,115,0.5);
      color: #7ea6ac; font-family: 'Open Sans', sans-serif; font-size: 0.78rem;
      font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
    }
    .pharm-ai-dot {
      width: 8px; height: 8px; background: #7ea6ac; border-radius: 50%;
      animation: pharm-pulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pharm-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

    .btn-ai-callout {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, #226673, #1a4f5a);
      color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.85rem;
      font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 12px 22px; border-radius: 8px; text-decoration: none;
      border: 1px solid rgba(126,166,172,0.4);
      box-shadow: 0 0 18px rgba(34,102,115,0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-ai-callout:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(34,102,115,0.65);
    }

    /* Hero right: pharmacy portal mockup */
    .pharm-mockup {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 32px 72px rgba(0,0,0,0.45), 0 0 0 1px rgba(126,166,172,0.12);
      font-family: 'Open Sans', sans-serif;
      display: flex;
      height: 420px;
    }
    /* Sidebar */
    .phm-sidebar {
      width: 130px; flex-shrink: 0;
      background: #0d2e38;
      display: flex; flex-direction: column;
    }
    .phm-sidebar-logo {
      padding: 12px 14px 10px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem; font-weight: 700;
      color: #7ea6ac; letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .phm-sidebar-logo span { color: #fff; display: block; font-size: 0.65rem; font-weight: 400; opacity: 0.5; margin-top: 1px; font-family: 'Open Sans', sans-serif; letter-spacing: 0; }
    .phm-nav-item {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 14px;
      font-size: 0.7rem; color: rgba(255,255,255,0.5);
      cursor: pointer;
      border-left: 2px solid transparent;
    }
    .phm-nav-item.active {
      color: #fff; background: rgba(126,166,172,0.1);
      border-left-color: #7ea6ac;
    }
    .phm-nav-icon { font-size: 0.8rem; width: 14px; text-align: center; }
    .phm-nav-section {
      padding: 10px 14px 4px;
      font-size: 0.58rem; color: rgba(255,255,255,0.25);
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .phm-sidebar-footer {
      margin-top: auto;
      padding: 10px 14px;
      border-top: 1px solid rgba(255,255,255,0.07);
      font-size: 0.65rem; color: rgba(255,255,255,0.35);
    }
    /* Main content */
    .phm-main {
      flex: 1; display: flex; flex-direction: column;
      background: #f4f7f8; overflow: hidden;
      color: #0d2e38;
    }
    .phm-topbar {
      background: #fff;
      border-bottom: 1px solid #e5eef0;
      padding: 8px 14px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .phm-topbar-title {
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem; font-weight: 600; color: #0d2e38;
    }
    .phm-topbar-right {
      display: flex; align-items: center; gap: 8px;
    }
    .phm-topbar-badge {
      background: #dcfce7; border-radius: 20px; padding: 2px 8px;
      font-size: 0.65rem; color: #166534; font-weight: 600;
      display: flex; align-items: center; gap: 4px;
    }
    .phm-live-dot {
      width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
      animation: phmPulse 2s ease-in-out infinite;
    }
    @keyframes phmPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .phm-user-avatar {
      width: 22px; height: 22px; border-radius: 50%;
      background: #226673; color: #fff;
      font-size: 0.6rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    /* Stats row */
    .phm-stats-row {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 8px; padding: 10px 12px 6px;
    }
    .phm-stat-card {
      background: #fff; border-radius: 8px;
      border: 1px solid #e5eef0;
      padding: 8px 10px;
    }
    .phm-stat-val {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem; font-weight: 700; color: #226673; line-height: 1;
    }
    .phm-stat-lbl {
      font-size: 0.62rem; color: #7ea6ac; margin-top: 2px;
      text-transform: uppercase; letter-spacing: 0.07em;
    }
    /* Chart + metrics panel */
    .phm-body {
      display: flex; flex-direction: row;
      gap: 8px; padding: 0 12px 8px; flex: 1; min-height: 0;
    }
    .phm-chart-card {
      flex: 1; min-width: 0;
      background: #fff; border-radius: 8px;
      border: 1px solid #e5eef0; padding: 8px 10px;
      display: flex; flex-direction: column;
    }
    .phm-chart-title {
      font-size: 0.62rem; font-weight: 700; color: #7ea6ac;
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
      flex-shrink: 0;
    }
    .phm-bars {
      display: flex; align-items: stretch; gap: 5px;
      flex: 1; min-height: 0; position: relative; padding-bottom: 18px;
    }
    .phm-bars::after {
      content: '';
      position: absolute; bottom: 18px; left: 0; right: 0;
      height: 1px; background: #e5eef0;
    }
    .phm-bar-group {
      flex: 1; position: relative; min-height: 0;
    }
    .phm-bar {
      position: absolute; bottom: 0; left: 0; right: 0;
      border-radius: 3px 3px 0 0;
      background: #226673;
      transition: height 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
    }
    .phm-bar.accent { background: #7ea6ac; }

    /* Collapse bars when screen is not active */
    .phm-screen:not(.active) .phm-bar {
      height: 0 !important;
      transition: none;
    }

    /* Stagger each bar's grow-in */
    .phm-screen.active .phm-bar-group:nth-child(1) .phm-bar { transition-delay: 0.05s; }
    .phm-screen.active .phm-bar-group:nth-child(2) .phm-bar { transition-delay: 0.12s; }
    .phm-screen.active .phm-bar-group:nth-child(3) .phm-bar { transition-delay: 0.19s; }
    .phm-screen.active .phm-bar-group:nth-child(4) .phm-bar { transition-delay: 0.26s; }
    .phm-screen.active .phm-bar-group:nth-child(5) .phm-bar { transition-delay: 0.33s; }
    .phm-screen.active .phm-bar-group:nth-child(6) .phm-bar { transition-delay: 0.40s; }
    .phm-screen.active .phm-bar-group:nth-child(7) .phm-bar { transition-delay: 0.47s; }
    .phm-bar-lbl {
      position: absolute; bottom: 0; left: 0; right: 0;
      font-size: 0.55rem; color: #7ea6ac; text-align: center;
      height: 14px; line-height: 14px;
    }
    /* Bar height steps */
    .phm-bar.phm-bar-h1 { height: 60px; }
    .phm-bar.phm-bar-h2 { height: 100px; }
    .phm-bar.phm-bar-h3 { height: 130px; }
    .phm-bar.phm-bar-h4 { height: 155px; }
    .phm-bar.phm-bar-h5 { height: 185px; }
    .phm-bar.phm-bar-h6 { height: 210px; }
    /* Metrics list */
    .phm-metrics-card {
      width: 90px; flex-shrink: 0;
      background: #fff; border-radius: 8px;
      border: 1px solid #e5eef0; padding: 8px 10px;
      display: flex; flex-direction: column; gap: 6px;
    }
    .phm-metric-row { display: flex; flex-direction: column; gap: 1px; }
    .phm-metric-label { font-size: 0.58rem; color: #7ea6ac; text-transform: uppercase; letter-spacing: 0.06em; }
    .phm-metric-val {
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem; font-weight: 700; color: #0d2e38;
    }
    .phm-metric-bar-wrap { height: 3px; background: #eef2f3; border-radius: 2px; margin-top: 2px; }
    .phm-metric-bar-fill { height: 100%; border-radius: 2px; background: #226673; }
    /* Alert strip */
    .phm-alert {
      background: #fff7ed; border-top: 2px solid #f97316;
      padding: 6px 12px; margin: 6px 12px 8px;
      border-radius: 6px;
      display: flex; align-items: flex-start; gap: 6px;
    }
    .phm-alert-icon { color: #f97316; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
    .phm-alert-text { font-size: 0.65rem; color: #7c3a00; line-height: 1.4; }

    /* ── Multi-screen transitions ── */
    .phm-screens {
      position: relative; flex: 1; display: flex; flex-direction: column; overflow: hidden;
    }
    .phm-screen {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      opacity: 0; transform: translateX(18px);
      transition: opacity 0.45s ease, transform 0.45s ease;
      pointer-events: none;
      overflow: hidden;
    }
    .phm-screen.active {
      opacity: 1; transform: translateX(0);
      pointer-events: auto;
      position: absolute;
    }
    .phm-screen.exit {
      opacity: 0; transform: translateX(-18px);
      position: absolute;
    }
    /* Screen shared layout helpers */
    .phm-screen-hdr {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 12px 4px; flex-shrink: 0;
      font-size: 0.65rem;
    }
    .phm-screen-title { font-weight: 700; color: #0d2e38; }
    .phm-screen-action {
      font-size: 0.6rem; color: #7ea6ac;
      background: #f0f4f5; border-radius: 6px; padding: 3px 8px;
    }
    .phm-screen-box {
      margin: 0 12px; background: #fff;
      border-radius: 8px; border: 1px solid #e5eef0; overflow: hidden;
    }
    .phm-screen-box.grow { flex: 1; min-height: 0; }
    .phm-screen-footer {
      padding: 6px 12px; font-size: 0.6rem;
      color: #7ea6ac; text-align: right; flex-shrink: 0;
    }
    /* Trend chart inside reports */
    .phm-trend-card {
      margin: 0 12px; background: #fff;
      border-radius: 8px; border: 1px solid #e5eef0;
      padding: 8px 10px; flex-shrink: 0;
    }
    .phm-trend-title {
      font-size: 0.6rem; font-weight: 700; color: #7ea6ac;
      text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px;
    }
    .phm-trend-bars {
      display: flex; align-items: stretch; gap: 6px; height: 52px;
    }
    .phm-trend-group {
      flex: 1; display: flex; flex-direction: column;
      justify-content: flex-end; align-items: stretch;
    }
    .phm-trend-bar {
      display: block; width: 100%; border-radius: 2px 2px 0 0;
      flex-shrink: 0;
    }
    .phm-trend-lbl {
      font-size: 0.52rem; color: #7ea6ac; text-align: center;
      height: 12px; line-height: 12px; flex-shrink: 0;
    }
    /* Prescription queue table */
    .phm-table { width: 100%; border-collapse: collapse; font-size: 0.62rem; }
    .phm-table th {
      background: #f0f4f5; color: #7ea6ac;
      text-transform: uppercase; letter-spacing: 0.07em;
      padding: 5px 8px; text-align: left; font-weight: 700;
      border-bottom: 1px solid #e5eef0;
    }
    .phm-table td { padding: 5px 8px; border-bottom: 1px solid #f0f4f5; color: #0d2e38; vertical-align: middle; }
    .phm-table tr:last-child td { border-bottom: none; }
    .phm-badge {
      display: inline-block; border-radius: 20px; padding: 1px 7px;
      font-size: 0.58rem; font-weight: 700;
    }
    .phm-badge-pending  { background: #fff7ed; color: #c2410c; }
    .phm-badge-ready    { background: #dcfce7; color: #166534; }
    .phm-badge-process  { background: #dbeafe; color: #1d4ed8; }
    .phm-badge-hold     { background: #fef9c3; color: #854d0e; }
    /* Patient list */
    .phm-patient-hdr {
      display: flex; align-items: center; gap: 8px;
      padding: 5px 10px; background: #f0f4f5;
      border-bottom: 1px solid #e5eef0; flex-shrink: 0;
      font-size: 0.6rem; font-weight: 700; color: #7ea6ac;
      text-transform: uppercase; letter-spacing: 0.07em;
    }
    .phm-patient-hdr-avatar { width: 22px; flex-shrink: 0; }
    .phm-alert-row {
      display: flex; gap: 8px; align-items: flex-start;
      padding: 6px 10px; border-bottom: 1px solid #f0f4f5;
    }
    .phm-alert-row:last-child { border-bottom: none; }
    .phm-alert-dot {
      width: 7px; height: 7px; border-radius: 50%;
      margin-top: 4px; flex-shrink: 0;
    }
    .phm-alert-body { flex: 1; }
    .phm-alert-title { font-size: 0.68rem; font-weight: 600; color: #0d2e38; }
    .phm-alert-meta  { font-size: 0.6rem; color: #7ea6ac; }
    .phm-patient-row {
      display: flex; align-items: center; gap: 8px;
      padding: 5px 10px; border-bottom: 1px solid #f0f4f5; font-size: 0.65rem;
    }
    .phm-patient-avatar {
      width: 22px; height: 22px; border-radius: 50%;
      background: #226673; color: #fff;
      font-size: 0.55rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .phm-patient-name { font-weight: 600; color: #0d2e38; flex: 1; }
    .phm-patient-meta { font-size: 0.58rem; color: #7ea6ac; }
    .phm-patient-rx { font-size: 0.62rem; font-weight: 700; color: #226673; }
    /* Inventory table */
    .phm-inv-bar-wrap { height: 4px; background: #eef2f3; border-radius: 2px; margin-top: 2px; width: 60px; }
    .phm-inv-bar { height: 100%; border-radius: 2px; }
    .pharm-stats {
      background: #fff;
      border-bottom: 1px solid #e5eef0;
    }
    .pharm-stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
    }
    .pharm-stat {
      flex: 1;
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid #e8eff1;
    }
    .pharm-stat:last-child { border-right: none; }
    .pharm-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #226673;
      line-height: 1;
    }
    .pharm-stat-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.8rem;
      color: #777;
      margin-top: 5px;
      line-height: 1.4;
    }

    /* ── Intro section ── */
    .pharm-intro {
      background: #f4f7f8;
      padding: 52px 0 44px;
    }
    .pharm-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .pharm-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .pharm-intro-text .section-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #226673;
      border-left: 3px solid #7ea6ac;
      padding-left: 12px;
      margin-bottom: 16px;
      display: block;
    }
    .pharm-intro-text h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: #1c2b2e;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .pharm-intro-text h2 span { color: #226673; }
    .pharm-intro-text p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.97rem;
      color: #444;
      line-height: 1.75;
      margin-bottom: 14px;
    }
    /* right: quick feature checks */
    .pharm-feature-checks {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .pharm-check-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #fff;
      border-radius: 12px;
      padding: 16px 18px;
      box-shadow: 0 2px 12px rgba(34,102,115,0.07);
    }
    .pharm-check-dot {
      width: 28px; height: 28px; flex-shrink: 0;
      background: #226673;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .pharm-check-dot svg { color: #fff; }
    .pharm-check-text strong {
      display: block;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: #1c2b2e;
      margin-bottom: 2px;
    }
    .pharm-check-text span {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.83rem;
      color: #666;
      line-height: 1.5;
    }

    /* ── RPA Cards section ── */
    .pharm-rpa {
      background: #226673;
      padding: 80px 0 90px;
    }
    .pharm-rpa-header {
      text-align: center;
      margin-bottom: 52px;
    }
    .pharm-rpa-header .section-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 12px;
      display: block;
    }
    .pharm-rpa-header h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .pharm-rpa-header h2 span { color: #7ea6ac; }
    .pharm-rpa-header p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.97rem;
      color: rgba(255,255,255,0.7);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .pharm-rpa-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .pharm-rpa-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 32px 28px;
      transition: background 0.25s, transform 0.25s;
    }
    .pharm-rpa-card:hover {
      background: rgba(255,255,255,0.13);
      transform: translateY(-4px);
    }
    .pharm-rpa-icon {
      width: 48px; height: 48px;
      background: rgba(126,166,172,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      color: #7ea6ac;
    }
    .pharm-rpa-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .pharm-rpa-card p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
    }

    /* ── Solutions section ── */
    .pharm-solutions {
      background: #f4f7f8;
      padding: 80px 0 90px;
    }
    .pharm-solutions-header {
      margin-bottom: 48px;
    }
    .pharm-solutions-header .section-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #226673;
      border-left: 3px solid #7ea6ac;
      padding-left: 12px;
      margin-bottom: 12px;
      display: block;
    }
    .pharm-solutions-header h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: #1c2b2e;
      margin-bottom: 10px;
    }
    .pharm-solutions-header h2 span { color: #226673; }
    .pharm-solutions-header p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.97rem;
      color: #555;
      line-height: 1.7;
    }

    .pharm-sol-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .pharm-sol-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: 0 4px 20px rgba(34,102,115,0.07);
      border-top: 3px solid #226673;
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .pharm-sol-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(34,102,115,0.13);
    }
    .pharm-sol-card-icon {
      width: 48px; height: 48px;
      background: rgba(34,102,115,0.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      color: #226673;
    }
    .pharm-sol-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #1c2b2e;
      margin-bottom: 10px;
    }
    .pharm-sol-card p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.88rem;
      color: #555;
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .pharm-sol-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 7px;
    }
    .pharm-sol-list li {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.83rem;
      color: #444;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .pharm-sol-list li::before {
      content: '→';
      color: #226673;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── Custom RPA band ── */
    .pharm-custom-rpa {
      background: #080f14;
      padding: 72px 0;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .pharm-custom-rpa::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(34,102,115,0.25) 0%, transparent 70%);
    }
    .pharm-custom-rpa-inner { position: relative; z-index: 1; }
    .pharm-custom-rpa h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .pharm-custom-rpa h2 span { color: #7ea6ac; }
    .pharm-custom-rpa p {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      max-width: 620px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    /* ── CTA ── */
    /* ── Pharmacy Testimonials ── */
    .pharm-testi {
      background: #0d2e38;
      padding: 80px 0;
    }
    .pharm-testi-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 24px;
    }
    .pharm-testi-header {
      text-align: center; margin-bottom: 48px;
    }
    .pharm-testi-header h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 700; color: #fff; margin-bottom: 8px;
    }
    .pharm-testi-header h2 span { color: #7ea6ac; }
    .pharm-testi-header p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem; color: rgba(255,255,255,0.6);
    }
    .pharm-testi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .pharm-testi-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(126,166,172,0.18);
      border-radius: 14px;
      padding: 28px 28px 24px;
      display: flex; flex-direction: column; gap: 16px;
      transition: background 0.2s;
    }
    .pharm-testi-card:hover { background: rgba(255,255,255,0.08); }
    .pharm-testi-quote {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem; color: rgba(255,255,255,0.8);
      line-height: 1.75; font-style: italic;
      flex: 1;
    }
    .pharm-testi-quote::before { content: '\201C'; color: #7ea6ac; font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 3px; }
    .pharm-testi-footer {
      display: flex; align-items: center; gap: 14px;
      border-top: 1px solid rgba(126,166,172,0.15);
      padding-top: 16px;
    }
    .pharm-testi-logo {
      height: auto;
      max-height: 52px;
      width: auto;
      max-width: 160px;
      opacity: 0.9;
      filter: brightness(0) invert(1);
      display: block;
      object-fit: contain;
      margin-bottom: 4px;
    }
    .pharm-testi-name {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem; font-weight: 600; color: #fff;
    }
    .pharm-testi-title {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.75rem; color: #7ea6ac; margin-top: 2px;
    }

    .pharm-cta {
      background: #226673;
      padding: 64px 0;
      text-align: center;
      color: #fff;
    }
    .pharm-cta h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .pharm-cta p {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 28px;
    }

    @media (max-width: 900px) {
      .pharm-hero-inner { grid-template-columns: 1fr; }
      .pharm-hero-pills { display: block; max-width: 480px; margin: 32px auto 0; }
      .pharm-mockup { height: 380px; }
      .phm-sidebar { width: 110px; }
      .phm-bars { min-height: 80px; }
      .pharm-intro-grid { grid-template-columns: 1fr; gap: 36px; }
      .pharm-rpa-grid { grid-template-columns: 1fr 1fr; }
      .pharm-sol-grid { grid-template-columns: 1fr; }
      .pharm-stats-inner { flex-wrap: wrap; }
      .pharm-stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid #e8eff1; }
      .pharm-testi-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      .pharm-rpa-grid { grid-template-columns: 1fr; }
    }