 /* ── TOKEN SYSTEM ──────────────────────────────────────────── */
 :root {
   --green-deep: #0D3320;
   --green-dark: #1A5C38;
   --green-mid: #2E8B57;
   --green-light: #EAF5EE;
   --mint: #f0f5f2;
   --warm-white: #F6FBF8;
   --slate: #2E4A3A;
   --text: #0F1F17;
   --muted: #567060;
   --accent: #34C472;
   --border: #C0DEC9;
   --radius-sm: 6px;
   --radius-md: 12px;
   --radius-lg: 20px;
 }


 /* ── HERO ──────────────────────────────────────────────────── */
 .ot-hero {
   position: relative;
   min-height: 520px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   background: var(--green-deep);
 }

 .ot-hero__img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.30;
 }

 .ot-hero__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(155deg, rgba(13, 51, 32, 0.45) 0%, rgba(13, 51, 32, 0.94) 70%);
 }

 .ot-hero__content {
   position: relative;
   z-index: 2;
   max-width: 860px;
   padding: 64px 48px 56px;
 }

 .ot-hero__eyebrow {
   display: inline-block;

   font-weight: 600;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--accent);
   border: 1px solid rgba(52, 196, 114, 0.45);
   border-radius: 40px;
   padding: 4px 14px;
   margin-bottom: 20px;
 }

 .ot-hero__title {
   color: #fff;
   line-height: 1.15;
   margin-bottom: 18px;
 }

 .ot-hero__title span {
   color: var(--accent);
 }

 .ot-hero__lead {

   color: rgba(255, 255, 255, 0.78);
   max-width: 580px;
 }

 .ot-hero__wave {
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   line-height: 0;
 }

 /* ── VITAL SIGN SIGNATURE BAR ──────────────────────────────── */
 .ot-vital-bar {
   background: var(--green-deep);
   padding: 14px 0;
   overflow: hidden;
 }

 .ot-vital-bar__inner {
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .ot-vital-bar__svg {
   width: 100%;
   max-width: 900px;
   height: 48px;
 }

 /* ── LAYOUT SHELL ──────────────────────────────────────────── */
 .ot-page {
   max-width: 1310px;
   margin: 0 auto;
   padding: 0 24px 60px;
 }

 /* ── SECTION HEADER ────────────────────────────────────────── */
 .ot-section {
   margin-top: 72px;
 }

 .ot-section__label {
   display: flex;
   align-items: center;
   gap: 10px;

   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--green-mid);
   margin-bottom: 10px;
 }

 .ot-section__label::after {
   content: '';
   flex: 1;
   height: 1px;
   background: var(--border);
 }

 .ot-section__title {
   color: var(--green-deep);
   margin-bottom: 16px;
 }

 .ot-section__body {
   color: var(--slate);
 }

 /* ── ABOUT TWO-COL ─────────────────────────────────────────── */
 .ot-about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 32px;
   margin-top: 32px;
 }

 .ot-about-card {
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   overflow: hidden;
 }

 .ot-about-card__img {
   width: 100%;
   height: 300px;
   object-fit: cover;
 }

 .ot-about-card__body {
   padding: 24px;
 }

 .ot-about-card__tag {

   font-weight: 600;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--green-mid);
   margin-bottom: 8px;
 }

 .ot-about-card__title {

   color: var(--green-deep);
   margin-bottom: 10px;
 }

 .ot-about-card__text {

   color: var(--slate);
   line-height: 1.65;
 }

 /* ── OT ROLES STRIP ────────────────────────────────────────── */
 .ot-roles-strip {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   margin-top: 32px;
 }

 .ot-role-tile {
   background: var(--green-dark);
   border-radius: var(--radius-md);
   padding: 24px 18px;
   text-align: center;
   color: #fff;
 }

 .ot-role-tile__icon {
   margin-bottom: 10px;
   display: block;
   font-size: 55px;
 }

 .ot-role-tile__label {

   font-weight: 600;
   color: var(--mint);
 }

 /* ── CURRICULUM BAND ───────────────────────────────────────── */
 .ot-curriculum {
   background: var(--green-deep);
   border-radius: var(--radius-lg);
   padding: 48px;
   margin-top: 72px;
   color: #fff;
   position: relative;
   overflow: hidden;
 }

 .ot-curriculum::before {
   content: '';
   position: absolute;
   top: -80px;
   right: -80px;
   width: 320px;
   height: 320px;
   border-radius: 50%;
   background: rgba(52, 196, 114, 0.10);
 }

 .ot-curriculum__label {

   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 10px;
 }

 .ot-curriculum__title {
   margin-bottom: 14px;
   color: rgb(255, 255, 255);
 }

 .ot-curriculum__text {

   color: rgba(255, 255, 255, 0.934);
   margin-bottom: 28px;
 }

 .ot-curriculum__pills {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .ot-curriculum__pill {
   background: rgba(52, 196, 114, 0.18);
   border: 1px solid rgba(52, 196, 114, 0.35);
   color: var(--mint);
   border-radius: 40px;
   padding: 6px 16px;

   font-weight: 500;
 }

 /* ── LAB GRID ──────────────────────────────────────────────── */
 .ot-lab-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 32px;
 }

 .ot-lab-card {
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius-md);
   overflow: hidden;
   transition: box-shadow 0.2s;
 }

 .ot-lab-card:hover {
   box-shadow: 0 8px 28px rgba(13, 51, 32, 0.10);
 }

 .ot-lab-card__img {
   width: 100%;
   height: 248px;
   object-fit: cover;
 }

 .ot-lab-card__body {
   padding: 18px 20px;
 }

 .ot-lab-card__icon {
   width: 36px;
   height: 36px;
   border-radius: 8px;
   background: var(--green-light);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 10px;
 }

 .ot-lab-card__icon svg {
   width: 18px;
   height: 18px;
   stroke: var(--green-mid);
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
   stroke-linejoin: round;
 }

 .ot-lab-card__name {

   font-weight: 600;
   color: var(--green-deep);
 }

 /* ── CLINICAL SECTION ──────────────────────────────────────── */
 .ot-clinical {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   align-items: center;
   margin-top: 72px;
 }

 .ot-clinical__img-wrap {
   border-radius: var(--radius-lg);
   overflow: hidden;
   position: relative;
 }

 .ot-clinical__img {
   width: 100%;
   height: 380px;
   object-fit: cover;
   display: block;
 }

 .ot-clinical__badge {
   position: absolute;
   bottom: 20px;
   left: 20px;
   background: var(--green-deep);
   color: #fff;
   border-radius: var(--radius-sm);
   padding: 10px 16px;

   font-weight: 600;
 }

 .ot-clinical__badge span {
   display: block;

   color: var(--accent);
 }

 .ot-clinical__list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 24px;
 }

 .ot-clinical__item {
   display: flex;
   align-items: center;
   gap: 12px;

   color: var(--slate);
 }

 .ot-clinical__dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--accent);
   flex-shrink: 0;
 }

 /* ── CAREER GRID ───────────────────────────────────────────── */
 .ot-career-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   margin-top: 32px;
 }

 .ot-career-card {
   background: var(--green-light);
   border: 1px solid var(--border);
   border-radius: var(--radius-md);
   padding: 22px 18px;
   text-align: center;
 }

 .ot-career-card__icon {

   margin-bottom: 10px;
   font-size: 55px;
 }

 .ot-career-card__title {

   font-weight: 600;
   color: var(--green-deep);
   line-height: 1.4;
 }

 /* ── HIGHER EDU ────────────────────────────────────────────── */
 .ot-edu-list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-top: 32px;
 }

 .ot-edu-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius-md);
   padding: 18px;
 }

 .ot-edu-item__num {

   color: var(--border);
   line-height: 1;
   flex-shrink: 0;
   margin-top: 2px;
 }

 .ot-edu-item__text {

   font-weight: 500;
   color: var(--slate);
 }

 /* ── VISION & MISSION ──────────────────────────────────────── */
 .ot-vm-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
   margin-top: 32px;
 }

 .ot-vm-card {
   border-radius: var(--radius-lg);
   padding: 36px;
 }

 .ot-vm-card--vision {
   background: var(--green-deep);
   color: #fff;
 }

 .ot-vm-card--mission {
   background: var(--green-dark);
   color: #fff;
 }

 .ot-vm-card__label {

   font-weight: 600;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   opacity: 0.65;
   margin-bottom: 10px;
   color: #fff;
 }

 .ot-vm-card__title {

   margin-bottom: 14px;
   color: #fff;
 }

 .ot-vm-card__text {

   line-height: 1.75;
   opacity: 0.88;
   color: #fff;
 }

 /* ── INDUSTRY BAND ─────────────────────────────────────────── */
 .ot-industry {
   background: var(--green-light);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 40px;
   align-items: center;
 }

 .ot-industry__img {
   width: 100%;
   height: 260px;
   object-fit: cover;
   border-radius: var(--radius-md);
 }

 .ot-industry__section-label {

   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--green-mid);
   margin-bottom: 10px;
 }

 .ot-industry__title {

   color: var(--green-deep);
   margin-bottom: 14px;
 }

 .ot-industry__text {

   color: var(--slate);
   line-height: 1.7;
 }

 /* ── FOOTER ────────────────────────────────────────────────── */
 .ot-footer {
   background: var(--green-deep);
   color: rgba(255, 255, 255, 0.6);
   text-align: center;
   padding: 24px;

   margin-top: 80px;
 }

 .ot-footer strong {
   color: rgba(255, 255, 255, 0.9);
 }

 /* ── RESPONSIVE ────────────────────────────────────────────── */
 @media (max-width: 768px) {
   .ot-hero__content {
     padding: 40px 24px 44px;
   }

   .ot-about-grid,
   .ot-clinical,
   .ot-vm-grid,
   .ot-industry {
     grid-template-columns: 1fr;
   }

   .ot-lab-grid {
     grid-template-columns: 1fr 1fr;
   }

   .ot-career-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .ot-edu-list {
     grid-template-columns: 1fr;
   }

   .ot-roles-strip {
     grid-template-columns: repeat(2, 1fr);
   }

   .ot-curriculum {
     padding: 32px 24px;
   }
 }

 @media (max-width: 480px) {

   .ot-lab-grid,
   .ot-career-grid,
   .ot-roles-strip {
     grid-template-columns: 1fr;
   }
 }