:root {
    --hcsa-primary: #123a78;
    --hcsa-secondary: #2f66b3;
    --hcsa-pastel: #eef4fb;
    --hcsa-soft: #f8fbff;
    --hcsa-text: #14213d;
    --hcsa-white: #fff;
    --hcsa-muted: #64748b;
    --hcsa-border: rgba(18, 58, 120, .12);
    --hcsa-shadow: 0 24px 60px rgba(18, 58, 120, .12);
    --hcsa-radius: 24px;
    --hcsa-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body.hcsa-template { margin: 0; background: var(--hcsa-white); }
body.hcsa-menu-open { overflow: hidden; }
.hcsa-site, .hcsa-site * { box-sizing: border-box; }
.hcsa-site { color: var(--hcsa-text); font-family: var(--hcsa-font); background: var(--hcsa-white); line-height: 1.6; overflow: clip; }
.hcsa-site img { max-width: 100%; height: auto; display: block; }
.hcsa-site a { color: inherit; text-decoration: none; }
.hcsa-site button, .hcsa-site input, .hcsa-site textarea { font: inherit; }
.hcsa-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hcsa-header { position: relative; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--hcsa-border); transition: box-shadow .25s ease, background .25s ease; }
.hcsa-header.is-sticky { position: sticky; top: 0; }
.admin-bar .hcsa-header.is-sticky { top: 32px; }
.hcsa-header.is-scrolled { box-shadow: 0 14px 36px rgba(18,58,120,.12); background: rgba(255,255,255,.985); }

.hcsa-header__inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.hcsa-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 190px; }
.hcsa-brand__image { max-width: 180px; max-height: 54px; object-fit: contain; width: auto; }
.hcsa-brand__mark { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--hcsa-primary), var(--hcsa-secondary)); color: #fff; font: 700 24px/1 Georgia, serif; }
.hcsa-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.hcsa-brand__text strong { color: var(--hcsa-primary); font: 800 25px/1 Georgia, serif; letter-spacing: .04em; }
.hcsa-brand__text small { margin-top: 5px; font-size: 10px; font-weight: 700; color: var(--hcsa-secondary); text-transform: uppercase; letter-spacing: .13em; }
.hcsa-nav { display: flex; justify-content: center; align-items: center; }
.hcsa-nav__menu, .hcsa-nav__fallback { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 28px); list-style: none; }
.hcsa-nav__menu li { position: relative; margin: 0; }
.hcsa-nav__menu .sub-menu { position: absolute; top: calc(100% + 14px); left: 0; z-index: 20; min-width: 220px; margin: 0; padding: 10px; display: none; list-style: none; border: 1px solid var(--hcsa-border); border-radius: 14px; background: #fff; box-shadow: 0 18px 42px rgba(18,58,120,.16); }
.hcsa-nav__menu li:hover > .sub-menu, .hcsa-nav__menu li:focus-within > .sub-menu { display: grid; }
.hcsa-nav__menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; white-space: nowrap; }
.hcsa-nav__menu .sub-menu a:hover { background: var(--hcsa-pastel); }
.hcsa-nav a { position: relative; font-size: 14px; font-weight: 700; color: #30415f; transition: color .2s ease; }
.hcsa-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--hcsa-secondary); transition: right .2s ease; }
.hcsa-nav a:hover { color: var(--hcsa-primary); }
.hcsa-nav a:hover::after { right: 0; }
.hcsa-header__actions { display: flex; align-items: center; gap: 14px; }
.hcsa-lang { display: inline-flex; padding: 4px; border: 1px solid var(--hcsa-border); border-radius: 999px; background: var(--hcsa-soft); }
.hcsa-lang a { min-width: 30px; height: 28px; display: grid; place-items: center; border-radius: 999px; font-size: 11px; font-weight: 800; color: var(--hcsa-muted); }
.hcsa-lang a.is-active { background: var(--hcsa-primary); color: #fff; }
.hcsa-menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--hcsa-border); background: var(--hcsa-white); padding: 10px; cursor: pointer; }
.hcsa-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--hcsa-primary); border-radius: 10px; }

.hcsa-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 14px; padding: 0 24px; background: linear-gradient(135deg, var(--hcsa-secondary), var(--hcsa-primary)); color: #fff !important; font-weight: 800; font-size: 14px; box-shadow: 0 12px 26px rgba(18,58,120,.22); transition: transform .2s ease, box-shadow .2s ease; cursor: pointer; }
.hcsa-button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(18,58,120,.28); }
.hcsa-button--small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.hcsa-button--ghost { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.42); box-shadow: none; backdrop-filter: blur(8px); }
.hcsa-button--light { background: #fff; color: var(--hcsa-primary) !important; box-shadow: 0 16px 34px rgba(2,18,48,.2); }
.hcsa-button.is-disabled { opacity: .55; pointer-events: none; }

.hcsa-hero { position: relative; min-height: clamp(620px, 78vh, 820px); display: flex; align-items: center; background: linear-gradient(135deg, #0b2c5f, #1f5ca8); background-size: cover; background-position: center center; isolation: isolate; }
.hcsa-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: var(--hcsa-hero-motion-overlay, 1); background: linear-gradient(90deg, rgba(7,29,64,.58) 0%, rgba(8,38,78,.34) 38%, rgba(9,38,77,.12) 68%, rgba(9,38,77,.04) 100%), linear-gradient(180deg, rgba(2,15,40,.18) 0%, rgba(2,15,40,.04) 54%, rgba(2,15,40,.28) 100%); }
.hcsa-hero__media { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center center; background-repeat: no-repeat; transform-origin: center center; pointer-events: none; }
.hcsa-hero__pattern { position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to right, #000 0%, #000 46%, transparent 82%); }
.hcsa-hero__content { width: min(100%, 780px); max-width: 780px; margin-inline: auto; padding: clamp(28px, 4vw, 46px); color: #fff; border-radius: 30px; transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease; }
.hcsa-hero > .hcsa-container { position: relative; z-index: 1; }

.hcsa-hero__content.hcsa-align-left { text-align: left; }
.hcsa-hero__content.hcsa-align-center { text-align: center; }
.hcsa-hero__content.hcsa-align-right { text-align: right; }
.hcsa-align-center .hcsa-eyebrow { justify-content: center; }
.hcsa-align-right .hcsa-eyebrow { justify-content: flex-end; }
.hcsa-align-center h1, .hcsa-align-center p { margin-inline: auto; }
.hcsa-align-right h1, .hcsa-align-right p { margin-left: auto; }
.hcsa-align-left .hcsa-hero__actions, .hcsa-align-left .hcsa-hero__experience { justify-content: flex-start; }
.hcsa-align-center .hcsa-hero__actions, .hcsa-align-center .hcsa-hero__experience { justify-content: center; }
.hcsa-align-right .hcsa-hero__actions, .hcsa-align-right .hcsa-hero__experience { justify-content: flex-end; }
.hcsa-glass-subtle { background: rgba(5,25,56,.16); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); box-shadow: 0 20px 50px rgba(4,20,46,.10); }
.hcsa-glass-soft { background: rgba(5,25,56,.26); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: 0 22px 54px rgba(4,20,46,.14); }
.hcsa-glass-balanced { background: rgba(5,25,56,.42); border: 1px solid rgba(255,255,255,.17); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 26px 64px rgba(4,20,46,.20); }
.hcsa-glass-strong { background: rgba(5,25,56,.58); border: 1px solid rgba(255,255,255,.20); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 28px 68px rgba(4,20,46,.24); }
.hcsa-glass-marked { background: rgba(5,25,56,.74); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 30px 72px rgba(4,20,46,.30); }

.hcsa-eyebrow, .hcsa-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--hcsa-secondary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.hcsa-eyebrow { color: #dbeafe; font-family: var(--hcsa-hero-eyebrow-font); font-size: var(--hcsa-hero-eyebrow-size); }
.hcsa-eyebrow::before, .hcsa-kicker::before { content: ""; width: 32px; height: 2px; background: currentColor; border-radius: 20px; }
.hcsa-hero h1 { max-width: 680px; margin: 18px 0; font-family: var(--hcsa-hero-title-font); font-size: var(--hcsa-hero-title-size); line-height: 1.02; letter-spacing: -.045em; font-weight: 850; text-wrap: balance; }
.hcsa-hero p { max-width: 620px; margin: 0; color: rgba(255,255,255,.92); font-family: var(--hcsa-hero-text-font); font-size: var(--hcsa-hero-text-size); line-height: 1.55; }
.hcsa-hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hcsa-hero__experience { margin-top: 42px; display: flex; align-items: center; gap: 14px; color: #fff; font-family: var(--hcsa-hero-text-font); font-size: max(13px, calc(var(--hcsa-hero-text-size) * .68)); font-weight: 800; letter-spacing: .02em; }
.hcsa-hero__experience span { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.38); position: relative; }
.hcsa-hero__experience span::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }

.hcsa-section { padding-block: clamp(80px, 9vw, 132px); }
.hcsa-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.hcsa-heading--left { margin-inline: 0; text-align: left; }
.hcsa-heading h2, .hcsa-about h2, .hcsa-contact h2, .hcsa-brochure h2, .hcsa-page-hero h1 { margin: 12px 0 18px; color: var(--hcsa-primary); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -.035em; font-weight: 850; text-wrap: balance; }
.hcsa-heading p { margin: 0; color: var(--hcsa-muted); font-size: 18px; }

.hcsa-about { background: var(--hcsa-white); }
.hcsa-about__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.hcsa-about__visual { position: relative; min-height: 560px; border-radius: var(--hcsa-radius); overflow: visible; }
.hcsa-about__image, .hcsa-about__placeholder { width: 100%; height: 560px; object-fit: cover; border-radius: var(--hcsa-radius); box-shadow: var(--hcsa-shadow); }
.hcsa-about__placeholder { display: grid; place-items: center; color: rgba(255,255,255,.8); background: linear-gradient(145deg, var(--hcsa-primary), var(--hcsa-secondary)); position: relative; overflow: hidden; }
.hcsa-about__placeholder::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 36px 36px; }
.hcsa-about__placeholder span { position: relative; font-size: 76px; font-weight: 900; letter-spacing: .08em; }
.hcsa-about__badge { position: absolute; right: -28px; bottom: 38px; width: 132px; height: 132px; display: grid; place-items: center; border-radius: 28px; background: #fff; color: var(--hcsa-primary); font-size: 48px; font-weight: 900; box-shadow: var(--hcsa-shadow); transform: rotate(-3deg); }
.hcsa-about__badge span { color: var(--hcsa-secondary); }
.hcsa-richtext { color: #44536b; font-size: 16px; }
.hcsa-richtext p { margin: 0 0 16px; }
.hcsa-stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.hcsa-stat { padding: 20px; border-radius: 18px; background: var(--hcsa-pastel); border: 1px solid var(--hcsa-border); }
.hcsa-stat strong { display: block; color: var(--hcsa-primary); font-size: 30px; line-height: 1; }
.hcsa-stat span { display: block; margin-top: 8px; color: var(--hcsa-muted); font-size: 12px; font-weight: 700; }

.hcsa-about--text-only { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--hcsa-soft) 100%); }
.hcsa-about--text-only::before, .hcsa-about--text-only::after { content: ""; position: absolute; border-radius: 50%; background: var(--hcsa-secondary); opacity: .055; pointer-events: none; }
.hcsa-about--text-only::before { width: 420px; height: 420px; top: -240px; right: -160px; }
.hcsa-about--text-only::after { width: 280px; height: 280px; left: -150px; bottom: -170px; }
.hcsa-about__text-shell { position: relative; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--hcsa-border); border-radius: 30px; background: rgba(255,255,255,.92); box-shadow: 0 26px 70px rgba(18,58,120,.10); overflow: hidden; }
.hcsa-about__text-shell::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: linear-gradient(var(--hcsa-secondary), var(--hcsa-primary)); }
.hcsa-about__heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.hcsa-about__heading .hcsa-kicker { justify-content: center; }
.hcsa-about__heading h2 { margin-bottom: 0; }
.hcsa-richtext--business { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 30px; max-width: 1040px; margin-inline: auto; }
.hcsa-richtext--business p { position: relative; margin: 0; padding: 20px 22px 20px 25px; border: 1px solid rgba(18,58,120,.09); border-radius: 16px; background: linear-gradient(135deg, #fff, #f8fbff); color: #42516a; line-height: 1.75; box-shadow: 0 10px 28px rgba(18,58,120,.055); }
.hcsa-richtext--business p::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 0 4px 4px 0; background: var(--hcsa-secondary); }
.hcsa-about--text-only .hcsa-stats { max-width: 980px; margin: 38px auto 0; }

.hcsa-services { background: var(--hcsa-pastel); position: relative; }
.hcsa-services::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 10%, rgba(47,102,179,.09), transparent 28%), radial-gradient(circle at 88% 86%, rgba(18,58,120,.08), transparent 28%); pointer-events: none; }
.hcsa-services__grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.hcsa-service-card { position: relative; min-height: 310px; padding: 34px; border-radius: 18px; background: linear-gradient(160deg, #fff 0%, #fbfdff 100%); border: 1px solid rgba(18,58,120,.12); border-top: 4px solid var(--hcsa-service-bubble); box-shadow: 0 18px 42px rgba(18,58,120,.09); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.hcsa-service-card::before, .hcsa-service-card::after, .hcsa-service-card__bubble { content: ""; position: absolute; border-radius: 50%; background: var(--hcsa-service-bubble); pointer-events: none; }
.hcsa-service-card::before { width: 118px; height: 118px; right: -46px; top: 26px; opacity: .10; }
.hcsa-service-card::after { width: 54px; height: 54px; right: 44px; top: 76px; opacity: .08; }
.hcsa-service-card__bubble { width: 22px; height: 22px; right: 28px; top: 42px; opacity: .22; }
.hcsa-service-card:hover { transform: translateY(-6px); border-color: rgba(18,58,120,.20); box-shadow: 0 26px 58px rgba(18,58,120,.15); }
.hcsa-service-card__image { position: relative; z-index: 1; margin: -34px -34px 24px; height: 160px; overflow: hidden; }
.hcsa-service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hcsa-service-card__icon { position: relative; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; color: var(--hcsa-service-bubble); background: #edf4ff; background: color-mix(in srgb, var(--hcsa-service-bubble) 11%, white); border: 1px solid color-mix(in srgb, var(--hcsa-service-bubble) 18%, white); box-shadow: 0 10px 22px rgba(18,58,120,.08); }
.hcsa-service-card__icon svg { width: 26px; height: 26px; }
.hcsa-service-card h3 { position: relative; z-index: 2; margin: 22px 0 10px; color: var(--hcsa-primary); font-size: 21px; line-height: 1.25; }
.hcsa-service-card p { position: relative; z-index: 2; margin: 0; color: #5c6a80; font-size: 15px; line-height: 1.65; }

.hcsa-specializations { background: var(--hcsa-soft); }
.hcsa-specializations__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.hcsa-specialization-card { border-radius: 22px; background: #fff; border: 1px solid var(--hcsa-border); overflow: hidden; box-shadow: 0 14px 38px rgba(18,58,120,.08); transition: transform .25s ease, box-shadow .25s ease; }
.hcsa-specialization-card:hover { transform: translateY(-7px); box-shadow: var(--hcsa-shadow); }
.hcsa-specialization-card__media { height: 230px; overflow: hidden; background: var(--hcsa-pastel); }
.hcsa-specialization-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hcsa-specialization-card:hover img { transform: scale(1.04); }
.hcsa-specialization-card__placeholder { height: 100%; display: grid; place-items: center; color: var(--hcsa-secondary); background: linear-gradient(145deg, #e6effa, #f6f9fd); }
.hcsa-specialization-card__placeholder svg { width: 58px; height: 58px; }
.hcsa-specialization-card__body { padding: 28px; }
.hcsa-specialization-card__line { display: block; width: 42px; height: 3px; border-radius: 20px; background: var(--hcsa-secondary); }
.hcsa-specialization-card h3 { margin: 17px 0 10px; color: var(--hcsa-primary); font-size: 20px; line-height: 1.3; }
.hcsa-specialization-card p { margin: 0; color: var(--hcsa-muted); font-size: 15px; }

.hcsa-brochure { position: relative; background: linear-gradient(135deg, #0b2d62, var(--hcsa-primary) 52%, #285a9a); color: #fff; overflow: hidden; }
.hcsa-brochure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 22%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 48px 48px, 48px 48px; }
.hcsa-brochure__grid { position: relative; min-height: 500px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; padding-block: 80px; }
.hcsa-kicker--light { color: #cbdcf4; }
.hcsa-brochure h2 { color: #fff; }
.hcsa-brochure p { max-width: 630px; color: rgba(255,255,255,.82); font-size: 18px; margin-bottom: 30px; }
.hcsa-brochure__visual { display: flex; justify-content: center; }
.hcsa-brochure__visual img { max-height: 390px; width: auto; border-radius: 10px; box-shadow: 0 28px 60px rgba(0,0,0,.28); transform: rotate(3deg); }
.hcsa-brochure__mockup { width: 285px; height: 380px; padding: 36px; display: flex; flex-direction: column; border-radius: 10px; background: #fff; color: var(--hcsa-primary); box-shadow: 0 28px 60px rgba(0,0,0,.28); transform: rotate(3deg); }
.hcsa-brochure__mockup span { font-size: 28px; font-weight: 900; letter-spacing: .08em; }
.hcsa-brochure__mockup strong { margin-top: auto; font-size: 34px; line-height: 1.05; }
.hcsa-brochure__mockup small { margin-top: 18px; color: var(--hcsa-muted); font-weight: 700; }

.hcsa-contact { background: #fff; }
.hcsa-contact__shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; padding: clamp(32px, 5vw, 64px); border-radius: 30px; background: var(--hcsa-soft); border: 1px solid var(--hcsa-border); box-shadow: 0 24px 70px rgba(18,58,120,.09); }
.hcsa-contact__info > p { color: var(--hcsa-muted); font-size: 17px; }
.hcsa-contact__details { margin-top: 34px; display: grid; gap: 18px; }
.hcsa-contact__details div { display: grid; gap: 4px; }
.hcsa-contact__details strong { color: var(--hcsa-primary); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.hcsa-contact__details span, .hcsa-contact__details a { color: #4d5b72; }
.hcsa-contact__details a:hover { color: var(--hcsa-secondary); }
.hcsa-contact__form-wrap { padding: 30px; border-radius: 24px; background: #fff; box-shadow: 0 18px 44px rgba(18,58,120,.09); }
.hcsa-form { display: grid; gap: 18px; }
.hcsa-form__row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.hcsa-form label { display: grid; gap: 8px; }
.hcsa-form label > span { color: #33415a; font-size: 12px; font-weight: 800; }
.hcsa-form input, .hcsa-form textarea { width: 100%; border: 1px solid rgba(18,58,120,.16); border-radius: 12px; background: #fbfdff; color: var(--hcsa-text); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.hcsa-form input:focus, .hcsa-form textarea:focus { border-color: var(--hcsa-secondary); box-shadow: 0 0 0 4px rgba(47,102,179,.1); }
.hcsa-form textarea { resize: vertical; min-height: 130px; }
.hcsa-form__privacy { margin: -2px 0 0; color: var(--hcsa-muted); font-size: 11px; }
.hcsa-form .hcsa-button { justify-self: start; }
.hcsa-form-message { margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; }
.hcsa-form-message.is-success { background: #e7f7ef; color: #176844; }
.hcsa-form-message.is-error { background: #fff0f0; color: #a82c2c; }
.hcsa-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.hcsa-footer { background: #081f46; color: rgba(255,255,255,.8); }
.hcsa-footer__top { padding-block: 60px; display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 50px; }
.hcsa-footer__brand strong { display: block; color: #fff; font-size: 28px; letter-spacing: .06em; }
.hcsa-footer__brand > span { display: block; margin-top: 2px; color: #b7c9e7; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.hcsa-footer__brand p { max-width: 370px; margin: 18px 0 0; color: rgba(255,255,255,.62); }
.hcsa-footer__links, .hcsa-footer__contact { display: grid; align-content: start; gap: 12px; }
.hcsa-footer__links a, .hcsa-footer__contact a { color: #fff; font-weight: 700; }
.hcsa-footer__links a:hover, .hcsa-footer__contact a:hover { color: #cfe0f8; }
.hcsa-footer__contact span { color: rgba(255,255,255,.6); }
.hcsa-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.hcsa-footer__bottom .hcsa-container { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 12px; }
.hcsa-footer__bottom a { color: #fff; font-weight: 800; }

.hcsa-page-hero { padding: 100px 0 70px; background: linear-gradient(135deg, var(--hcsa-pastel), #fff); border-bottom: 1px solid var(--hcsa-border); }
.hcsa-page-content { padding-top: 70px; }
.hcsa-prose { max-width: 920px; font-size: 18px; color: #44536b; }
.hcsa-prose h2, .hcsa-prose h3 { color: var(--hcsa-primary); line-height: 1.2; }
.hcsa-prose a { color: var(--hcsa-secondary); text-decoration: underline; }
.hcsa-prose img { border-radius: 18px; }

@media (max-width: 1080px) {
    .hcsa-header__inner { grid-template-columns: auto auto 1fr; }
    .hcsa-menu-toggle { display: block; order: 2; }
    .hcsa-nav { position: fixed; inset: 82px 0 auto 0; display: none; padding: 28px 24px 34px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-top: 1px solid var(--hcsa-border); box-shadow: 0 26px 50px rgba(18,58,120,.16); }
    .hcsa-nav__menu, .hcsa-nav__fallback { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
    .hcsa-nav__menu .sub-menu { position: static; display: grid; min-width: 0; padding: 0 0 0 16px; border: 0; box-shadow: none; }
    .hcsa-nav__menu .sub-menu a { white-space: normal; }
    .admin-bar .hcsa-nav { top: 114px; }
    .hcsa-nav.is-open { display: flex; }
    .hcsa-nav a { padding: 15px 4px; border-bottom: 1px solid var(--hcsa-border); font-size: 16px; }
    .hcsa-nav a::after { display: none; }
    .hcsa-header__actions { justify-self: end; }
    .hcsa-services__grid, .hcsa-specializations__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
    .admin-bar .hcsa-header.is-sticky { top: 46px; }
    .hcsa-header__inner { min-height: 74px; gap: 12px; grid-template-columns: 1fr auto auto; }
    .hcsa-brand { min-width: 0; }
    .hcsa-brand__image { max-width: 138px; max-height: 44px; }
    .hcsa-brand__text small { display: none; }
    .hcsa-header__actions .hcsa-button { display: none; }
    .hcsa-nav { top: 74px; }
    .admin-bar .hcsa-nav { top: 120px; }
    .hcsa-hero { min-height: 680px; }
    .hcsa-hero::before { background: linear-gradient(90deg, rgba(7,29,64,.72), rgba(8,38,78,.42) 52%, rgba(8,38,78,.20)); }
    .hcsa-hero__content { padding: 32px; }
    .hcsa-about__grid, .hcsa-brochure__grid, .hcsa-contact__shell { grid-template-columns: 1fr; }
    .hcsa-about__visual { min-height: 440px; }
    .hcsa-about__image, .hcsa-about__placeholder { height: 440px; }
    .hcsa-about__badge { right: 18px; bottom: -24px; }
    .hcsa-brochure__copy { text-align: center; }
    .hcsa-brochure__copy .hcsa-kicker { justify-content: center; }
    .hcsa-brochure p { margin-inline: auto; }
    .hcsa-brochure__visual { order: -1; }
    .hcsa-brochure__visual img, .hcsa-brochure__mockup { max-height: 300px; }
    .hcsa-footer__top { grid-template-columns: 1fr 1fr; }
    .hcsa-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .hcsa-container { width: min(100% - 28px, 1180px); }
    .hcsa-lang a { min-width: 27px; height: 26px; font-size: 10px; }
    .hcsa-menu-toggle { width: 40px; height: 40px; }
    .hcsa-section { padding-block: 74px; }
    .hcsa-hero { min-height: 650px; }
    .hcsa-hero__content { padding: 24px; }
    .hcsa-hero h1 { margin-top: 16px; }
    .hcsa-hero__content { border-radius: 24px; }
    .hcsa-hero__actions { display: grid; }
    .hcsa-button { width: 100%; }
    .hcsa-hero__experience { margin-top: 38px; }
    .hcsa-about__visual { min-height: 350px; }
    .hcsa-about__image, .hcsa-about__placeholder { height: 350px; }
    .hcsa-about__placeholder span { font-size: 52px; }
    .hcsa-about__badge { width: 104px; height: 104px; font-size: 38px; }
    .hcsa-stats { grid-template-columns: 1fr; }
    .hcsa-richtext--business { grid-template-columns: 1fr; }
    .hcsa-about__text-shell { padding: 28px 22px; border-radius: 22px; }
        .hcsa-services__grid, .hcsa-specializations__grid { grid-template-columns: 1fr; }
    .hcsa-service-card { min-height: auto; padding: 28px; }
    .hcsa-service-card__image { margin: -28px -28px 22px; }
    .hcsa-specialization-card__media { height: 210px; }
    .hcsa-contact__shell { padding: 22px; border-radius: 22px; }
    .hcsa-contact__form-wrap { padding: 20px; }
    .hcsa-form__row { grid-template-columns: 1fr; }
    .hcsa-form .hcsa-button { width: 100%; }
    .hcsa-footer__top { grid-template-columns: 1fr; gap: 34px; }
    .hcsa-footer__brand { grid-column: auto; }
    .hcsa-footer__bottom .hcsa-container { padding-block: 18px; flex-direction: column; align-items: flex-start; }
    .hcsa-page-hero { padding: 72px 0 48px; }
}

/* Header isolation and responsive alignment — v1.0.3 */
.hcsa-site .hcsa-header {
    width: 100%;
    font-family: var(--hcsa-font);
}
.hcsa-site .hcsa-header__inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 86px;
    margin-inline: auto;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(18px, 2vw, 30px) !important;
}
.hcsa-site .hcsa-brand {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hcsa-site .hcsa-brand__image {
    display: block !important;
    width: 180px !important;
    max-width: 180px !important;
    height: 56px !important;
    max-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
}
.hcsa-site .hcsa-nav {
    position: static;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.hcsa-site .hcsa-nav__menu,
.hcsa-site .hcsa-nav__fallback {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(13px, 1.55vw, 24px) !important;
}
.hcsa-site .hcsa-nav__fallback > a,
.hcsa-site .hcsa-nav__menu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 40px;
    padding: 0 !important;
    border: 0 !important;
    white-space: nowrap;
}
.hcsa-site .hcsa-header__actions {
    flex: 0 0 auto !important;
    min-width: max-content;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
}
.hcsa-site .hcsa-lang {
    flex: 0 0 auto;
    margin: 0 !important;
    white-space: nowrap;
}
.hcsa-site .hcsa-menu-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: none !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 9px 10px !important;
    border: 1px solid var(--hcsa-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
    line-height: 1 !important;
    transform: none !important;
}
.hcsa-site .hcsa-menu-toggle > span:not(.screen-reader-text) {
    width: 100% !important;
    height: 2px !important;
    margin: 5px 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--hcsa-primary) !important;
}

@media (max-width: 1180px) and (min-width: 961px) {
    .hcsa-site .hcsa-header__inner {
        width: min(100% - 28px, 1120px);
        gap: 14px !important;
    }
    .hcsa-site .hcsa-brand__image {
        width: 148px !important;
        max-width: 148px !important;
        height: 48px !important;
        max-height: 48px !important;
    }
    .hcsa-site .hcsa-nav__menu,
    .hcsa-site .hcsa-nav__fallback {
        gap: 13px !important;
    }
    .hcsa-site .hcsa-nav a {
        font-size: 12.5px !important;
    }
    .hcsa-site .hcsa-header__actions {
        gap: 7px !important;
    }
    .hcsa-site .hcsa-button--small {
        padding-inline: 13px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 960px) {
    .hcsa-site .hcsa-header__inner {
        width: min(100% - 28px, 920px);
        min-height: 74px;
        gap: 10px !important;
    }
    .hcsa-site .hcsa-brand {
        order: 1;
        margin-right: auto !important;
    }
    .hcsa-site .hcsa-brand__image {
        width: 145px !important;
        max-width: 145px !important;
        height: 44px !important;
        max-height: 44px !important;
    }
    .hcsa-site .hcsa-header__actions {
        order: 2;
        min-width: 0;
        margin-left: auto !important;
    }
    .hcsa-site .hcsa-header__actions .hcsa-button {
        display: none !important;
    }
    .hcsa-site .hcsa-menu-toggle {
        order: 3;
        display: block !important;
    }
    .hcsa-site .hcsa-nav {
        position: fixed !important;
        inset: 74px 0 auto 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        display: none !important;
        padding: 22px 24px 30px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: #fff !important;
        border-top: 1px solid var(--hcsa-border) !important;
        box-shadow: 0 26px 50px rgba(18,58,120,.16) !important;
    }
    .admin-bar .hcsa-site .hcsa-nav {
        inset-block-start: 106px !important;
        max-height: calc(100vh - 106px);
    }
    .hcsa-site .hcsa-nav.is-open {
        display: flex !important;
    }
    .hcsa-site .hcsa-nav__menu,
    .hcsa-site .hcsa-nav__fallback {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    .hcsa-site .hcsa-nav__fallback > a,
    .hcsa-site .hcsa-nav__menu > li > a {
        width: 100% !important;
        min-height: 0;
        padding: 14px 4px !important;
        border-bottom: 1px solid var(--hcsa-border) !important;
        font-size: 15px !important;
        white-space: normal;
    }
    .hcsa-site .hcsa-nav a::after {
        display: none !important;
    }
}

@media (max-width: 782px) {
    .admin-bar .hcsa-site .hcsa-nav {
        inset-block-start: 120px !important;
        max-height: calc(100vh - 120px);
    }
}

@media (max-width: 600px) {
    .hcsa-site .hcsa-header__inner {
        width: calc(100% - 22px);
    }
    .hcsa-site .hcsa-brand__image {
        width: 122px !important;
        max-width: 122px !important;
        height: 40px !important;
        max-height: 40px !important;
    }
    .hcsa-site .hcsa-lang {
        padding: 3px !important;
    }
    .hcsa-site .hcsa-lang a {
        min-width: 25px !important;
        height: 25px !important;
        font-size: 9px !important;
    }
    .hcsa-site .hcsa-menu-toggle {
        flex-basis: 40px !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }
}


/* Hero visual enhancement — v1.0.4 */


/* Customizable Hero, text-only About and business Services — v1.0.5 */

/* Contact AJAX + Footer Map — v1.0.7 */
.hcsa-contact {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(47,102,179,.10), transparent 30%),
        radial-gradient(circle at 94% 82%, rgba(18,58,120,.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--hcsa-soft) 100%);
}
.hcsa-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(18,58,120,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,58,120,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.hcsa-contact .hcsa-container { position: relative; }
.hcsa-contact__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: stretch;
    padding: clamp(28px, 5vw, 70px);
    border: 1px solid rgba(18,58,120,.12);
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 28px 80px rgba(18,58,120,.11);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}
.hcsa-contact__shell::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -170px;
    top: -190px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(47,102,179,.16), rgba(18,58,120,.02));
}
.hcsa-contact__info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4px, 1vw, 14px);
}
.hcsa-contact__info h2 {
    max-width: 560px;
    margin-bottom: 20px;
    font-family: var(--hcsa-contact-title-font, var(--hcsa-font));
    font-size: var(--hcsa-contact-title-size, 52px);
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}
.hcsa-contact__intro {
    max-width: 560px;
    margin: 0;
    color: #5a6880;
    font-size: 18px;
    line-height: 1.7;
}
.hcsa-contact__details {
    margin-top: 38px;
    display: grid;
    gap: 14px;
}
.hcsa-contact-detail {
    display: grid !important;
    grid-template-columns: 46px minmax(0,1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(18,58,120,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 28px rgba(18,58,120,.05);
}
.hcsa-contact-detail__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), var(--hcsa-primary));
    box-shadow: 0 10px 22px rgba(18,58,120,.20);
}
.hcsa-contact-detail__icon svg {
    width: 22px;
    height: 22px;
    display: block;
    color: #fff;
    stroke-width: 1.9;
}
.hcsa-contact-detail > div { display: grid; gap: 3px; min-width: 0; }
.hcsa-contact-detail strong {
    color: var(--hcsa-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.hcsa-contact-detail span:not(.hcsa-contact-detail__icon),
.hcsa-contact-detail a {
    color: #4e5d75;
    overflow-wrap: anywhere;
}
.hcsa-contact__form-wrap {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: clamp(24px, 3.5vw, 42px);
    border: 1px solid rgba(18,58,120,.10);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(18,58,120,.12);
}
.hcsa-form-heading { margin-bottom: 26px; display: grid; gap: 7px; }
.hcsa-form-heading span {
    color: var(--hcsa-secondary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.hcsa-form-heading strong {
    color: var(--hcsa-primary);
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.18;
}
.hcsa-form { gap: 18px; }
.hcsa-form label { position: relative; }
.hcsa-form label > span {
    color: #31425f;
    font-size: 12px;
    font-weight: 800;
}
.hcsa-form input,
.hcsa-form textarea {
    border: 1px solid rgba(18,58,120,.15);
    border-radius: 14px;
    background: #f9fbfe;
    padding: 14px 15px;
    color: var(--hcsa-text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.hcsa-form input:hover,
.hcsa-form textarea:hover { border-color: rgba(47,102,179,.36); }
.hcsa-form input:focus,
.hcsa-form textarea:focus {
    border-color: var(--hcsa-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47,102,179,.10);
}
.hcsa-character-count {
    justify-self: end;
    color: #8390a5;
    font-size: 10px;
}
.hcsa-form__privacy { line-height: 1.55; }
.hcsa-form__submit { min-width: 190px; position: relative; overflow: hidden; }
.hcsa-form__submit:disabled { cursor: wait; opacity: .78; transform: none; }
.hcsa-form__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.38);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hcsa-spin .75s linear infinite;
}
.hcsa-form.is-submitting .hcsa-form__spinner { display: inline-block; }
.hcsa-form.is-sent { opacity: .64; }
.hcsa-form.is-sent .hcsa-form__submit { cursor: not-allowed; }
.hcsa-form-message {
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 800;
}
.hcsa-form-message[hidden] { display: none !important; }
.hcsa-form-message.is-success {
    border: 1px solid rgba(23,104,68,.18);
    background: #eaf8f1;
    color: #176844;
}
.hcsa-form-message.is-error {
    border: 1px solid rgba(168,44,44,.16);
    background: #fff1f1;
    color: #9b2929;
}
@keyframes hcsa-spin { to { transform: rotate(360deg); } }

.hcsa-footer-map {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background: #dfe9f5;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hcsa-footer-map__canvas,
.hcsa-footer-map__canvas iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hcsa-footer-map__canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(7,31,70,.84) 0%, rgba(8,43,91,.50) 34%, rgba(8,43,91,.12) 62%, transparent 100%);
}
.hcsa-footer-map__overlay-wrap {
    position: relative;
    z-index: 2;
    min-height: 510px;
    display: flex;
    align-items: center;
}
.hcsa-footer-map__card {
    width: min(100%, 460px);
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(7,31,70,.90), rgba(18,58,120,.77));
    box-shadow: 0 28px 70px rgba(3,18,42,.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hcsa-footer-map__pin {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--hcsa-primary);
    background: #fff;
    font-size: 25px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.hcsa-footer-map__eyebrow {
    display: block;
    color: #cfe0f8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.hcsa-footer-map__card h2 {
    margin: 10px 0 16px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -.035em;
}
.hcsa-footer-map__card p {
    margin: 0 0 28px;
    color: rgba(255,255,255,.80);
    font-size: 16px;
    line-height: 1.65;
}
.hcsa-footer-map__button { width: auto; }

@media (max-width: 900px) {
    .hcsa-contact__shell { grid-template-columns: 1fr; }
    .hcsa-contact__info h2 { max-width: 720px; }
    .hcsa-footer-map,
    .hcsa-footer-map__overlay-wrap { min-height: 620px; }
    .hcsa-footer-map__canvas::after {
        background: linear-gradient(180deg, rgba(7,31,70,.10) 0%, rgba(7,31,70,.68) 68%, rgba(7,31,70,.86) 100%);
    }
    .hcsa-footer-map__overlay-wrap { align-items: flex-end; padding-block: 34px; }
    .hcsa-footer-map__card { width: 100%; }
}

@media (max-width: 600px) {
    .hcsa-contact__shell { padding: 20px; border-radius: 24px; }
    .hcsa-contact__form-wrap { padding: 21px; border-radius: 22px; }
    .hcsa-contact-detail { grid-template-columns: 40px minmax(0,1fr); padding: 12px; }
    .hcsa-contact-detail__icon { width: 40px; height: 40px; border-radius: 12px; }
    .hcsa-form__submit { width: 100%; }
    .hcsa-footer-map__card { padding: 26px 22px; border-radius: 22px; }
    .hcsa-footer-map__button { width: 100%; }
}


/* Contact title typography and vector icons — v1.0.8 */


/* Contact form styling refinement + icon spacing — v1.0.9 */
.hcsa-contact-detail {
    display: grid !important;
    grid-template-columns: 54px minmax(0,1fr);
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(18,58,120,.09);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 30px rgba(18,58,120,.06);
}
.hcsa-contact-detail__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), var(--hcsa-primary));
    box-shadow: 0 12px 24px rgba(18,58,120,.20);
}
.hcsa-contact-detail__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    color: #fff;
    stroke-width: 1.9;
}
.hcsa-contact-detail > div { display: grid; gap: 5px; min-width: 0; align-content: center; }
.hcsa-contact-detail strong {
    color: var(--hcsa-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 1.2;
}
.hcsa-contact-detail span:not(.hcsa-contact-detail__icon),
.hcsa-contact-detail a {
    color: #4e5d75;
    line-height: 1.55;
    overflow-wrap: anywhere;
}
.hcsa-contact__form-wrap {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: clamp(24px, 3.5vw, 42px);
    border: 1px solid rgba(18,58,120,.10);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 24px 60px rgba(18,58,120,.12);
}
.hcsa-form input,
.hcsa-form textarea {
    border: 1px solid rgba(18,58,120,.14);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 15px 17px;
    color: var(--hcsa-text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(18,58,120,.04);
}
.hcsa-form input:hover,
.hcsa-form textarea:hover {
    border-color: rgba(47,102,179,.36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 10px 22px rgba(18,58,120,.06);
}
.hcsa-form input:focus,
.hcsa-form textarea:focus {
    border-color: var(--hcsa-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47,102,179,.10), 0 12px 26px rgba(18,58,120,.08);
}
.hcsa-form textarea { resize: vertical; min-height: 138px; }
.hcsa-form__submit { min-width: 190px; position: relative; overflow: hidden; border-radius: 16px; }
@media (max-width: 600px) {
    .hcsa-contact__form-wrap { padding: 21px; border-radius: 22px; }
    .hcsa-contact-detail { grid-template-columns: 46px minmax(0,1fr); gap: 14px; padding: 13px 14px; }
    .hcsa-contact-detail__icon { width: 46px; height: 46px; border-radius: 14px; }
}

/* Strong rounded inputs fix — v1.0.10 */
.hcsa-contact .hcsa-form input[type="text"],
.hcsa-contact .hcsa-form input[type="email"],
.hcsa-contact .hcsa-form input[type="tel"],
.hcsa-contact .hcsa-form input[type="number"],
.hcsa-contact .hcsa-form textarea {
    width: 100%;
    min-height: 58px;
    border-radius: 18px !important;
    -webkit-border-radius: 18px !important;
    appearance: none;
    -webkit-appearance: none;
    background-clip: padding-box;
    overflow: hidden;
}
.hcsa-contact .hcsa-form textarea {
    min-height: 138px;
}
.hcsa-contact .hcsa-form input[type="text"],
.hcsa-contact .hcsa-form input[type="email"],
.hcsa-contact .hcsa-form input[type="tel"],
.hcsa-contact .hcsa-form input[type="number"] {
    line-height: 1.2;
}


/* Instant language switch and selector transition — v1.0.13 */
.hcsa-site {
    transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}
.hcsa-site.is-language-leaving {
    opacity: .28;
    transform: translateY(3px);
    filter: blur(1.5px);
    pointer-events: none;
}
.hcsa-site.is-language-entering {
    opacity: 0;
    transform: translateY(5px);
    filter: blur(2px);
}
.hcsa-site.is-language-arrived {
    animation: hcsa-language-arrive .48s cubic-bezier(.22,.75,.22,1) both;
}
.hcsa-lang {
    position: relative;
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.hcsa-lang a {
    position: relative;
    z-index: 1;
    transition: color .22s ease, background .28s ease, transform .25s ease, box-shadow .25s ease;
}
.hcsa-lang a.is-target {
    color: #fff !important;
    background: var(--hcsa-secondary);
    transform: scale(1.08);
    box-shadow: 0 7px 16px rgba(18,58,120,.24);
}
.hcsa-lang.is-switching {
    border-color: rgba(47,102,179,.42);
    box-shadow: 0 0 0 4px rgba(47,102,179,.08);
}
.hcsa-lang.is-switching a:not(.is-target) {
    opacity: .56;
    transform: scale(.94);
}
.hcsa-site.is-language-arrived .hcsa-lang a.is-active {
    animation: hcsa-language-pill .44s cubic-bezier(.22,.75,.22,1) both;
}
@keyframes hcsa-language-arrive {
    0% { opacity: 0; transform: translateY(5px); filter: blur(2px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes hcsa-language-pill {
    0% { transform: scale(.82); box-shadow: 0 0 0 rgba(18,58,120,0); }
    60% { transform: scale(1.10); box-shadow: 0 8px 20px rgba(18,58,120,.26); }
    100% { transform: scale(1); box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-site,
    .hcsa-lang,
    .hcsa-lang a {
        transition: none !important;
        animation: none !important;
    }
}


/* Footer direct department contacts — v1.0.14 */
.hcsa-footer__top {
    grid-template-columns: minmax(0,1.12fr) minmax(150px,.58fr) minmax(300px,1.18fr);
    gap: clamp(34px, 4.5vw, 62px);
}
.hcsa-footer__contact {
    gap: 10px;
}
.hcsa-footer__main-email {
    font-size: 15px;
}
.hcsa-footer__address {
    max-width: 430px;
    line-height: 1.55;
}
.hcsa-footer__departments {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.11);
}
.hcsa-footer__departments-title {
    display: block;
    margin-bottom: 12px;
    color: #cfe0f8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.hcsa-footer__department-list {
    display: grid;
    gap: 9px;
}
.hcsa-footer__department {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 11px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hcsa-footer__department:hover {
    transform: translateX(3px);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.085);
}
.hcsa-footer__department-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), #1b4f91);
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.hcsa-footer__department-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.hcsa-footer__department-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.hcsa-footer__department-copy strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.25;
}
.hcsa-footer__department-copy small {
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.35;
}
@media (max-width: 820px) {
    .hcsa-footer__top {
        grid-template-columns: 1fr 1fr;
    }
    .hcsa-footer__contact {
        grid-column: 1 / -1;
    }
    .hcsa-footer__department-list {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}
@media (max-width: 680px) {
    .hcsa-footer__top {
        grid-template-columns: 1fr;
    }
    .hcsa-footer__brand,
    .hcsa-footer__contact {
        grid-column: auto;
    }
    .hcsa-footer__department-list {
        grid-template-columns: 1fr;
    }
}


/* Direct department contacts inside Contact section — v1.0.15 */
.hcsa-contact-departments {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(18,58,120,.11);
}
.hcsa-contact-departments__title {
    display: block;
    margin-bottom: 13px;
    color: var(--hcsa-primary);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.hcsa-contact-departments__grid {
    display: grid;
    gap: 10px;
}
.hcsa-contact-department {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(18,58,120,.10);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,244,251,.72));
    box-shadow: 0 10px 26px rgba(18,58,120,.05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hcsa-contact-department:hover {
    transform: translateY(-2px);
    border-color: rgba(47,102,179,.28);
    box-shadow: 0 15px 32px rgba(18,58,120,.10);
}
.hcsa-contact-department__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), var(--hcsa-primary));
    box-shadow: 0 10px 22px rgba(18,58,120,.18);
}
.hcsa-contact-department__icon svg {
    width: 21px;
    height: 21px;
    display: block;
}
.hcsa-contact-department__copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}
.hcsa-contact-department__copy strong {
    color: var(--hcsa-primary);
    font-size: 12px;
    line-height: 1.25;
}
.hcsa-contact-department__copy small {
    color: #56657d;
    font-size: 13px;
    line-height: 1.35;
}
@media (max-width: 600px) {
    .hcsa-contact-departments { margin-top: 22px; padding-top: 20px; }
    .hcsa-contact-department { grid-template-columns: 42px minmax(0,1fr); gap: 12px; padding: 11px 12px; }
    .hcsa-contact-department__icon { width: 42px; height: 42px; border-radius: 13px; }
}


/* Contact section redesign — v1.0.16 */
.hcsa-contact {
    background:
        radial-gradient(circle at 8% 12%, rgba(47,102,179,.12), transparent 24%),
        radial-gradient(circle at 94% 90%, rgba(18,58,120,.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.hcsa-contact::before {
    opacity: .22;
    background-size: 52px 52px;
}
.hcsa-contact__shell {
    grid-template-columns: minmax(0,.93fr) minmax(0,1.07fr);
    gap: clamp(24px, 4vw, 42px);
    padding: clamp(26px, 4vw, 42px);
    border-radius: 36px;
    border: 1px solid rgba(18,58,120,.10);
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(245,249,255,.88));
    box-shadow: 0 28px 80px rgba(18,58,120,.10);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.hcsa-contact__shell::after {
    width: 360px;
    height: 360px;
    right: -200px;
    top: -190px;
    background: linear-gradient(145deg, rgba(47,102,179,.12), rgba(18,58,120,.015));
}
.hcsa-contact__info,
.hcsa-contact__form-wrap {
    align-self: stretch;
    justify-content: flex-start;
}
.hcsa-contact__info {
    padding: clamp(26px, 3vw, 34px);
    border-radius: 30px;
    border: 1px solid rgba(18,58,120,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(247,250,255,.98) 100%);
    box-shadow: 0 16px 44px rgba(18,58,120,.06);
}
.hcsa-contact__info .hcsa-kicker,
.hcsa-form-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hcsa-contact__info .hcsa-kicker::before,
.hcsa-form-heading span::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--hcsa-secondary);
}
.hcsa-contact__info h2 {
    max-width: 460px;
    margin: 14px 0 16px;
    font-size: var(--hcsa-contact-title-size, 52px);
    line-height: 1.05;
}
.hcsa-contact__intro {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.7;
}
.hcsa-contact__details {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}
.hcsa-contact-detail {
    min-height: 100%;
    grid-template-columns: 56px minmax(0,1fr);
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(18,58,120,.10);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 34px rgba(18,58,120,.05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hcsa-contact-detail:hover {
    transform: translateY(-2px);
    border-color: rgba(47,102,179,.26);
    box-shadow: 0 18px 38px rgba(18,58,120,.08);
}
.hcsa-contact-detail__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
}
.hcsa-contact-detail__icon svg {
    width: 25px;
    height: 25px;
}
.hcsa-contact-detail > div {
    gap: 6px;
}
.hcsa-contact-detail strong {
    font-size: 11px;
    letter-spacing: .14em;
}
.hcsa-contact-detail span:not(.hcsa-contact-detail__icon),
.hcsa-contact-detail a {
    font-size: 15px;
    line-height: 1.55;
}
.hcsa-contact-departments {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(18,58,120,.10);
}
.hcsa-contact-departments__title {
    margin-bottom: 14px;
}
.hcsa-contact-departments__grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
}
.hcsa-contact-department {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 12px;
    min-height: 92px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hcsa-contact-department__icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
}
.hcsa-contact-department__copy strong {
    font-size: 12px;
}
.hcsa-contact-department__copy small {
    font-size: 13px;
}
.hcsa-contact__form-wrap {
    padding: clamp(28px, 3.2vw, 40px);
    border-radius: 30px;
    border: 1px solid rgba(18,58,120,.09);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 48px rgba(18,58,120,.08);
    overflow: hidden;
}
.hcsa-contact__form-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hcsa-secondary), var(--hcsa-primary));
}
.hcsa-form-heading {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(18,58,120,.08);
}
.hcsa-form-heading strong {
    max-width: 360px;
    font-size: clamp(28px, 2.7vw, 40px);
    line-height: 1.12;
}
.hcsa-form {
    gap: 20px;
}
.hcsa-form__row {
    gap: 16px;
}
.hcsa-form label > span {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: .01em;
}
.hcsa-contact .hcsa-form input[type="text"],
.hcsa-contact .hcsa-form input[type="email"],
.hcsa-contact .hcsa-form input[type="tel"],
.hcsa-contact .hcsa-form input[type="number"] {
    min-height: 56px;
    border-radius: 18px !important;
    border: 1px solid rgba(18,58,120,.12);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94), 0 6px 18px rgba(18,58,120,.04);
}
.hcsa-contact .hcsa-form textarea {
    min-height: 150px;
    border-radius: 22px !important;
    border: 1px solid rgba(18,58,120,.12);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94), 0 6px 18px rgba(18,58,120,.04);
}
.hcsa-contact .hcsa-form input:hover,
.hcsa-contact .hcsa-form textarea:hover {
    border-color: rgba(47,102,179,.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 10px 24px rgba(18,58,120,.06);
}
.hcsa-contact .hcsa-form input:focus,
.hcsa-contact .hcsa-form textarea:focus {
    border-color: var(--hcsa-secondary);
    box-shadow: 0 0 0 4px rgba(47,102,179,.10), 0 12px 26px rgba(18,58,120,.08);
}
.hcsa-form__privacy {
    margin-top: -4px;
    color: #7a879a;
    font-size: 12px;
}
.hcsa-form__submit {
    min-width: 210px;
    min-height: 56px;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(18,58,120,.15);
}
@media (max-width: 1140px) {
    .hcsa-contact__shell {
        grid-template-columns: 1fr;
    }
    .hcsa-contact__details {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
@media (max-width: 820px) {
    .hcsa-contact__details,
    .hcsa-contact-departments__grid,
    .hcsa-form__row {
        grid-template-columns: 1fr;
    }
    .hcsa-contact__info,
    .hcsa-contact__form-wrap {
        padding: 22px;
        border-radius: 24px;
    }
}
@media (max-width: 600px) {
    .hcsa-contact__shell {
        padding: 18px;
        border-radius: 26px;
    }
    .hcsa-contact__info h2 {
        font-size: var(--hcsa-contact-title-size, 38px);
    }
    .hcsa-contact-detail {
        grid-template-columns: 50px minmax(0,1fr);
        padding: 14px;
        border-radius: 18px;
    }
    .hcsa-contact-detail__icon,
    .hcsa-contact-department__icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    .hcsa-contact-department {
        min-height: 0;
    }
    .hcsa-form-heading strong {
        font-size: 28px;
    }
    .hcsa-contact .hcsa-form input[type="text"],
    .hcsa-contact .hcsa-form input[type="email"],
    .hcsa-contact .hcsa-form input[type="tel"],
    .hcsa-contact .hcsa-form input[type="number"] {
        min-height: 54px;
        border-radius: 16px !important;
    }
    .hcsa-contact .hcsa-form textarea {
        border-radius: 18px !important;
    }
}


/* Contact layout correction — v1.0.17 */
.hcsa-contact__info h2 {
    max-width: 420px;
    font-size: var(--hcsa-contact-title-size, 52px);
}
.hcsa-contact__intro {
    max-width: 460px;
}
.hcsa-contact__details {
    grid-template-columns: 1fr;
    gap: 14px;
}
.hcsa-contact-detail {
    grid-template-columns: 56px minmax(0,1fr);
    align-items: center;
}
.hcsa-contact-detail > div {
    min-width: 0;
}
.hcsa-contact-departments__grid {
    grid-template-columns: 1fr;
    gap: 12px;
}
.hcsa-contact-department {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 14px;
    min-height: 0;
    align-items: center;
    padding: 14px 16px;
}
.hcsa-contact-department__copy {
    gap: 4px;
}
.hcsa-contact-department__copy strong {
    font-size: 13px;
    line-height: 1.3;
}
.hcsa-contact-department__copy small {
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}
@media (max-width: 1140px) {
    .hcsa-contact__details,
    .hcsa-contact-departments__grid {
        grid-template-columns: 1fr;
    }
}


/* Contact spacing + footer phone removal — v1.0.18 */
.hcsa-contact-detail {
    grid-template-columns: 56px minmax(0,1fr);
    column-gap: 22px;
    padding-inline: 20px;
}
.hcsa-contact-detail > div {
    padding-left: 2px;
}
@media (max-width: 600px) {
    .hcsa-contact-detail {
        grid-template-columns: 50px minmax(0,1fr);
        column-gap: 18px;
        padding-inline: 16px;
    }
}


/* Contact title size control fix — v1.0.19 */
.hcsa-site .hcsa-contact .hcsa-contact__info h2 {
    font-family: var(--hcsa-contact-title-font, var(--hcsa-font));
    font-size: var(--hcsa-contact-title-size, 52px) !important;
}
@media (max-width: 600px) {
    .hcsa-site .hcsa-contact .hcsa-contact__info h2 {
        font-size: var(--hcsa-contact-title-size, 38px) !important;
    }
}


/* About section executive business redesign — v1.0.20 */
.hcsa-about--text-only {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 12%, rgba(47,102,179,.10), transparent 27%),
        radial-gradient(circle at 94% 88%, rgba(18,58,120,.07), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.hcsa-about--text-only::before,
.hcsa-about--text-only::after {
    display: none;
}
.hcsa-about__text-shell {
    position: relative;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(18,58,120,.10);
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 30px 85px rgba(18,58,120,.10);
    overflow: hidden;
}
.hcsa-about__text-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    width: auto;
    height: 6px;
    background: linear-gradient(90deg, var(--hcsa-secondary), var(--hcsa-primary));
}
.hcsa-about__text-shell::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -190px;
    top: -190px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(47,102,179,.12), rgba(18,58,120,.01));
    pointer-events: none;
}
.hcsa-about__heading {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0 0 30px;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 26px;
    text-align: left;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255,255,255,.04), transparent 42%),
        linear-gradient(135deg, #0a2b5d 0%, var(--hcsa-primary) 58%, #245ca2 100%);
    box-shadow: 0 22px 48px rgba(18,58,120,.18);
    overflow: hidden;
}
.hcsa-about__heading::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image:
        linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to right, #000, transparent 78%);
    pointer-events: none;
}
.hcsa-about__heading::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -76px;
    top: -88px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 56px rgba(255,255,255,.02);
}
.hcsa-about__heading .hcsa-kicker {
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    color: #cfe0f8;
}
.hcsa-about__heading .hcsa-kicker::before {
    background: #8fc0ff;
}
.hcsa-about__heading h2 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.045em;
}
.hcsa-richtext--business {
    counter-reset: hcsa-about-card;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    max-width: none;
    margin-inline: 0;
}
.hcsa-richtext--business p {
    counter-increment: hcsa-about-card;
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 30px 28px 28px 82px;
    border: 1px solid rgba(18,58,120,.10);
    border-radius: 22px;
    background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
    color: #40506a;
    font-size: 16px;
    line-height: 1.72;
    box-shadow: 0 14px 34px rgba(18,58,120,.055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.hcsa-richtext--business p:hover {
    transform: translateY(-3px);
    border-color: rgba(47,102,179,.28);
    box-shadow: 0 22px 44px rgba(18,58,120,.10);
}
.hcsa-richtext--business p::before {
    content: counter(hcsa-about-card, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 27px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), var(--hcsa-primary));
    box-shadow: 0 10px 24px rgba(18,58,120,.20);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
}
.hcsa-richtext--business p::after {
    content: "";
    position: absolute;
    left: 26px;
    bottom: 24px;
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: rgba(47,102,179,.20);
}
.hcsa-about--text-only .hcsa-stats {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #092858 0%, var(--hcsa-primary) 58%, #245ca2 100%);
    box-shadow: 0 20px 44px rgba(18,58,120,.16);
}
.hcsa-about--text-only .hcsa-stat {
    position: relative;
    min-height: 126px;
    padding: 28px 30px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hcsa-about--text-only .hcsa-stat + .hcsa-stat {
    border-left: 1px solid rgba(255,255,255,.14);
}
.hcsa-about--text-only .hcsa-stat::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    right: 18px;
    top: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 0 0 14px rgba(255,255,255,.025);
}
.hcsa-about--text-only .hcsa-stat strong {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(34px, 4vw, 48px);
    line-height: .95;
}
.hcsa-about--text-only .hcsa-stat span {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: #cfe0f8;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .10em;
}
@media (max-width: 820px) {
    .hcsa-about__heading {
        padding: 30px 26px;
        border-radius: 22px;
    }
    .hcsa-richtext--business {
        grid-template-columns: 1fr;
    }
    .hcsa-about--text-only .hcsa-stats {
        grid-template-columns: 1fr;
    }
    .hcsa-about--text-only .hcsa-stat + .hcsa-stat {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }
}
@media (max-width: 600px) {
    .hcsa-about__text-shell {
        padding: 18px;
        border-radius: 26px;
    }
    .hcsa-about__heading h2 {
        font-size: clamp(34px, 12vw, 48px);
    }
    .hcsa-richtext--business p {
        padding: 78px 22px 24px;
        border-radius: 18px;
    }
    .hcsa-richtext--business p::before {
        left: 22px;
        top: 22px;
    }
    .hcsa-richtext--business p::after {
        display: none;
    }
    .hcsa-about--text-only .hcsa-stat {
        min-height: 112px;
        padding: 24px;
    }
}


/* About cards without numbering — v1.0.21 */
.hcsa-richtext--business p {
    padding: 28px 28px 28px 28px;
}
.hcsa-richtext--business p::before {
    content: none;
    display: none;
}
.hcsa-richtext--business p::after {
    left: 28px;
    top: 22px;
    bottom: auto;
    width: 46px;
    height: 4px;
    background: linear-gradient(90deg, var(--hcsa-secondary), rgba(47,102,179,.15));
}


/* Privacy policy modal — v1.0.22 */
.hcsa-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}
.hcsa-footer__privacy-link {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.76);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease;
}
.hcsa-footer__privacy-link:hover,
.hcsa-footer__privacy-link:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
body.hcsa-privacy-open {
    overflow: hidden;
}
.hcsa-privacy-modal[hidden] {
    display: none !important;
}
.hcsa-privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.hcsa-privacy-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.hcsa-privacy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4,18,42,.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hcsa-privacy-modal__dialog {
    position: relative;
    width: min(940px, 100%);
    max-height: min(86vh, 920px);
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 38px 110px rgba(0,0,0,.34);
    transform: translateY(18px) scale(.98);
    transition: transform .24s ease;
}
.hcsa-privacy-modal.is-open .hcsa-privacy-modal__dialog {
    transform: translateY(0) scale(1);
}
.hcsa-privacy-modal__header {
    position: relative;
    padding: 30px 72px 28px 34px;
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(135deg, #082654 0%, var(--hcsa-primary) 58%, #2b65ad 100%);
    background-size: 42px 42px, 42px 42px, auto;
}
.hcsa-privacy-modal__header span {
    display: block;
    margin-bottom: 9px;
    color: #cfe0f8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.hcsa-privacy-modal__header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}
.hcsa-privacy-modal__header p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 13px;
}
.hcsa-privacy-modal__x {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 3px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.hcsa-privacy-modal__x:hover,
.hcsa-privacy-modal__x:focus-visible {
    background: rgba(255,255,255,.20);
    transform: rotate(4deg);
}
.hcsa-privacy-modal__content {
    overflow-y: auto;
    padding: 34px;
    color: #44536b;
    font-size: 15px;
    line-height: 1.75;
    overscroll-behavior: contain;
}
.hcsa-privacy-modal__content > :first-child {
    margin-top: 0;
}
.hcsa-privacy-modal__content h3 {
    margin: 30px 0 9px;
    color: var(--hcsa-primary);
    font-size: 19px;
    line-height: 1.3;
}
.hcsa-privacy-modal__content p {
    margin: 0 0 15px;
}
.hcsa-privacy-modal__content a {
    color: var(--hcsa-secondary);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hcsa-privacy-modal__footer {
    padding: 18px 34px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(18,58,120,.10);
    background: #f8fbff;
}
.hcsa-privacy-modal__footer .hcsa-button {
    min-width: 140px;
}
@media (max-width: 700px) {
    .hcsa-footer__bottom .hcsa-container {
        align-items: flex-start;
    }
    .hcsa-footer__legal {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        flex-direction: column;
    }
    .hcsa-privacy-modal {
        padding: 10px;
    }
    .hcsa-privacy-modal__dialog {
        max-height: 94vh;
        border-radius: 20px;
    }
    .hcsa-privacy-modal__header {
        padding: 25px 62px 23px 22px;
    }
    .hcsa-privacy-modal__x {
        right: 14px;
        top: 14px;
        width: 38px;
        height: 38px;
    }
    .hcsa-privacy-modal__content {
        padding: 24px 22px;
        font-size: 14px;
    }
    .hcsa-privacy-modal__footer {
        padding: 15px 22px;
    }
    .hcsa-privacy-modal__footer .hcsa-button {
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-privacy-modal,
    .hcsa-privacy-modal__dialog {
        transition: none;
    }
}


/* Privacy footer link visual correction — v1.0.23 */
.hcsa-site .hcsa-footer button.hcsa-footer__privacy-link,
.hcsa-site .hcsa-footer .hcsa-footer__privacy-link {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255,255,255,.76) !important;
    font: inherit !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 4px !important;
    cursor: pointer !important;
    transform: none !important;
}
.hcsa-site .hcsa-footer button.hcsa-footer__privacy-link:hover,
.hcsa-site .hcsa-footer button.hcsa-footer__privacy-link:focus-visible,
.hcsa-site .hcsa-footer .hcsa-footer__privacy-link:hover,
.hcsa-site .hcsa-footer .hcsa-footer__privacy-link:focus-visible {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    transform: none !important;
}


/* Section separators — v1.0.24 */
.hcsa-services,
.hcsa-specializations,
.hcsa-brochure,
.hcsa-contact,
.hcsa-footer {
    position: relative;
}
.hcsa-services::after,
.hcsa-specializations::after,
.hcsa-brochure::after,
.hcsa-contact::after,
.hcsa-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1120px, calc(100% - 48px));
    height: 16px;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(18,58,120,0) 0%,
            rgba(18,58,120,.10) 12%,
            rgba(47,102,179,.30) 50%,
            rgba(18,58,120,.10) 88%,
            rgba(18,58,120,0) 100%) center/100% 1px no-repeat,
        radial-gradient(circle, rgba(47,102,179,.65) 0 2px, transparent 2.2px) center/16px 16px no-repeat;
}
.hcsa-services::after,
.hcsa-specializations::after,
.hcsa-brochure::after,
.hcsa-contact::after {
    opacity: .95;
}
.hcsa-footer::before {
    opacity: .8;
}
@media (max-width: 680px) {
    .hcsa-services::after,
    .hcsa-specializations::after,
    .hcsa-brochure::after,
    .hcsa-contact::after,
    .hcsa-footer::before {
        width: calc(100% - 28px);
    }
}


/* Technical / industrial section separators + header scrollspy — v1.0.25 */
.hcsa-services::after,
.hcsa-specializations::after,
.hcsa-brochure::after,
.hcsa-contact::after,
.hcsa-footer::before {
    width: min(1120px, calc(100% - 48px));
    height: 28px;
    opacity: .9;
    background:
        radial-gradient(circle at 25% 50%, rgba(47,102,179,.48) 0 2px, transparent 2.5px),
        radial-gradient(circle at 50% 50%, var(--hcsa-secondary) 0 3px, rgba(47,102,179,.18) 3.5px 7px, transparent 7.5px),
        radial-gradient(circle at 75% 50%, rgba(47,102,179,.48) 0 2px, transparent 2.5px),
        repeating-linear-gradient(90deg,
            transparent 0 54px,
            rgba(47,102,179,.26) 54px 55px,
            transparent 55px 108px) center / 100% 10px no-repeat,
        linear-gradient(90deg,
            rgba(18,58,120,0) 0%,
            rgba(18,58,120,.08) 7%,
            rgba(47,102,179,.30) 22%,
            rgba(47,102,179,.42) 50%,
            rgba(47,102,179,.30) 78%,
            rgba(18,58,120,.08) 93%,
            rgba(18,58,120,0) 100%) center / 100% 1px no-repeat;
    filter: drop-shadow(0 4px 8px rgba(18,58,120,.08));
}
.hcsa-services::after,
.hcsa-specializations::after,
.hcsa-brochure::after,
.hcsa-contact::after {
    transform: translate(-50%, -50%);
}

.hcsa-nav a.is-section-active {
    color: var(--hcsa-primary) !important;
    font-weight: 850 !important;
}
.hcsa-nav a.is-section-active::after {
    right: 0 !important;
    height: 3px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hcsa-secondary), var(--hcsa-primary)) !important;
    box-shadow: 0 3px 9px rgba(47,102,179,.24);
}
.hcsa-nav a.is-section-active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hcsa-secondary);
    transform: translateX(-50%);
    box-shadow: 0 0 0 3px rgba(47,102,179,.10);
}
@media (max-width: 960px) {
    .hcsa-site .hcsa-nav a.is-section-active {
        padding-inline: 12px !important;
        border-radius: 10px;
        background: linear-gradient(90deg, rgba(47,102,179,.10), rgba(47,102,179,.035)) !important;
    }
    .hcsa-nav a.is-section-active::before,
    .hcsa-nav a.is-section-active::after {
        display: none !important;
    }
}
@media (max-width: 680px) {
    .hcsa-services::after,
    .hcsa-specializations::after,
    .hcsa-brochure::after,
    .hcsa-contact::after,
    .hcsa-footer::before {
        width: calc(100% - 28px);
        height: 24px;
        background:
            radial-gradient(circle at 50% 50%, var(--hcsa-secondary) 0 3px, rgba(47,102,179,.16) 3.5px 6px, transparent 6.5px),
            repeating-linear-gradient(90deg, transparent 0 38px, rgba(47,102,179,.22) 38px 39px, transparent 39px 76px) center / 100% 8px no-repeat,
            linear-gradient(90deg, rgba(18,58,120,0), rgba(47,102,179,.34) 50%, rgba(18,58,120,0)) center / 100% 1px no-repeat;
    }
}


/* Entry favicon preloader — v1.0.27 */
html.hcsa-preloading,
html.hcsa-preloading body {
    overflow: hidden !important;
}
.hcsa-preloader {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity .42s ease, visibility .42s ease;
}
.hcsa-preloader::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: none;
}
.hcsa-preloader.is-leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.hcsa-preloader__orbit {
    position: relative;
    z-index: 1;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.hcsa-preloader__orbit::before,
.hcsa-preloader__orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.hcsa-preloader__orbit::before {
    inset: 0;
    border: 3px solid rgba(18,58,120,.10);
    border-top-color: var(--hcsa-secondary);
    border-right-color: rgba(47,102,179,.52);
    animation: hcsa-preloader-spin .82s linear infinite;
    filter: drop-shadow(0 5px 10px rgba(18,58,120,.12));
}
.hcsa-preloader__orbit::after {
    inset: 9px;
    border: 1px solid rgba(47,102,179,.13);
}
.hcsa-preloader__favicon,
.hcsa-preloader__fallback {
    position: relative;
    z-index: 2;
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    margin: 0 !important;
    border-radius: 20px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 15px 34px rgba(18,58,120,.14);
}
.hcsa-preloader__favicon {
    display: block !important;
    padding: 7px;
}
.hcsa-preloader__fallback {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--hcsa-secondary), var(--hcsa-primary));
    font-size: 34px;
    font-weight: 900;
    font-family: var(--hcsa-font);
}
@keyframes hcsa-preloader-spin {
    to { transform: rotate(360deg); }
}
@media (max-width: 600px) {
    .hcsa-preloader__orbit {
        width: 104px;
        height: 104px;
    }
    .hcsa-preloader__favicon,
    .hcsa-preloader__fallback {
        width: 64px !important;
        height: 64px !important;
        max-width: 64px !important;
        max-height: 64px !important;
        border-radius: 18px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-preloader__orbit::before {
        animation-duration: 1.8s;
    }
    .hcsa-preloader {
        transition-duration: .18s;
    }
}


/* Pure white preloader background — v1.0.28 */


/* Configurable entry loader — v1.0.29 */
.hcsa-preloader__favicon.is-custom {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

/* Aro giratorio */
.hcsa-preloader--orbit .hcsa-preloader__orbit::before {
    animation: hcsa-preloader-spin .82s linear infinite;
}

/* Doble aro en sentidos opuestos */
.hcsa-preloader--double .hcsa-preloader__orbit::before {
    inset: 0;
    border: 3px solid rgba(18,58,120,.08);
    border-top-color: var(--hcsa-secondary);
    border-bottom-color: rgba(47,102,179,.55);
    animation: hcsa-preloader-spin .9s linear infinite;
}
.hcsa-preloader--double .hcsa-preloader__orbit::after {
    inset: 10px;
    border: 2px dashed rgba(18,58,120,.25);
    border-left-color: var(--hcsa-primary);
    border-right-color: var(--hcsa-secondary);
    animation: hcsa-preloader-spin-reverse 1.25s linear infinite;
}

/* Pulso / halo */
.hcsa-preloader--pulse .hcsa-preloader__orbit::before,
.hcsa-preloader--pulse .hcsa-preloader__orbit::after {
    border: 2px solid rgba(47,102,179,.30);
    animation: hcsa-preloader-pulse 1.25s ease-out infinite;
}
.hcsa-preloader--pulse .hcsa-preloader__orbit::after {
    inset: 12px;
    animation-delay: .32s;
}
.hcsa-preloader--pulse .hcsa-preloader__favicon,
.hcsa-preloader--pulse .hcsa-preloader__fallback {
    animation: hcsa-preloader-breathe 1.15s ease-in-out infinite alternate;
}

/* Escáner técnico */
.hcsa-preloader--technical .hcsa-preloader__orbit {
    border-radius: 24px;
}
.hcsa-preloader--technical .hcsa-preloader__orbit::before {
    inset: 0;
    border-radius: 24px;
    border: 2px dashed rgba(47,102,179,.30);
    border-top-color: var(--hcsa-secondary);
    border-bottom-color: var(--hcsa-primary);
    animation: hcsa-preloader-spin 2.2s linear infinite;
}
.hcsa-preloader--technical .hcsa-preloader__orbit::after {
    inset: 12px 4px auto 4px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--hcsa-secondary), transparent);
    box-shadow: 0 0 12px rgba(47,102,179,.50);
    animation: hcsa-preloader-scan 1.35s ease-in-out infinite;
}

/* Minimal / respiración */
.hcsa-preloader--minimal .hcsa-preloader__orbit::before,
.hcsa-preloader--minimal .hcsa-preloader__orbit::after {
    display: none;
}
.hcsa-preloader--minimal .hcsa-preloader__favicon,
.hcsa-preloader--minimal .hcsa-preloader__fallback {
    animation: hcsa-preloader-breathe 1s ease-in-out infinite alternate;
}

@keyframes hcsa-preloader-spin-reverse {
    to { transform: rotate(-360deg); }
}
@keyframes hcsa-preloader-pulse {
    0% { transform: scale(.72); opacity: .72; }
    70%, 100% { transform: scale(1.12); opacity: 0; }
}
@keyframes hcsa-preloader-breathe {
    from { transform: scale(.94); opacity: .82; }
    to { transform: scale(1.04); opacity: 1; }
}
@keyframes hcsa-preloader-scan {
    0%, 100% { transform: translateY(10px); opacity: .28; }
    50% { transform: translateY(88px); opacity: 1; }
}
@media (max-width: 600px) {
    .hcsa-preloader__favicon.is-custom {
        width: 72px !important;
        height: 72px !important;
        max-width: 72px !important;
        max-height: 72px !important;
    }
    @keyframes hcsa-preloader-scan {
        0%, 100% { transform: translateY(8px); opacity: .28; }
        50% { transform: translateY(78px); opacity: 1; }
    }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-preloader--double .hcsa-preloader__orbit::after,
    .hcsa-preloader--pulse .hcsa-preloader__orbit::before,
    .hcsa-preloader--pulse .hcsa-preloader__orbit::after,
    .hcsa-preloader--pulse .hcsa-preloader__favicon,
    .hcsa-preloader--pulse .hcsa-preloader__fallback,
    .hcsa-preloader--technical .hcsa-preloader__orbit::before,
    .hcsa-preloader--technical .hcsa-preloader__orbit::after,
    .hcsa-preloader--minimal .hcsa-preloader__favicon,
    .hcsa-preloader--minimal .hcsa-preloader__fallback {
        animation-duration: 2.2s;
    }
}

/* Specialization image modal — v1.0.30 */
.hcsa-specialization-card__image-button {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}
.hcsa-specialization-card__image-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hcsa-specialization-card__image-button:focus-visible {
    outline: 3px solid rgba(47,102,179,.55);
    outline-offset: -3px;
}
body.hcsa-specialization-modal-open { overflow: hidden; }
.hcsa-specialization-modal[hidden] { display: none !important; }
.hcsa-specialization-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 44px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.hcsa-specialization-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.hcsa-specialization-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4,18,42,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hcsa-specialization-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 94vw);
    max-height: 90vh;
    display: grid;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: 0 34px 90px rgba(0,0,0,.38);
    overflow: hidden;
    transform: translateY(10px) scale(.985);
    transition: transform .24s ease;
    outline: none;
}
.hcsa-specialization-modal.is-open .hcsa-specialization-modal__dialog {
    transform: translateY(0) scale(1);
}
.hcsa-specialization-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    margin: 0;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(18,58,120,.14) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.96) !important;
    color: #123a78 !important;
    box-shadow: 0 10px 30px rgba(4,18,42,.18);
    cursor: pointer;
    line-height: 1 !important;
    font-family: Arial,Helvetica,sans-serif !important;
    transform: none !important;
}
.hcsa-specialization-modal__close span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 31px;
    line-height: 1;
    font-weight: 300;
    transform: translateY(-1px);
}
.hcsa-specialization-modal__close:hover {
    background: #f1f6fc !important;
    color: #0b2c5f !important;
}
.hcsa-specialization-modal__close:focus-visible {
    outline: 3px solid rgba(47,102,179,.35);
    outline-offset: 3px;
}
.hcsa-specialization-modal__figure {
    margin: 0;
    display: grid;
    grid-template-rows: minmax(0,1fr) auto;
    min-height: 0;
    max-height: 90vh;
}
.hcsa-specialization-modal__image {
    width: 100%;
    max-height: calc(90vh - 70px);
    object-fit: contain;
    display: block;
    background: #eef4fb;
}
.hcsa-specialization-modal__caption {
    min-height: 58px;
    padding: 17px 76px 17px 24px;
    color: #123a78;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
}
@media (max-width: 600px) {
    .hcsa-specialization-modal { padding: 12px; }
    .hcsa-specialization-modal__dialog { width: 100%; border-radius: 18px; }
    .hcsa-specialization-modal__close { top: 10px; right: 10px; width: 42px; height: 42px; min-width: 42px; min-height: 42px; }
    .hcsa-specialization-modal__caption { padding: 14px 64px 14px 18px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-specialization-modal,
    .hcsa-specialization-modal__dialog { transition: none; }
}


/* Specialization image interaction refinement — v1.0.31 */
/* Keep the original specialization card/photo appearance. The clickable layer is transparent. */
.hcsa-specialization-card__media {
    position: relative;
}
.hcsa-specialization-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hcsa-specialization-card__image-button {
    display: none !important;
}
.hcsa-specialization-card__image-trigger {
    all: unset !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    display: block !important;
    box-sizing: border-box !important;
    cursor: zoom-in !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}
.hcsa-specialization-card__image-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(5,25,56,.08));
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}
.hcsa-specialization-card__image-trigger:hover::before {
    opacity: 1;
}
.hcsa-specialization-card__image-trigger:focus-visible {
    outline: 3px solid rgba(47,102,179,.52) !important;
    outline-offset: -3px !important;
}

/* Premium modal without altering the card itself. */
.hcsa-specialization-modal {
    padding: clamp(16px, 4vw, 42px);
}
.hcsa-specialization-modal__backdrop {
    background:
        radial-gradient(circle at 50% 35%, rgba(47,102,179,.18), transparent 38%),
        rgba(3,14,34,.90);
    backdrop-filter: blur(14px) saturate(.9);
    -webkit-backdrop-filter: blur(14px) saturate(.9);
}
.hcsa-specialization-modal__dialog {
    width: min(1080px, 94vw);
    max-height: 91vh;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(11,43,93,.98), rgba(5,25,56,.98));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 38px 110px rgba(0,0,0,.50), 0 0 0 1px rgba(68,133,219,.08) inset;
    overflow: hidden;
    transform: translateY(14px) scale(.975);
}
.hcsa-specialization-modal.is-open .hcsa-specialization-modal__dialog {
    transform: translateY(0) scale(1);
}
.hcsa-specialization-modal__figure {
    max-height: calc(91vh - 20px);
    border-radius: 20px;
    overflow: hidden;
    background: #071c3d;
}
.hcsa-specialization-modal__image {
    width: 100%;
    max-height: calc(91vh - 86px);
    object-fit: contain;
    background: #071c3d;
}
.hcsa-specialization-modal__caption {
    min-height: 58px;
    padding: 17px 78px 17px 22px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: .01em;
}
.hcsa-specialization-modal__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.24) !important;
    border-radius: 50% !important;
    background: rgba(5,25,56,.78) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hcsa-specialization-modal__close span {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
    transform: none;
}
.hcsa-specialization-modal__close span::before,
.hcsa-specialization-modal__close span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transform-origin: center;
}
.hcsa-specialization-modal__close span::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.hcsa-specialization-modal__close span::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.hcsa-specialization-modal__close:hover {
    background: rgba(30,85,157,.92) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}
.hcsa-specialization-modal__close:focus-visible {
    outline: 3px solid rgba(143,192,255,.55) !important;
    outline-offset: 3px !important;
}
@media (max-width: 600px) {
    .hcsa-specialization-modal { padding: 10px; }
    .hcsa-specialization-modal__dialog { width: 100%; padding: 7px; border-radius: 22px; }
    .hcsa-specialization-modal__figure { border-radius: 16px; }
    .hcsa-specialization-modal__close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .hcsa-specialization-modal__caption {
        padding: 14px 64px 14px 16px;
        font-size: 14px;
    }
}


/* Brochure dual downloads — v1.0.33 */
.hcsa-brochure__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.hcsa-button--brochure-secondary {
    background: rgba(255,255,255,.08);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.42);
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hcsa-button--brochure-secondary:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.68);
    box-shadow: 0 14px 30px rgba(2,18,48,.14);
}
@media (max-width: 880px) {
    .hcsa-brochure__actions { justify-content: center; }
}
@media (max-width: 560px) {
    .hcsa-brochure__actions { flex-direction: column; align-items: stretch; }
    .hcsa-brochure__actions .hcsa-button { width: 100%; }
}


/* Hero photo-first presets + no-glass option — v1.0.34 */
.hcsa-hero > .hcsa-container {
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: clamp(34px, 6vw, 74px);
}
.hcsa-hero-focus-center, .hcsa-hero-focus-center .hcsa-hero__media { background-position: center center; }
.hcsa-hero-focus-left, .hcsa-hero-focus-left .hcsa-hero__media { background-position: left center; }
.hcsa-hero-focus-right, .hcsa-hero-focus-right .hcsa-hero__media { background-position: right center; }
.hcsa-hero-focus-top, .hcsa-hero-focus-top .hcsa-hero__media { background-position: center top; }
.hcsa-hero-focus-bottom, .hcsa-hero-focus-bottom .hcsa-hero__media { background-position: center bottom; }

.hcsa-glass-none {
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.hcsa-glass-none h1,
.hcsa-glass-none p,
.hcsa-glass-none .hcsa-eyebrow,
.hcsa-glass-none .hcsa-hero__experience {
    text-shadow: 0 2px 18px rgba(0,0,0,.48), 0 1px 3px rgba(0,0,0,.42);
}

/* Centro editorial: mantiene el estilo actual */
.hcsa-hero-preset-centered > .hcsa-container { justify-content: center; }

/* Texto a la izquierda / fotografía libre a la derecha */
.hcsa-hero-preset-photo-right::before {
    background: linear-gradient(90deg, rgba(4,24,56,.62) 0%, rgba(5,30,66,.40) 34%, rgba(5,30,66,.10) 62%, rgba(5,30,66,0) 82%), linear-gradient(180deg, rgba(2,15,40,.12), rgba(2,15,40,.18));
}
.hcsa-hero-preset-photo-right > .hcsa-container { justify-content: flex-start; }
.hcsa-hero-preset-photo-right .hcsa-hero__content { margin-inline: 0; max-width: 660px; }
.hcsa-hero-preset-photo-right .hcsa-hero__pattern { mask-image: linear-gradient(to right, #000 0%, #000 34%, transparent 66%); }

/* Texto a la derecha / fotografía libre a la izquierda */
.hcsa-hero-preset-photo-left::before {
    background: linear-gradient(270deg, rgba(4,24,56,.62) 0%, rgba(5,30,66,.40) 34%, rgba(5,30,66,.10) 62%, rgba(5,30,66,0) 82%), linear-gradient(180deg, rgba(2,15,40,.12), rgba(2,15,40,.18));
}
.hcsa-hero-preset-photo-left > .hcsa-container { justify-content: flex-end; }
.hcsa-hero-preset-photo-left .hcsa-hero__content { margin-inline: 0; max-width: 660px; }
.hcsa-hero-preset-photo-left .hcsa-hero__pattern { mask-image: linear-gradient(to left, #000 0%, #000 34%, transparent 66%); }

/* Panorámico: más imagen y texto abajo */
.hcsa-hero-preset-panorama { align-items: stretch; }
.hcsa-hero-preset-panorama::before {
    background: linear-gradient(180deg, rgba(2,15,40,.04) 0%, rgba(2,15,40,.06) 48%, rgba(3,20,48,.68) 100%);
}
.hcsa-hero-preset-panorama > .hcsa-container {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: clamp(34px, 5vw, 62px);
}
.hcsa-hero-preset-panorama .hcsa-hero__content {
    width: min(100%, 980px);
    max-width: 980px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 24px;
}
.hcsa-hero-preset-panorama .hcsa-hero__pattern { opacity: .08; mask-image: linear-gradient(to bottom, transparent 10%, #000 70%); }

/* Foto protagonista: contenido compacto y overlay mínimo */
.hcsa-hero-preset-photo-focus::before {
    background: linear-gradient(180deg, rgba(2,15,40,.03) 0%, rgba(2,15,40,.06) 54%, rgba(2,15,40,.54) 100%);
}
.hcsa-hero-preset-photo-focus > .hcsa-container {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: clamp(30px, 5vw, 56px);
}
.hcsa-hero-preset-photo-focus .hcsa-hero__content {
    width: min(100%, 600px);
    max-width: 600px;
    margin-inline: 0;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 22px;
}
.hcsa-hero-preset-photo-focus .hcsa-hero__pattern { display: none; }
.hcsa-hero-preset-photo-focus .hcsa-hero__actions { margin-top: 24px; }
.hcsa-hero-preset-photo-focus .hcsa-hero__experience { margin-top: 28px; }

@media (max-width: 820px) {
    .hcsa-hero-preset-photo-right > .hcsa-container,
    .hcsa-hero-preset-photo-left > .hcsa-container,
    .hcsa-hero-preset-photo-focus > .hcsa-container { justify-content: center; align-items: flex-end; }
    .hcsa-hero-preset-photo-right .hcsa-hero__content,
    .hcsa-hero-preset-photo-left .hcsa-hero__content,
    .hcsa-hero-preset-photo-focus .hcsa-hero__content { width: 100%; max-width: 100%; }
    .hcsa-hero-preset-photo-right::before,
    .hcsa-hero-preset-photo-left::before { background: linear-gradient(180deg, rgba(4,24,56,.10) 0%, rgba(4,24,56,.20) 48%, rgba(4,24,56,.70) 100%); }
}


/* Panorama preset alignment correction — v1.0.36 */
.hcsa-hero-preset-panorama .hcsa-hero__content {
    margin-inline: auto;
    text-align: center !important;
}
.hcsa-hero-preset-panorama .hcsa-hero__content .hcsa-eyebrow {
    justify-content: center !important;
    width: 100%;
}
.hcsa-hero-preset-panorama .hcsa-hero__content h1,
.hcsa-hero-preset-panorama .hcsa-hero__content p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
.hcsa-hero-preset-panorama .hcsa-hero__content h1 {
    max-width: 820px;
}
.hcsa-hero-preset-panorama .hcsa-hero__content p {
    max-width: 720px;
}
.hcsa-hero-preset-panorama .hcsa-hero__actions,
.hcsa-hero-preset-panorama .hcsa-hero__experience {
    justify-content: center !important;
}


/* Bottom photo gradient in Hero — v1.0.37 */
.hcsa-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--hcsa-hero-bottom-gradient-height, 0%);
    background: linear-gradient(to top, rgba(var(--hcsa-hero-bottom-gradient-rgb, 0,0,0), var(--hcsa-hero-bottom-gradient-opacity, 0)) 0%, rgba(var(--hcsa-hero-bottom-gradient-rgb, 0,0,0), 0) 100%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}
.hcsa-hero.hcsa-hero-has-bottom-gradient::after {
    opacity: 1;
}
.hcsa-hero__pattern {
    z-index: 0;
}
.hcsa-hero > .hcsa-container {
    z-index: 1;
}


/* Hero scroll motion presets — v1.0.40 */
.hcsa-hero.hcsa-hero-scroll-ready {
    --hcsa-hero-motion-y: 0px;
    --hcsa-hero-motion-scale: 1;
    --hcsa-hero-motion-overlay: 1;
}
.hcsa-hero.hcsa-hero-scroll-ready .hcsa-hero__media {
    inset: -6%;
    transform: translate3d(0, var(--hcsa-hero-motion-y), 0) scale(var(--hcsa-hero-motion-scale));
    will-change: transform;
}
.hcsa-hero.hcsa-hero-scroll-ready::before {
    will-change: opacity;
}
.hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-parallax .hcsa-hero__media,
.hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-zoom-reveal .hcsa-hero__media {
    transition: transform .06s linear;
}
.hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic {
    min-height: calc(100vh + clamp(220px, 30vh, 360px));
    align-items: stretch;
}
.hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic > .hcsa-container {
    position: sticky;
    top: 82px;
    min-height: calc(100vh - 82px);
    height: calc(100vh - 82px);
    z-index: 1;
}
.admin-bar .hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic > .hcsa-container {
    top: 114px;
    min-height: calc(100vh - 114px);
    height: calc(100vh - 114px);
}
.hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic .hcsa-hero__content {
    transform: translateZ(0);
}
.hcsa-hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: .72;
    pointer-events: none;
}
.hcsa-hero-scroll-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 999px;
    background: #fff;
    animation: hcsaHeroScrollCue 1.6s ease-in-out infinite;
}
@keyframes hcsaHeroScrollCue {
    0%, 100% { transform: translateY(0); opacity: .95; }
    60% { transform: translateY(14px); opacity: .18; }
}
@media (max-width: 820px) {
    .hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic {
        min-height: calc(100vh + 150px);
    }
    .hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic > .hcsa-container {
        top: 74px;
        min-height: calc(100vh - 74px);
        height: calc(100vh - 74px);
    }
    .admin-bar .hcsa-hero.hcsa-hero-scroll-ready.hcsa-hero-effect-cinematic > .hcsa-container {
        top: 120px;
        min-height: calc(100vh - 120px);
        height: calc(100vh - 120px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hcsa-hero .hcsa-hero__media { transform: none !important; transition: none !important; }
    .hcsa-hero::before { opacity: 1 !important; }
    .hcsa-hero-scroll-cue { display: none !important; }
}


/* Specialization mobile image title correction — v1.0.47
 * Thumbnail ALT and TITLE are explicitly synchronized with the localized specialization
 * title. Android/Chrome long-press therefore shows the real service title instead of the
 * generated image filename, while the modal keeps the same localized caption. */
@media (hover: none), (pointer: coarse) {
    .hcsa-specialization-card__image-trigger::before {
        display: none !important;
    }
    .hcsa-specialization-card:hover {
        transform: none;
    }
    .hcsa-specialization-card:hover img {
        transform: none;
    }
}


/* Footer logo contrast card — v1.0.45 */
@media (max-width: 700px) {
    .hcsa-footer__logo-link--card { max-width: 100%; }
}


.hcsa-specialization-card__media,
.hcsa-specialization-card__media img,
.hcsa-specialization-card__image-trigger {
    touch-action: pan-y;
}
