:root {
  --hc-navy: #0a192f;
  --hc-blue: #0056b3;
  --hc-green: #28a745;
  --hc-green-2: #1e7e34;
  --hc-gold: #d4af37;
  --hc-text: #1e293b;
  --hc-muted: #5b6775;
  --hc-bg: #ffffff;
  --hc-slate: #e9ecef;
  --hc-white: #ffffff;
  --hc-line: #d9dee5;
  --hc-wrap: 1120px;
  --hc-shadow: 0 20px 50px rgba(10, 25, 47, 0.08);
  --hc-radius-btn: 8px;
  --hc-radius-card: 12px;
  --hc-radius-img: 10px;
}

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

html { scroll-behavior: smooth; }

body.hc-body {
  margin: 0;
  background: var(--hc-bg);
  color: var(--hc-text);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  line-height: 1.7;
}

body.hc-nav-open { overflow: hidden; }

a { color: var(--hc-blue); }
img { max-width: 100%; height: auto; display: block; }

.hc-wrap {
  width: min(calc(100% - 40px), var(--hc-wrap));
  margin: 0 auto;
}

.hc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hc-header.is-compact,
body.hc-nav-open .hc-header {
  background: var(--hc-navy);
  box-shadow: 0 10px 28px rgba(10, 25, 47, 0.22);
}

.hc-header .hc-wrap { width: min(calc(100% - 32px), 1280px); }

.hc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 18px;
}

.hc-logo { display: block; text-decoration: none; }
.hc-brand { display: block; overflow: visible; }
.hc-brand--header {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.hc-brand--footer { width: 380px; height: auto; }

.hc-header.is-compact .hc-header__inner { min-height: 76px; }
.hc-header.is-compact .hc-brand--header { height: 42px; max-width: 230px; }

.hc-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hc-menu {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-menu a {
  text-decoration: none;
  color: #d7deea;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-menu a:hover,
.hc-menu .current-menu-item a { color: #fff; }

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  white-space: nowrap;
  border-radius: var(--hc-radius-btn);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.hc-btn--cta {
  background: var(--hc-green);
  color: #fff;
}

.hc-btn--cta:hover { background: var(--hc-green-2); color: #fff; }

.hc-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hc-btn--ghost:hover { background: #fff; color: var(--hc-navy); }

.hc-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: var(--hc-radius-btn);
}

.hc-toggle__bar,
.hc-toggle__bar::before,
.hc-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}

.hc-toggle__bar::before,
.hc-toggle__bar::after { content: ""; position: absolute; left: 0; }
.hc-toggle__bar::before { top: -6px; }
.hc-toggle__bar::after { top: 6px; }

.hc-footer {
  background: var(--hc-navy);
  color: #c5d0e0;
  padding-top: 72px;
}

.hc-footer a { color: #fff; text-decoration: none; }
.hc-footer a:hover { color: var(--hc-gold); }

.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 48px;
  padding-bottom: 56px;
}

.hc-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-footer p,
.hc-footer li { font-size: 14px; line-height: 1.75; }
.hc-footer-menu { list-style: none; margin: 0; padding: 0; }
.hc-footer-menu li + li { margin-top: 10px; }
.hc-footer__legal-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
}
.hc-footer-menu--row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.hc-footer-menu--row li + li { margin-top: 0; }
.hc-muted { color: #8b9aaf; }

.hc-footer__base { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.hc-footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 13px;
  color: #8b9aaf;
}

.hc-form { display: grid; gap: 14px; }
.hc-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--hc-navy); }
.hc-form input,
.hc-form select,
.hc-form textarea {
  width: 100%;
  border: 1px solid var(--hc-line);
  background: #fff;
  border-radius: var(--hc-radius-btn);
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--hc-text);
}
.hc-form textarea { min-height: 140px; resize: vertical; }
.hc-form button {
  border: 0;
  cursor: pointer;
  background: var(--hc-green);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  min-height: 50px;
  border-radius: var(--hc-radius-btn);
}
.hc-form button:hover { background: var(--hc-green-2); }
.hc-form__hp { position: absolute; left: -9999px; }
.hc-notice { padding: 14px 16px; border-radius: var(--hc-radius-btn); margin-bottom: 16px; font-size: 14px; }
.hc-notice--ok { background: #ecfdf3; color: #166534; }
.hc-notice--err { background: #fef2f2; color: #991b1b; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hc-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 86, 179, 0.35);
  color: #9ec5ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hc-badge--dark {
  border-color: rgba(40, 167, 69, 0.35);
  background: rgba(40, 167, 69, 0.1);
  color: var(--hc-green-2);
}

.hc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0056b3;
  border: 0;
  border-radius: var(--hc-radius-card);
  position: relative;
  z-index: 2;
  margin-top: -40px;
  box-shadow: 0 18px 36px rgba(0, 86, 179, 0.28);
  overflow: hidden;
}

.hc-stat {
  background: transparent;
  padding: 14px 12px 12px;
  text-align: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.hc-stat:last-child { border-right: 0; }

.hc-stat__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #28a745;
  position: relative;
  overflow: hidden;
}

.hc-stat__icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.hc-stat__icon--desks::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='14' y='4' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='3' y='13' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='14' y='13' width='7' height='7' rx='1' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='14' y='4' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='3' y='13' width='7' height='7' rx='1' fill='black'/%3E%3Crect x='14' y='13' width='7' height='7' rx='1' fill='black'/%3E%3C/svg%3E");
}
.hc-stat__icon--clock::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M12 8v4.2L15 14' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M12 8v4.2L15 14' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hc-stat__icon--columns::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 20h16M6 8h12M8 8v12M12 8v12M16 8v12M5 6l7-3 7 3' fill='none' stroke='black' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 20h16M6 8h12M8 8v12M12 8v12M16 8v12M5 6l7-3 7 3' fill='none' stroke='black' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hc-stat__icon--shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 5 6v6c0 4 2.8 7 7 8.6C16.2 19 19 16 19 12V6l-7-3z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 5 6v6c0 4 2.8 7 7 8.6C16.2 19 19 16 19 12V6l-7-3z' fill='black'/%3E%3C/svg%3E");
}

.hc-stat__icon svg { display: none; }

.hc-stat strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hc-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #d7e6ff;
}

.hc-women {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #0a192f;
  color: #d7deea;
  text-decoration: none;
  border-radius: var(--hc-radius-card);
  border: 1px solid rgba(40, 167, 69, 0.28);
  box-shadow: var(--hc-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 0;
}

.hc-women:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(10, 25, 47, 0.18);
}

.hc-women__media {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  overflow: hidden;
}
.hc-women__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

.hc-women__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hc-women h3 {
  margin: 8px 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  color: #fff;
}
.hc-women p { margin: 0 0 14px; color: #c5d0e0; font-size: 15px; }
.hc-women em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-green);
}

.hc-map {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
  background: #0a192f;
  border-radius: var(--hc-radius-card);
  padding: 28px 32px;
  color: #d7deea;
}

.hc-map__art { width: 100%; max-width: 320px; margin: 0 auto; }
.hc-map__art svg { width: 100%; height: auto; display: block; }
.hc-map__land { fill: #3d8bff; stroke: #7dff9a; stroke-width: 3; }
.hc-map__land--west { fill: #2f6fd1; }
.hc-map__dot { fill: #28a745; stroke: #fff; stroke-width: 2; }
.hc-map__label { fill: #fff; font-size: 12px; font-family: Montserrat, sans-serif; font-weight: 600; }

.hc-map__copy h3 {
  margin: 12px 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  color: #fff;
}
.hc-map__copy p { margin: 0 0 16px; color: #c5d0e0; }

.hc-map__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.hc-map__list a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.hc-map__list span { display: block; color: #9ec5ff; font-size: 13px; }
.hc-map__list a:hover { color: var(--hc-green); }

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

.hc-area {
  display: block;
  background: #fff;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hc-area:hover {
  transform: translateY(-8px);
  box-shadow: var(--hc-shadow);
  border-color: var(--hc-blue);
}

.hc-area__media {
  height: 200px;
  overflow: hidden;
}

.hc-area__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hc-area:hover .hc-area__media img { transform: scale(1.08); }
.hc-area--featured { border-color: rgba(40, 167, 69, 0.45); }

.hc-area__body { padding: 22px 22px 26px; }
.hc-area h3 {
  margin: 0 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  color: var(--hc-navy);
}
.hc-area p { margin: 0 0 16px; color: var(--hc-muted); font-size: 14px; }
.hc-area em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-blue);
}

.hc-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hc-marquee__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: hc-rtl 42s linear infinite;
}

.hc-marquee:hover .hc-marquee__track { animation-play-state: paused; }

@keyframes hc-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.hc-review {
  background: #fff;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-card);
  padding: 22px 22px 20px;
  min-height: 100%;
  flex: 0 0 340px;
  width: 340px;
  box-shadow: 0 10px 28px rgba(10, 25, 47, 0.06);
  margin: 0;
}

.hc-review__head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.hc-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.hc-review__meta {
  display: block;
  font-size: 12px;
  color: var(--hc-muted);
}

.hc-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1a73e8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hc-review__verified svg { width: 16px; height: 16px; display: block; }

.hc-review__stars {
  display: flex;
  gap: 2px;
  margin: 0 0 10px;
}

.hc-review__stars svg { width: 16px; height: 16px; display: block; }

.hc-review q {
  display: block;
  quotes: none;
  font-size: 15px;
  line-height: 1.65;
  color: var(--hc-text);
}

.hc-review footer {
  margin-top: 16px;
  padding: 0;
  background: none;
  color: var(--hc-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-review strong { color: var(--hc-navy); display: block; font-size: 14px; }

.hc-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: hc-in 0.7s ease forwards;
}

@keyframes hc-in {
  to { opacity: 1; transform: none; }
}

.elementor-location-header,
.elementor-location-footer { display: none; }

.elementor-button,
.elementor-button-link {
  border-radius: var(--hc-radius-btn) !important;
}

.elementor-widget-image img,
.elementor-widget-image .elementor-widget-container,
.hc-main img,
.hc-area__media,
.hc-area__media img {
  border-radius: var(--hc-radius-img);
}

.elementor-widget-image img,
.hc-main .elementor-widget-image img {
  overflow: hidden;
}

.e-con[style*="background"],
.e-con.e-child {
  border-radius: var(--hc-radius-card);
}

.elementor-element.e-con.e-parent {
  border-radius: 0;
}

.hc-women__media,
.hc-women__media img { border-radius: 0; }
.e-con:has(.hc-stats),
.e-con:has(.hc-marquee) { overflow: visible; }

@media (max-width: 1100px) {
  .hc-stats { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .hc-stat:nth-child(2n) { border-right: 0; }
  .hc-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hc-brand--header { height: 40px; max-width: 210px; }
  .hc-menu { gap: 14px; }
}

@media (max-width: 767px) {
  .elementor .e-con.e-flex > .e-con {
    --width: 100% !important;
    width: 100% !important;
    max-width: 100%;
  }
  .elementor-widget-heading h1.elementor-heading-title {
    font-size: clamp(30px, 9vw, 48px) !important;
  }
  .hc-stats,
  .hc-areas,
  .hc-reviews,
  .hc-women,
  .hc-map,
  .hc-map__list { grid-template-columns: 1fr; }
  .hc-stats { margin-top: 0; }
  .hc-stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hc-stat:last-child { border-bottom: 0; }
  .hc-women__media,
  .hc-women__media img { height: 180px; min-height: 180px; max-height: 180px; }
  .hc-women__body { padding: 20px 22px; }
  .hc-map { padding: 22px 18px; }
  .hc-review { width: 280px; flex-basis: 280px; }
}

@media (max-width: 1280px) {
  .hc-footer__grid,
  .hc-footer__base-inner { display: grid; grid-template-columns: 1fr; }
  .hc-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hc-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--hc-navy);
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: stretch;
  }
  .hc-nav.is-open { display: flex; }
  .hc-menu { flex-direction: column; gap: 16px; }
  .hc-header__cta { width: 100%; }
  .hc-brand--header { height: 38px; max-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .hc-marquee__track { animation: none; }
  .hc-reveal { animation: none; opacity: 1; transform: none; }
}

@media (min-width: 768px) {
  .hc-parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .hc-parallax { background-attachment: scroll; }
}

.hc-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(18, 140, 74, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-wa-float svg { width: 32px; height: 32px; display: block; }
.hc-wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 32px rgba(18, 140, 74, 0.55);
  color: #fff;
}
