:root {
    --hc-red: #d51f26;
    --hc-red-dark: #ab1118;
    --hc-navy: #101c31;
    --hc-blue: #377dd3;
    --hc-coral: #f18f82;
    --hc-ink: #131820;
    --hc-muted: #68707d;
    --hc-line: #e3e5e8;
    --hc-soft: #f4f4f3;
    --hc-white: #ffffff;
    --hc-display: "Space Grotesk", sans-serif;
    --hc-body: "Manrope", sans-serif;
    --hc-shadow: 0 24px 70px rgba(16, 28, 49, 0.11);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hc-ink);
    background: var(--hc-white);
    font-family: var(--hc-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 92px;
}

.hc-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: var(--hc-white);
    transition: opacity .4s ease, visibility .4s ease;
}

.hc-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.hc-preloader img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.hc-preloader span {
    width: 120px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--hc-red) 0 46%, #efefef 46% 100%);
    animation: hcLoad 1s ease-in-out infinite alternate;
    transform-origin: left center;
}

@keyframes hcLoad {
    from { transform: scaleX(.28); }
    to { transform: scaleX(1); }
}

.hc-header {
    position: relative;
    z-index: 1000;
}

.hc-topbar {
    color: rgba(255,255,255,.75);
    background: var(--hc-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.hc-topbar__inner,
.hc-topbar__links,
.hc-topbar__right {
    display: flex;
    align-items: center;
}

.hc-topbar__inner {
    min-height: 40px;
    justify-content: space-between;
}

.hc-topbar p {
    margin: 0;
}

.hc-topbar__links {
    gap: 28px;
}

.hc-topbar__right {
    gap: 24px;
}

.hc-language {
    display: inline-flex;
    align-items: center;
    padding: 2px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
}

.hc-language a {
    min-width: 50px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    color: rgba(255,255,255,.58);
    border-radius: 15px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    transition: color .2s ease, background .2s ease;
}

.hc-language a:hover,
.hc-language a.active {
    color: var(--hc-navy);
    background: var(--hc-white);
}

.hc-language__flag {
    width: 18px;
    height: 12px;
    flex: 0 0 18px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,.12);
}

.hc-language__flag--id {
    background: linear-gradient(to bottom, #ce1126 0 50%, #fff 50% 100%);
}

.hc-language__flag--gb {
    background:
        linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
        linear-gradient(transparent 40%, #c8102e 40% 60%, transparent 60%),
        linear-gradient(90deg, transparent 38%, #fff 38% 62%, transparent 62%),
        linear-gradient(transparent 32%, #fff 32% 68%, transparent 68%),
        linear-gradient(32deg, transparent 44%, #fff 44% 56%, transparent 56%),
        linear-gradient(-32deg, transparent 44%, #fff 44% 56%, transparent 56%),
        #012169;
}

.hc-nav__language-mobile {
    display: none;
}

.hc-topbar a,
.hc-topbar p {
    transition: color .25s ease;
}

.hc-topbar a:hover {
    color: var(--hc-white);
}

.hc-topbar i {
    margin-right: 7px;
    color: var(--hc-coral);
}

.hc-nav {
    width: 100%;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(20,24,32,.08);
    transition: box-shadow .25s ease, transform .25s ease;
}

.hc-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 12px 35px rgba(16,28,49,.09);
    animation: hcNavDown .35s ease;
}

@keyframes hcNavDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.hc-nav__inner {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.hc-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.hc-logo img {
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.hc-logo span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.hc-logo b {
    font-family: var(--hc-display);
    font-size: 16px;
    letter-spacing: .015em;
}

.hc-logo small {
    margin-top: 6px;
    color: var(--hc-red);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
}

.hc-nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.hc-nav__menu a {
    position: relative;
    padding: 30px 0 27px;
    color: #303640;
    font-size: 13px;
    font-weight: 800;
}

.hc-nav__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--hc-red);
    transition: width .25s ease;
}

.hc-nav__menu a:hover,
.hc-nav__menu a.active {
    color: var(--hc-red);
}

.hc-nav__menu a:hover::after,
.hc-nav__menu a.active::after {
    width: 100%;
}

.hc-nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: var(--hc-soft);
}

.hc-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--hc-ink);
    transition: transform .25s ease, opacity .25s ease;
}

.hc-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 28px;
    color: var(--hc-white);
    background: var(--hc-red);
    border: 1px solid var(--hc-red);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.hc-button i {
    transition: transform .25s ease;
}

.hc-button:hover {
    color: var(--hc-white);
    background: var(--hc-red-dark);
    border-color: var(--hc-red-dark);
    transform: translateY(-2px);
}

.hc-button:hover i {
    transform: translateX(4px);
}

.hc-button--small {
    min-height: 44px;
    padding: 0 19px;
    white-space: nowrap;
}

.hc-button--ghost {
    color: var(--hc-white);
    background: transparent;
    border-color: rgba(255,255,255,.5);
}

.hc-button--ghost:hover,
.hc-button--white {
    color: var(--hc-red);
    background: var(--hc-white);
    border-color: var(--hc-white);
}

.hc-button--white:hover {
    color: var(--hc-white);
    background: var(--hc-navy);
    border-color: var(--hc-navy);
}

.hc-hero {
    position: relative;
    background: var(--hc-navy);
}

.hc-hero__slide {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hc-hero__media,
.hc-hero__overlay {
    position: absolute;
    inset: 0;
}

.hc-hero__media {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 8s linear;
}

.swiper-slide-active .hc-hero__media {
    transform: scale(1.1);
}

.hc-hero__slide--consulting .hc-hero__media {
    background-image: url("../images/health-captain/2.webp");
    background-position: center 44%;
}

.hc-hero__slide--medical .hc-hero__media {
    background-image: url("../images/health-captain/4.webp");
    background-position: center 34%;
}

.hc-hero__slide--learning .hc-hero__media {
    background-image: url("../images/health-captain/5.webp");
    background-position: center;
}

.hc-hero__overlay {
    background:
        linear-gradient(90deg, rgba(10,20,37,.97) 0%, rgba(10,20,37,.87) 43%, rgba(10,20,37,.4) 68%, rgba(10,20,37,.15) 100%),
        linear-gradient(0deg, rgba(10,20,37,.34), transparent 42%);
}

.hc-hero__slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 430px;
    height: 430px;
    right: -150px;
    top: -170px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 48% 52% 62% 38%;
    box-shadow: 0 0 0 42px rgba(255,255,255,.03), 0 0 0 84px rgba(255,255,255,.02);
    transform: rotate(22deg);
}

.hc-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hc-hero__content {
    width: 100%;
    max-width: 735px;
    padding: 95px 0 125px;
    color: var(--hc-white);
}

.hc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
    color: var(--hc-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hc-eyebrow i {
    width: 26px;
    height: 2px;
    display: inline-block;
    background: currentColor;
}

.hc-eyebrow--light {
    color: #ff888d;
}

.hc-hero__content h1,
.hc-hero__content h2 {
    margin: 0 0 24px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: clamp(48px, 5.15vw, 76px);
    font-weight: 700;
    line-height: .99;
    letter-spacing: -.055em;
}

.hc-hero__content h1 em,
.hc-hero__content h2 em,
.hc-title em,
.hc-medical__heading h3 em {
    color: var(--hc-red);
    font-style: normal;
}

.hc-hero__content h1 em,
.hc-hero__content h2 em {
    color: #ff6b72;
}

.hc-hero__content p {
    max-width: 620px;
    margin: 0 0 34px;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.75;
}

.hc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hc-hero__controls {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 50px;
    display: flex;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.hc-hero__prev,
.hc-hero__next {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    color: var(--hc-white);
    background: rgba(255,255,255,.04);
    pointer-events: auto;
    transition: background .25s ease, border-color .25s ease;
}

.hc-hero__prev:hover,
.hc-hero__next:hover {
    background: var(--hc-red);
    border-color: var(--hc-red);
}

.hc-hero__pagination {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 13px;
    pointer-events: auto;
}

.hc-hero__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    opacity: .55;
    background: var(--hc-white);
    transition: width .25s ease, opacity .25s ease;
}

.hc-hero__pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 20px;
    opacity: 1;
    background: var(--hc-red);
}

.hc-hero__rail {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hc-hero__rail-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.hc-hero__rail-line {
    width: 42px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.hc-intro {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: var(--hc-white);
}

.hc-intro__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--hc-line);
    box-shadow: var(--hc-shadow);
}

.hc-intro-card {
    position: relative;
    min-height: 225px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 22px;
    padding: 42px 40px 32px;
    background: var(--hc-white);
    border-right: 1px solid var(--hc-line);
    overflow: hidden;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.hc-intro-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--hc-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.hc-intro-card:hover {
    z-index: 2;
    transform: translateY(-10px);
}

.hc-intro-card:hover::before {
    transform: scaleX(1);
}

.hc-intro-card__number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #eeeff1;
    font-family: var(--hc-display);
    font-size: 44px;
    font-weight: 700;
}

.hc-intro-card__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-white);
    background: var(--hc-red);
    border-radius: 50%;
    font-size: 20px;
}

.hc-intro-card__icon--blue { background: var(--hc-blue); }
.hc-intro-card__icon--coral { background: var(--hc-coral); }

.hc-intro-card small {
    color: var(--hc-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hc-intro-card h3 {
    margin: 5px 0 7px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.hc-intro-card p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 13px;
    line-height: 1.65;
}

.hc-intro-card__arrow {
    position: absolute;
    right: 19px;
    bottom: 17px;
    color: #a6abb1;
    transform: rotate(45deg);
    transition: color .25s ease, transform .25s ease;
}

.hc-intro-card:hover .hc-intro-card__arrow {
    color: var(--hc-red);
    transform: rotate(90deg);
}

.hc-section {
    position: relative;
    padding: 120px 0;
}

.hc-title {
    margin: 0;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: clamp(39px, 4.1vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.05em;
}

.hc-title--light {
    color: var(--hc-white);
}

.hc-lead {
    color: #343b46;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

.hc-about {
    overflow: hidden;
}

.hc-about::before,
.hc-system::before,
.hc-experience::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 200px;
    border: 1px solid rgba(16,28,49,.07);
    border-radius: 50%;
    transform: rotate(-18deg);
    pointer-events: none;
}

.hc-about::before {
    right: -230px;
    top: 50px;
    box-shadow: 0 0 0 18px rgba(16,28,49,.025), 0 0 0 36px rgba(16,28,49,.018), 0 0 0 54px rgba(16,28,49,.012);
}

.hc-about__visual {
    position: relative;
    max-width: 555px;
    min-height: 610px;
}

.hc-about__image {
    position: absolute;
    inset: 0 50px 30px 0;
    overflow: hidden;
    background: var(--hc-soft);
}

.hc-about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16,28,49,.28), transparent 55%);
}

.hc-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

.hc-about__stamp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    color: var(--hc-white);
    background: var(--hc-red);
    box-shadow: 0 25px 45px rgba(213,31,38,.22);
}

.hc-about__stamp span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
}

.hc-about__stamp b {
    font-family: var(--hc-display);
    font-size: 34px;
    line-height: 1;
}

.hc-about__stamp small {
    margin-top: 14px;
    color: rgba(255,255,255,.65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.hc-about__accent {
    position: absolute;
    left: -16px;
    top: 45px;
    width: 5px;
    height: 125px;
    background: var(--hc-red);
}

.hc-about .hc-title {
    margin-bottom: 25px;
}

.hc-about p:not(.hc-lead) {
    color: var(--hc-muted);
}

.hc-about__quote {
    display: flex;
    gap: 17px;
    margin: 30px 0 27px;
    padding: 22px 25px;
    background: var(--hc-soft);
    border-left: 3px solid var(--hc-red);
}

.hc-about__quote i {
    color: var(--hc-red);
    font-size: 20px;
}

.hc-about__quote p {
    margin: 0;
    color: var(--hc-ink) !important;
    font-family: var(--hc-display);
    font-weight: 600;
}

.hc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    color: var(--hc-red);
    border-bottom: 1px solid rgba(213,31,38,.3);
    font-size: 13px;
    font-weight: 800;
}

.hc-values {
    padding: 110px 0;
    background: var(--hc-soft);
}

.hc-section-heading--center {
    max-width: 730px;
    margin: 0 auto 58px;
    text-align: center;
}

.hc-section-heading--center p {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--hc-muted);
}

.hc-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dbdde0;
    border-left: 1px solid #dbdde0;
}

.hc-value-card {
    position: relative;
    min-height: 285px;
    padding: 37px 30px 30px;
    background: var(--hc-white);
    border-right: 1px solid #dbdde0;
    border-bottom: 1px solid #dbdde0;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hc-value-card:hover {
    z-index: 1;
    transform: translateY(-8px);
    box-shadow: var(--hc-shadow);
}

.hc-value-card > span {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #e4e6e8;
    font-family: var(--hc-display);
    font-size: 44px;
    font-weight: 700;
}

.hc-value-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--hc-red);
    background: rgba(213,31,38,.08);
    border-radius: 50%;
    font-size: 21px;
}

.hc-value-card h3 {
    margin: 0 0 11px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 23px;
}

.hc-value-card p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 13px;
    line-height: 1.75;
}

.hc-value-card--red {
    color: var(--hc-white);
    background: var(--hc-red);
    border-color: var(--hc-red);
}

.hc-value-card--red > span { color: rgba(255,255,255,.17); }
.hc-value-card--red .hc-value-card__icon { color: var(--hc-white); background: rgba(255,255,255,.15); }
.hc-value-card--red h3 { color: var(--hc-white); }
.hc-value-card--red p { color: rgba(255,255,255,.72); }

.hc-services {
    color: var(--hc-white);
    background: var(--hc-navy);
    overflow: hidden;
}

.hc-services::before {
    content: "";
    position: absolute;
    left: -160px;
    top: 70px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 48% 52% 62% 38%;
    box-shadow: 0 0 0 28px rgba(255,255,255,.015), 0 0 0 56px rgba(255,255,255,.012);
    transform: rotate(25deg);
}

.hc-section-heading--split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 58px;
}

.hc-section-heading--split > p {
    margin: 0 0 5px;
    color: var(--hc-muted);
    font-size: 15px;
}

.hc-services .hc-section-heading--split > p {
    color: rgba(255,255,255,.58);
}

.hc-service-panel {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    min-height: 655px;
    background: #16253f;
    border: 1px solid rgba(255,255,255,.08);
}

.hc-service-panel__intro {
    position: relative;
    padding: 52px;
    overflow: hidden;
}

.hc-service-panel__tag {
    display: inline-flex;
    padding: 7px 11px;
    color: #ff848a;
    background: rgba(213,31,38,.12);
    border: 1px solid rgba(213,31,38,.4);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hc-service-panel__intro h3,
.hc-medical__heading h3 {
    margin: 25px 0 18px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.hc-service-panel__intro > p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.hc-service-panel__photo {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 0;
    height: 290px;
    overflow: hidden;
}

.hc-service-panel__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16,28,49,.25), transparent);
}

.hc-service-panel__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hc-service-panel__list {
    border-left: 1px solid rgba(255,255,255,.08);
}

.hc-service-panel__list article {
    min-height: 163px;
    display: grid;
    grid-template-columns: 45px 1fr 24px;
    gap: 20px;
    align-items: start;
    padding: 33px 38px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .25s ease;
}

.hc-service-panel__list article:last-child {
    border-bottom: 0;
}

.hc-service-panel__list article:hover {
    background: rgba(255,255,255,.045);
}

.hc-service-panel__list article > span {
    color: #ff858a;
    font-family: var(--hc-display);
    font-size: 13px;
    font-weight: 700;
}

.hc-service-panel__list h4 {
    margin: 0 0 8px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: 20px;
}

.hc-service-panel__list p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: 13px;
    line-height: 1.65;
}

.hc-service-panel__list article > i {
    margin-top: 5px;
    color: rgba(255,255,255,.35);
    transform: rotate(-45deg);
}

.hc-medical {
    padding-top: 115px;
}

.hc-medical__heading {
    max-width: 690px;
    margin-bottom: 45px;
}

.hc-medical__heading h3 {
    margin-bottom: 0;
    font-size: 46px;
}

.hc-medical__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hc-medical-card {
    padding: 42px 46px;
    color: var(--hc-ink);
    background: var(--hc-white);
}

.hc-medical-card--dark {
    color: var(--hc-white);
    background: #233552;
    border: 1px solid rgba(255,255,255,.08);
}

.hc-medical-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--hc-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hc-medical-card__top i {
    font-size: 28px;
}

.hc-medical-card h4 {
    margin: 12px 0 25px;
    color: inherit;
    font-family: var(--hc-display);
    font-size: 29px;
}

.hc-medical-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hc-medical-card li {
    position: relative;
    padding: 16px 0 16px 23px;
    border-top: 1px solid var(--hc-line);
}

.hc-medical-card--dark li {
    border-color: rgba(255,255,255,.09);
}

.hc-medical-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hc-red);
}

.hc-medical-card li b,
.hc-medical-card li small {
    display: block;
}

.hc-medical-card li b {
    font-size: 14px;
}

.hc-medical-card li small {
    margin-top: 3px;
    color: var(--hc-muted);
    font-size: 11px;
}

.hc-medical-card--dark li small {
    color: rgba(255,255,255,.56);
}

.hc-system {
    background: var(--hc-white);
    overflow: hidden;
}

.hc-system::before {
    left: -250px;
    bottom: 0;
    box-shadow: 0 0 0 18px rgba(16,28,49,.025), 0 0 0 36px rgba(16,28,49,.018);
}

.hc-system__visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px;
    background: var(--hc-soft);
    overflow: hidden;
}

.hc-system__visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: var(--hc-white);
}

.hc-system__visual img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-height: 430px;
    object-fit: contain;
}

.hc-system__label {
    position: absolute;
    z-index: 3;
    left: 25px;
    top: 25px;
    color: var(--hc-red);
    font-family: var(--hc-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .08em;
}

.hc-system .hc-title {
    margin-bottom: 24px;
}

.hc-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 34px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-feature-grid div {
    min-height: 83px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 17px;
    background: var(--hc-white);
    font-size: 12px;
    font-weight: 800;
}

.hc-feature-grid i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-red);
    background: rgba(213,31,38,.07);
    border-radius: 50%;
}

.hc-experience {
    background: var(--hc-soft);
    overflow: hidden;
}

.hc-experience::before {
    right: -230px;
    top: 280px;
    box-shadow: 0 0 0 18px rgba(16,28,49,.025), 0 0 0 36px rgba(16,28,49,.018);
}

.hc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 70px;
    background: var(--hc-white);
    border-top: 1px solid var(--hc-line);
    border-left: 1px solid var(--hc-line);
}

.hc-stats div {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 34px;
    border-right: 1px solid var(--hc-line);
    border-bottom: 1px solid var(--hc-line);
}

.hc-stats strong {
    color: var(--hc-red);
    font-family: var(--hc-display);
    font-size: 44px;
    line-height: 1;
}

.hc-stats span {
    margin-top: 10px;
    color: var(--hc-muted);
    font-size: 11px;
    font-weight: 700;
}

.hc-project-feature {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 475px;
    background: var(--hc-navy);
    overflow: hidden;
}

.hc-project-feature__content {
    position: relative;
    z-index: 2;
    padding: 58px;
}

.hc-project-feature__year {
    display: inline-flex;
    margin-bottom: 23px;
    padding: 8px 12px;
    color: var(--hc-white);
    background: var(--hc-blue);
    border-radius: 4px;
    font-family: var(--hc-display);
    font-size: 16px;
    font-weight: 700;
}

.hc-project-feature__content .hc-eyebrow {
    display: flex;
    width: fit-content;
}

.hc-project-feature h3 {
    max-width: 540px;
    margin: 0 0 18px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.hc-project-feature p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.hc-project-feature__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.hc-project-feature__chips span {
    padding: 7px 12px;
    color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.13);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hc-project-feature__image {
    position: relative;
    min-height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f7f7f6;
    overflow: hidden;
}

.hc-project-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hc-journey-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-journey-list article {
    min-height: 225px;
    padding: 31px 28px;
    background: var(--hc-white);
}

.hc-journey-list span {
    color: var(--hc-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hc-journey-list h4 {
    margin: 17px 0 10px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 19px;
    line-height: 1.25;
}

.hc-journey-list p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 12px;
    line-height: 1.7;
}

.hc-learning {
    background: var(--hc-white);
}

.hc-learning__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hc-learning-card {
    position: relative;
    min-height: 510px;
    background: var(--hc-soft);
    overflow: hidden;
}

.hc-learning-card__number {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-white);
    background: var(--hc-red);
    border-radius: 3px;
    font-family: var(--hc-display);
    font-size: 15px;
    font-weight: 700;
}

.hc-learning-card__image,
.hc-learning-card__abstract {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f0;
}

.hc-learning-card__image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.hc-learning-card__body {
    min-height: 230px;
    padding: 31px 32px;
    background: var(--hc-white);
    border: 1px solid var(--hc-line);
    border-top: 0;
}

.hc-learning-card__body small {
    color: var(--hc-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hc-learning-card__body h3 {
    margin: 9px 0 12px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 25px;
}

.hc-learning-card__body p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 13px;
}

.hc-learning-card--blue {
    background: var(--hc-blue);
}

.hc-learning-card--blue .hc-learning-card__number {
    background: var(--hc-navy);
}

.hc-learning-card__abstract {
    gap: 25px;
    color: var(--hc-white);
    background: var(--hc-blue);
}

.hc-learning-card__abstract i:first-child {
    font-size: 82px;
}

.hc-learning-card__abstract i:last-child {
    font-size: 54px;
}

.hc-events {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    margin-top: 62px;
    color: var(--hc-white);
    background: var(--hc-navy);
}

.hc-events__heading {
    padding: 40px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.hc-events__heading span {
    color: #ff858a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hc-events__heading h3 {
    margin: 10px 0 0;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: 28px;
}

.hc-events__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hc-events__list div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hc-events__list span {
    min-width: 40px;
    color: #ff858a;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .06em;
}

.hc-events__list p {
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: 11px;
    font-weight: 700;
}

.hc-contact {
    position: relative;
    padding: 30px 0 100px;
    background: var(--hc-white);
}

.hc-contact__card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    min-height: 470px;
    color: var(--hc-white);
    background: var(--hc-red);
    overflow: hidden;
}

.hc-contact__card::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -230px;
    width: 480px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255,255,255,.035), 0 0 0 40px rgba(255,255,255,.025), 0 0 0 60px rgba(255,255,255,.015);
}

.hc-contact__content,
.hc-contact__info {
    position: relative;
    z-index: 2;
}

.hc-contact__content {
    padding: 70px;
}

.hc-contact__content .hc-eyebrow {
    color: rgba(255,255,255,.75);
}

.hc-contact__content h2 {
    max-width: 710px;
    margin: 0 0 20px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: clamp(42px, 4.2vw, 59px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.hc-contact__content p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.hc-contact__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    background: rgba(109, 7, 13, .24);
    border-left: 1px solid rgba(255,255,255,.18);
}

.hc-contact__info > a,
.hc-contact__info > div {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-size: 13px;
    font-weight: 700;
}

.hc-contact__info > :last-child {
    border-bottom: 0;
}

.hc-contact__info i {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
}

.hc-contact__info span,
.hc-contact__info small {
    display: block;
}

.hc-contact__info small {
    margin-bottom: 2px;
    color: rgba(255,255,255,.54);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hc-footer {
    color: rgba(255,255,255,.62);
    background: #0b1424;
}

.hc-footer__top {
    min-height: 190px;
    display: grid;
    grid-template-columns: .8fr 1.25fr 1fr;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hc-logo--footer b { color: var(--hc-white); }

.hc-footer__top p {
    margin: 0;
    font-size: 12px;
}

.hc-footer__top nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    color: var(--hc-white);
    font-size: 11px;
    font-weight: 800;
}

.hc-footer__top nav a:hover {
    color: #ff858a;
}

.hc-footer__bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .02em;
}

.hc-footer__bottom a {
    color: var(--hc-white);
    font-weight: 800;
}

.hc-footer__bottom i {
    margin-left: 8px;
    color: #ff858a;
}

.hc-whatsapp {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    color: var(--hc-white);
    background: #24b866;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(22,126,67,.28);
    font-size: 12px;
    font-weight: 800;
    transition: transform .25s ease;
}

.hc-whatsapp i {
    font-size: 21px;
}

.hc-whatsapp:hover {
    color: var(--hc-white);
    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .hc-nav__menu { gap: 19px; }
    .hc-nav__menu a { font-size: 12px; }
    .hc-nav__inner > .hc-button { display: none; }
    .hc-intro-card { padding-left: 26px; padding-right: 26px; }
    .hc-about__visual { min-height: 550px; }
    .hc-service-panel__intro { padding: 42px; }
    .hc-service-panel__photo { left: 42px; right: 42px; }
    .hc-contact__content { padding: 55px; }
    .hc-contact__info { padding: 40px; }
}

@media (max-width: 991px) {
    .hc-topbar { display: none; }
    .hc-nav__inner { min-height: 72px; }
    .hc-nav__toggle { display: block; margin-left: auto; }
    .hc-nav__menu {
        position: fixed;
        z-index: 999;
        top: 72px;
        right: 0;
        bottom: 0;
        width: min(86vw, 380px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 25px 35px;
        background: var(--hc-white);
        box-shadow: -20px 20px 50px rgba(16,28,49,.15);
        transform: translateX(105%);
        transition: transform .3s ease;
    }
    .hc-nav__menu.is-open { transform: translateX(0); }
    .hc-nav__menu a {
        padding: 16px 0;
        border-bottom: 1px solid var(--hc-line);
        font-size: 15px;
    }
    .hc-nav__menu a::after { display: none; }
    .hc-nav__language-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 24px;
    }
    .hc-nav__language-mobile a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 8px;
        color: var(--hc-ink);
        background: var(--hc-soft);
        border: 1px solid var(--hc-line);
        font-size: 11px;
    }
    .hc-nav__language-mobile a.active {
        color: var(--hc-white);
        background: var(--hc-red);
        border-color: var(--hc-red);
    }
    .hc-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hc-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
    .hc-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hc-hero__slide { min-height: 670px; }
    .hc-hero__overlay { background: linear-gradient(90deg, rgba(10,20,37,.96), rgba(10,20,37,.74)); }
    .hc-hero__content { padding-top: 80px; }
    .hc-intro__grid { grid-template-columns: 1fr; }
    .hc-intro-card { min-height: 170px; }
    .hc-section { padding: 90px 0; }
    .hc-about__visual { margin: 0 auto 30px; }
    .hc-values__grid { grid-template-columns: 1fr 1fr; }
    .hc-section-heading--split { grid-template-columns: 1fr; gap: 22px; }
    .hc-service-panel { grid-template-columns: 1fr; }
    .hc-service-panel__intro { min-height: 590px; }
    .hc-service-panel__list { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
    .hc-medical__grid { grid-template-columns: 1fr; }
    .hc-system__visual { min-height: 480px; margin-bottom: 20px; }
    .hc-stats, .hc-journey-list { grid-template-columns: 1fr 1fr; }
    .hc-project-feature { grid-template-columns: 1fr; }
    .hc-learning__grid { grid-template-columns: 1fr; }
    .hc-learning-card { min-height: auto; display: grid; grid-template-columns: .85fr 1.15fr; }
    .hc-learning-card__image, .hc-learning-card__abstract { height: 100%; min-height: 290px; }
    .hc-learning-card__body { min-height: 290px; display: flex; flex-direction: column; justify-content: center; }
    .hc-events { grid-template-columns: 1fr; }
    .hc-events__heading { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .hc-contact__card { grid-template-columns: 1fr; }
    .hc-contact__info { display: grid; grid-template-columns: 1fr 1fr; }
    .hc-contact__info > a, .hc-contact__info > div { border-right: 1px solid rgba(255,255,255,.14); padding-right: 15px; }
    .hc-footer__top { grid-template-columns: 1fr 1fr; gap: 35px; padding: 50px 0; }
    .hc-footer__top nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 767px) {
    body { font-size: 14px; }
    .hc-logo img { width: 43px; height: 43px; }
    .hc-logo b { font-size: 13px; }
    .hc-logo small { font-size: 7px; }
    .hc-hero__slide { min-height: 660px; }
    .hc-hero__content { padding: 80px 0 130px; }
    .hc-hero__content h1, .hc-hero__content h2 { max-width: calc(100vw - 24px); font-size: 42px; }
    .hc-hero__content p { max-width: calc(100vw - 24px); font-size: 14px; }
    .hc-hero__rail { display: none; }
    .hc-hero__controls { bottom: 30px; }
    .hc-intro { padding-top: 20px; }
    .hc-intro__grid { box-shadow: none; }
    .hc-intro-card { padding: 34px 25px; }
    .hc-section, .hc-values { padding: 75px 0; }
    .hc-title { font-size: 38px; }
    .hc-about__visual { min-height: 480px; }
    .hc-about__image { right: 25px; }
    .hc-about__stamp { width: 165px; min-height: 165px; padding: 22px; }
    .hc-about__stamp b { font-size: 28px; }
    .hc-values__grid { grid-template-columns: 1fr; }
    .hc-value-card { min-height: 245px; }
    .hc-service-panel__intro { min-height: 545px; padding: 34px 25px; }
    .hc-service-panel__intro h3, .hc-medical__heading h3 { font-size: 34px; }
    .hc-service-panel__photo { left: 25px; right: 25px; height: 250px; }
    .hc-service-panel__list article { grid-template-columns: 32px 1fr; padding: 28px 24px; }
    .hc-service-panel__list article > i { display: none; }
    .hc-medical { padding-top: 75px; }
    .hc-medical-card { padding: 34px 26px; }
    .hc-system__visual { min-height: 360px; padding: 35px; }
    .hc-feature-grid { grid-template-columns: 1fr; }
    .hc-stats, .hc-journey-list { grid-template-columns: 1fr; }
    .hc-stats div { min-height: 125px; }
    .hc-project-feature__content { padding: 40px 28px; }
    .hc-project-feature h3 { font-size: 32px; }
    .hc-project-feature__image { min-height: 330px; padding: 20px; }
    .hc-learning-card { grid-template-columns: 1fr; }
    .hc-learning-card__image, .hc-learning-card__abstract { min-height: 260px; }
    .hc-learning-card__body { min-height: 230px; }
    .hc-events__list { grid-template-columns: 1fr; }
    .hc-contact { padding-bottom: 70px; }
    .hc-contact__content { padding: 45px 28px; }
    .hc-contact__content h2 { font-size: 39px; }
    .hc-contact__info { grid-template-columns: 1fr; padding: 30px 28px; }
    .hc-contact__info > a, .hc-contact__info > div { border-right: 0; }
    .hc-footer__top { grid-template-columns: 1fr; gap: 25px; }
    .hc-footer__top nav { grid-column: auto; flex-wrap: wrap; }
    .hc-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
    .hc-whatsapp { width: 52px; padding: 0; justify-content: center; }
    .hc-whatsapp span { display: none; }
}

@media (max-width: 420px) {
    .hc-hero__content h1, .hc-hero__content h2 { font-size: 35px; }
    .hc-button { width: 100%; }
    .hc-about__visual { min-height: 420px; }
    .hc-about__stamp { width: 145px; min-height: 145px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
    .hc-preloader,
    .hc-whatsapp {
        display: none !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .hc-nav,
    .hc-nav.is-fixed {
        position: static !important;
    }

    .hc-service-panel,
    .hc-project-feature,
    .hc-contact__card,
    .hc-learning-card {
        break-inside: avoid;
    }
}

/* Multi-page components */
.hc-page-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    color: var(--hc-white);
    background-color: var(--hc-navy);
    background-image: var(--page-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hc-page-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 230px;
    right: -150px;
    top: 50px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    box-shadow: 0 0 0 22px rgba(255,255,255,.025), 0 0 0 44px rgba(255,255,255,.018);
    transform: rotate(-18deg);
}

.hc-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,20,37,.98) 0%, rgba(10,20,37,.9) 45%, rgba(10,20,37,.52) 72%, rgba(10,20,37,.3) 100%);
}

.hc-page-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 75px;
    padding-bottom: 80px;
}

.hc-page-hero h1 {
    max-width: 790px;
    margin: 0 0 22px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hc-page-hero h1 em {
    color: #ff6b72;
    font-style: normal;
}

.hc-page-hero__inner > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
}

.hc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.54);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hc-breadcrumb a:hover {
    color: var(--hc-white);
}

.hc-breadcrumb i {
    color: #ff7d83;
    font-size: 7px;
}

.hc-page-hero--system,
.hc-page-hero--experience {
    background-color: #eef0f2;
    background-position: calc(100% - 8vw) center;
    background-size: min(48vw, 660px) auto;
}

.hc-page-hero--system .hc-page-hero__overlay,
.hc-page-hero--experience .hc-page-hero__overlay {
    background: linear-gradient(90deg, rgba(10,20,37,1) 0%, rgba(10,20,37,.96) 48%, rgba(10,20,37,.65) 68%, rgba(10,20,37,.08) 100%);
}

.hc-page-hero--education {
    background-position: center 35%;
}

.hc-page-hero--contact {
    background-position: center 42%;
}

.hc-about--page .hc-about__visual {
    min-height: 640px;
}

.hc-purpose {
    background: var(--hc-white);
}

.hc-purpose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-purpose__grid article {
    min-height: 330px;
    padding: 55px;
    background: var(--hc-white);
}

.hc-purpose__grid article:last-child {
    background: var(--hc-soft);
}

.hc-purpose__grid span {
    color: var(--hc-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.hc-purpose__grid h2 {
    margin: 25px 0 18px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 35px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.hc-purpose__grid p {
    max-width: 510px;
    margin: 0;
    color: var(--hc-muted);
    font-size: 14px;
}

.hc-cta-band {
    position: relative;
    padding: 72px 0;
    color: var(--hc-white);
    background: var(--hc-red);
    overflow: hidden;
}

.hc-cta-band::before {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -200px;
    width: 420px;
    height: 310px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255,255,255,.03), 0 0 0 40px rgba(255,255,255,.02);
}

.hc-cta-band__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hc-cta-band .hc-eyebrow {
    margin-bottom: 10px;
    color: rgba(255,255,255,.7);
}

.hc-cta-band h2 {
    max-width: 850px;
    margin: 0;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.hc-services--page {
    padding-top: 110px;
}

.hc-support-tracks {
    background: var(--hc-soft);
}

.hc-support-tracks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-support-tracks__grid a {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: var(--hc-white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hc-support-tracks__grid a:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: var(--hc-shadow);
}

.hc-support-tracks__grid i {
    margin-bottom: 28px;
    color: var(--hc-red);
    font-size: 34px;
}

.hc-support-tracks__grid span,
.hc-support-tracks__grid small {
    display: block;
}

.hc-support-tracks__grid span {
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 23px;
    font-weight: 700;
}

.hc-support-tracks__grid small {
    margin-top: 8px;
    color: var(--hc-muted);
    font-size: 12px;
}

.hc-system--page {
    padding-bottom: 105px;
}

.hc-system-flow {
    background: var(--hc-soft);
}

.hc-system-flow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-system-flow__grid article {
    position: relative;
    min-height: 275px;
    padding: 40px 35px;
    background: var(--hc-white);
}

.hc-system-flow__grid article > span {
    position: absolute;
    right: 22px;
    top: 16px;
    color: #e7e8ea;
    font-family: var(--hc-display);
    font-size: 40px;
    font-weight: 700;
}

.hc-system-flow__grid article > i {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    color: var(--hc-red);
    background: rgba(213,31,38,.08);
    border-radius: 50%;
    font-size: 21px;
}

.hc-system-flow__grid h3 {
    margin: 0 0 11px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 22px;
}

.hc-system-flow__grid p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 13px;
}

.hc-advantage {
    padding-top: 0;
    background: var(--hc-soft);
}

.hc-advantage__card {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    color: var(--hc-white);
    background: var(--hc-navy);
}

.hc-advantage__card > div {
    max-width: 780px;
}

.hc-advantage__card h2 {
    margin: 0 0 16px;
    color: var(--hc-white);
    font-family: var(--hc-display);
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.hc-advantage__card p {
    margin: 0;
    color: rgba(255,255,255,.6);
}

.hc-experience--page {
    padding-bottom: 105px;
}

.hc-journey-page {
    background: var(--hc-white);
}

.hc-experience-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hc-experience-columns > article {
    padding: 45px;
    background: var(--hc-soft);
    border: 1px solid var(--hc-line);
}

.hc-experience-columns__head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.hc-experience-columns__head > i {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-white);
    background: var(--hc-red);
    border-radius: 50%;
    font-size: 21px;
}

.hc-experience-columns__head small {
    color: var(--hc-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hc-experience-columns__head h3 {
    margin: 3px 0 0;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 26px;
}

.hc-experience-columns ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hc-experience-columns li {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #dfe1e3;
}

.hc-experience-columns li b {
    color: var(--hc-red);
    font-family: var(--hc-display);
    font-size: 13px;
}

.hc-experience-columns li span {
    color: var(--hc-muted);
    font-size: 13px;
}

.hc-learning--page {
    padding-bottom: 110px;
}

.hc-learning-method {
    background: var(--hc-soft);
}

.hc-learning-method__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-learning-method__grid article {
    position: relative;
    min-height: 275px;
    padding: 36px 30px;
    background: var(--hc-white);
}

.hc-learning-method__grid article > span {
    position: absolute;
    right: 18px;
    top: 15px;
    color: #e8e9eb;
    font-family: var(--hc-display);
    font-size: 38px;
    font-weight: 700;
}

.hc-learning-method__grid article > i {
    margin: 14px 0 35px;
    color: var(--hc-blue);
    font-size: 32px;
}

.hc-learning-method__grid h3 {
    margin: 0 0 10px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 22px;
}

.hc-learning-method__grid p {
    margin: 0;
    color: var(--hc-muted);
    font-size: 12px;
}

.hc-contact-page {
    background: var(--hc-soft);
}

.hc-contact-page__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 35px;
    align-items: start;
}

.hc-contact-page__intro {
    padding: 35px 35px 35px 0;
}

.hc-contact-page__intro .hc-title {
    margin-bottom: 23px;
}

.hc-contact-list {
    margin-top: 35px;
    border-top: 1px solid #dcdfe1;
}

.hc-contact-list > a,
.hc-contact-list > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #dcdfe1;
}

.hc-contact-list i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-white);
    background: var(--hc-red);
    border-radius: 50%;
}

.hc-contact-list span,
.hc-contact-list small {
    display: block;
}

.hc-contact-list span {
    color: var(--hc-ink);
    font-size: 14px;
    font-weight: 800;
}

.hc-contact-list small {
    color: var(--hc-muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hc-contact-form-wrap {
    padding: 50px;
    background: var(--hc-white);
    box-shadow: var(--hc-shadow);
}

.hc-contact-form-wrap__label {
    color: var(--hc-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.hc-contact-form-wrap h3 {
    margin: 10px 0 30px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 35px;
}

.hc-contact-form,
.hc-contact-form label {
    display: flex;
    flex-direction: column;
}

.hc-contact-form {
    gap: 20px;
}

.hc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hc-contact-form label {
    gap: 8px;
    color: #333943;
    font-size: 11px;
    font-weight: 800;
}

.hc-contact-form input,
.hc-contact-form select,
.hc-contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--hc-ink);
    background: #f7f7f6;
    border: 1px solid #dfe1e3;
    border-radius: 0;
    font-family: var(--hc-body);
    font-size: 13px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.hc-contact-form input:focus,
.hc-contact-form select:focus,
.hc-contact-form textarea:focus {
    border-color: var(--hc-red);
    box-shadow: 0 0 0 3px rgba(213,31,38,.08);
}

.hc-contact-form textarea {
    resize: vertical;
}

.hc-contact-form .hc-button {
    align-self: flex-start;
}

.hc-contact-form__note {
    margin: -8px 0 0;
    color: var(--hc-muted);
    font-size: 10px;
}

.hc-contact-shortcuts {
    padding: 0 0 110px;
    background: var(--hc-soft);
}

.hc-contact-shortcuts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-contact-shortcuts__grid > a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 150px;
    padding: 30px 36px;
    background: var(--hc-white);
}

.hc-contact-shortcuts__grid > a > i:first-child {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-white);
    background: #24b866;
    border-radius: 50%;
    font-size: 23px;
}

.hc-contact-shortcuts__grid > a:last-child > i:first-child {
    background: var(--hc-red);
}

.hc-contact-shortcuts small {
    color: var(--hc-red);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hc-contact-shortcuts h3 {
    margin: 4px 0 0;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 21px;
}

.hc-contact-shortcuts__grid > a > i:last-child {
    color: #9da2a8;
    transition: transform .2s ease, color .2s ease;
}

.hc-contact-shortcuts__grid > a:hover > i:last-child {
    color: var(--hc-red);
    transform: translateX(5px);
}

.hc-home-about {
    padding-top: 120px;
}

.hc-home-services {
    padding: 115px 0;
    background: var(--hc-soft);
}

.hc-home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hc-line);
    border: 1px solid var(--hc-line);
}

.hc-home-services__grid > a {
    position: relative;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    padding: 42px 36px;
    background: var(--hc-white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hc-home-services__grid > a:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: var(--hc-shadow);
}

.hc-home-services__grid > a > span {
    position: absolute;
    right: 20px;
    top: 12px;
    color: #eaebed;
    font-family: var(--hc-display);
    font-size: 46px;
    font-weight: 700;
}

.hc-home-services__grid > a > i {
    margin: 12px 0 44px;
    color: var(--hc-red);
    font-size: 37px;
}

.hc-home-services__grid h3 {
    margin: 0 0 14px;
    color: var(--hc-ink);
    font-family: var(--hc-display);
    font-size: 25px;
    line-height: 1.2;
}

.hc-home-services__grid p {
    margin: 0 0 25px;
    color: var(--hc-muted);
    font-size: 13px;
}

.hc-home-services__grid b {
    margin-top: auto;
    color: var(--hc-red);
    font-size: 11px;
}

.hc-home-services__grid b i {
    margin-left: 8px;
}

.hc-home-journey {
    background: var(--hc-white);
}

.hc-home-journey .hc-project-feature__content .hc-button {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .hc-page-hero { min-height: 470px; }
    .hc-page-hero--system,
    .hc-page-hero--experience { background-position: right center; background-size: 70% auto; }
    .hc-purpose__grid,
    .hc-contact-page__grid { grid-template-columns: 1fr; }
    .hc-cta-band__inner { align-items: flex-start; flex-direction: column; }
    .hc-support-tracks__grid,
    .hc-system-flow__grid,
    .hc-home-services__grid { grid-template-columns: 1fr; }
    .hc-experience-columns { grid-template-columns: 1fr; }
    .hc-learning-method__grid { grid-template-columns: 1fr 1fr; }
    .hc-advantage__card { align-items: flex-start; flex-direction: column; }
    .hc-contact-page__intro { padding-right: 0; }
}

@media (max-width: 767px) {
    .hc-page-hero { min-height: 440px; }
    .hc-page-hero__inner { padding-top: 55px; padding-bottom: 60px; }
    .hc-page-hero h1 { max-width: calc(100vw - 24px); font-size: 42px; }
    .hc-page-hero__inner > p { font-size: 14px; }
    .hc-page-hero--system,
    .hc-page-hero--experience { background-size: 100% auto; }
    .hc-page-hero--system .hc-page-hero__overlay,
    .hc-page-hero--experience .hc-page-hero__overlay { background: rgba(10,20,37,.9); }
    .hc-purpose__grid article { min-height: auto; padding: 38px 27px; }
    .hc-purpose__grid h2 { font-size: 30px; }
    .hc-cta-band { padding: 60px 0; }
    .hc-support-tracks__grid a { min-height: 220px; padding: 32px 27px; }
    .hc-system-flow__grid article { min-height: 235px; padding: 32px 27px; }
    .hc-advantage__card { min-height: auto; padding: 42px 28px; }
    .hc-advantage__card h2 { font-size: 34px; }
    .hc-experience-columns > article { padding: 32px 25px; }
    .hc-experience-columns li { grid-template-columns: 1fr; gap: 6px; }
    .hc-learning-method__grid { grid-template-columns: 1fr; }
    .hc-contact-form-wrap { padding: 36px 25px; }
    .hc-form-row,
    .hc-contact-shortcuts__grid { grid-template-columns: 1fr; }
    .hc-contact-shortcuts { padding-bottom: 75px; }
    .hc-home-services { padding: 75px 0; }
    .hc-home-services__grid > a { min-height: 310px; padding: 35px 28px; }
}

@media (max-width: 420px) {
    .hc-page-hero h1 { font-size: 36px; }
    .hc-cta-band .hc-button { width: 100%; }
    .hc-contact-shortcuts__grid > a { grid-template-columns: auto 1fr; padding: 25px 20px; }
    .hc-contact-shortcuts__grid > a > i:last-child { display: none; }
}
