 @import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");

:root {
     --navy-950: #06264b;
     --navy-900: #082f5e;
     --navy-800: #0b3c73;
     --maroon-700: #711736;
     --maroon-600: #b50d2b;
     --white: #ffffff;
     --whatsapp: #24c957;
     --whatsapp-dark: #18aa45;
     --divider: rgba(103, 184, 255, 0.35);
     --icon-bg: rgba(25, 91, 158, 0.52);
     --shadow: 0 18px 26px rgba(8, 25, 48, 0.24);
     --hero-navy: #062f63;
     --hero-navy-dark: #021f46;
     --hero-maroon: #c9002b;
     --hero-maroon-dark: #a90025;
     --hero-gold: #e8a93d;
     --hero-muted: #6e7890;
     --hero-line: #d8dde6;
     --hero-shadow: 0 22px 50px rgba(2, 28, 62, .22);
 }

 * {
     box-sizing: border-box;
 }

 html {
     -webkit-text-size-adjust: 100%;
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     min-width: 320px;
     background:
         radial-gradient(circle at 50% 42%, rgba(18, 70, 124, 0.035), transparent 35%),
         #f7f8fa;
     color: var(--hero-navy-dark);
     font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
     -webkit-font-smoothing: antialiased;
 }

 button,
 a,
 input,
 select,
 textarea {
     font: inherit;
     -webkit-tap-highlight-color: transparent;
 }

 

 .hero-wrap {
     width: 100%;
     padding: 0 0 16px;
 }

 .hero {
     position: relative;
     isolation: isolate;
     width: 100%;
     min-height: 680px;
     margin: 0;
     overflow: hidden;
     background-color: #0a3768;
     background-image: url("../Images/hero.jpeg");
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     box-shadow: 0 14px 38px rgba(3, 31, 67, .11);
 }

 .hero::before {
     position: absolute;
     z-index: -1;
     inset: 0;
     content: "";
     background:
         linear-gradient(90deg, rgba(1, 29, 65, .98) 0%, rgba(3, 38, 79, .91) 31%, rgba(4, 39, 77, .52) 56%, rgba(2, 25, 53, .12) 100%),
         linear-gradient(0deg, rgba(1, 24, 55, .48) 0%, transparent 50%);
 }

 .curve-gold,
 .curve-red {
     position: absolute;
     z-index: 1;
     pointer-events: none;
 }

 .curve-gold {
     left: -6%;
     bottom: -19%;
     width: 77%;
     height: 31%;
     border-top: 3px solid var(--hero-gold);
     border-radius: 50% 56% 0 0 / 85% 100% 0 0;
     transform: rotate(8deg);
 }

 .curve-red {
     left: -7%;
     bottom: -23%;
     width: 77%;
     height: 31%;
     border-radius: 50% 58% 0 0 / 89% 100% 0 0;
     background: linear-gradient(145deg, #db002e 0%, #b8002a 75%);
     transform: rotate(8deg);
 }

 .hero-layout {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(390px, 448px);
     gap: clamp(34px, 5vw, 78px);
     min-height: 700px;
     padding: clamp(28px, 3.2vw, 42px) clamp(48px, 6vw, 92px) 26px;
 }

 .hero-copy {
     align-self: center;
     max-width: 675px;
     padding-bottom: 14px;
     color: var(--white);
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     min-height: 42px;
     margin: 0 0 14px;
     padding: 6px 17px 6px 11px;
     border: 1.5px solid var(--hero-gold);
     border-radius: 999px;
     background: rgba(4, 41, 81, .46);
     color: #fff;
     font-size: 15px;
     font-weight: 600;
     line-height: 1;
     backdrop-filter: blur(6px);
 }

 .eyebrow svg {
     width: 26px;
     height: 26px;
     flex: 0 0 auto;
 }

 .hero-copy h1 {
     max-width: 580px;
     margin: 0;
     color: #fff;
     font-size: clamp(50px, 4.7vw, 68px);
     font-weight: 780;
     letter-spacing: -.045em;
     line-height: 1.04;
     text-wrap: balance;
 }

 .title-mark {
     display: block;
     width: 56px;
     height: 6px;
     margin: 12px 0 12px 2px;
     border-radius: 999px;
     background: #ef2645;
 }

 .lead {
     max-width: 590px;
     margin: 0;
     color: rgba(255, 255, 255, .94);
     font-size: clamp(17px, 1.35vw, 21px);
     font-weight: 420;
     line-height: 1.52;
 }

 .hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 21px;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 48px;
     padding: 0 22px;
     border: 1.5px solid rgba(255, 255, 255, .92);
     border-radius: 12px;
     color: #fff;
     background: rgba(1, 30, 65, .36);
     font-size: 15px;
     font-weight: 590;
     line-height: 1;
     text-decoration: none;
     cursor: pointer;
     transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
 }

 .btn:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, .12);
     box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
 }

 .btn:focus-visible,
 .field:focus-within,
 .submit:focus-visible {
     outline: 3px solid rgba(232, 169, 61, .38);
     outline-offset: 3px;
 }

 .btn-primary {
     min-width: 205px;
     border-color: #ee3652;
     background: linear-gradient(135deg, #d60831, #b90029);
     box-shadow: 0 8px 18px rgba(184, 0, 41, .25);
 }

 .btn-primary:hover {
     border-color: #ff536d;
     background: linear-gradient(135deg, #e00a36, #c4002d);
 }

 .btn svg,
 .submit svg {
     width: 23px;
     height: 23px;
     flex: 0 0 auto;
 }

 .trust-list {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 0;
     width: 100%;
     max-width: 650px;
     margin: 25px 0 0;
     padding: 0;
     list-style: none;
 }

 .trust-item {
     position: relative;
     display: flex;
     align-items: center;
     gap: 13px;
     min-width: 0;
     padding-right: 25px;
     color: rgba(255, 255, 255, .96);
     font-size: 14px;
     line-height: 1.55;
 }

 .trust-item:not(:last-child)::after {
     position: absolute;
     top: 50%;
     right: 11px;
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #fff;
     content: "";
     transform: translateY(-50%);
 }

 .trust-item svg {
     width: 45px;
     height: 45px;
     flex: 0 0 auto;
 }

 .appointment {
     position: relative;
     align-self: center;
     width: 100%;
     min-height: 580px;
     overflow: hidden;
     border-radius: 28px;
     background: rgba(255, 255, 255, .985);
     box-shadow: var(--hero-shadow);
 }

 .appointment::before,
 .appointment::after {
     position: absolute;
     z-index: 0;
     width: 92px;
     height: 92px;
     border-radius: 50%;
     background: var(--hero-maroon);
     content: "";
 }

 .appointment::before {
     top: -48px;
     right: -30px;
 }

 .appointment::after {
     bottom: -54px;
     left: -41px;
 }

 .form-inner {
     position: relative;
     z-index: 1;
     padding: 20px 30px 18px;
 }

 .form-heading {
     margin: 0;
     color: #062c61;
     font-size: 25px;
     font-weight: 760;
     letter-spacing: -.025em;
     line-height: 1.2;
 }

 .form-subtitle {
     margin: 4px 0 12px;
     color: #6f7890;
     font-size: 14px;
     line-height: 1.4;
 }

 .form-grid {
     display: grid;
     gap: 6px;
 }

 .field {
     position: relative;
     display: flex;
     align-items: center;
     min-height: 40px;
     border: 1px solid #cfd5df;
     border-radius: 8px;
     background: #fff;
     transition: border-color .2s ease, box-shadow .2s ease;
 }

 .field:focus-within {
     border-color: #164d85;
     box-shadow: 0 0 0 3px rgba(22, 77, 133, .09);
     outline: none;
 }

 .field-icon {
     display: grid;
     width: 48px;
     height: 100%;
     flex: 0 0 auto;
     place-items: center;
     color: #062e64;
     pointer-events: none;
 }

 .field-icon svg {
     width: 21px;
     height: 21px;
 }

 .field input,
 .field select,
 .field textarea {
     width: 100%;
     min-width: 0;
     border: 0;
     outline: 0;
     color: #18243b;
     background: transparent;
     font-size: 14px;
 }

 .field input,
 .field select {
     height: 38px;
     padding: 0 14px 0 0;
 }

 .field select {
     appearance: none;
     cursor: pointer;
 }

 .field input::placeholder,
 .field textarea::placeholder {
     color: #778097;
     opacity: 1;
 }

 .field select:invalid {
     color: #778097;
 }

 .custom-select {
     position: relative;
     z-index: 2;
 }

 .custom-select.is-open {
     z-index: 30;
     border-color: #164d85;
     box-shadow: 0 0 0 3px rgba(22, 77, 133, .09);
 }

 .custom-select.is-invalid {
     border-color: var(--hero-maroon);
     box-shadow: 0 0 0 3px rgba(201, 0, 43, .08);
 }

 .custom-native-select {
     position: absolute;
     width: 1px;
     height: 1px;
     margin: 0;
     padding: 0;
     border: 0;
     opacity: 0;
     pointer-events: none;
 }

 .custom-select-trigger {
     display: flex;
     align-items: center;
     width: 100%;
     min-width: 0;
     height: 38px;
     padding: 0 42px 0 0;
     border: 0;
     outline: 0;
     color: #778097;
     background: transparent;
     font-size: 14px;
     text-align: left;
     cursor: pointer;
 }

 .custom-select.has-value .custom-select-trigger {
     color: #18243b;
 }

 .custom-select-trigger:focus-visible {
     outline: none;
 }

 .custom-select-value {
     display: block;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
 }

 .custom-select-menu {
     position: absolute;
     z-index: 50;
     top: calc(100% + 7px);
     left: 8px;
     right: 8px;
     display: grid;
     gap: 3px;
     max-height: 220px;
     margin: 0;
     padding: 7px;
     overflow-y: auto;
     border: 1px solid #d8dde6;
     border-radius: 11px;
     background: rgba(255, 255, 255, .99);
     box-shadow: 0 16px 34px rgba(2, 31, 70, .18);
     list-style: none;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-7px) scale(.985);
     transform-origin: top center;
     transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
     overscroll-behavior: contain;
     scrollbar-width: thin;
     scrollbar-color: #c8ced8 transparent;
 }

 .custom-select.is-open .custom-select-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0) scale(1);
     transition-delay: 0s;
 }

 .custom-select-option {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     width: 100%;
     min-height: 38px;
     padding: 8px 10px;
     border: 0;
     border-radius: 7px;
     color: #25314a;
     background: transparent;
     font-size: 13px;
     line-height: 1.3;
     text-align: left;
     cursor: pointer;
     transition: color .16s ease, background-color .16s ease;
 }

 .custom-select-option:hover,
 .custom-select-option:focus-visible {
     outline: none;
     color: #082f63;
     background: #f1f5fa;
 }

 .custom-select-option[aria-selected="true"] {
     color: #fff;
     background: linear-gradient(135deg, #d10732, #b9002b);
     font-weight: 650;
 }

 .option-check {
     width: 16px;
     height: 16px;
     flex: 0 0 auto;
     opacity: 0;
     transform: scale(.65);
     transition: opacity .16s ease, transform .16s ease;
 }

 .custom-select-option[aria-selected="true"] .option-check {
     opacity: 1;
     transform: scale(1);
 }

 .select-arrow {
     position: absolute;
     right: 14px;
     width: 8px;
     height: 8px;
     border-right: 1.7px solid #283449;
     border-bottom: 1.7px solid #283449;
     pointer-events: none;
     transform: rotate(45deg) translateY(-3px);
     transition: transform .2s ease;
 }

 .custom-select.is-open .select-arrow {
     transform: rotate(225deg) translate(-2px, -1px);
 }

 .message-field {
     align-items: flex-start;
     min-height: 68px;
 }

 .message-field .field-icon {
     height: 48px;
 }

 .message-field textarea {
     min-height: 66px;
     padding: 10px 14px 8px 0;
     line-height: 1.45;
     resize: vertical;
 }

 .submit {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     width: 100%;
     min-height: 45px;
     margin-top: 10px;
     border: 0;
     border-radius: 10px;
     color: #fff;
     background: linear-gradient(135deg, #d10732, #b9002b);
     box-shadow: 0 8px 18px rgba(185, 0, 43, .18);
     font-size: 15px;
     font-weight: 690;
     cursor: pointer;
     transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
 }

 .submit:hover {
     transform: translateY(-1px);
     filter: brightness(1.05);
     box-shadow: 0 12px 24px rgba(185, 0, 43, .23);
 }

 .form-note {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin: 10px 4px 0;
     color: #7a8397;
     font-size: 12px;
     line-height: 1.45;
 }

 .form-note svg {
     width: 21px;
     height: 21px;
     flex: 0 0 auto;
     color: #667285;
 }

 .status {
     position: fixed;
     z-index: 20;
     right: 18px;
     bottom: 18px;
     display: flex;
     align-items: center;
     gap: 10px;
     max-width: min(390px, calc(100vw - 36px));
     padding: 14px 16px;
     border-radius: 12px;
     color: #fff;
     background: #07356b;
     box-shadow: 0 16px 34px rgba(0, 24, 55, .25);
     font-size: 14px;
     opacity: 0;
     pointer-events: none;
     transform: translateY(18px);
     transition: opacity .25s ease, transform .25s ease;
 }

 .status.show {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 1180px) {
     .hero-layout {
         grid-template-columns: minmax(0, 1fr) 410px;
         gap: 34px;
         padding-inline: 48px;
     }

     .trust-item {
         font-size: 13px;
     }

     .trust-item svg {
         width: 40px;
         height: 40px;
     }
 }

 @media (max-width: 960px) {
     .hero-wrap {
         padding: 0;
     }

     .hero {
         width: 100%;
         min-height: 0;
         border-radius: 0;
         background-position: 45% top;
     }

     .hero::before {
         background:
             linear-gradient(180deg, rgba(1, 26, 57, .37) 0%, rgba(1, 30, 65, .88) 35%, rgba(2, 35, 73, .99) 63%, #062f63 100%);
     }

     .hero-layout {
         display: block;
         min-height: 0;
         padding: 0;
     }

     .hero-copy {
         max-width: none;
         min-height: 550px;
         padding: 250px 24px 18px;
     }

     .eyebrow {
         min-height: 34px;
         margin-bottom: 11px;
         padding: 5px 12px 5px 8px;
         font-size: 12px;
     }

     .eyebrow svg {
         width: 21px;
         height: 21px;
     }

     .hero-copy h1 {
         max-width: 520px;
         font-size: clamp(39px, 10.5vw, 54px);
         line-height: 1.07;
     }

     .title-mark {
         width: 48px;
         height: 5px;
         margin: 10px 0 10px;
     }

     .lead {
         max-width: 590px;
         font-size: 16px;
         line-height: 1.48;
     }

     .hero-actions {
         display: grid;
         grid-template-columns: 1fr;
         gap: 8px;
         margin-top: 15px;
     }

     .btn {
         width: 100%;
         min-height: 44px;
         border-radius: 8px;
         background: rgba(2, 31, 66, .5);
     }

     .btn-primary {
         background: linear-gradient(135deg, #d60831, #b90029);
     }

     .trust-list {
         display: none;
     }

     .appointment {
         width: calc(100% - 20px);
         min-height: 0;
         margin: 0 10px 10px;
         border-radius: 28px 28px 14px 14px;
         box-shadow: 0 -10px 30px rgba(1, 26, 57, .18);
     }

     .form-inner {
         padding: 20px 24px 20px;
     }

     .form-heading {
         text-align: center;
         font-size: 23px;
     }

     .form-subtitle {
         margin: 4px 0 14px;
         text-align: center;
     }

     .curve-gold,
     .curve-red {
         display: none;
     }
 }

 @media (max-width: 520px) {
     .hero {
         background-position: 52% top;
         background-size: auto 550px;
         background-repeat: no-repeat;
     }

     .hero-copy {
         min-height: 550px;
         padding: 246px 17px 14px;
     }

     .eyebrow {
         max-width: 100%;
         white-space: nowrap;
     }

     .hero-copy h1 {
         font-size: 35px;
     }

     .lead {
         font-size: 14px;
     }

     .hero-actions {
         margin-top: 13px;
     }

     .btn {
         min-height: 40px;
         font-size: 13px;
     }

     .btn svg {
         width: 19px;
         height: 19px;
     }

     .appointment {
         width: calc(100% - 16px);
         margin: 0 8px 8px;
     }

     .form-inner {
         padding: 18px 18px 18px;
     }

     .form-heading {
         font-size: 20px;
     }

     .form-subtitle {
         font-size: 12px;
     }

     .field {
         min-height: 40px;
     }

     .field input,
     .field select {
         height: 38px;
         font-size: 13px;
     }

     .custom-select-trigger {
         height: 38px;
         font-size: 13px;
     }

     .custom-select-menu {
         left: 6px;
         right: 6px;
         max-height: 196px;
         border-radius: 10px;
     }

     .custom-select-option {
         min-height: 36px;
         font-size: 12.5px;
     }

     .field-icon {
         width: 43px;
     }

     .field-icon svg {
         width: 19px;
         height: 19px;
     }

     .message-field textarea {
         font-size: 13px;
     }

     .submit {
         min-height: 44px;
     }
 }

 /* Section Header (shared pattern for Treatment / People / Why Choose Us) */
 .section-header {
     max-width: 1440px;
     margin: 0 auto 22px;
     padding-top: clamp(24px, 3vw, 40px);
     text-align: center;
 }

 .section-with-header {
     margin-top: clamp(28px, 4vw, 56px);
 }

 .sh-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin: 0 0 12px;
     padding: 5px 15px 5px 11px;
     border-radius: 999px;
     color: var(--maroon, #a90020);
     background: linear-gradient(135deg, #fff1f3, #fff8fa);
     box-shadow: inset 0 0 0 1px rgba(201, 0, 37, 0.12);
     font-size: 12.5px;
     font-weight: 750;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }

 .sh-eyebrow svg {
     width: 16px;
     height: 16px;
     flex: 0 0 16px;
     color: #ff4d6a;
 }

 .section-header h2 {
     margin: 0 0 10px;
     color: var(--navy-deep, #031f43);
     font-family: Georgia, "Times New Roman", serif;
     font-size: clamp(28px, 3.2vw, 46px);
     font-weight: 500;
     line-height: 1.08;
     letter-spacing: -0.02em;
 }

 .section-header > p {
     max-width: 640px;
     margin: 0 auto;
     color: var(--muted, #68717d);
     font-size: clamp(13.5px, 1.2vw, 16px);
     font-weight: 500;
     line-height: 1.55;
 }

 .section-header--dark h2 {
     color: #fff;
 }

 .section-header--dark > p {
     color: rgba(255, 255, 255, 0.88);
 }

 .sh-eyebrow--dark {
     color: #ffd1a3;
     background: linear-gradient(135deg, rgba(241, 179, 73, 0.14), rgba(241, 179, 73, 0.06));
     box-shadow: inset 0 0 0 1px rgba(241, 179, 73, 0.38);
 }

 .sh-eyebrow--dark svg {
     color: var(--gold, #f1b349);
 }

 /* Treatment section extra bottom breathing room */
 .treatment-section {
     padding-bottom: clamp(28px, 4vw, 56px);
 }

 .quick-actions-section {
     --navy: #062c5b;
     --navy-deep: #031f43;
     --navy-soft: #0d447d;
     --maroon: #a90020;
     --red: #c40024;
     --gold: #f1b349;
     --ice: #eaf4ff;
     --white: #ffffff;
     --muted: #68717d;
     --shadow: 0 16px 40px rgba(8, 48, 85, 0.13);
     width: 100%;
     padding: clamp(16px, 3.5vw, 44px) clamp(12px, 4vw, 54px) clamp(18px, 3.5vw, 48px);
 }

 .quick-actions-section .qa-heading {
     max-width: 1440px;
     margin: 0 auto 22px;
     text-align: center;
 }

 .quick-actions-section .qa-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin: 0 0 12px;
     padding: 5px 15px 5px 11px;
     border-radius: 999px;
     color: var(--maroon);
     background: linear-gradient(135deg, #fff1f3, #fff8fa);
     box-shadow: inset 0 0 0 1px rgba(201, 0, 37, 0.12);
     font-size: 12.5px;
     font-weight: 750;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }

 .quick-actions-section .qa-eyebrow svg {
     width: 16px;
     height: 16px;
     flex: 0 0 16px;
     color: #ff4d6a;
 }

 .quick-actions-section .qa-heading h2 {
     margin: 0 0 10px;
     color: var(--navy-deep);
     font-family: Georgia, "Times New Roman", serif;
     font-size: clamp(28px, 3.2vw, 46px);
     font-weight: 500;
     line-height: 1.08;
     letter-spacing: -0.02em;
 }

 .quick-actions-section .qa-heading p {
     max-width: 640px;
     margin: 0 auto;
     color: var(--muted);
     font-size: clamp(13.5px, 1.2vw, 16px);
     font-weight: 500;
     line-height: 1.55;
 }

 .quick-actions-section .quick-actions {
     display: grid;
     grid-template-columns: minmax(350px, 0.92fr) minmax(470px, 1.18fr);
     grid-template-rows: minmax(158px, 0.92fr) minmax(168px, 1fr);
     gap: 10px;
     width: min(1340px, 100%);
     min-height: 400px;
     margin: 0 auto;
     padding: 8px;
     overflow: hidden;
     background: rgba(255, 255, 255, 0.96);
     border: 1px solid rgba(255, 255, 255, 0.9);
     border-radius: 22px;
     box-shadow: var(--shadow);
 }

 .quick-actions-section .action-card {
     position: relative;
     isolation: isolate;
     min-width: 0;
     overflow: hidden;
     text-decoration: none;
     border-radius: 19px;
     transition: transform 220ms ease, box-shadow 220ms ease;
 }

 .quick-actions-section .action-card:focus-visible {
     outline: 3px solid var(--gold);
     outline-offset: 3px;
 }

 @media (hover: hover) {
     .quick-actions-section .action-card:hover {
         transform: translateY(-3px);
     }
 }

 .quick-actions-section .appointment-card {
     grid-row: 1 / 3;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: clamp(24px, 2.6vw, 36px);
     color: var(--white);
     background:
         radial-gradient(circle at 70% 35%, rgba(255, 65, 82, 0.24), transparent 32%),
         linear-gradient(145deg, #ad001e 0%, #ca0027 50%, #a50020 100%);
 }

 .quick-actions-section .appointment-lines {
     position: absolute;
     inset: 0;
     z-index: -1;
     width: 100%;
     height: 100%;
     opacity: 0.28;
     pointer-events: none;
 }

 .quick-actions-section .priority-badge {
     position: absolute;
     top: 24px;
     left: clamp(22px, 2.4vw, 34px);
     display: inline-flex;
     align-items: center;
     gap: 7px;
     min-height: 28px;
     padding: 4px 13px;
     color: #ffe09c;
     background: rgba(184, 61, 48, 0.42);
     border: 1px solid rgba(242, 179, 73, 0.68);
     border-radius: 999px;
     font-size: 11.5px;
     font-weight: 700;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }

 .quick-actions-section .priority-badge svg {
     width: 13px;
     height: 13px;
     flex: 0 0 auto;
 }

 .quick-actions-section .appointment-icon {
     width: 68px;
     height: 68px;
     margin-bottom: 14px;
     color: var(--white);
 }

 .quick-actions-section .appointment-card h2 {
     max-width: 400px;
     margin: 0;
     color: var(--white);
     font-family: Georgia, "Times New Roman", serif;
     font-size: clamp(36px, 3.4vw, 50px);
     font-weight: 500;
     line-height: 0.96;
     letter-spacing: -0.025em;
 }

 .quick-actions-section .appointment-card p {
     max-width: 290px;
     margin: 11px 0 15px;
     font-size: clamp(15px, 1.3vw, 18px);
     line-height: 1.32;
 }

 .quick-actions-section .book-button {
     display: inline-flex;
     align-items: center;
     justify-content: space-between;
     align-self: flex-start;
     flex: 0 0 auto;
     gap: 18px;
     width: min(196px, 100%);
     min-height: 42px;
     padding: 0 19px;
     color: #a40018;
     background: var(--white);
     border: 0;
     border-radius: 11px;
     box-shadow: 0 9px 20px rgba(79, 0, 13, 0.2);
     font-weight: 750;
     font-size: 14.5px;
     line-height: 1;
     white-space: nowrap;
     cursor: pointer;
     transition: gap 180ms ease, transform 180ms ease;
 }

 .quick-actions-section .book-button svg {
     flex: 0 0 auto;
     width: 20px;
     height: 20px;
 }

 .quick-actions-section .appointment-card:hover .book-button {
     transform: translateX(2px);
 }

 .quick-actions-section .right-grid {
     display: grid;
     grid-template-columns: 1fr 1.18fr;
     grid-template-rows: 1fr 1.05fr;
     grid-column: 2;
     grid-row: 1 / 3;
     gap: 10px;
     min-width: 0;
 }

 .quick-actions-section .call-card {
     grid-column: 1 / 3;
     display: flex;
     align-items: center;
     gap: clamp(22px, 3.2vw, 44px);
     min-height: 0;
     padding: 22px clamp(26px, 3.2vw, 48px);
     color: var(--white);
     background:
         radial-gradient(circle at 87% 30%, rgba(12, 67, 127, 0.45), transparent 30%),
         linear-gradient(120deg, #092e5d 0%, #052b58 60%, #07386d 100%);
 }

 .quick-actions-section .call-card::after {
     content: "";
     position: absolute;
     top: 10px;
     right: 15px;
     z-index: -1;
     width: 160px;
     height: 100px;
     opacity: 0.18;
     background-image: radial-gradient(rgba(75, 129, 182, 0.85) 1.5px, transparent 1.5px);
     background-size: 11px 11px;
     mask-image: linear-gradient(90deg, transparent, #000);
 }

 .quick-actions-section .call-art {
     flex: 0 0 auto;
     width: clamp(84px, 7.5vw, 108px);
     height: clamp(84px, 7.5vw, 108px);
 }

 .quick-actions-section .call-copy {
     min-width: 0;
 }

 .quick-actions-section .call-card h3 {
     margin: 0 0 5px;
     color: var(--white);
     font-family: Georgia, "Times New Roman", serif;
     font-size: clamp(29px, 2.7vw, 42px);
     font-weight: 500;
     line-height: 1;
     letter-spacing: -0.015em;
 }

 .quick-actions-section .call-card p {
     margin: 0;
     color: #ffbd54;
     font-size: clamp(18px, 2vw, 26px);
     line-height: 1.2;
 }

 .quick-actions-section .call-curve {
     position: absolute;
     inset: 0 0 0 auto;
     z-index: -1;
     width: 45%;
     height: 100%;
     pointer-events: none;
 }

 .quick-actions-section .info-card {
     display: flex;
     align-items: center;
     gap: clamp(15px, 2vw, 28px);
     min-width: 0;
     padding: 22px clamp(22px, 2.5vw, 36px);
     color: var(--navy-deep);
     background:
         linear-gradient(135deg, rgba(248, 252, 255, 0.96), rgba(224, 240, 255, 0.96)),
         var(--ice);
 }

 .quick-actions-section .info-card::after {
     content: "";
     position: absolute;
     inset: auto -16% -58% 2%;
     z-index: -1;
     height: 80%;
     border: 2px solid rgba(117, 169, 234, 0.25);
     border-radius: 50% 50% 0 0;
     transform: rotate(4deg);
 }

 .quick-actions-section .info-icon {
     flex: 0 0 auto;
     width: clamp(72px, 6.6vw, 94px);
     height: clamp(72px, 6.6vw, 94px);
     color: var(--navy-deep);
 }

 .quick-actions-section .info-copy {
     flex: 1 1 auto;
     min-width: 0;
 }

 .quick-actions-section .info-card h3 {
     margin: 0;
     font-family: Georgia, "Times New Roman", serif;
     font-size: clamp(21px, 1.7vw, 27px);
     line-height: 1.15;
 }

 .quick-actions-section .gold-rule {
     display: block;
     width: 34px;
     height: 2px;
     margin: 12px 0 14px;
     background: var(--gold);
 }

 .quick-actions-section .action-label {
     display: inline-flex;
     align-items: center;
     gap: 13px;
     color: var(--navy-deep);
     font-size: clamp(14px, 1.2vw, 17px);
     font-weight: 600;
     white-space: nowrap;
 }

 .quick-actions-section .action-label svg {
     flex: 0 0 auto;
     width: 21px;
     height: 21px;
     transition: transform 180ms ease;
 }

 .quick-actions-section .treatments-card {
     display: grid;
     grid-template-columns: clamp(62px, 5.4vw, 78px) minmax(0, 1fr);
     align-items: center;
     gap: clamp(12px, 1.3vw, 20px);
     padding-inline: clamp(17px, 1.7vw, 26px);
 }

 .quick-actions-section .treatments-card .info-icon {
     width: 100%;
     height: auto;
     max-height: 80px;
 }

 .quick-actions-section .treatments-card .info-copy {
     width: 100%;
     overflow: visible;
 }

 .quick-actions-section .treatments-card h3 {
     max-width: 100%;
     font-size: clamp(21px, 1.65vw, 26px);
     line-height: 1.08;
     overflow-wrap: normal;
 }

 .quick-actions-section .treatments-card .gold-rule {
     margin: 10px 0 12px;
 }

 .quick-actions-section .treatments-card .action-label {
     gap: 8px;
     max-width: 100%;
     font-size: clamp(13px, 1vw, 15.5px);
 }

 .quick-actions-section .treatments-card .action-label svg {
     width: 19px;
     height: 19px;
 }

 .quick-actions-section .info-card:hover .action-label svg {
     transform: translateX(4px);
 }

 .quick-actions-section .directions-card {
     gap: clamp(17px, 1.8vw, 28px);
 }

 .quick-actions-section .directions-card .info-icon {
     width: clamp(66px, 6vw, 86px);
     height: clamp(78px, 7vw, 98px);
 }

 .quick-actions-section .directions-card h3 {
     margin-bottom: 8px;
 }

 .quick-actions-section .address {
     margin: 0 0 18px;
     color: var(--muted);
     font-size: clamp(14px, 1.15vw, 18px);
     white-space: nowrap;
 }

 .quick-actions-section .map-lines {
     position: absolute;
     right: -2px;
     bottom: -10px;
     z-index: -1;
     width: 47%;
     height: 88%;
     color: #b9d4f2;
     opacity: 0.28;
     pointer-events: none;
 }

 .quick-actions-section .mobile-arrow {
     display: none;
 }

 .quick-actions-section .mobile-subtitle {
     display: none;
 }

 @media (min-width: 961px) and (max-width: 1180px) {
     .quick-actions-section {
         padding: 18px;
     }

     .quick-actions-section .qa-heading {
         margin-bottom: 14px;
     }

     .quick-actions-section .qa-heading h2 {
         font-size: clamp(24px, 3vw, 32px);
     }

     .quick-actions-section .qa-heading p {
         max-width: 560px;
     }

     .quick-actions-section .quick-actions {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         grid-template-rows: repeat(2, 156px);
         gap: 8px;
         width: min(920px, 100%);
         min-height: 0;
         padding: 8px;
     }

     .quick-actions-section .appointment-card {
         grid-column: 1;
         grid-row: 1;
         display: grid;
         grid-template-columns: 58px minmax(0, 1fr) 130px;
         grid-template-rows: auto auto;
         align-items: center;
         column-gap: 15px;
         padding: 20px 20px;
     }

     .quick-actions-section .appointment-lines {
         left: 45%;
         width: 55%;
     }

     .quick-actions-section .priority-badge {
         display: none;
     }

     .quick-actions-section .appointment-icon {
         grid-column: 1;
         grid-row: 1 / 3;
         width: 58px;
         height: 58px;
         margin: 0;
     }

     .quick-actions-section .appointment-card h2 {
         grid-column: 2;
         align-self: end;
         max-width: none;
         font-size: clamp(22px, 2.6vw, 30px);
         line-height: 1;
     }

     .quick-actions-section .appointment-card p {
         grid-column: 2;
         align-self: start;
         max-width: none;
         margin: 6px 0 0;
         font-size: 13px;
         line-height: 1.25;
     }

     .quick-actions-section .desktop-break {
         display: none;
     }

     .quick-actions-section .book-button {
         grid-column: 3;
         grid-row: 1 / 3;
         align-self: center;
         justify-self: stretch;
         width: 100%;
         min-height: 42px;
         padding-inline: 15px;
         gap: 10px;
         font-size: 14px;
     }

     .quick-actions-section .book-button svg {
         width: 19px;
         height: 19px;
     }

     .quick-actions-section .right-grid {
         display: contents;
     }

     .quick-actions-section .call-card {
         grid-column: 2;
         grid-row: 1;
         gap: 20px;
         padding: 20px 26px;
     }

     .quick-actions-section .call-art {
         width: 78px;
         height: 78px;
     }

     .quick-actions-section .call-card h3 {
         font-size: clamp(27px, 3vw, 34px);
     }

     .quick-actions-section .call-card p {
         font-size: clamp(17px, 2vw, 22px);
     }

     .quick-actions-section .info-card {
         grid-row: 2;
         gap: 20px;
         padding: 20px 26px;
     }

     .quick-actions-section .treatments-card {
         grid-column: 1;
         grid-template-columns: 72px minmax(0, 1fr);
         gap: 18px;
         padding-inline: 26px;
     }

     .quick-actions-section .directions-card {
         grid-column: 2;
     }

     .quick-actions-section .info-icon {
         width: 76px;
         height: 76px;
     }

     .quick-actions-section .directions-card .info-icon {
         width: 68px;
         height: 82px;
     }

     .quick-actions-section .info-card h3 {
         font-size: clamp(22px, 2.4vw, 28px);
         white-space: normal;
     }

     .quick-actions-section .gold-rule {
         margin: 10px 0 11px;
     }

     .quick-actions-section .action-label {
         gap: 11px;
         font-size: 14.5px;
     }

     .quick-actions-section .address {
         margin-bottom: 12px;
         font-size: 14.5px;
     }
 }

 @media (max-width: 960px) {
     .quick-actions-section {
         padding: 14px 12px;
     }

     .quick-actions-section .qa-heading {
         margin-bottom: 12px;
     }

     .quick-actions-section .qa-eyebrow {
         margin-bottom: 9px;
         font-size: 11.5px;
         padding: 4px 13px 4px 10px;
         gap: 7px;
     }

     .quick-actions-section .qa-eyebrow svg {
         width: 14px;
         height: 14px;
         flex-basis: 14px;
     }

     .quick-actions-section .qa-heading h2 {
         font-size: clamp(22px, 4.2vw, 29px);
         margin-bottom: 7px;
     }

     .quick-actions-section .qa-heading p {
         font-size: clamp(12.5px, 2vw, 14px);
         line-height: 1.5;
     }

     .quick-actions-section .quick-actions {
         display: flex;
         flex-direction: column;
         gap: 8px;
         width: min(680px, 100%);
         min-height: 0;
         padding: 9px;
         border-radius: 22px;
     }

     .quick-actions-section .right-grid {
         display: contents;
     }

     .quick-actions-section .action-card {
         flex: none;
         width: 100%;
         border-radius: 18px;
         transform: none;
     }

     .quick-actions-section .appointment-card {
         order: 1;
         display: grid;
         grid-template-columns: 58px minmax(0, 1fr) 178px;
         grid-template-rows: auto auto;
         align-items: center;
         column-gap: 18px;
         min-height: 96px;
         padding: 12px 24px;
         border-radius: 15px;
     }

     .quick-actions-section .appointment-lines {
         left: 52%;
         width: 48%;
     }

     .quick-actions-section .priority-badge {
         display: none;
     }

     .quick-actions-section .appointment-icon {
         grid-row: 1 / 3;
         width: 56px;
         height: 56px;
         margin: 0;
     }

     .quick-actions-section .appointment-card h2 {
         grid-column: 2;
         align-self: end;
         max-width: none;
         overflow: hidden;
         font-size: clamp(24px, 3vw, 27px);
         line-height: 1.05;
         text-overflow: ellipsis;
         white-space: nowrap;
     }

     .quick-actions-section .desktop-break {
         display: none;
     }

     .quick-actions-section .appointment-card p {
         grid-column: 2;
         align-self: start;
         max-width: none;
         margin: 4px 0 0;
         font-size: clamp(14px, 1.8vw, 16px);
         white-space: nowrap;
     }

     .quick-actions-section .book-button {
         grid-column: 3;
         grid-row: 1 / 3;
         align-self: center;
         justify-self: stretch;
         width: 100%;
         min-height: 46px;
         padding-inline: 21px;
         border-radius: 11px;
         font-size: 16px;
     }

     .quick-actions-section .book-button svg {
         width: 21px;
         height: 21px;
     }

     .quick-actions-section .call-card,
     .quick-actions-section .info-card {
         display: grid;
         grid-template-columns: 72px minmax(0, 1fr) 54px;
         align-items: center;
         gap: 20px;
         min-height: 82px;
         padding: 9px 27px;
         color: var(--navy-deep);
         background: linear-gradient(120deg, #edf7ff, #e1effd);
     }

     .quick-actions-section .call-card {
         order: 2;
     }

     .quick-actions-section .treatments-card {
         order: 3;
     }

     .quick-actions-section .directions-card {
         order: 4;
     }

     .quick-actions-section .call-card::after,
     .quick-actions-section .call-curve,
     .quick-actions-section .info-card::after,
     .quick-actions-section .map-lines,
     .quick-actions-section .gold-rule,
     .quick-actions-section .action-label {
         display: none;
     }

     .quick-actions-section .call-art,
     .quick-actions-section .info-icon,
     .quick-actions-section .directions-card .info-icon {
         grid-column: 1;
         grid-row: 1;
         width: 72px;
         height: 72px;
         padding: 12px;
         color: var(--white);
         background: linear-gradient(145deg, #0d487f, #032554);
         border-radius: 50%;
     }

     .quick-actions-section .treatments-card .info-icon {
         width: 72px;
         height: 72px;
         max-height: none;
     }

     .quick-actions-section .call-art {
         padding: 9px;
     }

     .quick-actions-section .call-copy,
     .quick-actions-section .info-copy {
         grid-column: 2;
         grid-row: 1;
     }

     .quick-actions-section .call-card h3,
     .quick-actions-section .info-card h3 {
         margin: 0 0 4px;
         color: var(--navy-deep);
         font-size: clamp(20px, 3.5vw, 27px);
         font-weight: 700;
         line-height: 1.05;
     }

     .quick-actions-section .call-card p,
     .quick-actions-section .address,
     .quick-actions-section .info-card .mobile-subtitle {
         display: block;
         margin: 0;
         color: #c58317;
         font-size: clamp(16px, 2.8vw, 21px);
         line-height: 1.15;
         white-space: nowrap;
     }

     .quick-actions-section .info-card .mobile-subtitle,
     .quick-actions-section .address {
         color: var(--muted);
     }

     .quick-actions-section .mobile-arrow {
         grid-column: 3;
         grid-row: 1;
         display: grid;
         place-items: center;
         width: 54px;
         height: 54px;
         color: var(--white);
         background: linear-gradient(145deg, #0d487f, #032554);
         border-radius: 50%;
     }

     .quick-actions-section .mobile-arrow svg {
         width: 28px;
         height: 28px;
         transition: transform 180ms ease;
     }

     .quick-actions-section .action-card:hover .mobile-arrow svg {
         transform: translateX(4px);
     }
 }

 @media (max-width: 590px) {
     .quick-actions-section {
         padding: 0;
         background: var(--white);
     }

     .quick-actions-section .quick-actions {
         width: 100%;
         padding: 8px;
         border: 0;
         border-radius: 0;
         box-shadow: none;
     }

     .quick-actions-section .appointment-card {
         grid-template-columns: 54px minmax(0, 1fr) minmax(104px, 116px);
         column-gap: 13px;
         min-height: 96px;
         padding: 13px 16px;
         border-radius: 15px;
     }

     .quick-actions-section .appointment-icon {
         width: 54px;
         height: 54px;
     }

     .quick-actions-section .appointment-card h2 {
         font-size: clamp(20px, 5.4vw, 27px);
     }

     .quick-actions-section .appointment-card p {
         max-width: 215px;
         overflow: hidden;
         font-size: clamp(11px, 3.1vw, 15px);
         text-overflow: ellipsis;
     }

     .quick-actions-section .book-button {
         width: 100%;
         min-width: 0;
         min-height: 43px;
         padding: 0 13px;
         gap: 10px;
         font-size: 14px;
     }

     .quick-actions-section .book-button svg {
         width: 20px;
         height: 20px;
     }

     .quick-actions-section .call-card,
     .quick-actions-section .info-card {
         grid-template-columns: 54px minmax(0, 1fr) 43px;
         gap: 13px;
         min-height: 71px;
         padding: 8px 15px;
         border-radius: 14px;
     }

     .quick-actions-section .call-art,
     .quick-actions-section .info-icon,
     .quick-actions-section .directions-card .info-icon {
         width: 54px;
         height: 54px;
         padding: 9px;
     }

     .quick-actions-section .treatments-card .info-icon {
         width: 54px;
         height: 54px;
     }

     .quick-actions-section .call-art {
         padding: 7px;
     }

     .quick-actions-section .call-card h3,
     .quick-actions-section .info-card h3 {
         font-size: clamp(17px, 4.5vw, 21px);
     }

     .quick-actions-section .call-card p,
     .quick-actions-section .address,
     .quick-actions-section .info-card .mobile-subtitle {
         max-width: 210px;
         overflow: hidden;
         font-size: clamp(13px, 3.6vw, 16px);
         text-overflow: ellipsis;
     }

     .quick-actions-section .mobile-arrow {
         width: 43px;
         height: 43px;
     }

     .quick-actions-section .mobile-arrow svg {
         width: 23px;
         height: 23px;
     }
 }

 @media (max-width: 390px) {
     .quick-actions-section .appointment-card {
         grid-template-columns: 48px minmax(0, 1fr) 91px;
         column-gap: 10px;
         padding-inline: 12px;
     }

     .quick-actions-section .appointment-icon {
         width: 48px;
         height: 48px;
     }

     .quick-actions-section .appointment-card h2 {
         font-size: 19px;
     }

     .quick-actions-section .appointment-card p {
         max-width: 155px;
         font-size: 11px;
     }

     .quick-actions-section .book-button {
         width: 91px;
         min-width: 0;
         min-height: 40px;
         padding-inline: 10px;
         font-size: 13px;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     .quick-actions-section *,
     .quick-actions-section *::before,
     .quick-actions-section *::after,
     .btn,
     .submit,
     .custom-select-menu,
     .status,
     .select-arrow,
     .option-check,
     .field,
     .custom-select-option {
         transition-duration: 0.01ms !important;
     }
 }

/* ============================================================
   About Us Section (from home-page-components/about-section.html)
   ============================================================ */

.about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 720px;
    background:
        radial-gradient(circle at 92% 18%, rgba(222, 236, 248, .55), transparent 19rem),
        linear-gradient(110deg, #fff 0%, #fff 65%, #fbfdff 100%);

    --navy: #062f69;
    --navy-2: #08437f;
    --maroon: #bd0525;
    --gold: #d6a03c;
    --gold-soft: #ead5ad;
    --ink: #333843;
    --pale: #f0f7fd;
    --white: #fff;
    --shadow: 0 18px 45px rgba(8, 40, 77, .12);
}

.about::before,
.about::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 360px;
    height: 180px;
    opacity: .7;
    background:
        repeating-radial-gradient(ellipse at center, transparent 0 13px, rgba(105, 173, 224, .18) 14px 15px, transparent 16px 27px);
    transform: rotate(-18deg);
    pointer-events: none;
}

.about::before { top: -60px; left: -90px; }
.about::after { right: -90px; bottom: -40px; }

.about .about__inner {
    width: min(1320px, calc(100% - 64px));
    min-height: 720px;
    margin: auto;
    padding: 54px 0 50px;
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(510px, 1.08fr);
    align-items: center;
    gap: clamp(58px, 7vw, 106px);
}

.about .visual {
    position: relative;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about .visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -72px;
    top: 302px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--maroon);
}

.about .photo-shell {
    position: relative;
    width: min(100%, 460px);
    height: 545px;
    padding: 2px;
    border: 1.5px solid var(--gold);
    border-radius: 230px 230px 0 0;
    background: white;
}

.about .photo-shell::before,
.about .photo-shell::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 13px;
    height: 13px;
    background: var(--gold);
    transform: rotate(45deg);
}

.about .photo-shell::before { left: -7px; top: 205px; }
.about .photo-shell::after { right: -7px; bottom: -7px; }

.about .hospital-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 226px 226px 0 0;
}

.about .trust-card {
    position: absolute;
    left: 4px;
    bottom: 62px;
    width: min(430px, 88%);
    min-height: 132px;
    display: grid;
    grid-template-columns: 85px 1px 1fr;
    align-items: center;
    gap: 24px;
    padding: 25px 28px;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    border-radius: 15px;
    background: linear-gradient(135deg, #06356f, #074581);
    box-shadow: 0 14px 25px rgba(3, 35, 74, .24);
}

.about .trust-card__icon {
    width: 66px;
    color: #ffc94e;
}

.about .trust-card__line {
    width: 1px;
    height: 72px;
    background: rgba(255, 209, 105, .72);
}

.about .trust-card h3 {
    margin: 0 0 8px;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.about .trust-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255,255,255,.94);
}

.about .location {
    width: min(100%, 460px);
    margin-top: 23px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 500;
}

.about .location svg { width: 31px; color: #bd811b; flex: 0 0 auto; }

.about .content { max-width: 635px; }

.about .eyebrow {
    margin: 0 0 24px;
    padding: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    color: #b77712;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about .eyebrow::after {
    content: "";
    width: 74px;
    height: 1px;
    background: var(--gold-soft);
}

.about .eyebrow__star {
    width: 9px;
    height: 9px;
    margin-left: 0;
    flex: 0 0 auto;
    background: var(--gold);
    transform: rotate(45deg);
}

.about h1 {
    max-width: 610px;
    margin: 0;
    color: var(--navy);
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: clamp(48px, 4.2vw, 67px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.02em;
}

.about .brush {
    position: relative;
    width: 185px;
    height: 15px;
    margin: 17px 0 22px;
}

.about .brush::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 165px;
    height: 6px;
    border-radius: 70% 20% 80% 35%;
    background: var(--maroon);
    transform: skewX(-18deg) rotate(-1deg);
}

.about .brush::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--maroon);
}

.about .intro {
    max-width: 565px;
    margin: 0 0 26px;
    font-size: 21px;
    line-height: 1.45;
    color: #464d58;
}

.about .values { max-width: 530px; }

.about .value {
    position: relative;
    display: flex;
    align-items: center;
    gap: 23px;
    min-height: 82px;
    border-bottom: 1px solid #ecd9b5;
}

.about .value:last-child { border-bottom: 0; }

.about .value:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -5px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
}

.about .value__icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 50%;
    background: var(--pale);
}

.about .value__icon svg { width: 37px; height: 37px; }

.about .value h2 {
    margin: 0;
    color: var(--navy);
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 23px;
    font-weight: 600;
}

.about .actions {
    margin-top: 27px;
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.about .btn {
    min-height: 58px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    color: var(--navy);
    background: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.about .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(8,48,99,.14); }
.about .btn:focus-visible { outline: 3px solid rgba(214,160,60,.42); outline-offset: 3px; }

.about .btn--primary {
    min-width: 226px;
    border-color: var(--maroon);
    color: white;
    background: linear-gradient(135deg, #b90021, #cb0a2b);
}

.about .btn svg { width: 22px; height: 22px; }

@media (max-width: 1030px) {
    .about .about__inner {
        width: min(950px, calc(100% - 40px));
        grid-template-columns: minmax(350px, .9fr) minmax(430px, 1.1fr);
        gap: 44px;
    }

    .about .photo-shell { width: 390px; height: 500px; }
    .about .trust-card { bottom: 84px; }
    .about h1 { font-size: 50px; }
    .about .intro { font-size: 18px; }
}

@media (max-width: 780px) {
    .about { min-height: 0; }
    .about .about__inner {
        width: min(100%, 520px);
        min-height: 0;
        padding: 20px 18px 28px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about .visual {
        min-height: 414px;
        width: 100%;
    }

    .about .visual::before {
        right: -25px;
        top: 110px;
        width: 92px;
        height: 92px;
    }

    .about .photo-shell {
        width: min(78vw, 360px);
        height: 292px;
        border-radius: 180px 180px 0 0;
    }

    .about .hospital-photo {
        object-position: center 33%;
        border-radius: 176px 176px 0 0;
    }

    .about .trust-card {
        left: 0;
        right: 0;
        bottom: 49px;
        width: 100%;
        min-height: 91px;
        grid-template-columns: 54px 1px 1fr;
        gap: 14px;
        padding: 15px 17px;
        border-radius: 11px;
    }

    .about .trust-card__icon { width: 46px; }
    .about .trust-card__line { height: 54px; }
    .about .trust-card h3 { margin-bottom: 4px; font-size: 18px; }
    .about .trust-card p { font-size: 13px; }

    .about .location {
        width: 100%;
        margin-top: 17px;
        justify-content: center;
        font-size: 15px;
    }

    .about .location svg { width: 25px; }
    .about .content { max-width: none; }

    .about .eyebrow {
        margin: 0 0 12px;
        padding: 0;
        min-height: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        font-size: 12px;
        line-height: 1.35;
    }

    .about .eyebrow::after { flex: 1; min-width: 34px; }

    .about h1 {
        font-size: clamp(32px, 9.2vw, 43px);
        line-height: 1.07;
    }

    .about .brush { width: 132px; margin: 10px 0 12px; }
    .about .brush::before { width: 112px; height: 4px; }
    .about .brush::after { width: 5px; height: 5px; }

    .about .intro {
        margin-bottom: 7px;
        font-size: 16px;
        line-height: 1.42;
    }

    .about .value {
        min-height: 61px;
        gap: 15px;
    }

    .about .value__icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .about .value__icon svg { width: 28px; height: 28px; }
    .about .value h2 { font-size: 17px; }

    .about .actions {
        margin-top: 18px;
        flex-direction: column;
        gap: 11px;
    }

    .about .btn { width: 100%; min-height: 52px; font-size: 16px; }
}

@media (max-width: 390px) {
    .about .about__inner { padding-inline: 14px; }
    .about .photo-shell { width: 78vw; height: 262px; }
    .about .visual { min-height: 378px; }
    .about .trust-card { bottom: 46px; }
    .about .trust-card h3 { font-size: 16px; }
    .about .trust-card p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .about,
    .about *,
    .about *::before,
    .about *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* ====== TREATMENTS & SERVICES SECTION ====== */
    :root {
      --ts-navy: #06296b;
      --ts-deep-navy: #031f55;
      --ts-red: #ba0b2f;
      --ts-red-bright: #e00421;
      --ts-gold: #d89a31;
      --ts-gold-soft: #ecbd65;
      --ts-ink: #273044;
      --ts-muted: #505768;
      --ts-line: #d9e3ee;
      --ts-ice: #eef7ff;
      --ts-white: #ffffff;
      --ts-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
      --ts-body: "DM Sans", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ts-ink);
      background: #f4f8fb;
      font-family: var(--ts-body);
    }

    button,
    a {
      font: inherit;
    }

    button {
      border: 0;
    }

    .ts-icon-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .treatment-section svg {
      shape-rendering: geometricPrecision;
      text-rendering: geometricPrecision;
    }

    .ts-icon-sprite path,
    .ts-icon-sprite circle,
    .ts-icon-sprite line {
      vector-effect: non-scaling-stroke;
    }

    .treatment-section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      width: 100%;
      background:
        radial-gradient(circle at 16% 13%, rgba(223, 239, 253, .58) 0 3%, transparent 13%),
        linear-gradient(130deg, #ffffff 0%, #fbfdff 55%, #f8fbfe 100%);
    }

    .treatment-section::before,
    .treatment-section::after {
      position: absolute;
      z-index: -1;
      width: 470px;
      height: 300px;
      content: "";
      pointer-events: none;
      opacity: .38;
      background:
        radial-gradient(ellipse at center, transparent 28%, #cfe0ef 28.4% 28.8%, transparent 29.2% 38%, #cfe0ef 38.4% 38.8%, transparent 39.2% 49%, #cfe0ef 49.4% 49.8%, transparent 50.2% 61%, #cfe0ef 61.4% 61.8%, transparent 62.2%);
    }

    .treatment-section::before {
      top: -92px;
      left: -98px;
      transform: rotate(-8deg);
    }

    .treatment-section::after {
      right: -100px;
      bottom: -106px;
      transform: rotate(-12deg);
    }

    .ts-container {
      width: min(100% - 48px, 1420px);
      margin-inline: auto;
      padding: 78px 0 52px;
    }

    .ts-layout {
      display: grid;
      grid-template-columns: minmax(330px, 400px) minmax(0, 1fr);
      gap: clamp(34px, 4.2vw, 60px);
      align-items: start;
    }

    .ts-copy {
      padding-top: 14px;
    }

    .ts-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 12px;
      color: #be6d14;
      font-family: var(--ts-display);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .ts-eyebrow::before {
      width: 30px;
      height: 1px;
      content: "";
      background: var(--ts-gold);
    }

    .ts-eyebrow::after {
      width: 9px;
      height: 9px;
      margin-left: -22px;
      content: "";
      background: var(--ts-gold);
      clip-path: polygon(50% 0, 64% 37%, 100% 50%, 64% 63%, 50% 100%, 36% 63%, 0 50%, 36% 37%);
    }

    .ts-heading {
      position: relative;
      max-width: 390px;
      margin: 0;
      color: var(--ts-navy);
      font-family: var(--ts-display);
      font-size: clamp(43px, 3.7vw, 56px);
      font-weight: 700;
      line-height: .98;
      letter-spacing: -.025em;
    }

    .ts-heading-mark {
      position: absolute;
      bottom: -22px;
      left: -3px;
      width: 168px;
      height: 22px;
      overflow: visible;
    }

    .ts-heading-mark path {
      fill: none;
      stroke: var(--ts-red);
      stroke-linecap: round;
      stroke-width: 5;
    }

    .ts-intro {
      max-width: 370px;
      margin: 40px 0 19px;
      color: #40495a;
      font-family: var(--ts-display);
      font-size: 19px;
      font-weight: 400;
      line-height: 1.38;
    }

    .ts-treatment-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .ts-list-button {
      display: grid;
      width: 100%;
      min-height: 61px;
      padding: 8px 14px;
      cursor: pointer;
      color: var(--ts-navy);
      border: 1px solid #d8e2ec;
      border-radius: 9px;
      background: rgba(255, 255, 255, .6);
      grid-template-columns: 46px minmax(0, 1fr) 16px;
      gap: 9px;
      align-items: center;
      text-align: left;
      transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
    }

    .ts-list-button:hover,
    .ts-list-button:focus-visible,
    .ts-list-button.is-active {
      border-color: #b8d9f5;
      outline: none;
      background: linear-gradient(90deg, #edf8ff, #f3f9ff);
      box-shadow: 0 8px 18px rgba(21, 60, 102, .06);
    }

    .ts-list-button:hover {
      transform: translateX(3px);
    }

    .ts-list-icon {
      display: grid;
      width: 42px;
      height: 42px;
      color: #082876;
      place-items: center;
    }

    .ts-list-icon svg {
      width: 39px;
      height: 39px;
    }

    .ts-list-label {
      font-family: var(--ts-display);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.08;
    }

    .ts-list-chevron {
      width: 11px;
      height: 19px;
      color: var(--ts-gold);
      transition: transform .25s ease;
    }

    .ts-list-button:hover .ts-list-chevron {
      transform: translateX(3px);
    }

    .ts-view-all {
      display: flex;
      min-height: 44px;
      margin-top: 9px;
      color: var(--ts-navy);
      text-decoration: none;
      align-items: center;
      gap: 12px;
      font-family: var(--ts-display);
      font-size: 18px;
      font-weight: 600;
    }

    .ts-view-all .ts-eye-small {
      width: 27px;
      height: 27px;
      color: var(--ts-gold);
    }

    .ts-view-line {
      position: relative;
      width: 33px;
      height: 1px;
      margin-left: 4px;
      background: var(--ts-gold);
      transition: width .25s ease;
    }

    .ts-view-line::after {
      position: absolute;
      top: 50%;
      right: 0;
      width: 6px;
      height: 6px;
      content: "";
      border-top: 1px solid var(--ts-gold);
      border-right: 1px solid var(--ts-gold);
      transform: translateY(-50%) rotate(45deg);
    }

    .ts-view-all:hover .ts-view-line {
      width: 45px;
    }

    .ts-rule {
      position: relative;
      height: 1px;
      margin-top: 2px;
      background: linear-gradient(90deg, var(--ts-gold), #e4ba70);
    }

    .ts-rule::after {
      position: absolute;
      top: -4px;
      right: -1px;
      width: 8px;
      height: 8px;
      content: "";
      background: var(--ts-gold);
      clip-path: polygon(50% 0, 65% 36%, 100% 50%, 65% 64%, 50% 100%, 35% 64%, 0 50%, 35% 36%);
    }

    .ts-note {
      display: flex;
      margin: 15px 0 0;
      color: #404757;
      align-items: center;
      gap: 12px;
      font-family: var(--ts-display);
      font-size: 15px;
      line-height: 1.35;
    }

    .ts-note svg {
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      color: var(--ts-navy);
    }

    .ts-showcase {
      min-width: 0;
    }

    .ts-feature-card {
      position: relative;
      display: grid;
      min-height: 448px;
      overflow: hidden;
      color: #fff;
      border-radius: 17px;
      background:
        radial-gradient(circle at 88% 22%, rgba(224, 6, 43, .82) 0 9%, rgba(224, 6, 43, .18) 9.2% 18%, transparent 28%),
        linear-gradient(154deg, #c20b32 0%, #840c2d 25%, #083771 66%, #003466 100%);
      box-shadow: 0 20px 38px rgba(4, 35, 78, .18);
      grid-template-columns: minmax(0, 1fr) minmax(285px, .92fr);
    }

    .ts-feature-card::before {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background:
        radial-gradient(circle at 77% 72%, rgba(29, 178, 214, .12), transparent 31%),
        linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 36%);
    }

    .ts-feature-content {
      position: relative;
      z-index: 2;
      display: flex;
      padding: 34px 0 34px 36px;
      flex-direction: column;
      align-items: flex-start;
    }

    .ts-feature-star {
      width: 17px;
      height: 17px;
      margin-bottom: 13px;
      color: #f0ba55;
    }

    .ts-short-rule {
      width: 1px;
      height: 25px;
      margin: -6px 0 10px 3px;
      background: var(--ts-gold-soft);
    }

    .ts-feature-title {
      max-width: 365px;
      min-height: 91px;
      margin: 0;
      color: #fff;
      font-family: var(--ts-display);
      font-size: clamp(40px, 3.25vw, 52px);
      font-weight: 600;
      line-height: .98;
      letter-spacing: -.02em;
      text-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    }

    .ts-gold-divider {
      position: relative;
      width: 136px;
      height: 1px;
      margin: 24px 0 20px;
      background: var(--ts-gold-soft);
    }

    .ts-gold-divider::after {
      position: absolute;
      top: -6px;
      right: 0;
      width: 12px;
      height: 12px;
      content: "";
      background: var(--ts-gold-soft);
      clip-path: polygon(50% 0, 64% 35%, 100% 50%, 64% 65%, 50% 100%, 36% 65%, 0 50%, 36% 35%);
    }

    .ts-feature-description {
      max-width: 315px;
      margin: 0 0 28px;
      font-family: var(--ts-display);
      font-size: 19px;
      font-weight: 400;
      line-height: 1.34;
    }

    .ts-consult-button {
      display: inline-flex;
      min-height: 52px;
      margin-top: auto;
      padding: 0 20px;
      color: #d3051f;
      border-radius: 7px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-family: var(--ts-display);
      font-size: 19px;
      font-weight: 600;
      text-decoration: none;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .ts-consult-button:hover,
    .ts-consult-button:focus-visible {
      outline: none;
      box-shadow: 0 12px 25px rgba(0, 0, 0, .24);
      transform: translateY(-2px);
    }

    .ts-consult-button svg {
      width: 21px;
      height: 21px;
    }

    .ts-feature-art {
      position: relative;
      z-index: 1;
      min-height: 100%;
    }

    .ts-orbit-art {
      position: absolute;
      top: 24px;
      right: -18px;
      width: 112%;
      height: 89%;
      overflow: visible;
    }

    .ts-feature-card.is-switching .ts-feature-content,
    .ts-feature-card.is-switching .ts-feature-art {
      animation: ts-card-change .38s ease both;
    }

    @keyframes ts-card-change {
      0% { opacity: .35; transform: translateY(7px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .ts-secondary-grid {
      display: grid;
      margin-top: 16px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .ts-secondary-card {
      position: relative;
      display: grid;
      min-height: 218px;
      overflow: hidden;
      padding: 23px 20px 21px;
      color: var(--ts-navy);
      border: 1px solid #d9e2ec;
      border-radius: 14px;
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 9px 20px rgba(16, 42, 76, .1);
      grid-template-columns: 70px minmax(0, 1fr);
      column-gap: 15px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .ts-secondary-card:hover {
      box-shadow: 0 14px 25px rgba(16, 42, 76, .14);
      transform: translateY(-3px);
    }

    .ts-secondary-icon {
      display: grid;
      width: 70px;
      height: 70px;
      color: #092b79;
      border-radius: 50%;
      background: #edf7ff;
      place-items: center;
    }

    .ts-secondary-icon svg {
      width: 44px;
      height: 44px;
    }

    .ts-secondary-body {
      min-width: 0;
    }

    .ts-secondary-title {
      margin: 6px 0 15px;
      font-family: var(--ts-display);
      font-size: 24px;
      font-weight: 600;
      line-height: 1.02;
    }

    .ts-secondary-accent {
      position: relative;
      width: 92px;
      height: 1px;
      background: var(--ts-gold);
    }

    .ts-secondary-accent::after {
      position: absolute;
      top: -4px;
      right: 0;
      width: 8px;
      height: 8px;
      content: "";
      background: var(--ts-gold);
      clip-path: polygon(50% 0, 65% 36%, 100% 50%, 65% 64%, 50% 100%, 35% 64%, 0 50%, 35% 36%);
    }

    .ts-secondary-description {
      grid-column: 1 / -1;
      margin: 19px 43px 0 0;
      color: #424a59;
      font-family: var(--ts-display);
      font-size: 17px;
      line-height: 1.35;
    }

    .ts-card-arrow {
      position: absolute;
      right: 18px;
      bottom: 17px;
      display: grid;
      width: 45px;
      height: 45px;
      color: var(--ts-gold);
      border: 1px solid #d9e2ec;
      border-radius: 50%;
      background: rgba(255, 255, 255, .84);
      place-items: center;
      transition: color .25s ease, border-color .25s ease, transform .25s ease;
    }

    .ts-card-arrow svg {
      width: 21px;
      height: 21px;
    }

    .ts-secondary-card:hover .ts-card-arrow {
      color: #fff;
      border-color: var(--ts-gold);
      background: var(--ts-gold);
      transform: translateX(2px);
    }

    .ts-mobile-treatments {
      display: none;
    }

    @media (max-width: 1180px) {
      .ts-container {
        width: min(100% - 36px, 1080px);
      }

      .ts-layout {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 28px;
      }

      .ts-feature-card {
        min-height: 418px;
        grid-template-columns: minmax(0, 1.05fr) minmax(220px, .8fr);
      }

      .ts-feature-content {
        padding: 30px 0 30px 29px;
      }

      .ts-feature-title {
        font-size: 41px;
      }

      .ts-secondary-card {
        min-height: 210px;
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 12px;
      }

      .ts-secondary-icon {
        width: 62px;
        height: 62px;
      }

      .ts-secondary-icon svg {
        width: 39px;
        height: 39px;
      }

      .ts-secondary-title {
        font-size: 22px;
      }

      .ts-secondary-description {
        margin-right: 38px;
      }
    }

    @media (max-width: 900px) {
      .ts-container {
        width: min(100% - 28px, 720px);
        padding: 58px 0 42px;
      }

      .ts-layout {
        display: block;
      }

      .ts-copy {
        padding: 0 15px;
      }

      .ts-eyebrow {
        justify-content: center;
        font-size: 16px;
      }

      .ts-eyebrow::before {
        display: none;
      }

      .ts-eyebrow::after {
        order: 2;
        width: 8px;
        height: 8px;
        margin: 0;
      }

      .ts-eyebrow .ts-mobile-eyebrow-line {
        display: block;
        width: 48px;
        height: 1px;
        background: var(--ts-gold);
      }

      .ts-heading {
        max-width: 510px;
        margin-inline: auto;
        font-size: clamp(40px, 8vw, 54px);
        text-align: center;
      }

      .ts-heading-mark {
        bottom: -23px;
        left: 50%;
        width: 142px;
        transform: translateX(-80%);
      }

      .ts-intro {
        max-width: 520px;
        margin: 37px auto 23px;
        font-size: 19px;
        text-align: center;
      }

      .ts-treatment-list,
      .ts-copy > .ts-view-all,
      .ts-copy > .ts-rule,
      .ts-copy > .ts-note {
        display: none;
      }

      .ts-feature-card {
        min-height: 392px;
        margin-top: 8px;
        grid-template-columns: minmax(0, 1.06fr) minmax(220px, .8fr);
      }

      .ts-feature-content {
        padding: 27px 0 27px 27px;
      }

      .ts-feature-title {
        min-height: 78px;
        font-size: 39px;
      }

      .ts-feature-description {
        font-size: 18px;
      }

      .ts-secondary-grid {
        display: none;
      }

      .ts-mobile-treatments {
        display: block;
        margin-top: 12px;
      }

      .ts-mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
      }

      .ts-mobile-card {
        display: grid;
        min-height: 101px;
        padding: 10px 12px;
        cursor: pointer;
        color: var(--ts-navy);
        border: 1px solid #d9e3ed;
        border-radius: 10px;
        background: rgba(255, 255, 255, .65);
        grid-template-columns: 57px minmax(0, 1fr);
        gap: 9px;
        align-items: center;
        text-align: left;
      }

      .ts-mobile-icon {
        display: grid;
        width: 56px;
        height: 56px;
        color: #092b79;
        border-radius: 50%;
        background: #eef7ff;
        place-items: center;
      }

      .ts-mobile-icon svg {
        width: 37px;
        height: 37px;
      }

      .ts-mobile-card-title {
        font-family: var(--ts-display);
        font-size: 19px;
        font-weight: 600;
        line-height: 1.04;
      }

      .ts-mobile-card-line {
        position: relative;
        width: 68px;
        max-width: 100%;
        height: 1px;
        margin-top: 11px;
        background: var(--ts-gold);
      }

      .ts-mobile-card-line::after {
        position: absolute;
        top: -4px;
        right: 0;
        width: 8px;
        height: 8px;
        content: "";
        background: var(--ts-gold);
        clip-path: polygon(50% 0, 65% 36%, 100% 50%, 65% 64%, 50% 100%, 35% 64%, 0 50%, 35% 36%);
      }

      .ts-mobile-wide {
        display: grid;
        width: 100%;
        min-height: 57px;
        margin-top: 8px;
        padding: 8px 15px;
        cursor: pointer;
        color: var(--ts-navy);
        border: 1px solid #d9e3ed;
        border-radius: 9px;
        background: rgba(255, 255, 255, .65);
        grid-template-columns: 47px minmax(0, 1fr) 16px;
        align-items: center;
        text-align: left;
      }

      .ts-mobile-wide .ts-mobile-icon {
        width: 43px;
        height: 43px;
      }

      .ts-mobile-wide .ts-mobile-icon svg {
        width: 30px;
        height: 30px;
      }

      .ts-mobile-wide .ts-mobile-card-title {
        padding-left: 11px;
        font-size: 20px;
      }

      .ts-mobile-treatments .ts-view-all {
        margin-top: 3px;
        padding: 0 10px;
      }

      .ts-mobile-treatments .ts-rule {
        margin: 0;
      }

      .ts-mobile-treatments .ts-note {
        margin: 16px 9px 0;
      }
    }

    @media (max-width: 560px) {
      .ts-container {
        width: 100%;
        padding: 32px 14px 28px;
      }

      .ts-copy {
        padding: 0 2px;
      }

      .ts-eyebrow {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 13px;
      }

      .ts-eyebrow .ts-mobile-eyebrow-line {
        width: 38px;
      }

      .ts-heading {
        font-size: clamp(34px, 10.2vw, 43px);
        line-height: .95;
      }

      .ts-heading-mark {
        bottom: -19px;
        width: 115px;
      }

      .ts-intro {
        margin: 31px auto 14px;
        font-size: 17px;
        line-height: 1.35;
      }

      .ts-feature-card {
        display: block;
        min-height: 278px;
        margin-top: 0;
        border-radius: 13px;
      }

      .ts-feature-content {
        position: relative;
        z-index: 2;
        min-height: 278px;
        padding: 18px 15px 16px;
      }

      .ts-feature-star {
        width: 14px;
        height: 14px;
        margin-bottom: 8px;
      }

      .ts-short-rule {
        height: 13px;
        margin: -3px 0 6px 2px;
      }

      .ts-feature-title {
        max-width: 62%;
        min-height: auto;
        font-size: clamp(29px, 8vw, 34px);
        line-height: .98;
      }

      .ts-gold-divider {
        width: 103px;
        margin: 17px 0 14px;
      }

      .ts-feature-description {
        max-width: 50%;
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.27;
      }

      .ts-consult-button {
        min-height: 46px;
        margin-top: auto;
        padding: 0 15px;
        gap: 13px;
        font-size: 17px;
      }

      .ts-consult-button svg {
        width: 20px;
        height: 20px;
      }

      .ts-feature-art {
        position: absolute;
        inset: 0;
        z-index: 1;
        min-height: 0;
        pointer-events: none;
      }

      .ts-orbit-art {
        top: 25px;
        right: -36px;
        width: 71%;
        height: 82%;
      }

      .ts-mobile-grid {
        gap: 7px;
      }

      .ts-mobile-card {
        min-height: 96px;
        padding: 10px 9px;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 7px;
      }

      .ts-mobile-icon {
        width: 48px;
        height: 48px;
      }

      .ts-mobile-icon svg {
        width: 32px;
        height: 32px;
      }

      .ts-mobile-card-title {
        font-size: 16px;
      }

      .ts-mobile-card-line {
        width: 60px;
        margin-top: 11px;
      }

      .ts-mobile-wide {
        min-height: 58px;
      }

      .ts-mobile-wide .ts-mobile-card-title {
        font-size: 18px;
      }

      .ts-view-all {
        min-height: 45px;
        font-size: 17px;
      }

      .ts-note {
        align-items: flex-start;
        font-size: 14px;
      }

      .ts-note svg {
        width: 25px;
        height: 25px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }

    /* â”€â”€ Success Modal â”€â”€ */
    body.modal-open {
      overflow: hidden;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(4, 25, 52, .62);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.show {
      display: flex;
      animation: modalFadeIn .3s ease;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .modal-card {
      position: relative;
      width: 100%;
      max-width: 440px;
      padding: 40px 32px 32px;
      border-radius: 26px;
      background: #ffffff;
      box-shadow: 0 32px 80px rgba(2, 24, 55, .28), 0 0 0 1px rgba(8, 47, 94, .08);
      text-align: center;
      animation: modalScaleIn .35s cubic-bezier(.175, .885, .32, 1.275);
    }

    @keyframes modalScaleIn {
      from { opacity: 0; transform: scale(.88) translateY(18px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid #d8dde6;
      border-radius: 50%;
      color: #6e7890;
      background: #ffffff;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      transition: color .2s, border-color .2s;
    }

    .modal-close:hover {
      color: #c9002b;
      border-color: #c9002b;
    }

    .modal-icon-wrap {
      width: 76px;
      height: 76px;
      margin: 0 auto 18px;
    }

    .modal-icon {
      width: 76px;
      height: 76px;
    }

    .modal-check {
      stroke-dasharray: 70;
      stroke-dashoffset: 70;
      animation: drawCheck .6s ease .25s forwards;
    }

    @keyframes drawCheck {
      to { stroke-dashoffset: 0; }
    }

    .modal-card h3 {
      margin: 0 0 6px;
      color: #062e64;
      font-size: 24px;
      font-weight: 750;
    }

    .modal-subtitle {
      margin: 0 0 20px;
      color: #6e7890;
      font-size: 13px;
      line-height: 1.4;
    }

    .modal-details {
      display: grid;
      gap: 0;
      border: 1px solid #d8dde6;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 18px;
      text-align: left;
    }

    .modal-detail-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 18px;
      background: #f7f9fc;
    }

    .modal-detail-row + .modal-detail-row {
      border-top: 1px solid #e2e7f0;
    }

    .modal-detail-row.token-row {
      background: linear-gradient(135deg, #ecf8f3, #f5fef9);
    }

    .modal-detail-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #6e7890;
      font-size: 12px;
      font-weight: 700;
    }

    .modal-detail-label .icon {
      width: 17px;
      height: 17px;
      color: #062e64;
    }

    .modal-detail-value {
      color: #18243b;
      font-size: 13px;
      font-weight: 800;
      text-align: right;
    }

    .modal-token {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 14px;
      border-radius: 50px;
      color: #14815f;
      background: rgba(20, 129, 95, .12);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 1px;
    }

    .modal-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin: 0 0 20px;
      color: #6e7890;
      font-size: 11px;
    }

    .modal-note .icon {
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      color: #e8a93d;
    }

    .modal-done {
      width: 100%;
      min-height: 46px;
      font-size: 14px;
      border-radius: 12px;
      border: 0;
      color: #fff;
      background: linear-gradient(135deg, #d10732, #b9002b);
      cursor: pointer;
      font-weight: 700;
    }

    @media (max-width: 660px) {
      .modal-overlay {
        padding: 16px;
      }
      .modal-card {
        padding: 32px 20px 24px;
        border-radius: 22px;
      }
      .modal-card h3 {
        font-size: 20px;
      }
      .modal-detail-row {
        padding: 11px 14px;
      }
      .modal-token {
        font-size: 14px;
        padding: 3px 12px;
      }
    }

/* ====== DOCTORS / OUR PEOPLE SECTION ====== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --people-navy: #062b60;
      --people-navy-deep: #031d43;
      --people-red: #c60727;
      --people-red-dark: #a9001b;
      --people-gold: #bf8419;
      --people-gold-light: #dda842;
      --people-ink: #062a5d;
      --people-soft: #f7fbff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      color: #171b24;
      background: transparent;
      font-family: Inter, "Segoe UI", Arial, sans-serif;
    }

    button,
    a {
      font: inherit;
    }

    .people-section {
      width: 100%;
      padding: 5px 7px;
      background: transparent;
    }

    .people-shell {
      position: relative;
      width: min(100%, 1600px);
      height: 443px;
      min-height: 443px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 11px;
      background: transparent;
      box-shadow: 0 8px 24px rgba(8, 35, 69, .15);
      isolation: isolate;
    }

    .people-shell::before {
      position: absolute;
      z-index: 2;
      top: 0;
      left: 19.6%;
      width: 11.5%;
      height: 112px;
      content: "";
      background: transparent;
      clip-path: polygon(0 0, 100% 0, 100% 100%);
      pointer-events: none;
    }

    .people-shell::after {
      position: absolute;
      z-index: 2;
      top: 0;
      right: 0;
      left: 29.2%;
      height: 124px;
      content: "";
      border-bottom-left-radius: 42px;
      background: transparent;
      box-shadow: none;
      pointer-events: none;
    }

    .leader-zone,
    .doctor-zone {
      position: absolute;
      inset-block: 0;
      overflow: hidden;
    }

    .leader-zone {
      left: 0;
      width: 54%;
      z-index: 1;
      color: #fff;
      background:
        radial-gradient(circle at 23% 42%, rgba(30, 91, 153, .3), transparent 36%),
        linear-gradient(135deg, #073a77 0%, var(--people-navy) 54%, var(--people-navy-deep) 100%);
      clip-path: polygon(0 0, 96% 0, 89.5% 100%, 0 100%);
    }

    .doctor-zone {
      right: 0;
      width: 55%;
      z-index: 3;
      color: var(--people-ink);
      background:
        radial-gradient(circle at 78% 44%, rgba(210, 228, 244, .52), transparent 37%),
        linear-gradient(120deg, #ffffff 0%, #f6faff 58%, #eaf3fb 100%);
      clip-path: polygon(14.5% 0, 100% 0, 100% 100%, 6% 100%);
    }

    .eye-art,
    .spiral-art {
      position: absolute;
      pointer-events: none;
      fill: none;
      stroke: currentColor;
    }

    .spiral-art {
      left: -12px;
      top: 29px;
      width: 252px;
      height: 286px;
      color: rgba(210, 224, 241, .1);
      stroke-width: 2;
    }

    .eye-art {
      right: -10px;
      top: 38px;
      width: 264px;
      height: 276px;
      color: rgba(18, 74, 129, .065);
      stroke-width: 2;
    }

    .people-heading {
      position: absolute;
      z-index: 6;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 124px;
      min-height: 124px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 0 48px;
      text-align: center;
      background: #ffffff;
      pointer-events: none;
    }

    .people-heading > * {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      margin-bottom: 7px;
      color: #a86a08;
      font-size: 14px;
      font-weight: 650;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      width: 41px;
      height: 1.5px;
      content: "";
      background: var(--people-gold);
    }

    .people-heading h2 {
      color: var(--people-ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 36px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.025em;
      white-space: nowrap;
      margin: 0;
    }

    .people-heading p {
      margin: 0;
      color: #363944;
      font-size: 16px;
      line-height: 1.4;
    }

    .person-portrait {
      position: absolute;
      z-index: 1;
      bottom: 19px;
      display: block;
      object-fit: contain;
      object-position: center bottom;
      background: transparent;
      border: 0;
      box-shadow: none;
      mix-blend-mode: normal;
      user-select: none;
      pointer-events: none;
    }

    .person-portrait:not(.portrait-cutout) {
      display: none;
    }

    .leader-zone .person-portrait {
      left: 8.5%;
      width: 380px;
      height: 340px;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 70%, transparent 88%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 70%, transparent 88%);
    }

    .doctor-zone .person-portrait {
      right: 6%;
      width: 365px;
      height: 340px;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 96%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 96%, transparent 100%);
    }

    .person-info {
      position: absolute;
      z-index: 4;
      top: 183px;
      text-align: center;
    }

    .leader-zone .person-info {
      left: 52%;
      width: 34%;
    }

    .doctor-zone .person-info {
      left: 18%;
      width: 30%;
    }

    .gold-rule {
      width: 108px;
      height: 9px;
      position: relative;
      margin: 0 auto 7px;
    }

    .gold-rule::before,
    .gold-rule::after {
      position: absolute;
      top: 4px;
      width: 46px;
      height: 1.5px;
      content: "";
      background: var(--people-gold-light);
    }

    .gold-rule::before { left: 0; }
    .gold-rule::after { right: 0; }

    .gold-rule span {
      position: absolute;
      top: 1px;
      left: 50%;
      width: 7px;
      height: 7px;
      border: 1px solid #f4c15f;
      border-radius: 50%;
      background: var(--people-gold);
      transform: translateX(-50%);
    }

    .person-info h3 {
      white-space: nowrap;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .role-ribbon {
      position: relative;
      width: min(100%, 174px);
      margin: 7px auto 10px;
      padding: 6px 14px;
      color: #fff;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
      background: linear-gradient(90deg, var(--people-red-dark), var(--people-red));
      box-shadow: 0 5px 12px rgba(47, 2, 14, .18);
    }

    .doctor-zone .role-ribbon {
      background: linear-gradient(90deg, #073773, #062b60);
      box-shadow: 0 5px 12px rgba(6, 43, 96, .15);
    }

    .role-ribbon::before,
    .role-ribbon::after {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      content: "";
      background: var(--people-gold-light);
    }

    .role-ribbon::before { left: -9px; }
    .role-ribbon::after { right: -9px; }

    .doctor-zone .role-ribbon::before,
    .doctor-zone .role-ribbon::after {
      background: var(--people-red);
    }

    .person-info .mini-rule {
      position: relative;
      width: 92px;
      height: 9px;
      margin: 0 auto 6px;
      border-top: 1.5px solid var(--people-gold-light);
    }

    .person-info .mini-rule::after {
      position: absolute;
      top: -4px;
      left: 50%;
      width: 7px;
      height: 7px;
      content: "";
      border-radius: 50%;
      background: var(--people-gold);
      transform: translateX(-50%);
    }

    .person-info p {
      font-size: 16px;
      line-height: 1.4;
    }

    .assistance-bar {
      position: absolute;
      z-index: 10;
      left: 6%;
      right: 5%;
      bottom: 1px;
      min-height: 54px;
      display: grid;
      grid-template-columns: 48% 52%;
      align-items: center;
      overflow: hidden;
      border: 1px solid var(--people-gold-light);
      border-radius: 11px;
      background: linear-gradient(105deg, rgba(3, 34, 73, .96) 0 48%, rgba(255, 255, 255, .97) 48.2% 100%);
      box-shadow: 0 9px 22px rgba(5, 32, 66, .15);
    }

    .assist-copy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      color: #dfa63d;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 16px;
      font-weight: 700;
    }

    .assist-copy::before {
      width: 2px;
      height: 24px;
      content: "";
      background: var(--people-gold-light);
    }

    .assist-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      padding: 7px 18px;
    }

    .people-btn {
      min-width: 164px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 19px;
      border: 1.5px solid var(--people-ink);
      border-radius: 7px;
      color: var(--people-ink);
      text-decoration: none;
      background: rgba(255, 255, 255, .86);
      font-size: 14px;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .people-btn svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
    }

    .people-btn.primary {
      min-width: 202px;
      border-color: var(--people-red);
      color: #fff;
      background: linear-gradient(100deg, var(--people-red-dark), var(--people-red));
      box-shadow: 0 7px 15px rgba(173, 0, 27, .17);
    }

    .people-btn:hover,
    .people-btn:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(5, 38, 78, .16);
      outline: none;
    }

    .people-btn:active {
      transform: translateY(0);
    }

    @media (max-width: 1180px) and (min-width: 701px) {
      .people-heading {
        left: 0;
        right: 0;
        width: 100%;
        padding-inline: 44px;
      }

      .people-heading h2 {
        font-size: clamp(30px, 3.4vw, 36px);
      }

      .leader-zone .person-portrait {
        left: 1%;
        width: clamp(300px, 34vw, 345px);
      }

      .doctor-zone .person-portrait {
        right: 0;
        width: clamp(300px, 33vw, 345px);
      }

      .leader-zone .person-info {
        left: 48%;
        width: 39%;
      }

      .doctor-zone .person-info {
        left: 8%;
        width: 35%;
      }

      .person-info h3 {
        font-size: 20px;
      }

      .person-info p {
        font-size: 15px;
      }

      .assistance-bar {
        left: 3.5%;
        right: 3.5%;
      }

      .assist-actions {
        gap: 12px;
      }

      .people-btn {
        min-width: 170px;
        padding-inline: 16px;
      }
    }

    @media (max-width: 700px) {
      .people-section {
        padding: 12px;
      }

      .people-shell {
        height: auto;
        min-height: 0;
        border-radius: 10px;
        background: transparent;
      }

      .people-shell::before,
      .people-shell::after {
        display: none;
      }

      .people-heading,
      .leader-zone,
      .doctor-zone,
      .assistance-bar {
        position: relative;
        inset: auto;
        width: 100%;
      }

      .people-heading {
        height: auto;
        min-height: 108px;
        padding: 14px 14px 10px;
        border-radius: 0;
        clip-path: none;
        background: #ffffff;
        box-shadow: none;
      }

      .eyebrow {
        gap: 9px;
        margin-bottom: 5px;
        font-size: 12px;
      }

      .eyebrow::before,
      .eyebrow::after {
        width: 28px;
      }

      .people-heading h2 {
        font-size: clamp(24px, 7.1vw, 34px);
        line-height: 1.06;
        white-space: normal;
      }

      .people-heading p {
        margin-top: 5px;
        font-size: clamp(11px, 3.15vw, 14px);
      }

      .leader-zone,
      .doctor-zone {
        height: 176px;
        clip-path: none;
      }

      .leader-zone {
        background: linear-gradient(130deg, #073a77, var(--people-navy-deep));
      }

      .doctor-zone {
        background: linear-gradient(120deg, #f7fbff, #eaf3fb);
      }

      .spiral-art {
        right: -24px;
        left: auto;
        top: 13px;
        width: 125px;
        height: 145px;
      }

      .eye-art {
        left: -30px;
        right: auto;
        top: 10px;
        width: 135px;
        height: 145px;
      }

      .person-portrait,
      .leader-zone .person-portrait,
      .doctor-zone .person-portrait {
        bottom: 0;
        height: 176px;
      }

      .leader-zone .person-portrait {
        left: -8px;
        width: 45%;
        object-position: center top;
        -webkit-mask-image: linear-gradient(90deg, #000 0 64%, transparent 87%);
        mask-image: linear-gradient(90deg, #000 0 64%, transparent 87%);
      }

      .doctor-zone .person-portrait {
        right: -3px;
        width: 43%;
        height: 158px;
        object-position: center top;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 31% 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 31% 100%);
      }

      .person-info {
        position: absolute;
        top: 23px;
      }

      .leader-zone .person-info {
        left: 39%;
        width: 57%;
      }

      .doctor-zone .person-info {
        left: 8%;
        width: 52%;
      }

      .gold-rule {
        width: 93px;
        margin-bottom: 4px;
      }

      .gold-rule::before,
      .gold-rule::after {
        width: 39px;
      }

      .person-info h3 {
        font-size: clamp(16px, 4.5vw, 22px);
      }

      .leader-zone .person-info h3 {
        font-size: clamp(13px, 3.65vw, 18px);
      }

      .role-ribbon {
        width: min(82%, 185px);
        margin-block: 5px 8px;
        padding: 5px 10px;
        font-size: clamp(12px, 3.5vw, 15px);
      }

      .role-ribbon::before { left: -7px; }
      .role-ribbon::after { right: -7px; }

      .person-info .mini-rule {
        width: 75px;
        height: 7px;
        margin-bottom: 4px;
      }

      .person-info p {
        font-size: clamp(12px, 3.35vw, 15px);
        line-height: 1.25;
      }

      .assistance-bar {
        min-height: 110px;
        display: block;
        padding: 9px 16px 12px;
        border: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
      }

      .assist-copy {
        display: none;
      }

      .assist-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
      }

      .people-btn {
        width: 100%;
        min-width: 0;
        height: 42px;
        border-radius: 6px;
        font-size: 14px;
      }

      .people-btn svg {
        width: 19px;
        height: 19px;
      }
    }

    @media (max-width: 420px) {
      .people-section {
        padding: 0;
      }

      .people-shell {
        border-radius: 0;
      }

      .people-heading {
        min-height: 112px;
      }

      .leader-zone,
      .doctor-zone,
      .person-portrait,
      .leader-zone .person-portrait,
      .doctor-zone .person-portrait {
        height: 164px;
      }

      .doctor-zone .person-portrait {
        height: 148px;
      }

      .person-info {
        top: 19px;
      }

      .role-ribbon {
        width: min(86%, 168px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }
  

    /* Reference-accurate desktop composition */
    @media (min-width: 701px) {
      .people-section {
        padding: 4px 6px 3px;
      }

      .people-shell {
        width: min(100%, 1320px);
        height: auto;
        min-height: 0;
        aspect-ratio: 1320 / 445;
        border-radius: 9px;
        background: #eef5fb;
        box-shadow: 0 6px 20px rgba(6, 40, 79, .14);
      }

      .people-shell::before,
      .people-shell::after {
        display: none;
      }

      .stage-background,
      .heading-panel-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        pointer-events: none;
      }

      .stage-background { z-index: 0; }
      .heading-panel-bg {
        z-index: 2;
        height: 28.1%;
        filter: drop-shadow(0 4px 5px rgba(21, 53, 86, .07));
      }

      .leader-zone,
      .doctor-zone {
        inset-block: 0;
        z-index: 3;
        overflow: visible;
        clip-path: none;
        background: transparent;
      }

      .leader-zone {
        left: 0;
        width: 54%;
      }

      .doctor-zone {
        right: 0;
        width: 55%;
      }

      .spiral-art {
        left: -11px;
        top: 30px;
        width: 252px;
        height: 286px;
        color: rgba(215, 228, 243, .09);
      }

      .eye-art {
        right: -10px;
        top: 39px;
        width: 264px;
        height: 276px;
        color: rgba(18, 74, 129, .06);
      }

      .people-heading {
        z-index: 8;
        height: 124px;
        min-height: 124px;
        padding: 0;
        display: block;
        background: transparent;
      }

      .people-heading .eyebrow,
      .people-heading h2,
      .people-heading p {
        position: absolute;
        left: 50%;
        margin: 0;
        transform: translateX(-50%);
      }

      .people-heading .eyebrow {
        top: 8px;
        gap: 13px;
        font-size: 14px;
        line-height: 18px;
      }

      .people-heading h2 {
        top: 26px;
        width: max-content;
        max-width: 76%;
        font-size: 36px;
        line-height: 1.05;
      }

      .people-heading p {
        top: 74px;
        width: max-content;
        max-width: 70%;
        font-size: 16px;
        line-height: 22px;
      }

      .person-portrait {
        z-index: 4;
        bottom: 12.8%;
        height: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }

      .leader-zone .person-portrait {
        left: 9.6%;
        width: 45.4%;
        height: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }

      .doctor-zone .person-portrait {
        right: 11%;
        width: 44.9%;
        height: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }

      .person-info {
        z-index: 5;
        top: 183px;
      }

      .assistance-bar {
        left: 6%;
        right: 5.15%;
        bottom: 3px;
        min-height: 54px;
      }
    }

    @media (min-width: 701px) and (max-width: 1180px) {
      .people-shell {
        aspect-ratio: 1320 / 470;
      }

      .people-heading h2 {
        max-width: 70%;
        font-size: clamp(28px, 3.15vw, 34px);
      }

      .leader-zone .person-portrait {
        left: 2.5%;
        width: clamp(240px, 29vw, 320px);
      }

      .doctor-zone .person-portrait {
        right: 0;
        width: clamp(300px, 33vw, 345px);
      }
    }

    /* Compact, centred heading with reliable breathing room on both sides. */
    @media (min-width: 701px) {
      .people-heading .eyebrow {
        top: 6px;
        gap: 12px;
        font-size: 13px;
      }

      .people-heading h2 {
        top: 24px;
        right: clamp(42px, 6vw, 82px);
        left: clamp(76px, 10vw, 138px);
        width: auto;
        max-width: none;
        transform: none;
        font-size: clamp(30px, 2.6vw, 34px);
        line-height: 1.04;
        text-align: center;
      }

      .people-heading p {
        top: 70px;
        right: clamp(42px, 6vw, 82px);
        left: clamp(76px, 10vw, 138px);
        width: auto;
        max-width: none;
        transform: none;
        font-size: 15px;
        line-height: 21px;
        text-align: center;
      }
    }

    @media (min-width: 701px) and (max-width: 820px) {
      .people-heading h2 {
        right: 28px;
        left: 64px;
        font-size: 28px;
      }

      .people-heading p {
        right: 24px;
        left: 58px;
        font-size: 14px;
      }
    }

    /* Keep the Managing Director portrait and profile copy visually separate. */
    @media (min-width: 1181px) {
      .leader-zone .person-info {
        left: 56%;
        width: 32%;
      }
    }

    @media (min-width: 821px) and (max-width: 1180px) {
      .leader-zone .person-info {
        left: 58%;
        width: 35%;
      }
    }

    /* Keep the left character lighter and precisely aligned with its copy. */
    @media (max-width: 700px) {
      .leader-zone .person-portrait {
        left: 0;
        width: 42%;
        height: 168px;
      }
    }

    @media (max-width: 420px) {
      .leader-zone .person-portrait {
        width: 41%;
        height: 156px;
      }
    }

    @media (max-width: 700px) {
      .stage-background,
      .heading-panel-bg {
        display: none;
      }
    }
  


/* ====== WHY CHOOSE US SECTION ====== */
    :root {
      --wc-navy: #063466;
      --wc-navy-deep: #032d59;
      --wc-blue: #0e4b89;
      --wc-red: #b80e25;
      --wc-red-dark: #99091d;
      --wc-gold: #f1aa35;
      --wc-ink: #082f61;
      --wc-body: #252c35;
      --wc-ice: #f3f9fd;
      --wc-line: #d8e2e9;
      --wc-white: #ffffff;
    }
    .wc-section {
      width: 100%;
      padding: 28px 10px;
      overflow: hidden;
    }

    .wc-shell {
      position: relative;
      width: min(100%, 1920px);
      height: clamp(600px, 32.9vw, 632px);
      min-height: 600px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 8px;
      background:
        radial-gradient(circle at 73% 52%, rgba(255,255,255,.92) 0 25%, rgba(244,250,254,.92) 72%),
        linear-gradient(120deg, #f9fcfe, #edf7fd);
      box-shadow: inset 0 0 0 1px rgba(7,47,94,.025);
      isolation: isolate;
    }

    .wc-desktop-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    .wc-copy {
      position: absolute;
      z-index: 4;
      top: 64px;
      left: 4.05%;
      width: 34.5%;
      color: #fff;
    }

    .wc-kicker {
      display: flex;
      align-items: center;
      gap: 13px;
      margin: 0 0 18px;
      color: #ff1933;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .025em;
      text-transform: uppercase;
    }

    .wc-kicker::before {
      content: "";
      width: 42px;
      height: 2px;
      flex: 0 0 auto;
      border-radius: 2px;
      background: #ff1933;
    }

    .wc-title {
      margin: 0;
      color: #fff;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(42px, 3.22vw, 63px);
      font-weight: 600;
      line-height: .99;
      letter-spacing: -.025em;
    }

    .wc-title span { color: var(--wc-gold); }

    .wc-gold-rule {
      display: flex;
      align-items: center;
      width: 116px;
      margin: 24px 0 21px;
    }

    .wc-gold-rule::before,
    .wc-gold-rule::after {
      content: "";
      height: 2px;
      background: var(--wc-gold);
    }

    .wc-gold-rule::before { width: 94px; }
    .wc-gold-rule::after { width: 12px; }

    .wc-gold-rule i {
      width: 11px;
      height: 11px;
      margin: 0 -1px;
      background: var(--wc-gold);
      transform: rotate(45deg);
      clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
    }

    .wc-intro {
      max-width: 360px;
      margin: 0;
      color: rgba(255,255,255,.95);
      font-size: 17px;
      line-height: 1.56;
    }

    .wc-actions {
      display: grid;
      width: min(330px, 100%);
      gap: 15px;
      margin-top: 28px;
    }

    .wc-button {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      min-height: 56px;
      padding: 0 29px;
      border: 1px solid transparent;
      border-radius: 8px;
      text-decoration: none;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .wc-button:hover { transform: translateY(-2px); }

    .wc-button svg {
      width: 26px;
      height: 26px;
      margin-right: 21px;
      flex: 0 0 auto;
    }

    .wc-button span {
      font-size: 17px;
      font-weight: 700;
      line-height: 1;
    }

    .wc-button--primary {
      color: #fff;
      border-color: var(--wc-red);
      background: linear-gradient(135deg, #cc1029, #b60b21);
      box-shadow: 0 7px 19px rgba(117,3,20,.2);
    }

    .wc-button--outline {
      color: #fff;
      border-color: var(--wc-gold);
      background: rgba(4,49,93,.4);
    }

    .wc-button--outline:hover { background: rgba(255,255,255,.08); }

    .wc-disclaimer {
      display: flex;
      align-items: center;
      gap: 13px;
      max-width: 350px;
      margin: 31px 0 0;
      color: rgba(255,255,255,.92);
      font-size: 12.5px;
      line-height: 1.34;
    }

    .wc-disclaimer svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--wc-gold);
    }

    .wc-eye-art {
      position: absolute;
      z-index: 2;
      left: 27.8%;
      bottom: 44px;
      width: 14.8%;
      min-width: 190px;
      color: var(--wc-gold);
      opacity: .9;
    }

    .wc-eye-art svg { display: block; width: 100%; height: auto; }

    .wc-journey {
      position: absolute;
      z-index: 3;
      inset: 0 0 0 44.2%;
    }

    .wc-path {
      position: absolute;
      left: 2.7%;
      top: 17px;
      width: 24.5%;
      height: calc(100% - 26px);
      overflow: visible;
      pointer-events: none;
    }

    .wc-step {
      position: absolute;
      display: grid;
      grid-template-columns: 54px minmax(280px, 1fr);
      align-items: center;
      column-gap: 27px;
      width: min(530px, 51%);
    }

    .wc-step--1 { top: 63px; left: 24.3%; }
    .wc-step--2 { top: 214px; left: 32.6%; }
    .wc-step--3 { top: 365px; left: 26.0%; }
    .wc-step--4 { top: 500px; left: 21.5%; }

    .wc-icon {
      display: grid;
      place-items: center;
      width: 82px;
      height: 82px;
      margin-left: -28px;
      border-radius: 50%;
      color: var(--wc-ink);
      background: rgba(255,255,255,.98);
      box-shadow: 0 5px 12px rgba(8,32,57,.2), inset 0 0 0 1px rgba(7,47,94,.04);
    }

    .wc-icon svg { width: 46px; height: 46px; overflow: visible; }

    .wc-step-copy { min-width: 0; }

    .wc-step-title {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin: 0 0 10px;
      color: var(--wc-ink);
      font-size: 17px;
      line-height: 1.15;
      white-space: nowrap;
    }

    .wc-step-title b {
      font-size: 19px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .wc-step-title span { font-weight: 700; }

    .wc-step-copy p {
      max-width: 335px;
      margin: 0;
      color: #30353b;
      font-size: 15px;
      line-height: 1.43;
    }

    .wc-support {
      position: absolute;
      right: 2.45%;
      bottom: 36px;
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 275px;
      min-height: 80px;
      padding: 15px 28px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #c51028, #ad091f);
      box-shadow: 0 8px 20px rgba(120,8,24,.3);
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .wc-support:hover {
      transform: translateY(-2px);
      box-shadow: 0 11px 24px rgba(120,8,24,.36);
    }

    .wc-support svg { width: 38px; height: 38px; flex: 0 0 auto; }

    .wc-support span {
      max-width: 155px;
      text-align: left;
      font-size: 15.5px;
      font-weight: 600;
      line-height: 1.28;
    }

    .wc-step-dot {
      position: absolute;
      z-index: 5;
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border: 2px solid rgba(184,14,37,.45);
      border-radius: 50%;
      background: #fff;
      transform: translate(-50%, -50%);
    }

    .wc-step-dot::after {
      content: attr(data-number);
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #fff;
      background: var(--wc-red);
      font-size: 19px;
      font-weight: 700;
    }

    /* Keep every number centred on the exact x-position of the SVG path. */
    .wc-step-dot--1 { left: 10.75%; top: 95px; }
    .wc-step-dot--2 { left: 22.52%; top: 245px; }
    .wc-step-dot--3 { left: 8.42%; top: 395px; }
    .wc-step-dot--4 {
      left: 3.95%;
      top: 530px;
      border-color: rgba(14,75,137,.45);
    }

    .wc-step-dot--4::after { background: var(--wc-navy); }

    @media (max-width: 1500px) {
      .wc-shell { min-height: 600px; }
      .wc-copy { top: 52px; }
      .wc-intro { font-size: 15.5px; max-width: 325px; }
      .wc-actions { width: 300px; margin-top: 23px; gap: 12px; }
      .wc-button { min-height: 52px; padding: 0 24px; }
      .wc-button span { font-size: 15px; }
      .wc-disclaimer { margin-top: 24px; font-size: 11.5px; }
      .wc-step { grid-template-columns: 50px minmax(255px,1fr); column-gap: 18px; }
      .wc-icon { width: 70px; height: 70px; margin-left: -20px; }
      .wc-icon svg { width: 40px; height: 40px; }
      .wc-step-title { font-size: 15px; gap: 12px; }
      .wc-step-title b { font-size: 17px; }
      .wc-step-copy p { font-size: 13.5px; }
      .wc-support { min-width: 240px; min-height: 68px; right: 2%; bottom: 30px; padding: 12px 22px; }
      .wc-support svg { width: 32px; height: 32px; }
      .wc-support span { font-size: 14px; }
    }

    @media (max-width: 1150px) and (min-width: 781px) {
      .wc-section { padding-inline: 8px; }
      .wc-copy { left: 3.5%; width: 37%; }
      .wc-title { font-size: 40px; }
      .wc-intro { font-size: 14px; max-width: 290px; }
      .wc-actions { width: 270px; }
      .wc-button { min-height: 48px; padding-inline: 20px; }
      .wc-button svg { width: 22px; height: 22px; margin-right: 14px; }
      .wc-eye-art { min-width: 155px; bottom: 55px; }
      .wc-step { width: 56%; }
      .wc-step--1 { left: 24%; }
      .wc-step--2 { left: 30%; }
      .wc-step--3 { left: 25%; }
      .wc-step-title { white-space: normal; }
      .wc-support { min-width: 205px; padding-inline: 18px; gap: 12px; }
      .wc-support span { max-width: 130px; font-size: 12.5px; }
    }

    @media (max-width: 780px) {
      .wc-section { padding: 0; }
      .wc-shell {
        height: auto;
        min-height: 0;
        border-radius: 0;
        background: linear-gradient(135deg, #fff, #f2f9fd);
      }

      .wc-desktop-bg, .wc-path { display: none; }

      .wc-copy {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: 190px;
        padding: 13px 22px 25px;
        overflow: hidden;
        text-align: center;
        background:
          radial-gradient(circle at 88% 23%, rgba(10,77,139,.42), transparent 27%),
          linear-gradient(135deg, #063b71, #032d59);
        border-radius: 0 0 48% 11% / 0 0 14% 10%;
      }

      .wc-copy::before {
        content: "";
        position: absolute;
        inset: auto 0 5px 0;
        height: 80px;
        opacity: .19;
        background: repeating-radial-gradient(ellipse at 70% 120%, transparent 0 9px, #d7a94b 10px 11px, transparent 12px 18px);
        pointer-events: none;
      }

      .wc-kicker {
        justify-content: center;
        width: 66%;
        gap: 9px;
        margin-bottom: 7px;
        font-size: 11px;
      }

      .wc-kicker::before { width: 29px; }

      .wc-title {
        position: relative;
        z-index: 2;
        width: 66%;
        max-width: 430px;
        margin: 0;
        font-size: clamp(27px, 6.2vw, 38px);
        line-height: .98;
        white-space: nowrap;
      }

      .wc-gold-rule {
        justify-content: center;
        width: 62px;
        margin: 9px 0 8px calc(33% - 31px);
      }

      .wc-gold-rule::before { width: 40px; }
      .wc-gold-rule::after { width: 9px; }

      .wc-intro {
        position: relative;
        z-index: 2;
        width: 66%;
        max-width: 400px;
        margin: 0;
        font-size: 12.5px;
        line-height: 1.38;
        white-space: nowrap;
      }

      .wc-actions, .wc-disclaimer { display: none; }

      .wc-eye-art {
        left: auto;
        right: 2.5%;
        top: 10px;
        bottom: auto;
        width: 27%;
        min-width: 124px;
        opacity: .44;
      }

      .wc-journey {
        --wc-mobile-row: 56px;
        --wc-mobile-line-x: 54px;
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 8px 90px;
      }

      .wc-journey::before {
        content: "";
        position: absolute;
        top: calc(8px + var(--wc-mobile-row) * .5);
        bottom: auto;
        left: var(--wc-mobile-line-x);
        width: 3px;
        height: calc(var(--wc-mobile-row) * 3);
        border-radius: 6px;
        background: linear-gradient(to bottom, var(--wc-red) 0 66%, #7a2340 70%, var(--wc-navy) 78% 100%);
        box-shadow: 0 0 8px rgba(184,14,37,.15);
      }

      .wc-journey::after {
        content: none;
      }

      .wc-step {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 55px minmax(0,1fr);
        width: 100%;
        min-height: var(--wc-mobile-row);
        padding: 6px 0 5px;
        border-bottom: 1px solid var(--wc-line);
        column-gap: 16px;
      }

      .wc-step:last-of-type { border-bottom: 0; }

      .wc-icon {
        width: 54px;
        height: 54px;
        margin: 0;
        box-shadow: 0 4px 10px rgba(7,47,94,.17), inset 0 0 0 1px rgba(7,47,94,.04);
      }

      .wc-icon svg { width: 34px; height: 34px; }

      .wc-step-title {
        gap: 14px;
        margin-bottom: 3px;
        font-size: 13px;
        line-height: 1.18;
        white-space: normal;
      }

      .wc-step-title b { min-width: 25px; font-size: 14px; }
      .wc-step-copy p { max-width: none; font-size: 11.5px; line-height: 1.22; }

      .wc-step-dot {
        left: var(--wc-mobile-line-x);
        width: 19px;
        height: 19px;
        border-width: 1px;
      }

      .wc-step-dot--1 { top: calc(8px + var(--wc-mobile-row) * .5); }
      .wc-step-dot--2 { top: calc(8px + var(--wc-mobile-row) * 1.5); }
      .wc-step-dot--3 { top: calc(8px + var(--wc-mobile-row) * 2.5); }
      .wc-step-dot--4 { top: calc(8px + var(--wc-mobile-row) * 3.5); }

      .wc-step-dot::after {
        width: 14px;
        height: 14px;
        font-size: 7px;
      }

      .wc-support {
        display: none;
      }

      .wc-support svg { width: 21px; height: 21px; }
      .wc-support span { max-width: none; font-size: 10.5px; white-space: nowrap; }
      .wc-desktop-only { display: none; }

      .wc-mobile-actions {
        display: grid;
        gap: 9px;
        padding: 0 44px 13px;
      }

      .wc-mobile-actions .wc-button {
        justify-content: center;
        min-height: 43px;
        border-radius: 5px;
        padding: 0 22px;
      }

      .wc-mobile-actions .wc-button svg { width: 23px; height: 23px; margin-right: 18px; }
      .wc-mobile-actions .wc-button span { font-size: 14.5px; }

      .wc-mobile-actions .wc-button--outline {
        color: var(--wc-ink);
        border: 2px solid var(--wc-ink);
        background: transparent;
      }

      .wc-mobile-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 22px 10px;
        color: var(--wc-ink);
        font-size: 10.5px;
        text-align: center;
      }

      .wc-mobile-note svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--wc-gold); }
    }

    @media (min-width: 781px) {
      .wc-mobile-actions, .wc-mobile-note { display: none; }
    }

    @media (max-width: 520px) {
      .wc-copy {
        min-height: 190px;
        padding: 12px 16px 25px;
        border-radius: 0 0 50% 10% / 0 0 13% 9%;
      }
      .wc-kicker { width: 66%; font-size: 10px; }
      .wc-title { width: 66%; max-width: none; font-size: clamp(24px, 6.9vw, 29px); }
      .wc-gold-rule { margin-left: calc(33% - 31px); }
      .wc-intro { width: 66%; max-width: none; font-size: clamp(10px, 2.72vw, 11.3px); line-height: 1.34; }
      .wc-eye-art { right: -2%; top: 17px; bottom: auto; min-width: 106px; opacity: .42; }
      .wc-journey {
        --wc-mobile-row: 43px;
        --wc-mobile-line-x: 34px;
        padding: 7px 12px 9px 62px;
      }
      .wc-journey::before {
        top: calc(7px + var(--wc-mobile-row) * .5);
        width: 2.5px;
        height: calc(var(--wc-mobile-row) * 3);
      }
      .wc-step {
        grid-template-columns: 39px minmax(0,1fr);
        min-height: var(--wc-mobile-row);
        padding: 4px 0 3px;
        gap: 9px;
      }
      .wc-icon { width: 38px; height: 38px; }
      .wc-icon svg { width: 25px; height: 25px; }
      .wc-eye-art { top: 17px; bottom: auto; }
      .wc-step-dot--1 { top: calc(7px + var(--wc-mobile-row) * .5); }
      .wc-step-dot--2 { top: calc(7px + var(--wc-mobile-row) * 1.5); }
      .wc-step-dot--3 { top: calc(7px + var(--wc-mobile-row) * 2.5); }
      .wc-step-dot--4 { top: calc(7px + var(--wc-mobile-row) * 3.5); }
      .wc-step-dot { width: 16px; height: 16px; }
      .wc-step-dot::after { width: 12px; height: 12px; font-size: 6px; }
      .wc-step-title { gap: 7px; margin-bottom: 1px; font-size: 10.6px; }
      .wc-step-title b { min-width: 20px; font-size: 10.8px; }
      .wc-step-copy p { font-size: 8.8px; line-height: 1.16; }
      .wc-mobile-actions { padding-inline: 25px; }
      .wc-mobile-note { font-size: 9.3px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    }

    /* =====================================================
       Facilities Section â€” Glassmorphism Cards Style
       ===================================================== */
    @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&display=swap');

    .gf-section {
      position: relative;
    }

    .gf-wrap {
      position: relative;
      width: calc(100% - 32px);
      max-width: 1480px;
      margin: 0 auto;
      padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
      border-radius: 28px;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(ellipse 80% 60% at 15% 0%, rgba(232, 169, 61, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 100%, rgba(197, 15, 41, 0.18), transparent 55%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(11, 60, 115, 0.9), rgba(6, 38, 75, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 30px 70px -20px rgba(6, 38, 75, 0.55),
        0 0 0 1px rgba(232, 169, 61, 0.08) inset;
    }

    .gf-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 40%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 40%, transparent 100%);
      pointer-events: none;
    }

    .gf-inner {
      width: min(100%, 1340px);
      margin: 0 auto;
    }

    .gf-filters {
      width: min(100%, 1340px);
      margin: 0 auto clamp(18px, 2.2vw, 28px);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }

    .gf-filter-chip {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      color: rgba(255, 255, 255, 0.78);
      font-family: 'Barlow Condensed', Inter, sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.01em;
      line-height: 1.2;
      white-space: nowrap;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.28s cubic-bezier(.22,1,.36,1);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.05) inset,
        0 6px 16px -8px rgba(2, 12, 30, 0.5);
    }

    .gf-filter-chip svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      opacity: 0.85;
    }

    .gf-filter-chip:hover {
      color: #fff;
      border-color: rgba(232, 169, 61, 0.35);
      background: linear-gradient(145deg, rgba(232,169,61,0.10), rgba(255,255,255,0.04));
      transform: translateY(-1px);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 10px 22px -10px rgba(232, 169, 61, 0.35);
    }

    .gf-filter-chip.active {
      color: #fff;
      border-color: transparent;
      background:
        linear-gradient(135deg, rgba(181, 13, 43, 0.95), rgba(6, 38, 75, 0.98));
      box-shadow:
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 12px 28px -10px rgba(181, 13, 43, 0.55),
        0 0 0 1px rgba(232, 169, 61, 0.35);
      transform: translateY(-1px);
    }

    .gf-filter-chip.active::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 20% 0%, rgba(232,169,61,0.28), transparent 55%);
      pointer-events: none;
    }

    .gf-filter-chip.active svg {
      color: #e8a93d;
      opacity: 1;
    }

    .gf-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(16px, 2vw, 22px);
    }

    .gf-empty-state {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
      padding: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 40px);
      margin: clamp(8px, 1vw, 16px) 0;
      border-radius: 22px;
      background:
        radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,169,61,0.12), transparent 60%),
        linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
      border: 1px dashed rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      animation: gfEmptyFadeIn 0.35s cubic-bezier(.22,1,.36,1) both;
    }

    @keyframes gfEmptyFadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .gf-empty-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e8a93d;
      background:
        radial-gradient(circle at 30% 20%, rgba(232,169,61,0.28), transparent 60%),
        linear-gradient(135deg, rgba(181,13,43,0.22), rgba(6,38,75,0.30));
      border: 1px solid rgba(232, 169, 61, 0.30);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 16px 30px -14px rgba(181, 13, 43, 0.45);
      margin-bottom: 4px;
    }

    .gf-empty-icon svg {
      width: 28px;
      height: 28px;
    }

    .gf-empty-title {
      font-family: 'Barlow Condensed', Georgia, serif;
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 28px);
      letter-spacing: 0.01em;
      color: #fff;
      margin: 0;
    }

    .gf-empty-desc {
      font-size: clamp(13.5px, 1.2vw, 15px);
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.68);
      max-width: 440px;
      margin: 0;
    }

    .gf-empty-btn {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      color: #fff;
      font-family: 'Barlow Condensed', Inter, sans-serif;
      font-weight: 600;
      font-size: 14.5px;
      letter-spacing: 0.02em;
      background: linear-gradient(135deg, #b50d2b, #06264b);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.18) inset,
        0 12px 26px -10px rgba(181, 13, 43, 0.6),
        0 0 0 1px rgba(232, 169, 61, 0.35);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }

    .gf-empty-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.20) inset,
        0 16px 30px -10px rgba(181, 13, 43, 0.7),
        0 0 0 1px rgba(232, 169, 61, 0.45);
    }

    .gf-empty-btn svg {
      width: 16px;
      height: 16px;
      color: #e8a93d;
    }

    .gf-card {
      position: relative;
      min-width: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 22px;
      isolation: isolate;
      background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
      box-shadow:
        0 18px 40px -12px rgba(2, 12, 30, 0.55),
        0 1px 0 rgba(255,255,255,0.08) inset;
      transition: transform 0.5s cubic-bezier(.22,1,.36,1),
                  box-shadow 0.5s cubic-bezier(.22,1,.36,1),
                  border-color 0.4s ease,
                  opacity 0.25s ease;
    }

    .gf-card.is-hidden {
      display: none !important;
    }

    .gf-card[hidden] {
      display: none !important;
    }

    .gf-card-glow {
      position: absolute;
      z-index: 0;
      inset: -1px;
      border-radius: 22px;
      padding: 1px;
      background: linear-gradient(135deg,
        rgba(232, 169, 61, 0) 0%,
        rgba(232, 169, 61, 0.55) 40%,
        rgba(197, 15, 41, 0.45) 70%,
        rgba(197, 15, 41, 0) 100%);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .gf-card:hover {
      transform: translateY(-8px) scale(1.015);
      border-color: rgba(232, 169, 61, 0.35);
      box-shadow:
        0 35px 60px -15px rgba(2, 12, 30, 0.7),
        0 0 40px -5px rgba(232, 169, 61, 0.25),
        0 1px 0 rgba(255,255,255,0.12) inset;
    }

    .gf-card:hover .gf-card-glow {
      opacity: 1;
    }

    .gf-card-media {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .gf-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s cubic-bezier(.22,1,.36,1), filter 0.6s ease;
      filter: saturate(1.05) contrast(1.02);
    }

    .gf-card:hover .gf-card-media img {
      transform: scale(1.08);
      filter: saturate(1.2) contrast(1.05);
    }

    .gf-card-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6,38,75,0) 40%, rgba(6,38,75,0.75) 100%),
        linear-gradient(135deg, rgba(232,169,61,0.12), rgba(197,15,41,0.08));
      pointer-events: none;
    }

    .gf-card-body {
      position: relative;
      z-index: 1;
      flex: 1;
      padding: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gf-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(232, 169, 61, 0.95), rgba(197, 15, 41, 0.9)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 50%);
      box-shadow:
        0 8px 20px -6px rgba(232, 169, 61, 0.55),
        0 1px 0 rgba(255,255,255,0.25) inset;
    }

    .gf-card-icon svg {
      width: 22px;
      height: 22px;
    }

    .gf-card-title {
      margin: 2px 0 0;
      color: #ffffff;
      font-family: 'Barlow Condensed', 'Oswald', Georgia, serif;
      font-size: clamp(20px, 2.2vw, 24px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: 0.3px;
    }

    .gf-card-desc {
      margin: 0;
      color: rgba(214, 224, 240, 0.82);
      font-size: clamp(13px, 1.3vw, 14.5px);
      line-height: 1.55;
    }

    .gf-footer {
      margin-top: clamp(26px, 3.5vw, 40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }

    .gf-cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 52px;
      padding: 0 clamp(28px, 3.5vw, 38px);
      border-radius: 16px;
      text-decoration: none;
      font-family: 'Barlow Condensed', 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.4px;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(135deg, rgba(232, 169, 61, 0.22), rgba(197, 15, 41, 0.18)),
        rgba(255,255,255,0.06);
      border: 1px solid rgba(232, 169, 61, 0.45);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        0 12px 30px -10px rgba(232, 169, 61, 0.55),
        0 1px 0 rgba(255,255,255,0.15) inset;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .gf-cta::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background: linear-gradient(135deg, #e8a93d 0%, #c50f29 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gf-cta svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.35s ease;
    }

    .gf-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 220, 150, 0.7);
      box-shadow:
        0 22px 40px -12px rgba(232, 169, 61, 0.7),
        0 1px 0 rgba(255,255,255,0.2) inset;
    }

    .gf-cta:hover::before { opacity: 1; }
    .gf-cta:hover svg { transform: translateX(4px); }

    .gf-note {
      margin: 0;
      max-width: 560px;
      color: rgba(180, 196, 220, 0.72);
      font-size: 12px;
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .gf-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .gf-wrap {
        width: calc(100% - 24px);
        border-radius: 24px;
        padding: 30px 18px;
      }
      .gf-filters { gap: 8px; }
      .gf-filter-chip {
        padding: 8px 14px;
        font-size: 13.5px;
      }
      .gf-filter-chip svg { width: 14px; height: 14px; }
      .gf-cards { gap: 14px; }
      .gf-empty-state { padding: 32px 18px; border-radius: 20px; }
      .gf-empty-icon { width: 56px; height: 56px; border-radius: 16px; }
      .gf-empty-icon svg { width: 24px; height: 24px; }
      .gf-card-icon { width: 40px; height: 40px; border-radius: 12px; }
      .gf-card-icon svg { width: 20px; height: 20px; }
      .gf-card:hover { transform: translateY(-5px) scale(1.01); }
    }

    @media (max-width: 640px) {
      .gf-wrap {
        width: calc(100% - 20px);
        border-radius: 20px;
        padding: 24px 14px;
      }
      .gf-filters {
        gap: 6px;
        margin-bottom: 20px;
      }
      .gf-filter-chip {
        padding: 7px 12px;
        font-size: 12.5px;
      }
      .gf-filter-chip svg { width: 13px; height: 13px; }
      .gf-cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
      }
      .gf-empty-state { padding: 26px 14px; gap: 10px; border-radius: 18px; }
      .gf-empty-icon { width: 52px; height: 52px; border-radius: 14px; }
      .gf-empty-icon svg { width: 22px; height: 22px; }
      .gf-empty-btn { padding: 10px 18px; font-size: 13.5px; }
      .gf-card-title { font-size: 20px; }
      .gf-card-desc { font-size: 13.5px; }
      .gf-footer { margin-top: 24px; gap: 10px; }
      .gf-cta {
        min-height: 48px;
        width: 100%;
        padding: 0 20px;
        font-size: 16px;
      }
    }

    @media (max-width: 360px) {
      .gf-wrap { padding: 20px 12px; }
      .gf-filter-chip {
        padding: 6px 10px;
        font-size: 11.5px;
      }
      .gf-empty-state { padding: 22px 12px; }
      .gf-empty-title { font-size: 20px; }
      .gf-empty-desc { font-size: 12.5px; }
      .gf-card-title { font-size: 18px; }
      .gf-cta { font-size: 15px; }
    }

    .branches-section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: clamp(28px, 4vw, 56px) 5vw 42px;
      background:
        radial-gradient(circle at 56% 48%, rgba(225, 240, 255, .45), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff 76%, #fbfdff 100%);
    }

    .branches-section::before {
      content: "";
      position: absolute;
      z-index: -1;
      left: -112px;
      bottom: 0;
      width: 232px;
      height: 326px;
      border: 2px solid #bfe0fa;
      border-radius: 52% 48% 48% 52%;
      box-shadow:
        11px 0 0 -9px #cae6fb,
        22px 0 0 -18px #cae6fb,
        34px 0 0 -27px #cae6fb,
        47px 0 0 -37px #cae6fb;
      transform: rotate(-13deg);
      opacity: .85;
    }

    .branches-section::after {
      content: "";
      position: absolute;
      z-index: -1;
      right: -58px;
      bottom: -74px;
      width: 250px;
      height: 224px;
      border-radius: 100% 0 0 0;
      background: linear-gradient(145deg, #d80936 0%, #a90022 74%);
      border-left: 2px solid #d1a459;
      transform: rotate(-8deg);
    }

    .branches-filters {
      width: min(1380px, 100%);
      margin: 0 auto 28px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      flex-wrap: wrap;
    }

    .branches-view-all {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 0 5px;
      color: #042552;
      border-bottom: 1px solid #b50025;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Barlow Condensed', Inter, sans-serif;
      letter-spacing: .01em;
    }

    .branches-view-all svg {
      width: 22px;
      height: 22px;
      color: #b50025;
    }

/* =====================================================
   Appointment Process Section
   ===================================================== */

.jn-process {
  --maroon: #a71930;
  --maroon-dark: #861326;
  --maroon-soft: #f9ebee;
  --navy: #123b66;
  --navy-dark: #082846;
  --navy-soft: #edf5fb;
  --gold: #d6a33c;
  --gold-light: #f2d89c;
  --ink: #243343;
  --muted: #667483;
  --line: #dfe7ed;
  --white: #ffffff;
  --cream: #fbfaf7;
  --shadow: 0 22px 60px rgba(9, 45, 80, .12);
  --shadow-small: 0 12px 32px rgba(9, 45, 80, .09);
  --radius: 24px;
  --container: 1240px;

  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 24px;
  background:
    radial-gradient(circle at 7% 13%, rgba(214, 163, 60, .13), transparent 25%),
    radial-gradient(circle at 94% 83%, rgba(167, 25, 48, .08), transparent 24%),
    linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--navy-soft) 100%);
}

.jn-process::before,
.jn-process::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.jn-process::before {
  width: 380px;
  height: 380px;
  top: -230px;
  right: -150px;
  border: 1px solid rgba(18, 59, 102, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(18, 59, 102, .025), 0 0 0 110px rgba(18, 59, 102, .018);
}

.jn-process::after {
  width: 160px;
  height: 160px;
  left: -75px;
  bottom: 42px;
  border: 28px solid rgba(167, 25, 48, .035);
  border-radius: 50%;
}

.jn-process__container {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.jn-process__header {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .62fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: end;
  margin-bottom: 48px;
}

.jn-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jn-process__eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.jn-process__title {
  max-width: 700px;
  margin: 0;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.jn-process__title span { color: var(--maroon); }

.jn-process__intro {
  margin: 0 0 3px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.jn-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.jn-process__track {
  position: absolute;
  top: 53px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 163, 60, .35) 32%, rgba(18, 59, 102, .25) 68%, var(--maroon));
}

.jn-process__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 34px 25px 28px;
  border: 1px solid rgba(18, 59, 102, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.jn-process__card::after {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(18, 59, 102, .07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 18px rgba(18, 59, 102, .022);
}

.jn-process__card:hover,
.jn-process__card:focus-within {
  border-color: rgba(167, 25, 48, .22);
  box-shadow: 0 26px 54px rgba(9, 45, 80, .15);
  transform: translateY(-7px);
}

.jn-process__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.jn-process__icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  border: 1px solid rgba(18, 59, 102, .1);
  border-radius: 20px;
  color: var(--navy);
  background: linear-gradient(145deg, var(--white), var(--navy-soft));
  box-shadow: 0 10px 22px rgba(9, 45, 80, .1);
}

.jn-process__card:nth-of-type(2) .jn-process__icon,
.jn-process__card:nth-of-type(4) .jn-process__icon {
  color: var(--maroon);
  background: linear-gradient(145deg, var(--white), var(--maroon-soft));
}

.jn-process__icon svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.jn-process__number {
  color: rgba(18, 59, 102, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}

.jn-process__card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 11px;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.2;
}

.jn-process__card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.jn-process__status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.jn-process__status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 163, 60, .14);
  content: "";
}

.jn-process__footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  margin-top: 26px;
  padding: 27px 30px;
  border: 1px solid rgba(214, 163, 60, .25);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 60%, #174b7f);
  box-shadow: var(--shadow);
}

.jn-process__footer::after {
  position: absolute;
  right: 18%;
  bottom: -78px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, .025);
  content: "";
}

.jn-process__footer-copy {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: center;
}

.jn-process__shield {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(242, 216, 156, .3);
  border-radius: 15px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .07);
}

.jn-process__shield svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.jn-process__footer strong { display: block; margin-bottom: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; }
.jn-process__footer p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.55; }

.jn-process__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 11px;
  align-items: center;
}

.jn-process__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.jn-process__button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.jn-process__button:hover { transform: translateY(-2px); }
.jn-process__button:focus-visible { outline: 3px solid rgba(242, 216, 156, .45); outline-offset: 3px; }
.jn-process__button--call { border-color: rgba(255, 255, 255, .22); color: var(--white); background: rgba(255, 255, 255, .08); }
.jn-process__button--call:hover { background: rgba(255, 255, 255, .14); }
.jn-process__button--book { color: var(--white); background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); box-shadow: 0 12px 24px rgba(74, 2, 15, .28); }
.jn-process__button--book:hover { box-shadow: 0 15px 30px rgba(74, 2, 15, .36); }

.jn-process [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.jn-process [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .jn-process__header { grid-template-columns: 1fr; gap: 22px; }
  .jn-process__intro { max-width: 720px; }
  .jn-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jn-process__track { display: none; }
  .jn-process__footer { grid-template-columns: 1fr; }
  .jn-process__actions { padding-left: 66px; }
}

@media (max-width: 650px) {
  .jn-process { padding: 62px 16px; }
  .jn-process__header { margin-bottom: 30px; }
  .jn-process__title { font-size: clamp(35px, 11vw, 48px); }
  .jn-process__intro { padding-left: 18px; font-size: 15px; }
  .jn-process__steps { grid-template-columns: 1fr; gap: 13px; }
  .jn-process__card { display: grid; grid-template-columns: 62px 1fr auto; column-gap: 15px; align-items: center; padding: 20px; border-radius: 20px; }
  .jn-process__topline { display: contents; }
  .jn-process__icon { grid-column: 1; grid-row: 1 / span 3; width: 60px; height: 60px; border-radius: 17px; }
  .jn-process__icon svg { width: 29px; height: 29px; }
  .jn-process__number { grid-column: 3; grid-row: 1; align-self: start; font-size: 32px; }
  .jn-process__card h3 { grid-column: 2; grid-row: 1; align-self: end; padding-right: 5px; font-size: 19px; }
  .jn-process__card p { grid-column: 2 / 4; grid-row: 2; margin-top: 5px; padding-right: 8px; font-size: 13.5px; }
  .jn-process__status { grid-column: 2 / 4; grid-row: 3; margin-top: 12px; font-size: 10.5px; }
  .jn-process__footer { gap: 21px; padding: 24px 20px; border-radius: 21px; }
  .jn-process__footer-copy { align-items: flex-start; }
  .jn-process__footer strong { font-size: 18px; }
  .jn-process__actions { display: grid; grid-template-columns: 1fr; padding-left: 0; }
  .jn-process__button { width: 100%; }
}

@media (max-width: 390px) {
  .jn-process__card { grid-template-columns: 54px 1fr auto; gap: 11px; padding: 17px 15px; }
  .jn-process__icon { width: 52px; height: 52px; }
  .jn-process__card h3 { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .jn-process *, .jn-process *::before, .jn-process *::after { transition-duration: .01ms !important; }
  .jn-process [data-reveal] { opacity: 1; transform: none; }
}

/* =====================================================
   FAQ Section
   ===================================================== */

.section-with-header.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section {
  --f-navy: #062754;
  --f-navy-2: #0a377a;
  --f-red: #b50025;
  --f-red-2: #c90a26;
  --f-gold: #d5a75d;
  --f-line: rgba(6, 39, 84, .14);
  --f-line-soft: rgba(6, 39, 84, .08);

  max-width: min(1360px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.6vw, 30px) clamp(18px, 4vw, 56px) clamp(42px, 5.8vw, 72px);
  box-sizing: border-box;
  color: var(--f-navy);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(233, 241, 253, .25) 0%, rgba(255, 248, 240, .5) 55%, rgba(248, 251, 255, .7) 100%);
}

.faq-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(64px);
  opacity: .55;
  border-radius: 50%;
}

.faq-blob--top-left {
  left: -80px;
  top: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, #bddcff 0%, rgba(189, 220, 255, 0) 60%);
}

.faq-blob--bottom-right {
  right: -60px;
  bottom: -20px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 70% 70%, #ffd5d9 0%, rgba(255, 213, 217, 0) 60%);
}

.faq-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.faq-deco-eye--left {
  left: 3%;
  bottom: 10%;
  width: clamp(130px, 18vw, 210px);
  opacity: .7;
}

.faq-deco-eye--right {
  right: 4%;
  top: 16%;
  width: clamp(170px, 24vw, 290px);
  opacity: .85;
}

.faq-deco-sparkle {
  right: 17%;
  top: 30%;
  width: clamp(20px, 2.4vw, 28px);
  height: clamp(20px, 2.4vw, 28px);
}

.faq-dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 96px;
  height: 64px;
  background-size: 14px 14px;
  background-repeat: repeat;
  border-radius: 2px;
  opacity: .95;
}

.faq-dots--navy-left {
  left: 4%;
  top: 38%;
  background-image:
    radial-gradient(circle, rgba(6, 39, 84, .45) 1.2px, transparent 1.6px);
}

.faq-dots--red-right {
  right: 6%;
  bottom: 22%;
  background-image:
    radial-gradient(circle, rgba(201, 10, 38, .5) 1.2px, transparent 1.6px);
}

.faq-shell {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: clamp(28px, 3.2vw, 44px) auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(24px, 3.4vw, 56px);
}

/* ---------- LEFT COLUMN ---------- */

.faq-left__header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.sh-eyebrow--left {
  justify-content: flex-start !important;
  width: fit-content !important;
  margin: 0 0 16px !important;
}

.sh-eyebrow--left::after {
  content: "";
  display: block;
  margin-top: 14px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--f-red-2) 0 42%, var(--f-navy) 42% 100%);
}

.faq-title {
  font-family: 'Georgia', 'Times New Roman', 'Noto Serif', serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--f-navy);
  margin: 0 0 14px;
}

.faq-lead {
  margin: 0;
  max-width: 42ch;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: rgba(6, 39, 84, .78);
}

.faq-help-card--desktop {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(6, 39, 84, .12);
  box-shadow:
    0 18px 36px -26px rgba(6, 39, 84, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
}

.faq-help-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.faq-help-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 10, 38, .08);
  border: 1.5px solid rgba(201, 10, 38, .38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.faq-help-icon svg {
  width: 22px;
  height: 22px;
  color: var(--f-red-2);
}

.faq-help-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-help-label {
  margin: 0;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(6, 39, 84, .62);
}

.faq-help-phone {
  text-decoration: none;
  color: var(--f-navy);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .01em;
}

.faq-help-phone:hover {
  color: var(--f-red-2);
}

.faq-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #ffffff;
  background: linear-gradient(90deg, var(--f-red-2) 0%, var(--f-red) 100%);
  box-shadow:
    0 14px 28px -16px rgba(201, 10, 38, .6),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .25s ease, filter .25s ease;
  width: 100%;
  box-sizing: border-box;
}

.faq-help-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.faq-help-card--mobile {
  display: none;
}

/* ---------- RIGHT COLUMN: ACCORDION ---------- */

.faq-right {
  position: relative;
  z-index: 1;
}

.faq-accordion {
  border-radius: clamp(14px, 2vw, 20px);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(6, 39, 84, .1);
  box-shadow:
    0 28px 64px -42px rgba(6, 39, 84, .3),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  overflow: hidden;
  position: relative;
}

.faq-accordion::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--f-red-2) 0%, var(--f-gold) 100%);
  z-index: 2;
}

.faq-item {
  border-top: 1px solid var(--f-line-soft);
  margin: 0;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.2vw, 28px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  transition: background .25s ease;
  user-select: none;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary:hover {
  background: rgba(6, 39, 84, .025);
}

.faq-item[open] > .faq-item__summary {
  background:
    linear-gradient(180deg, rgba(213, 231, 254, .35) 0%, rgba(213, 231, 254, .1) 100%);
}

.faq-item__num {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1;
  color: var(--f-red-2);
  letter-spacing: .01em;
  padding-right: 16px;
  border-right: 1px solid rgba(6, 39, 84, .12);
  min-width: 30px;
  text-align: left;
}

.faq-item[open] .faq-item__num {
  color: var(--f-navy);
}

.faq-item__q {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.22;
  letter-spacing: .005em;
  color: var(--f-navy);
}

.faq-item__toggle {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 39, 84, .04);
  border: 1.2px solid rgba(6, 39, 84, .16);
  position: relative;
  transition: all .25s ease;
}

.faq-toggle-sign {
  position: relative;
  width: 14px;
  height: 14px;
  color: var(--f-navy);
}

.faq-t-h,
.faq-t-v {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  transform: translateY(-50%);
  background: currentColor;
  transition: all .25s ease;
}

.faq-t-v {
  left: 50%;
  right: auto;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
  transform: translateX(-50%);
}

.faq-item[open] .faq-item__toggle {
  background: rgba(201, 10, 38, .08);
  border-color: rgba(201, 10, 38, .42);
  color: var(--f-red-2);
}

.faq-item[open] .faq-item__toggle .faq-t-v {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-item__body {
  padding: 0 clamp(18px, 2.2vw, 28px) clamp(20px, 2.2vw, 26px);
  margin-left: calc(16px + 30px + 16px);
  border-left: 2px solid rgba(201, 10, 38, .3);
  padding-left: 16px;
}

.faq-item__body p {
  margin: 0;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(13.5px, 1.25vw, 15px);
  line-height: 1.65;
  color: rgba(6, 39, 84, .8);
}

.faq-item[open] .faq-item__body {
  animation: faq-slide-down .28s cubic-bezier(.2, .8, .2, 1);
}

@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- FAQ: mobile responsive ---------- */

@media (max-width: 960px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(22px, 4vw, 36px);
  }

  .faq-title {
    font-size: clamp(30px, 7vw, 42px);
  }

  .faq-deco-eye--left {
    bottom: 0;
    opacity: .4;
  }

  .faq-deco-eye--right {
    top: 4%;
    opacity: .5;
  }

  .faq-dots--navy-left,
  .faq-dots--red-right {
    opacity: .5;
  }
}

@media (max-width: 720px) {
  .faq-section {
    padding: 12px 16px 42px;
  }

  .faq-help-card--desktop {
    display: none;
  }

  .faq-help-card--mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(24px, 4.6vw, 36px);
    padding: 14px 14px 14px 14px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--f-navy) 0%, var(--f-navy-2) 100%);
    color: #ffffff;
    box-shadow:
      0 22px 40px -22px rgba(6, 39, 84, .5),
      inset 0 1px 0 rgba(255, 255, 255, .1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }

  .faq-m-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
  }

  .faq-m-cta-icon svg {
    width: 22px;
    height: 22px;
  }

  .faq-m-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 160px;
    min-width: 0;
  }

  .faq-m-cta-label {
    margin: 0;
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
  }

  .faq-m-cta-phone {
    text-decoration: none;
    color: #ffffff;
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .01em;
  }

  .faq-m-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #ffffff;
    background: linear-gradient(90deg, var(--f-red-2) 0%, var(--f-red) 100%);
    box-shadow:
      0 14px 28px -16px rgba(0, 0, 0, .4),
      inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .25s ease, filter .25s ease;
    flex: none;
  }

  .faq-m-cta-btn svg {
    width: 18px;
    height: 18px;
  }

  .faq-m-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
  }

  .faq-accordion {
    border-radius: 14px;
  }

  .faq-item__summary {
    padding: 16px 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 12px;
  }

  .faq-item__num {
    font-size: 17px;
    padding-right: 12px;
    min-width: 24px;
  }

  .faq-item__q {
    font-size: 16px;
    line-height: 1.3;
  }

  .faq-item__toggle {
    width: 30px;
    height: 30px;
  }

  .faq-item__body {
    margin-left: calc(12px + 24px + 12px);
    padding: 0 14px 18px;
    padding-left: 12px;
  }

  .sh-eyebrow--left::after {
    width: 100px;
  }
}

@media (max-width: 420px) {
  .faq-m-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


    .branches-filter-group {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      height: 41px;
      min-width: 320px;
      border: 1px solid #d0d3d9;
      border-radius: 15px;
      background: rgba(255, 255, 255, .86);
    }

    .branches-filter-btn {
      border: 0;
      border-right: 1px solid #d0d3d9;
      color: #4d5058;
      background: transparent;
      cursor: pointer;
      transition: .22s ease;
      font-family: 'Barlow Condensed', Inter, sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .02em;
    }

    .branches-filter-btn:last-child { border-right: 0; }

    .branches-filter-btn.active {
      color: #fff;
      background: linear-gradient(135deg, #07366f, #002557);
      border-radius: 14px;
      box-shadow: 0 4px 10px rgba(4, 43, 97, .18);
    }

    .branches-inner {
      width: min(1380px, 100%);
      margin: 0 auto;
    }

    .branches-desktop {
      display: grid;
      grid-template-columns: minmax(445px, 595px) minmax(540px, 1fr);
      gap: 38px;
      align-items: start;
    }

    .branches-feature-card {
      overflow: hidden;
      border: 1px solid #e1e5e9;
      border-radius: 17px;
      background: #fff;
      box-shadow: 0 9px 24px rgba(14, 35, 66, .12);
    }

    .branches-feature-photo {
      position: relative;
      height: 260px;
      overflow: hidden;
      background: #dce9f2;
    }

    .branches-feature-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .branches-feature-card:hover .branches-feature-photo img {
      transform: scale(1.04);
    }

    .branches-feature-content { padding: 14px 19px 16px; }

    .branches-feature-content h3,
    .branches-info h3,
    .branches-mobile-card h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: #042552;
      letter-spacing: -.015em;
    }

    .branches-feature-content h3 { font-size: 24px; }

    .branches-meta-row {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-top: 11px;
      color: #555861;
      font-size: 15px;
      line-height: 1.25;
    }

    .branches-meta-row svg {
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
      color: #b50025;
    }

    .branches-feature-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 17px;
      margin-top: 18px;
    }

    .branches-btn {
      min-height: 45px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1.5px solid #062b61;
      color: #042552;
      background: #fff;
      font-weight: 700;
      font-family: 'Barlow Condensed', Inter, sans-serif;
      font-size: 15px;
      letter-spacing: .02em;
      text-decoration: none;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
    }

    .branches-btn svg { width: 20px; height: 20px; }

    .branches-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(14, 35, 66, .1); }

    .branches-btn-outline:hover {
      background: #062b61;
      color: #fff;
      border-color: #062b61;
    }

    .branches-btn-primary {
      border-color: #b50025;
      color: #fff;
      background: linear-gradient(135deg, #bc0028, #a90022);
      box-shadow: 0 7px 14px rgba(181, 0, 37, .13);
    }

    .branches-btn-primary:hover {
      background: linear-gradient(135deg, #d10030, #bc0028);
      box-shadow: 0 9px 18px rgba(181, 0, 37, .2);
    }

    .branches-verification-note {
      display: flex;
      align-items: center;
      gap: 13px;
      margin: 14px 0 0 20px;
      color: #52555d;
      font-size: 13px;
    }

    .branches-verification-note svg { width: 19px; height: 19px; color: #d5a75d; }

    .branches-list {
      display: grid;
      gap: 14px;
    }

    .branches-row {
      position: relative;
      display: grid;
      grid-template-columns: 210px 1fr 28px;
      gap: 17px;
      align-items: center;
      min-height: 136px;
      padding: 12px 19px 12px 16px;
      overflow: hidden;
      border: 1px solid #d9dde2;
      border-radius: 17px;
      background: rgba(255, 255, 255, .91);
      cursor: pointer;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .branches-row:hover {
      transform: translateY(-1px);
      border-color: #b8c3d1;
      box-shadow: 0 8px 19px rgba(21, 48, 80, .08);
    }

    .branches-row.selected {
      grid-template-columns: 50px 179px 1fr 28px;
      padding-left: 0;
      border: 2px solid #b50025;
      box-shadow: none;
      background: linear-gradient(135deg, rgba(181,0,37,.02), rgba(255,255,255,1));
    }

    .branches-selected-rail {
      align-self: stretch;
      display: none;
      place-items: center;
      margin: -12px 0;
      color: #fff;
      background: linear-gradient(180deg, #bc002a, #af0025);
    }

    .branches-row.selected .branches-selected-rail { display: grid; }

    .branches-check {
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
    }

    .branches-check svg { width: 17px; height: 17px; color: #b50025; }

    .branches-row-photo {
      width: 100%;
      height: 110px;
      border-radius: 11px;
      object-fit: cover;
      background: #e4edf3;
      transition: transform .4s ease;
    }

    .branches-row:hover .branches-row-photo { transform: scale(1.03); }

    .branches-info { min-width: 0; }

    .branches-titleline {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 12px;
    }

    .branches-type-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 73px;
      padding: 6px 12px;
      border-radius: 9px;
      color: #fff;
      background: linear-gradient(135deg, #062b61, #042552);
      font-family: 'Barlow Condensed', Inter, sans-serif;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: .04em;
    }

    .branches-type-pill-gold {
      background: linear-gradient(135deg, #e8a93d, #d5a75d);
      color: #042552;
    }

    .branches-row.selected .branches-type-pill { background: linear-gradient(135deg, #bc0028, #a90022); }
    .branches-row.selected .branches-type-pill-gold { background: linear-gradient(135deg, #e8a93d, #d5a75d); color: #042552; }

    .branches-info h3 { font-size: 20px; }

    .branches-info .branches-meta-row {
      margin-top: 8px;
      font-size: 15px;
    }

    .branches-row-arrow {
      color: #062b61;
      font-family: 'Barlow Condensed', Arial, sans-serif;
      font-size: 42px;
      font-weight: 500;
      line-height: 1;
      text-align: center;
      transition: transform .2s ease, color .2s ease;
    }

    .branches-row:hover .branches-row-arrow { transform: translateX(3px); }
    .branches-row.selected .branches-row-arrow { color: #b50025; transform: translateX(5px); }

    .branches-mobile { display: none; }

    @media (max-width: 1120px) {
      .branches-section { padding-inline: 32px; }
      .branches-desktop { grid-template-columns: minmax(400px, .86fr) 1.14fr; gap: 24px; }
      .branches-row { grid-template-columns: 165px 1fr 24px; }
      .branches-row.selected { grid-template-columns: 44px 150px 1fr 24px; }
      .branches-titleline { gap: 11px; }
      .branches-info h3 { font-size: 18px; }
    }

    @media (max-width: 860px) {
      .branches-section {
        min-height: auto;
        padding: 29px 24px 38px;
      }

      .branches-section::after { display: none; }
      .branches-section::before { left: -155px; bottom: 10%; opacity: .45; }
      .branches-desktop { display: none; }
      .branches-filters { display: none; }
      .branches-mobile { display: block; }

      .branches-mobile-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
      }

      .branches-mobile-card {
        overflow: hidden;
        border: 1px solid #e1e4e8;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 9px 24px rgba(14, 35, 66, .12);
        transition: transform .25s ease, box-shadow .25s ease;
      }

      .branches-mobile-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(14, 35, 66, .15);
      }

      .branches-mobile-card[hidden] { display: none; }

      .branches-mobile-photo {
        position: relative;
        height: 145px;
        overflow: hidden;
        background: #e2edf4;
      }

      .branches-mobile-photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease;
      }

      .branches-mobile-card:hover .branches-mobile-photo img { transform: scale(1.06); }

      .branches-mobile-card-body { padding: 13px 17px 14px; }
      .branches-mobile-card h3 { font-size: 21px; }
      .branches-mobile-card .branches-meta-row { margin-top: 9px; font-size: 14px; gap: 12px; }

      .branches-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-top: 15px;
      }

      .branches-mobile-actions .branches-btn { min-height: 40px; font-size: 14px; }
      .branches-mobile-actions .branches-btn svg { width: 18px; height: 18px; }
    }

    @media (max-width: 640px) {
      .branches-section { padding: 25px 18px 32px; }
      .branches-mobile-cards { grid-template-columns: 1fr; gap: 18px; }
      .branches-mobile-photo { height: clamp(145px, 43vw, 205px); }
      .branches-mobile-card-body { padding: 14px 16px 16px; }
    }

    @media (max-width: 380px) {
      .branches-section { padding-inline: 14px; }
      .branches-filter-group { font-size: 13px; }
      .branches-mobile-actions { gap: 8px; }
      .branches-mobile-actions .branches-btn { font-size: 13px; }
    }

    /* =====================================================
       Appointment Process Section
       ===================================================== */

    .appointment-process {
      position: relative;
      width: 100%;
      min-height: 605px;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 51% 42%, rgba(255, 255, 255, .98) 0 21%, rgba(255, 255, 255, 0) 56%),
        linear-gradient(112deg, #f7fbff 0%, #ffffff 46%, #f2f8fd 100%);
      border-bottom: 1px solid #d8e2eb;
    }

    .appointment-process::before,
    .appointment-process::after {
      position: absolute;
      z-index: -1;
      border-radius: 50%;
      content: "";
      pointer-events: none;
    }

    .appointment-process::before {
      width: 590px;
      height: 590px;
      top: -198px;
      right: -132px;
      border: 1px solid rgba(126, 179, 221, .08);
      background: radial-gradient(circle, rgba(217, 234, 247, .12), rgba(255, 255, 255, 0) 69%);
    }

    .appointment-process::after {
      width: 560px;
      height: 300px;
      bottom: -230px;
      left: -140px;
      background: rgba(214, 231, 246, .44);
      transform: rotate(-8deg);
    }

    .ap-shell {
      position: relative;
      z-index: 2;
      width: min(100%, 1540px);
      min-height: 605px;
      margin: 0 auto;
      padding: 30px 46px 22px;
    }

    .ap-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      width: 100%;
      margin: 16px auto 0;
    }

    .ap-step {
      position: relative;
      min-width: 0;
      padding: 0 20px;
      text-align: center;
    }

    .ap-step:not(:last-child)::after {
      position: absolute;
      z-index: -1;
      top: 53px;
      left: calc(50% + 66px);
      width: calc(100% - 132px);
      height: 2px;
      background: #062754;
      content: "";
    }

    .ap-step:not(:last-child)::before {
      position: absolute;
      z-index: 1;
      top: 48px;
      right: 66px;
      width: 9px;
      height: 9px;
      border-top: 2px solid #062754;
      border-right: 2px solid #062754;
      content: "";
      transform: rotate(45deg);
    }

    .ap-step:nth-child(2)::after {
      background: linear-gradient(90deg, #062754 0 84%, #be0922 84% 100%);
    }

    .ap-step:nth-child(3)::after {
      background: linear-gradient(90deg, #be0922 0 18%, #062754 18% 100%);
    }

    .ap-icon-wrap {
      position: relative;
      display: grid;
      width: 108px;
      height: 108px;
      margin: 0 auto;
      place-items: center;
      border: 3px solid #062754;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      color: #062754;
      box-shadow: 0 7px 12px rgba(12, 52, 92, .11);
    }

    .ap-step:first-child .ap-icon-wrap {
      border-width: 2px;
      border-color: #72baf0;
      color: #368fd7;
    }

    .ap-step--active .ap-icon-wrap {
      border-color: #be0922;
      color: #be0922;
      box-shadow:
        0 7px 12px rgba(135, 13, 31, .18),
        0 0 0 8px rgba(190, 9, 34, .07),
        0 0 26px rgba(190, 9, 34, .15);
    }

    .ap-icon {
      display: block;
      width: 61px;
      height: 61px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 2.25;
    }

    .ap-step-title {
      margin: 12px 0 3px;
      color: #062754;
      font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: .02em;
      line-height: 1.25;
    }

    .ap-step--active .ap-step-title {
      color: #be0922;
    }

    .ap-step-copy {
      max-width: 260px;
      margin: 0 auto;
      color: #193861;
      font-family: "DM Sans", Arial, Helvetica, sans-serif;
      font-size: 15.5px;
      font-weight: 400;
      line-height: 1.42;
    }

    .ap-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 24px;
    }

    .ap-cta {
      display: inline-flex;
      min-width: 268px;
      min-height: 47px;
      align-items: center;
      justify-content: center;
      padding: 11px 30px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(180deg, #c90a26 0%, #b70720 100%);
      box-shadow: 0 8px 15px rgba(160, 7, 30, .23);
      color: #ffffff;
      font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .025em;
      text-decoration: none;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }

    .ap-cta:hover {
      filter: brightness(1.06);
      transform: translateY(-2px);
      box-shadow: 0 11px 21px rgba(160, 7, 30, .28);
    }

    .ap-cta:focus-visible,
    .ap-step:focus-visible {
      outline: 3px solid rgba(59, 152, 228, .42);
      outline-offset: 4px;
    }

    .ap-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      margin: 13px 0 0;
      color: #16355e;
      font-family: "DM Sans", Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.3;
      text-align: center;
    }

    .ap-note svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      fill: none;
      stroke: #be0922;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.8;
    }

    .ap-eye {
      position: absolute;
      z-index: -1;
      top: 25px;
      right: 4px;
      width: 330px;
      height: 192px;
      color: #b9d5eb;
      opacity: .19;
      pointer-events: none;
    }

    .ap-petal {
      position: absolute;
      z-index: -1;
      width: 94px;
      height: 94px;
      color: #c6253e;
      opacity: .23;
      pointer-events: none;
    }

    .ap-petal--top {
      top: 13px;
      right: 8px;
      transform: rotate(90deg);
    }

    .ap-petal--bottom {
      bottom: 5px;
      left: 17px;
      transform: rotate(-18deg);
    }

    .ap-dots {
      position: absolute;
      z-index: -1;
      display: grid;
      grid-template-columns: repeat(4, 7px);
      gap: 13px;
      pointer-events: none;
    }

    .ap-dots i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
    }

    .ap-dots--red {
      top: 59px;
      left: 27px;
      color: #bf1833;
      opacity: .44;
    }

    .ap-dots--blue {
      right: 26px;
      bottom: 28px;
      grid-template-columns: repeat(5, 7px);
      color: #98c0df;
      opacity: .28;
    }

    .ap-mobile-chevron {
      display: none;
    }

    @media (max-width: 1100px) and (min-width: 721px) {
      .ap-shell {
        padding-right: 22px;
        padding-left: 22px;
      }

      .ap-step {
        padding-right: 10px;
        padding-left: 10px;
      }

      .ap-step:not(:last-child)::after {
        left: calc(50% + 56px);
        width: calc(100% - 112px);
      }

      .ap-icon-wrap {
        width: 94px;
        height: 94px;
      }

      .ap-step:not(:last-child)::after {
        top: 76px;
      }

      .ap-step:not(:last-child)::before {
        top: 71px;
        right: 56px;
      }

      .ap-icon {
        width: 53px;
        height: 53px;
      }

      .ap-step-title {
        font-size: 19px;
      }

      .ap-step-copy {
        font-size: 14px;
      }
    }

    @media (max-width: 720px) {
      .appointment-process {
        width: min(100%, 680px);
        min-height: 0;
        margin: 0 auto;
        border: 1px solid #e2ebf2;
        border-radius: 15px;
        background:
          radial-gradient(circle at 48% 35%, rgba(255,255,255,.96) 0 18%, rgba(255,255,255,0) 58%),
          linear-gradient(115deg, #f8fcff 0%, #ffffff 48%, #f2f8fc 100%);
        box-shadow: 0 6px 17px rgba(11, 46, 78, .19);
      }

      .appointment-process::before,
      .appointment-process::after,
      .ap-petal,
      .ap-dots {
        display: none;
      }

      .ap-shell {
        width: 100%;
        min-height: 0;
        padding: 13px 21px 15px;
      }

      .ap-eye {
        top: 12px;
        right: -2px;
        width: 139px;
        height: 82px;
        opacity: .15;
      }

      .ap-steps {
        display: block;
        margin-top: 4px;
      }

      .ap-step {
        display: grid;
        grid-template-columns: 62px minmax(0, 1fr) 22px;
        min-height: 78px;
        align-items: center;
        padding: 0;
        text-align: left;
      }

      .ap-step:not(:last-child)::after {
        z-index: -1;
        top: 57px;
        left: 29px;
        width: 2px;
        height: 43px;
        background: #062754;
      }

      .ap-step:not(:last-child)::before {
        display: none;
      }

      .ap-step:nth-child(2)::after {
        background: linear-gradient(180deg, #062754 0 76%, #be0922 76% 100%);
      }

      .ap-step:nth-child(3)::after {
        background: linear-gradient(180deg, #be0922 0 22%, #062754 22% 100%);
      }

      .ap-icon-wrap {
        grid-column: 1;
        grid-row: 1;
        width: 60px;
        height: 60px;
        margin: 0;
        border-width: 2px;
        box-shadow: 0 4px 7px rgba(12, 52, 92, .08);
      }

      .ap-step:first-child .ap-icon-wrap {
        border-width: 1.5px;
      }

      .ap-step--active .ap-icon-wrap {
        box-shadow: 0 4px 8px rgba(135, 13, 31, .12);
      }

      .ap-icon {
        width: 39px;
        height: 39px;
      }

      .ap-step-body {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        margin-left: 17px;
        border-bottom: 1px solid #dce7ef;
      }

      .ap-step:last-child .ap-step-body {
        border-bottom: 0;
      }

      .ap-step-title {
        margin: 0 0 2px;
        font-size: clamp(16px, 4vw, 19px);
        line-height: 1.23;
      }

      .ap-step-copy {
        max-width: none;
        margin: 0;
        padding: 0 4px 8px 0;
        font-size: clamp(11.5px, 3.15vw, 14.5px);
        line-height: 1.35;
      }

      .ap-desktop-break {
        display: none;
      }

      .ap-mobile-chevron {
        display: block;
        grid-column: 3;
        grid-row: 1;
        width: 10px;
        height: 10px;
        margin-left: auto;
        border-top: 2px solid #062754;
        border-right: 2px solid #062754;
        transform: rotate(45deg);
      }

      .ap-footer {
        margin-top: 10px;
      }

      .ap-cta {
        width: 100%;
        min-height: 48px;
        border-radius: 8px;
        font-size: clamp(17px, 4.4vw, 20px);
      }

      .ap-note {
        align-items: flex-start;
        gap: 9px;
        margin-top: 13px;
        padding: 0 7px;
        font-size: clamp(11px, 3vw, 14px);
        text-align: left;
      }

      .ap-note svg {
        width: 22px;
        height: 22px;
        margin-top: -2px;
      }
    }

    @media (max-width: 390px) {
      .ap-shell {
        padding-right: 14px;
        padding-left: 14px;
      }

      .ap-step {
        grid-template-columns: 34px 54px minmax(0, 1fr) 17px;
        min-height: 76px;
      }

      .ap-icon-wrap {
        width: 52px;
        height: 52px;
      }

      .ap-icon {
        width: 34px;
        height: 34px;
      }

      .ap-step:not(:last-child)::after {
        top: 52px;
        left: 60px;
        height: 47px;
      }

      .ap-step-body {
        margin-left: 12px;
      }

      .ap-step-title {
        font-size: 15px;
      }

      .ap-step-copy {
        font-size: 11px;
      }
    }


/* ==========================================================================
   DOCTORS SECTION â€” Premium Glassmorphism Redesign
   ========================================================================== */

.doctors-section {
    position: relative;
    padding: 72px 0 56px;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(232, 169, 61, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 55%, #eef3fa 100%);
    overflow: hidden;
}

.doctors-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 82%, rgba(6, 38, 75, 0.05) 0%, transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(181, 13, 43, 0.05) 0%, transparent 28%);
    pointer-events: none;
}

.doctors-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}

.pill-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px 7px 14px;
    border-radius: 999px;
    background: rgba(232, 169, 61, 0.12);
    border: 1px solid rgba(232, 169, 61, 0.35);
    color: #a1741e;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.pill-eyebrow svg {
    width: 14px;
    height: 14px;
    color: #e8a93d;
}

.doctors-head h2 {
    margin: 16px 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #06264b 0%, #0a3a72 50%, #06264b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.doctors-head p {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6b84;
    max-width: 560px;
    margin: 0 auto;
}

.doctors-shell {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== Grid ====== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    max-width: 1060px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .doctors-grid { gap: 30px; }
}

/* ====== Doctor Card ====== */
.doctor-card {
    position: relative;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 30px -12px rgba(6, 38, 75, 0.18),
        0 2px 8px -4px rgba(6, 38, 75, 0.08);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1),
                box-shadow 0.45s cubic-bezier(.2,.8,.2,1);
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 110px;
    background:
        linear-gradient(135deg, rgba(6, 38, 75, 0.92) 0%, rgba(10, 58, 114, 0.88) 48%, rgba(181, 13, 43, 0.82) 100%);
    z-index: 0;
}

.doctor-card::after {
    content: '';
    position: absolute;
    top: -60px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 169, 61, 0.22) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 22px 48px -18px rgba(6, 38, 75, 0.28),
        0 4px 14px -6px rgba(6, 38, 75, 0.1);
}

.doctor-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 26px;
    text-align: center;
}

/* Portrait */
.doctor-portrait {
    position: relative;
    margin-top: 26px;
    width: 142px;
    height: 178px;
    flex-shrink: 0;
}

.portrait-frame {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(145deg, #e8a93d 0%, #f6d58a 45%, #c98f28 100%);
    box-shadow:
        0 8px 22px -6px rgba(6, 38, 75, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.45) inset;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    background: #eaeef3;
}

.doctor-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff8e6 0%, #ffecc2 100%);
    border: 1px solid rgba(232, 169, 61, 0.5);
    color: #8c6214;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px -4px rgba(232, 169, 61, 0.5);
}

.doctor-badge svg {
    width: 11px;
    height: 11px;
    color: #e8a93d;
}

/* Info */
.doctor-info {
    width: 100%;
    margin-top: 24px;
}

.doctor-name {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #06264b;
    letter-spacing: -0.005em;
}

.doctor-role {
    margin: 6px 0 0;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #8c3a16;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.doctor-divider {
    width: 46px;
    height: 2px;
    margin: 14px auto;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, #e8a93d 50%, transparent 100%);
}

.doctor-bio {
    margin: 0 0 16px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #52617a;
    min-height: 44px;
}

.doctor-branches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.branch-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(6, 38, 75, 0.05);
    border: 1px solid rgba(6, 38, 75, 0.12);
    color: #06264b;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ====== Empty state ====== */
.doctors-empty {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.doctors-empty-card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 42px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(6, 38, 75, 0.22);
    backdrop-filter: blur(10px);
}

.doctors-empty-card svg {
    width: 48px;
    height: 48px;
    color: #b50d2b;
    margin-bottom: 14px;
}

.doctors-empty-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #06264b;
}

.doctors-empty-card p {
    margin: 0 0 18px;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    color: #5a6b84;
    line-height: 1.55;
}

/* ====== CTA Bar ====== */
.doctors-cta {
    margin-top: 40px;
}

.doctors-cta-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 28px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(6, 38, 75, 0.96) 0%, rgba(10, 58, 114, 0.94) 55%, rgba(181, 13, 43, 0.9) 100%);
    box-shadow:
        0 20px 50px -24px rgba(6, 38, 75, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
    position: relative;
    overflow: hidden;
}

.doctors-cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 169, 61, 0.22) 0%, transparent 70%);
}

.doctors-cta-text {
    position: relative;
    z-index: 1;
}

.doctors-cta-text h4 {
    margin: 0 0 3px;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.005em;
}

.doctors-cta-text p {
    margin: 0;
    font-family: system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.74);
}

.doctors-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.doc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.doc-cta-btn svg {
    width: 15px;
    height: 15px;
}

.doc-cta-btn.primary {
    background: linear-gradient(180deg, #f5c26a 0%, #e8a93d 100%);
    color: #3e2a06;
    box-shadow: 0 6px 16px -6px rgba(232, 169, 61, 0.8);
}

.doc-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(232, 169, 61, 0.9);
}

.doc-cta-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.doc-cta-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 820px) {
    .doctors-section { padding: 56px 0 44px; }
    .doctors-head { margin-bottom: 34px; }
    .doctors-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px;
    }
    .doctors-cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
    .doctors-section { padding: 44px 0 36px; }
    .doctor-portrait { width: 128px; height: 160px; }
    .doctor-name { font-size: 20px; }
    .doctors-cta-actions { flex-direction: column; width: 100%; }
    .doc-cta-btn { justify-content: center; }
}

/* ============================================================
   Hero Branch Buttons
   ============================================================ */
.branch-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-branch-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 10px 18px 10px 10px;
    border: 1.5px solid rgba(232, 169, 61, 0.35);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8, 47, 94, 0.65) 0%, rgba(181, 13, 43, 0.55) 100%);
    color: #fff;
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
    flex: 1 1 220px;
    max-width: 100%;
}

.hero-branch-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(232, 169, 61, 0.6), rgba(255, 255, 255, 0.15), rgba(238, 54, 82, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-branch-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 169, 61, 0.7);
    box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, rgba(8, 47, 94, 0.8) 0%, rgba(181, 13, 43, 0.7) 100%);
}

.hero-branch-btn:hover::before {
    opacity: 1;
}

.hero-branch-btn.active {
    border-color: rgba(232, 169, 61, 0.95);
    background: linear-gradient(135deg, rgba(6, 38, 75, 0.9) 0%, rgba(158, 8, 36, 0.85) 100%);
    box-shadow: 0 10px 28px -8px rgba(232, 169, 61, 0.35);
}

.hero-branch-btn.active::before {
    opacity: 1;
}

.hero-branch-btn.active::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8a93d;
    box-shadow: 0 0 0 3px rgba(232, 169, 61, 0.25);
}

.hbb-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8a93d 0%, #d59532 100%);
    color: #3e2a06;
    box-shadow: 0 4px 12px -4px rgba(232, 169, 61, 0.6);
}

.hbb-badge svg {
    width: 22px;
    height: 22px;
}

.hbb-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.hbb-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #fff;
}

.hbb-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Responsive adjustments for hero branches */
@media (max-width: 1100px) {
    .branch-buttons-row {
        gap: 10px;
    }
    .hero-branch-btn {
        flex: 1 1 200px;
        min-height: 56px;
        padding: 9px 14px 9px 9px;
    }
    .hbb-badge {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .hbb-badge svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .branch-buttons-row {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-branch-btn {
        flex: 1 1 auto;
        width: 100%;
    }
    .hero-branch-btn.active::after {
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .hero-branch-btn {
        min-height: 54px;
    }
    .hbb-name {
        font-size: 14.5px;
    }
    .hbb-type {
        font-size: 11.5px;
    }
}

/* Hero branch button hours pill */
.hbb-hours-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    background: rgba(232, 169, 61, 0.18);
    border: 1px solid rgba(232, 169, 61, 0.35);
    color: #f5d89d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hbb-hours-pill svg {
    width: 14px;
    height: 14px;
}

.hero-branch-btn.active .hbb-hours-pill {
    background: rgba(232, 169, 61, 0.28);
    border-color: rgba(232, 169, 61, 0.6);
    color: #ffe6b6;
}

@media (max-width: 640px) {
    .hbb-hours-pill {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }
    .hero-branch-btn {
        flex-wrap: wrap;
    }
    .hbb-content {
        max-width: calc(100% - 58px);
    }
}

/* ============================================================
   Branch Timing Modal
   ============================================================ */
.timing-modal-overlay {
    /* inherits .modal-overlay base */
}

.timing-modal-card {
    position: relative;
    max-width: 472px;
    width: 100%;
    padding: 26px 28px 24px;
    text-align: left;
    background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
    overflow: hidden;
    border-radius: 24px;
    box-sizing: border-box;
}

.timing-modal-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(232, 169, 61, 0.16), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.timing-modal-card::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 60%, rgba(181, 13, 43, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.timing-modal-close {
    position: absolute !important;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(6, 38, 75, 0.12);
    background: rgba(255, 255, 255, 0.92) !important;
    color: #062754;
    font-size: 0;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 12px -4px rgba(6, 38, 75, 0.15);
}

.timing-modal-close:hover {
    background: #b50d2b !important;
    border-color: rgba(181, 13, 43, 0.95);
    color: #fff;
    transform: rotate(90deg) scale(1.04);
    box-shadow: 0 8px 18px -6px rgba(181, 13, 43, 0.45);
}

.timing-modal-close svg {
    width: 18px;
    height: 18px;
}

.timing-modal-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 14px 0 18px;
    padding-right: 44px;
}

.timing-modal-icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #062754 0%, #0c3f82 100%);
    color: #e8a93d;
    box-shadow: 0 14px 32px -14px rgba(6, 38, 75, 0.55),
                inset 0 0 0 1.5px rgba(232, 169, 61, 0.25);
}

.timing-modal-icon svg {
    width: 32px;
    height: 32px;
}

.timing-modal-head-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
}

.timing-modal-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(232, 169, 61, 0.14);
    color: #9b6c11;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    width: fit-content;
}

.timing-modal-title {
    margin: 0;
    color: #062754;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 34px;
    font-weight: 780;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.timing-modal-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 0 0 18px;
    background: linear-gradient(90deg, rgba(6, 38, 75, 0.16), rgba(181, 13, 43, 0.16), rgba(232, 169, 61, 0.22));
    border-radius: 999px;
    opacity: .9;
}

.timing-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
    max-height: 52vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(6, 38, 75, 0.25) transparent;
}

.timing-list::-webkit-scrollbar {
    width: 6px;
}
.timing-list::-webkit-scrollbar-thumb {
    background: rgba(6, 38, 75, 0.25);
    border-radius: 999px;
}

.timing-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 38, 75, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(6, 38, 75, 0.08);
    transition: border-color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
    width: 100%;
    min-height: 72px;
}

.timing-row:hover {
    border-color: rgba(232, 169, 61, 0.4);
    background: linear-gradient(135deg, rgba(232, 169, 61, 0.07) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: translateX(2px);
    box-shadow: 0 8px 22px -14px rgba(232, 169, 61, 0.45);
}

.timing-row.is-closed {
    background: linear-gradient(135deg, rgba(181, 13, 43, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(181, 13, 43, 0.12);
}

.timing-day {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 42%;
}

.timing-day-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(6, 38, 75, 0.1);
    color: #062754;
    box-shadow: 0 2px 6px -2px rgba(6, 38, 75, 0.08);
}

.timing-row.is-closed .timing-day-icon {
    border-color: rgba(181, 13, 43, 0.2);
    color: #b50d2b;
}

.timing-day-icon svg {
    width: 20px;
    height: 20px;
}

.timing-day-label {
    color: #062754;
    font-size: 15px;
    font-weight: 740;
    line-height: 1.15;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timing-value {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-align: right;
}

.timing-value .slot {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 10px;
    background: rgba(6, 38, 75, 0.07);
    color: #0c356b;
    font-size: 13.5px;
    font-weight: 720;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
    white-space: nowrap;
    border: 1px solid rgba(6, 38, 75, 0.06);
    box-sizing: border-box;
}

.timing-value .closed-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(181, 13, 43, 0.11);
    color: #b50d2b;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.timing-modal-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: stretch;
}

.timing-modal-book,
.timing-modal-call {
    min-height: 50px;
    border-radius: 14px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0 18px;
    font-size: 14.5px;
    font-weight: 740;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    user-select: none;
    white-space: nowrap;
}

.timing-modal-book {
    border: 0;
    background: linear-gradient(135deg, #d60831 0%, #b90029 100%);
    color: #fff;
    letter-spacing: 0.005em;
    box-shadow: 0 12px 26px -12px rgba(185, 0, 41, 0.55);
}

.timing-modal-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(185, 0, 41, 0.65);
    filter: brightness(1.05);
}

.timing-modal-book svg {
    width: 20px;
    height: 20px;
}

.timing-modal-call {
    border: 1.5px solid rgba(6, 38, 75, 0.12);
    background: #ffffff;
    color: #062754;
    box-shadow: 0 2px 8px -4px rgba(6, 38, 75, 0.08);
}

.timing-modal-call:hover {
    border-color: rgba(6, 38, 75, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5fd 100%);
    color: #062754;
    transform: translateY(-2px);
}

.timing-modal-call svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .timing-modal-card {
        padding: 20px 18px 18px;
        max-width: 100%;
        border-radius: 22px;
        margin: 14px;
    }

    .timing-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .timing-modal-close svg {
        width: 16px;
        height: 16px;
    }

    .timing-modal-header {
        margin: 8px 0 14px;
        padding-right: 36px;
        gap: 12px;
    }

    .timing-modal-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .timing-modal-icon svg {
        width: 26px;
        height: 26px;
    }

    .timing-modal-title {
        font-size: 27px;
    }

    .timing-list {
        max-height: 48vh;
        margin-bottom: 20px;
    }

    .timing-row {
        flex-wrap: wrap;
        padding: 12px 13px;
        gap: 10px;
        min-height: unset;
    }

    .timing-day {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .timing-value {
        width: 100%;
        flex: 1 1 100%;
        justify-content: flex-start;
    }

    .timing-value .slot {
        padding: 4.5px 10px;
        font-size: 12.5px;
        border-radius: 9px;
    }

    .timing-modal-footer {
        grid-template-columns: 1fr;
    }

    .timing-modal-book,
    .timing-modal-call {
        min-height: 48px;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .timing-modal-card {
        padding: 18px 14px 16px;
    }

    .timing-modal-title {
        font-size: 23px;
    }

    .timing-day-label {
        font-size: 14px;
    }

    .timing-value .slot {
        font-size: 12px;
        padding: 4px 9px;
    }
}
