/* ===============================
   HCM Landing Page
================================ */

:root {
  --hcm-white: #ffffff;
  --hcm-navy: #151655;
  --hcm-main-blue: #1083c1;
  --hcm-green: #25d366;
  --hcm-dark-text: #1f2937;
  --hcm-muted-text: #4b5563;
  --hcm-heading: #0b4f6c;
  --hcm-border: #e5e7eb;
  --hcm-placeholder: #9ca3af;
  --hcm-error: #ff0000;
}

/* ===============================
   Base
================================ */

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Instrument Sans", Arial, sans-serif;
  background: var(--hcm-white);
  color: var(--hcm-dark-text);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.hcm-page {
  width: 100%;
  min-height: 100vh;
  background: var(--hcm-white);
}

/* ===============================
   Header
================================ */

.hcm-header {
  width: 100%;
  min-height: 113px;
  background: var(--hcm-white);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06); 
}

.hcm-header__container {
  width: 100%;
  max-width: 1640px;
  min-height: 113px;
  margin: 0 auto;
  padding: 0 121px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hcm-header__logo {
  width: 194px;
  height: 81px;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  flex: 0 0 auto;
  text-decoration: none;
}

.hcm-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hcm-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
}

.hcm-header__btn {
  min-height: 38px;
  border-radius: 999px;
  padding: 10px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.hcm-header__btn:hover {
  transform: translateY(-1px);
}

.hcm-header__btn--call {
  color: var(--hcm-navy);
  background: transparent;
  border: 2px solid var(--hcm-navy);
}

.hcm-header__btn--call:hover {
  background: var(--hcm-navy);
  color: var(--hcm-white);
}

.hcm-header__btn--whatsapp {
  min-width: 138px;
  color: var(--hcm-white);
  background: var(--hcm-green);
  border: 2px solid var(--hcm-green);
}

.hcm-header__btn--whatsapp:hover {
  filter: brightness(0.96);
}

.hcm-header__btn--enquire {
  min-width: 138px;
  color: var(--hcm-white);
  background: var(--hcm-main-blue);
  border: 2px solid var(--hcm-main-blue);
}

.hcm-header__btn--enquire:hover {
  filter: brightness(0.96);
}

.hcm-header__icon {
  width: 18px;
  height: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 18px;
}

.hcm-header__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ===============================
   Hamburger Button
================================ */

.hcm-header__toggle {
  display: none;

  width: 42px;
  height: 42px;
  border: 1.5px solid var(--hcm-navy);
  border-radius: 10px;
  background: transparent;

  padding: 9px;
  cursor: pointer;
  flex: 0 0 auto;
}

.hcm-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--hcm-navy);
  border-radius: 999px;

  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.hcm-header__toggle span + span {
  margin-top: 6px;
}

.hcm-header.is-menu-open .hcm-header__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hcm-header.is-menu-open .hcm-header__toggle span:nth-child(2) {
  opacity: 0;
}

.hcm-header.is-menu-open .hcm-header__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===============================
   Hero
================================ */

.hcm-hero {
  width: 100%;
  min-height: 875px;
  background: linear-gradient(
    111deg,
    #0a2d98 0%,
    #1083c1 70%,
    #3eabe5 100%
  );
}

.hcm-hero__container {
  width: 100%;
  max-width: 1640px;
  min-height: 875px;
  margin: 0 auto;
  padding: 122px 96px 96px 123px;

  display: grid;
  grid-template-columns: minmax(0, 571px) minmax(460px, 560px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.hcm-hero__content {
  max-width: 571px;
  color: var(--hcm-white);
}

.hcm-hero__content h1 {
  margin: 0 0 28px;
  color: var(--hcm-white);

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hcm-hero__content p {
  margin: 0;
  max-width: 571px;
  color: rgba(255, 255, 255, 0.9);

  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 37px;
  flex-wrap: wrap;
}

.hcm-hero__btn {
  min-width: 229px;
  min-height: 51px;
  border-radius: 8px;
  padding: 15px 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.hcm-hero__btn:hover {
  transform: translateY(-1px);
}

.hcm-hero__btn--primary {
  background: var(--hcm-main-blue);
  border: 1.5px solid var(--hcm-main-blue);
  color: var(--hcm-white);
}

.hcm-hero__btn--outline {
  background: transparent;
  border: 1.5px solid var(--hcm-white);
  color: var(--hcm-white);
}

/* ===============================
   Form Card
================================ */

.hcm-form-card {
  width: 100%;
  max-width: 560px;
  min-height: 683px;
  border-radius: 24px;
  background: var(--hcm-white);
  padding: 48px;
  color: var(--hcm-dark-text);
  box-shadow: 0 22px 48px rgba(31, 41, 55, 0.12);
}

.hcm-form-card__heading {
  margin-bottom: 28px;
}

.hcm-form-card__heading h2 {
  margin: 0 0 8px;
  color: var(--hcm-heading);

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.hcm-form-card__heading p {
  margin: 0;
  color: var(--hcm-muted-text);

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.hcm-form {
  width: 100%;
}

.hcm-form__group {
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}

.hcm-form__group label {
  display: block;
  margin-bottom: 7px;
  color: #111827;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hcm-form__group input,
.hcm-interest-field__button {
  width: 100%;
  height: 48px;
  border: 1px solid var(--hcm-border);
  border-radius: 8px;
  background: var(--hcm-white);
  color: var(--hcm-dark-text);

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;

  outline: none;
  box-shadow: none;
}

.hcm-form__group input {
  padding: 0 16px;
}

.hcm-form__group input::placeholder,
.hcm-phone-field__input::placeholder {
  color: var(--hcm-placeholder);
  opacity: 1;
}

.hcm-form__group input:focus,
.hcm-interest-field.is-open .hcm-interest-field__button,
.hcm-interest-field__button:focus {
  border-color: var(--hcm-main-blue);
}

/* ===============================
   Phone Field Fixed Border
================================ */

.hcm-phone-field {
  width: 100%;
  height: 50px !important;
  border: 0;
  border-radius: 8px;
  background: var(--hcm-white);
  color: var(--hcm-dark-text);

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;

  outline: none;
  box-shadow: none;

  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  position: relative;
}


.hcm-phone-field:focus-within::before {
  border-color: var(--hcm-main-blue);
}

.hcm-form__group.has-error .hcm-phone-field::before {
  border-color: var(--hcm-error);
}

.hcm-phone-field__code {
  height: 48px;
  min-width: 108px;
  border: 0;
  border-right: 1px solid var(--hcm-border);
  background: transparent;
  color: var(--hcm-muted-text);
  padding: 0 14px 0 16px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;

  position: relative;
  z-index: 3;
}

.hcm-form__group.has-error .hcm-phone-field__code {
  border-right-color: var(--hcm-error);
}

.hcm-phone-field__input {
  width: 100%;
  height: 48px;
  border: 0 !important; 
  border-radius: 0 !important;
  padding: 0 16px !important;
  color: var(--hcm-dark-text);
  outline: 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

/* ===============================
   Dropdowns
================================ */

.hcm-dropdown {
  position: relative;
}

.hcm-dropdown__button {
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
}

.hcm-interest-field__button {
  padding: 0 16px;
  color: var(--hcm-placeholder);

  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.hcm-selected-interest {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hcm-dropdown__arrow {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
}

.hcm-dropdown__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  position: absolute;
  top: 2px;
  left: 4px;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.hcm-dropdown.is-open .hcm-dropdown__arrow::before {
  transform: rotate(-135deg);
  top: 6px;
}

.hcm-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  max-height: 260px;
  overflow-y: auto;

  background: var(--hcm-white);
  border: 1px solid var(--hcm-border);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.16);

  padding: 8px;
  display: none;
  z-index: 60;
}

.hcm-phone-field .hcm-dropdown__menu {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  width: 310px;
  z-index: 70;
}

.hcm-dropdown.is-open .hcm-dropdown__menu {
  display: block;
}

.hcm-dropdown__option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--hcm-dark-text);

  padding: 11px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.hcm-dropdown__option:hover,
.hcm-dropdown__option.is-selected {
  background: #eef7fc;
  color: var(--hcm-main-blue);
}

.hcm-dropdown__menu::-webkit-scrollbar {
  width: 6px;
}

.hcm-dropdown__menu::-webkit-scrollbar-track {
  background: transparent;
}

.hcm-dropdown__menu::-webkit-scrollbar-thumb {
  background: #c7ced8;
  border-radius: 999px;
}
/* ===============================
   Phone Field Fixed Full Border
================================ */

.hcm-phone-field {
  width: 100%;
  height: 48px;
  border: 1px solid var(--hcm-border);
  border-radius: 8px;
  background: var(--hcm-white);
  color: var(--hcm-dark-text);

  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hcm-phone-field:focus-within {
  border-color: var(--hcm-main-blue);
}

.hcm-form__group.has-error .hcm-phone-field {
  border-color: var(--hcm-error);
}

.hcm-phone-field__code {
  width: 108px;
  height: 46px;
  border: 0;
  border-right: 1px solid var(--hcm-border);
  border-radius: 8px 0 0 8px;
  background: transparent;
  color: var(--hcm-muted-text);
  padding: 0 14px 0 16px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.hcm-form__group.has-error .hcm-phone-field__code {
  border-right-color: var(--hcm-error);
}

.hcm-phone-field__input {
  width: 100%;
  height: 46px;
  border: 0 !important; 
  border-radius: 0 8px 8px 0 !important;
  padding: 0 16px !important;
  color: var(--hcm-dark-text);
  outline: 0;
  background: transparent;
}

.hcm-phone-field__input:focus {
  outline: 0;
}

.hcm-phone-field .hcm-dropdown__menu {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  width: 310px;
  z-index: 70;
}

@media (max-width: 767px) {
  .hcm-phone-field {
    grid-template-columns: 96px 1fr;
  }

  .hcm-phone-field__code {
    width: 96px;
  }

  .hcm-phone-field .hcm-dropdown__menu {
    width: min(310px, calc(100vw - 64px));
  }
}

@media (max-width: 480px) {
  .hcm-phone-field {
    grid-template-columns: 86px 1fr;
  }

  .hcm-phone-field__code {
    width: 86px;
    padding-left: 12px;
    padding-right: 10px;
    font-size: 14px;
  }
}
/* ===============================
   Submit + Errors
================================ */

.hcm-form__submit {
  width: 100%;
  height: 51px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  background: var(--hcm-main-blue);
  color: var(--hcm-white);
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.hcm-form__submit:hover {
  transform: translateY(-1px);
  background: #0d79b4;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--hcm-error);

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.field-error:not(:empty) {
  display: block;
}

.hcm-form__group.has-error input,
.hcm-form__group.has-error .hcm-interest-field__button {
  border-color: var(--hcm-error);
}

.form-general-error {
  margin-top: 14px;
  color: var(--hcm-error);

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

/* ===============================
   Laptop
================================ */

@media (max-width: 1366px) {
  .hcm-header__container {
    padding: 0 110px;
  }

  .hcm-header__logo {
    width: 180px;
    height: 75px;
  }

  .hcm-hero__container {
    padding: 96px 80px;
    grid-template-columns: minmax(0, 520px) minmax(430px, 520px);
    gap: 48px;
  }

  .hcm-hero__content h1 {
    font-size: 56px;
  }

  .hcm-hero__content p {
    font-size: 18px;
  }

  .hcm-form-card {
    max-width: 520px;
    padding: 42px;
  }

  .hcm-form-card__heading h2 {
    font-size: 30px;
  }
}

/* ===============================
   Small Laptop
================================ */

@media (max-width: 1199px) {
  .hcm-header {
    min-height: 100px;
  }

  .hcm-header__container {
    min-height: 100px;
    padding: 0 64px;
  }

  .hcm-header__logo {
    width: 165px;
    height: 68px;
  }

  .hcm-header__actions {
    gap: 12px;
  }

  .hcm-header__btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hcm-header__btn--whatsapp,
  .hcm-header__btn--enquire {
    min-width: 120px;
  }

  .hcm-hero {
    min-height: auto;
  }

  .hcm-hero__container {
    min-height: auto;
    padding: 84px 56px;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 500px);
  }

  .hcm-hero__content h1 {
    font-size: 50px;
  }

  .hcm-form-card {
    padding: 38px;
  }
}

/* ===============================
   Tablet
================================ */

@media (max-width: 991px) {
  .hcm-header {
    min-height: 92px;
  }

  .hcm-header__container {
    min-height: 92px;
    padding: 0 32px;
    gap: 24px;
  }

  .hcm-header__logo {
    width: 150px;
    height: 62px;
  }

  .hcm-header__actions {
    gap: 10px;
  }

  .hcm-header__btn {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .hcm-header__btn--whatsapp,
  .hcm-header__btn--enquire {
    min-width: 112px;
  }

  .hcm-header__icon,
  .hcm-header__icon svg {
    width: 16px;
    height: 16px;
  }

  .hcm-hero__container {
    padding: 72px 32px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hcm-hero__content {
    max-width: 680px;
  }

  .hcm-hero__content h1 {
    font-size: 50px;
  }

  .hcm-form-card {
    max-width: 620px;
    margin: 0 auto;
  }
}

/* ===============================
   Mobile
================================ */

@media (max-width: 767px) {
  .hcm-header {
    min-height: auto;
    background: var(--hcm-white);
    position: static;
    top: auto;
    z-index: 1000;
    box-shadow: none;
  }

  .hcm-header__container {
    max-width: none;
    min-height: 82px;
    padding: 14px 20px;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    position: relative;
  }

  .hcm-header__logo {
    width: 150px;
    height: auto;
  }

  .hcm-header__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hcm-header__actions {
    position: absolute;
    top: calc(100% - 1px);
    left: 20px;
    right: 20px;

    width: auto;
    padding: 18px;
    border-radius: 18px;

    background: var(--hcm-white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .hcm-header.is-menu-open .hcm-header__actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hcm-header__btn {
    width: 100%;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .hcm-header__btn--call,
  .hcm-header__btn--whatsapp,
  .hcm-header__btn--enquire {
    min-width: 100%;
  }

  .hcm-hero__container {
    padding: 56px 20px;
    gap: 44px;
  }

  .hcm-hero__content h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hcm-hero__content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hcm-hero__buttons {
    gap: 12px;
  }

  .hcm-hero__btn {
    width: 100%;
    min-width: 0;
  }

  .hcm-form-card {
    max-width: 100%;
    min-height: auto;
    padding: 32px 22px;
    border-radius: 22px;
  }

  .hcm-form-card__heading h2 {
    font-size: 28px;
  }

  .hcm-form-card__heading p {
    font-size: 14px;
  }

  .hcm-form__group input,
  .hcm-phone-field,
  .hcm-interest-field__button {
    height: 48px;
  }

  .hcm-phone-field {
    grid-template-columns: 96px 1fr;
  }

  .hcm-phone-field__code {
    min-width: 96px;
  }

  .hcm-phone-field .hcm-dropdown__menu {
    width: min(310px, calc(100vw - 64px));
  }
}

/* ===============================
   Small Mobile
================================ */

@media (max-width: 480px) {
  .hcm-header__container {
    min-height: 76px;
    padding: 12px 16px;
  }

  .hcm-header__logo {
    width: 135px;
  }

  .hcm-header__toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hcm-header__actions {
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 16px;
  }

  .hcm-hero__container {
    padding: 48px 16px;
  }

  .hcm-hero__content h1 {
    font-size: 36px;
  }

  .hcm-form-card {
    padding: 28px 18px;
  }

  .hcm-form-card__heading h2 {
    font-size: 25px;
  }

  .hcm-phone-field {
    grid-template-columns: 86px 1fr;
  }

  .hcm-phone-field__code {
    min-width: 86px;
    padding-left: 12px;
    padding-right: 10px;
    font-size: 14px;
  }

  .hcm-form__submit {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hcm-header__logo {
    width: 124px;
  }

  .hcm-header__toggle {
    width: 38px;
    height: 38px;
  }

  .hcm-header__actions {
    left: 12px;
    right: 12px;
  }

  .hcm-hero__content h1 {
    font-size: 32px;
  }
}

/* ===============================
   Desktop Fixed Header Override
   Mobile remains non-sticky
================================ */

:root {
  --hcm-fixed-header-height: 113px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  :root {
    --hcm-fixed-header-height: 100px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  :root {
    --hcm-fixed-header-height: 92px;
  }
}

/* Desktop + tablet fixed header */
@media (min-width: 768px) {
  body {
    padding-top: var(--hcm-fixed-header-height);
  }

  .hcm-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: var(--hcm-fixed-header-height);
    background: var(--hcm-white);
    z-index: 99999;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }

  .hcm-header__container {
    min-height: var(--hcm-fixed-header-height);
  }

  #apply,
  #apply-form {
    scroll-margin-top: calc(var(--hcm-fixed-header-height) + 20px);
  }
}

/* Mobile should NOT be sticky/fixed */
@media (max-width: 767px) {
  body {
    padding-top: 0;
  }

  .hcm-header {
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    min-height: auto;
    box-shadow: none;
    z-index: 1000;
  }

  #apply,
  #apply-form {
    scroll-margin-top: 0;
  }
}


/* ===============================
   Stats Section
================================ */

.hcm-stats-section {
  width: 100%;
  background: #151655;
  color: #ffffff;
}

.hcm-stats-section__container {
  width: 100%;
  max-width: 1640px;
  min-height: 156px;
  margin: 0 auto;
  padding: 48px 123px 48px 121px;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  column-gap: 48px;
}

.hcm-stats-section__item {
  min-width: 0;
  width: max-content;
  color: #ffffff;
  text-align: center;
}

.hcm-stats-section__item:first-child {
  justify-self: start;
}

.hcm-stats-section__item:nth-child(3) {
  justify-self: center;
}

.hcm-stats-section__item:last-child {
  justify-self: end;
}

.hcm-stats-section__item h3 {
  margin: 0 0 8px;
  color: #ffffff;

  font-family: "Inter", "Instrument Sans", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.8px;
}

.hcm-stats-section__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);

  font-family: "Inter", "Instrument Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.hcm-stats-section__divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.18);
}

/* ===============================
   Stats Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-stats-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-stats-section__item h3 {
    font-size: 34px;
  }

  .hcm-stats-section__item p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .hcm-stats-section__container {
    padding-left: 64px;
    padding-right: 64px;
    column-gap: 36px;
  }

  .hcm-stats-section__item h3 {
    font-size: 32px;
  }

  .hcm-stats-section__item p {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .hcm-stats-section__container {
    min-height: 132px;
    padding: 38px 32px;
    column-gap: 28px;
  }

  .hcm-stats-section__item h3 {
    font-size: 30px;
  }

  .hcm-stats-section__item p {
    font-size: 12px;
  }

  .hcm-stats-section__divider {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .hcm-stats-section__container {
    min-height: auto;
    padding: 34px 20px;

    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }

  .hcm-stats-section__item,
  .hcm-stats-section__item:first-child,
  .hcm-stats-section__item:nth-child(3),
  .hcm-stats-section__item:last-child {
    width: 100%;
    text-align: center;
    justify-self: center;
  }

  .hcm-stats-section__divider {
    width: 100%;
    max-width: 220px;
    height: 1px;
    margin: 0 auto;
  }

  .hcm-stats-section__item h3 {
    margin-bottom: 6px;
    font-size: 34px;
  }

  .hcm-stats-section__item p {
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hcm-stats-section__container {
    padding: 30px 16px;
    row-gap: 22px;
  }

  .hcm-stats-section__item h3 {
    font-size: 30px;
  }

  .hcm-stats-section__item p {
    font-size: 12px;
  }
}

/* ===============================
   Why Choose Us Section
================================ */

.hcm-why-section {
  width: 100%;
  background: #ffffff;
  color: #151655;
}

.hcm-why-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 96px 123px 120px 121px;
}

.hcm-why-section__title {
  margin: 0 0 64px;
  color: #151655;
  text-align: center;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hcm-why-section__grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 64px;
}

/* Left Gradient Card */

.hcm-why-section__highlight {
  width: 100%;
  min-height: 605px;
  border-radius: 16px;
  padding: 61px 51px 51px 61px;

  background: linear-gradient(
    111deg,
    #0a2d98 0%,
    #1083c1 70%,
    #3eabe5 100%
  );

  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.051);

  display: flex;
  flex-direction: column;
}

.hcm-why-section__highlight h3 {
  margin: 0 0 36px;
  color: #ffffff;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}

.hcm-why-section__highlight p {
  margin: 0 0 34px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-why-section__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 12px;
}

.hcm-why-section__list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;

  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hcm-why-section__list span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d97706;
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

/* Right Cards */

.hcm-why-section__cards {
  width: 100%;
  min-height: 603px;

  display: grid;
  gap: 33px;
}

.hcm-why-section__card {
  width: 100%;
  min-height: 126px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.051);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hcm-why-section__card h3 {
  margin: 0 0 12px;
  color: #151655;

  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.hcm-why-section__card p {
  margin: 0;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-why-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-why-section__grid {
    gap: 48px;
  }

  .hcm-why-section__title {
    font-size: 42px;
  }

  .hcm-why-section__highlight {
    padding: 52px 42px;
  }

  .hcm-why-section__highlight h3 {
    font-size: 38px;
  }

  .hcm-why-section__card p,
  .hcm-why-section__highlight p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .hcm-why-section__container {
    padding: 84px 64px 100px;
  }

  .hcm-why-section__grid {
    gap: 36px;
  }

  .hcm-why-section__highlight {
    padding: 46px 34px;
  }

  .hcm-why-section__highlight h3 {
    font-size: 34px;
  }

  .hcm-why-section__cards {
    gap: 24px;
  }

  .hcm-why-section__card {
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .hcm-why-section__container {
    padding: 76px 32px 90px;
  }

  .hcm-why-section__title {
    margin-bottom: 46px;
    font-size: 40px;
  }

  .hcm-why-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hcm-why-section__highlight {
    min-height: auto;
  }

  .hcm-why-section__cards {
    min-height: auto;
    gap: 20px;
  }

  .hcm-why-section__card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hcm-why-section__container {
    padding: 64px 20px 76px;
  }

  .hcm-why-section__title {
    margin-bottom: 36px;
    font-size: 36px;
    letter-spacing: -0.6px;
  }

  .hcm-why-section__highlight {
    border-radius: 16px;
    padding: 34px 22px;
  }

  .hcm-why-section__highlight h3 {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.22;
  }

  .hcm-why-section__highlight p {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hcm-why-section__list {
    gap: 11px;
  }

  .hcm-why-section__list li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  .hcm-why-section__list span {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .hcm-why-section__card {
    padding: 20px;
    border-radius: 14px;
  }

  .hcm-why-section__card h3 {
    font-size: 17px;
  }

  .hcm-why-section__card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hcm-why-section__container {
    padding: 56px 16px 68px;
  }

  .hcm-why-section__title {
    font-size: 32px;
  }

  .hcm-why-section__highlight {
    padding: 30px 18px;
  }

  .hcm-why-section__highlight h3 {
    font-size: 27px;
  }

  .hcm-why-section__card {
    padding: 18px;
  }
}

/* ===============================
   Certifications Section
================================ */

.hcm-certifications {
  width: 100%;
  background: #f5f7fa;
  color: #151655;
  padding: 123px 0 96px;
}

.hcm-certifications__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 123px 0 121px;
}

.hcm-certifications__heading {
  width: 100%;
  max-width: none;
  margin: 0 auto 72px;
  text-align: center;
}

.hcm-certifications__heading h2 {
  margin: 0 0 18px;
  color: #1083c1;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.hcm-certifications__heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-certifications__grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hcm-cert-card {
  width: 100%;
  min-height: 301px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 32px;

  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hcm-cert-card--wide {
  grid-column: 1 / -1;
  min-height: 229px;
}

.hcm-cert-card__badge {
  min-height: 27px;
  margin: 0 0 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1083c1;
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hcm-cert-card h3 {
  margin: 0 0 18px;
  color: #1083c1;

  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.35px;
}

.hcm-cert-card p {
  margin: 0 0 24px;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-cert-card__btn {
  min-height: 37px;
  margin-top: auto;
  border: 1.5px solid #d97706;
  border-radius: 8px;
  background: #ffffff;
  color: #d97706;
  padding: 9px 14px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.hcm-cert-card__btn:hover,
.hcm-cert-card__btn:focus {
  background: #d97706;
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

/* ===============================
   Certification Popup Modal
================================ */

body.hcm-modal-open {
  overflow: hidden;
}

.hcm-cert-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hcm-cert-modal.is-open {
  display: flex;
}

.hcm-cert-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.hcm-cert-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hcm-cert-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 5;

  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f5f7fa;
  color: #111827;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  font-weight: 300;
  line-height: 1;

  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.hcm-cert-modal__close:hover,
.hcm-cert-modal__close:focus {
  background: #e5e7eb;
  color: #000000;
  outline: none;
}

.hcm-cert-modal__card {
  max-width: none;
  min-height: auto;
  width: 100%;
  border-radius: 24px;
  padding: 48px;
  box-shadow: none;
}

.hcm-cert-modal__form {
  width: 100%;
}

.hcm-cert-modal .hcm-form-card__heading {
  padding-right: 42px;
}

.hcm-cert-modal .hcm-dropdown__menu {
  z-index: 999999;
}

/* ===============================
   Certifications Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-certifications__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-certifications__heading h2 {
    font-size: 42px;
  }

  .hcm-certifications__heading p {
    font-size: 16px;
  }

  .hcm-cert-card {
    padding: 28px;
  }
}

@media (max-width: 1199px) {
  .hcm-certifications {
    padding: 96px 0 80px;
  }

  .hcm-certifications__container {
    padding-left: 64px;
    padding-right: 64px;
  }

  .hcm-certifications__heading {
    margin-bottom: 56px;
  }

  .hcm-certifications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hcm-cert-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .hcm-certifications {
    padding: 84px 0 76px;
  }

  .hcm-certifications__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hcm-certifications__heading {
    margin-bottom: 44px;
  }

  .hcm-certifications__heading h2 {
    font-size: 40px;
  }

  .hcm-certifications__grid {
    gap: 20px;
  }

  .hcm-cert-card {
    min-height: auto;
  }

  .hcm-cert-modal__dialog {
    width: min(100%, 600px);
  }
}

@media (max-width: 767px) {
  .hcm-certifications {
    padding: 72px 0 64px;
  }

  .hcm-certifications__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hcm-certifications__heading {
    margin-bottom: 36px;
  }

  .hcm-certifications__heading h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hcm-certifications__heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hcm-certifications__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hcm-cert-card,
  .hcm-cert-card--wide {
    grid-column: auto;
    min-height: auto;
    padding: 26px;
  }

  .hcm-cert-card h3 {
    font-size: 17px;
  }

  .hcm-cert-card p {
    font-size: 14px;
  }

  .hcm-cert-modal {
    align-items: flex-start;
    padding: 18px;
    overflow-y: auto;
  }

  .hcm-cert-modal__dialog {
    width: 100%;
    max-height: none;
    margin: 20px 0;
    border-radius: 22px;
  }

  .hcm-cert-modal__card {
    padding: 36px 22px 28px;
    border-radius: 22px;
  }

  .hcm-cert-modal .hcm-form-card__heading {
    padding-right: 42px;
  }

  .hcm-cert-modal__close {
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    font-size: 27px;
  }
}

@media (max-width: 480px) {
  .hcm-certifications {
    padding: 64px 0 56px;
  }

  .hcm-certifications__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hcm-certifications__heading h2 {
    font-size: 30px;
  }

  .hcm-cert-card {
    padding: 22px;
  }

  .hcm-cert-card__badge {
    margin-bottom: 18px;
  }

  .hcm-cert-modal {
    padding: 12px;
  }

  .hcm-cert-modal__dialog {
    margin: 14px 0;
  }

  .hcm-cert-modal__card {
    padding: 34px 18px 24px;
  }
}

/* ===============================
   Who Should Enroll Section
================================ */

.hcm-enroll-section {
  width: 100%;
  background: linear-gradient(
    111deg,
    #0a2d98 0%,
    #1083c1 70%,
    #3eabe5 100%
  );
  color: #ffffff;
}

.hcm-enroll-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 120px 123px 96px 121px;
}

.hcm-enroll-section__heading {
  width: 100%;
  max-width: none;
  margin: 0 auto 64px;
  text-align: center;
}

.hcm-enroll-section__heading h2 {
  margin: 0 0 16px;
  color: #ffffff;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.hcm-enroll-section__heading p {
  max-width: 1197px;
  margin: 0 auto;
  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-enroll-section__grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hcm-enroll-card {
  width: 100%;
  min-height: 200px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.hcm-enroll-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #d97706;
  color: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hcm-enroll-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hcm-enroll-card h3 {
  margin: 0 0 14px;
  color: #1083c1;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.hcm-enroll-card p {
  margin: 0;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-enroll-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-enroll-section__heading h2 {
    font-size: 42px;
  }

  .hcm-enroll-section__heading p {
    font-size: 16px;
  }

  .hcm-enroll-card {
    padding: 24px;
  }
}

@media (max-width: 1199px) {
  .hcm-enroll-section__container {
    padding: 96px 64px 84px;
  }

  .hcm-enroll-section__heading {
    margin-bottom: 52px;
  }

  .hcm-enroll-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hcm-enroll-section__container {
    padding: 84px 32px 76px;
  }

  .hcm-enroll-section__heading {
    margin-bottom: 44px;
  }

  .hcm-enroll-section__heading h2 {
    font-size: 40px;
  }

  .hcm-enroll-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hcm-enroll-section__container {
    padding: 72px 20px 64px;
  }

  .hcm-enroll-section__heading {
    margin-bottom: 36px;
  }

  .hcm-enroll-section__heading h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hcm-enroll-section__heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hcm-enroll-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hcm-enroll-card {
    padding: 24px;
  }

  .hcm-enroll-card h3 {
    font-size: 17px;
  }

  .hcm-enroll-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hcm-enroll-section__container {
    padding: 64px 16px 56px;
  }

  .hcm-enroll-section__heading h2 {
    font-size: 30px;
  }

  .hcm-enroll-card {
    padding: 22px;
  }

  .hcm-enroll-card__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .hcm-enroll-card__icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===============================
   What You Gain Section
================================ */

.hcm-gain-section {
  width: 100%;
  background: #f5f7fa;
  color: #151655;
}

.hcm-gain-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 123px 123px 96px 121px;
}

.hcm-gain-section__title {
  margin: 0 0 56px;
  color: #151655;
  text-align: center;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.hcm-gain-section__grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hcm-gain-card {
  width: 100%;
  min-height: 120px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;

  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 24px;

  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.035);
}

.hcm-gain-card__number {
  color: #1083c1;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.hcm-gain-card__content h3 {
  margin: 0 0 8px;
  color: #151655;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.hcm-gain-card__content p {
  margin: 0;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-gain-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-gain-section__title {
    font-size: 42px;
  }
}

@media (max-width: 1199px) {
  .hcm-gain-section__container {
    padding: 96px 64px 84px;
  }

  .hcm-gain-section__title {
    margin-bottom: 48px;
  }

  .hcm-gain-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .hcm-gain-section__container {
    padding: 84px 32px 76px;
  }

  .hcm-gain-section__title {
    font-size: 40px;
  }

  .hcm-gain-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hcm-gain-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hcm-gain-section__container {
    padding: 72px 20px 64px;
  }

  .hcm-gain-section__title {
    margin-bottom: 36px;
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hcm-gain-card {
    padding: 22px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .hcm-gain-card__number {
    font-size: 26px;
  }

  .hcm-gain-card__content h3 {
    font-size: 17px;
  }

  .hcm-gain-card__content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hcm-gain-section__container {
    padding: 64px 16px 56px;
  }

  .hcm-gain-section__title {
    font-size: 30px;
  }

  .hcm-gain-card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hcm-gain-card__number {
    font-size: 28px;
  }
}

/* ===============================
   Testimonials Section
================================ */

.hcm-testimonials-section {
  width: 100%;
  background: #ffffff;
  color: #151655;
}

.hcm-testimonials-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 123px 123px 96px 121px;
}

.hcm-testimonials-section__title {
  margin: 0 0 64px;
  color: #151655;
  text-align: center;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.hcm-testimonials-slider {
  position: relative;
  width: 100%;
  min-height: 257px;
  overflow: hidden;
}

.hcm-testimonials-slider__group {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    visibility 600ms ease;

  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hcm-testimonials-slider__group.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.hcm-testimonial-card {
  width: 100%;
  min-height: 257px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.03);
}

.hcm-testimonial-card__stars {
  margin: 0 0 30px;
  color: #d97706;

  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.hcm-testimonial-card p {
  margin: 0 0 36px;
  color: #1f2937;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-testimonial-card__author {
  margin-top: auto;
}

.hcm-testimonial-card__author strong {
  display: block;
  margin: 0 0 4px;
  color: #0b4f6c;

  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.hcm-testimonial-card__author span {
  display: block;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

/* ===============================
   Testimonials Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-testimonials-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-testimonials-section__title {
    font-size: 42px;
  }

  .hcm-testimonials-slider__group {
    gap: 28px;
  }
}

@media (max-width: 1199px) {
  .hcm-testimonials-section__container {
    padding: 96px 64px 84px;
  }

  .hcm-testimonials-section__title {
    margin-bottom: 52px;
  }

  .hcm-testimonials-slider__group {
    gap: 24px;
  }

  .hcm-testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .hcm-testimonials-section__container {
    padding: 84px 32px 76px;
  }

  .hcm-testimonials-section__title {
    font-size: 40px;
    margin-bottom: 44px;
  }

  .hcm-testimonials-slider {
    min-height: auto;
  }

  .hcm-testimonials-slider__group,
  .hcm-testimonials-slider__group.is-active {
    grid-template-columns: 1fr;
    position: absolute;
  }

  .hcm-testimonials-slider__group.is-active {
    position: relative;
  }

  .hcm-testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hcm-testimonials-section__container {
    padding: 72px 20px 64px;
  }

  .hcm-testimonials-section__title {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hcm-testimonials-slider__group {
    gap: 18px;
  }

  .hcm-testimonial-card {
    padding: 24px;
  }

  .hcm-testimonial-card__stars {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .hcm-testimonial-card p {
    margin-bottom: 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hcm-testimonials-section__container {
    padding: 64px 16px 56px;
  }

  .hcm-testimonials-section__title {
    font-size: 30px;
  }

  .hcm-testimonial-card {
    padding: 22px;
  }

  .hcm-testimonial-card p {
    font-size: 14px;
  }

  .hcm-testimonial-card__author strong {
    font-size: 15px;
  }

  .hcm-testimonial-card__author span {
    font-size: 13px;
  }
}

/* ===============================
   Related Certifications Section
================================ */

.hcm-related-section {
  width: 100%;
  background: #f5f7fa;
  color: #151655;
}

.hcm-related-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 123px 123px 96px 121px;
}

.hcm-related-section__title {
  margin: 0 0 48px;
  color: #151655;
  text-align: center;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hcm-related-section__list {
  width: 100%;
  max-width: none;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hcm-related-card {
  width: 100%;
  min-height: 127px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;

  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.025);
}

.hcm-related-card__content {
  min-width: 0;
}

.hcm-related-card__content h3 {
  margin: 0 0 18px;
  color: #151655;

  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.hcm-related-card__content p {
  max-width: 920px;
  margin: 0;
  color: #4b5563;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-related-card__link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #1083c1;
  cursor: pointer;
  white-space: nowrap;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hcm-related-card__link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.hcm-related-card__link:hover span {
  transform: translateX(3px);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-related-section__container {
    padding-left: 110px;
    padding-right: 110px;
  }

  .hcm-related-section__title {
    font-size: 42px;
  }
}

@media (max-width: 1199px) {
  .hcm-related-section__container {
    padding: 96px 64px 84px;
  }

  .hcm-related-section__title {
    margin-bottom: 42px;
  }
}

@media (max-width: 991px) {
  .hcm-related-section__container {
    padding: 84px 32px 76px;
  }

  .hcm-related-section__title {
    font-size: 40px;
  }

  .hcm-related-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 18px;
  }

  .hcm-related-card__link {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .hcm-related-section__container {
    padding: 72px 20px 64px;
  }

  .hcm-related-section__title {
    margin-bottom: 36px;
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hcm-related-card {
    min-height: auto;
    padding: 22px;
  }

  .hcm-related-card__content h3 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .hcm-related-card__content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hcm-related-section__container {
    padding: 64px 16px 56px;
  }

  .hcm-related-section__title {
    font-size: 30px;
  }

  .hcm-related-card {
    padding: 20px;
  }

  .hcm-related-card__link {
    font-size: 13px;
  }
}

/* ===============================
   Contact / Footer Section
   Same content width as previous sections
================================ */

.hcm-contact-section {
  width: 100%;
  background: #ffffff;
}

.hcm-contact-section__main {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #0a2d98 0%, #1083c1 70%, #3eabe5 100%);
}

.hcm-contact-section__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 55%, #000 100%);
}

.hcm-contact-section__container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 123px 96px 121px 123px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 557px) minmax(0, 560px);
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.hcm-contact-section__info {
  width: 100%;
  max-width: 557px;
}

.hcm-contact-section__intro {
  margin-bottom: 40px;
}

.hcm-contact-section__intro h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.hcm-contact-section__intro p {
  max-width: 557px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hcm-contact-section__details {
  width: 100%;
  display: grid;
  gap: 16px;
}

.hcm-contact-item {
  width: 100%;
  min-height: 68px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.102);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hcm-contact-item__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.102);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hcm-contact-item__icon svg {
  width: 18px;
  height: 18px;
}

.hcm-contact-item strong {
  display: block;
  margin: 0 0 2px;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hcm-contact-item small {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.hcm-contact-section__form-wrap {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.hcm-contact-section__card {
  width: 100%;
  max-width: 560px;
  padding: 32px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(10, 45, 152, 0.2);
}

.hcm-contact-section__card .hcm-form-card__heading h2 {
  color: #151655;
}

.hcm-contact-section__card .hcm-form-card__heading p {
  color: #4b5563;
}

/* ===============================
   Bottom Footer
================================ */

.hcm-contact-footer {
  width: 100%;
  min-height: 120px;
  background: #151655;
}

.hcm-contact-footer__container {
  width: 100%;
  max-width: 1640px;
  min-height: 120px;
  margin: 0 auto;
  padding: 40px 96px 40px 123px;
  display: grid;
  grid-template-columns: 270px 1fr 144px;
  align-items: center;
  gap: 24px;
}

.hcm-contact-footer__brand {
  color: #ffffff;
  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hcm-contact-footer__copyright {
  margin: 0;
  color: #9ca3af;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.hcm-contact-footer__social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.hcm-contact-footer__social a {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.0706);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hcm-contact-footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hcm-contact-footer__social svg {
  width: 18px;
  height: 18px;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1366px) {
  .hcm-contact-section__container {
    padding: 123px 96px 121px 123px;
    grid-template-columns: minmax(0, 477px) minmax(0, 496px);
    gap: 80px;
  }

  .hcm-contact-section__info {
    max-width: 477px;
  }

  .hcm-contact-section__intro p {
    max-width: 477px;
  }

  .hcm-contact-section__form-wrap,
  .hcm-contact-section__card {
    max-width: 496px;
  }

  .hcm-contact-footer__container {
    padding: 40px 96px 40px 123px;
  }
}

@media (max-width: 1199px) {
  .hcm-contact-section__container {
    padding: 96px 64px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: 48px;
  }

  .hcm-contact-section__form-wrap,
  .hcm-contact-section__card {
    max-width: 460px;
  }

  .hcm-contact-footer__container {
    padding: 36px 64px;
  }
}

@media (max-width: 991px) {
  .hcm-contact-section__container {
    padding: 80px 32px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hcm-contact-section__info,
  .hcm-contact-section__intro p,
  .hcm-contact-section__form-wrap,
  .hcm-contact-section__card {
    max-width: 100%;
  }

  .hcm-contact-section__form-wrap {
    justify-self: stretch;
  }

  .hcm-contact-footer__container {
    min-height: auto;
    padding: 32px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .hcm-contact-footer__social {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hcm-contact-section__container {
    padding: 64px 20px;
  }

  .hcm-contact-section__intro {
    margin-bottom: 28px;
  }

  .hcm-contact-section__intro h2 {
    font-size: 34px;
  }

  .hcm-contact-section__intro p {
    font-size: 15px;
  }

  .hcm-contact-section__card {
    padding: 26px 22px;
  }

  .hcm-contact-footer__container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hcm-contact-section__container {
    padding: 52px 16px;
  }

  .hcm-contact-section__intro h2 {
    font-size: 30px;
  }

  .hcm-contact-section__intro p {
    font-size: 14px;
  }

  .hcm-contact-item {
    padding: 14px;
    gap: 12px;
  }

  .hcm-contact-section__card {
    padding: 24px 18px;
  }

  .hcm-contact-footer__brand {
    font-size: 17px;
  }

  .hcm-contact-footer__copyright {
    font-size: 12px;
  }
}

.hcm-contact-footer__social .hcm-social-icon--linkedin {
  width: 18px;
  height: 18px;
  display: block;
}

.hcm-contact-footer__social .hcm-social-icon--linkedin path {
  fill: currentColor;
}

/* ===============================
   Mobile Bottom CTA Bar
================================ */

.hcm-mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 112px;
  }

  .hcm-mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: block;
    padding: 14px 12px 18px;
    background: linear-gradient(
      180deg,
      rgba(8, 36, 112, 0.94) 0%,
      rgba(10, 47, 148, 0.99) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .hcm-mobile-cta-bar__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
      radial-gradient(circle at 82% 0%, rgba(99, 141, 255, 0.24), transparent 38%);
  }

  .hcm-mobile-cta-bar__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hcm-mobile-cta-bar__btn {
    height: 56px;
    border: 0;
    border-radius: 18px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-family: "Inter", "Instrument Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition:
      filter 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .hcm-mobile-cta-bar__btn:hover,
  .hcm-mobile-cta-bar__btn:focus {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .hcm-mobile-cta-bar__btn:active {
    transform: translateY(0);
    filter: brightness(0.98);
  }

  .hcm-mobile-cta-bar__btn--call {
    background: linear-gradient(135deg, #20c59b 0%, #18bfc8 100%);
  }

  .hcm-mobile-cta-bar__btn--whatsapp {
    background: linear-gradient(135deg, #20d56f 0%, #11c985 100%);
  }

  .hcm-mobile-cta-bar__btn--info {
    background: linear-gradient(135deg, #5878ff 0%, #8f50ee 100%);
  }

  .hcm-mobile-cta-bar__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .hcm-mobile-cta-bar__icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
  }

  .hcm-mobile-cta-bar__dots {
    position: relative;
    z-index: 1;
    margin-top: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .hcm-mobile-cta-bar__dots span {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
  }

  .hcm-mobile-cta-bar__dots strong {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #638dff 0%, #b654ff 100%);
  }
}

@media (max-width: 420px) {
  .hcm-mobile-cta-bar {
    padding: 12px 10px 16px;
  }

  .hcm-mobile-cta-bar__inner {
    gap: 8px;
  }

  .hcm-mobile-cta-bar__btn {
    height: 52px;
    border-radius: 16px;
    font-size: 13px;
    gap: 6px;
  }

  .hcm-mobile-cta-bar__icon {
    width: 18px;
    height: 18px;
  }

  .hcm-mobile-cta-bar__icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ===============================
   Mobile sticky CTA footer overlap fix
================================ */

@media (max-width: 767px) {
  :root {
    --hcm-mobile-cta-height: 126px;
  }

  body {
    padding-bottom: 0 !important;
  }

  .hcm-mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0 !important;
    z-index: 9998;
    margin: 0 !important;
  }

  .hcm-contact-section {
    padding-bottom: 0 !important;
  }

  .hcm-contact-section__footer {
    margin-bottom: 0 !important;
    padding-top: 42px !important;
    padding-bottom: calc(var(--hcm-mobile-cta-height) + env(safe-area-inset-bottom)) !important;
    background: #151655 !important;
  }

  .hcm-contact-footer,
  .hcm-site-footer,
  .hcm-footer {
    margin-bottom: 0 !important;
    padding-bottom: calc(var(--hcm-mobile-cta-height) + env(safe-area-inset-bottom)) !important;
    background: #151655 !important;
  }
}

/* ===============================
   Mobile footer equal top/bottom spacing
================================ */

@media (max-width: 767px) {
  :root {
    --hcm-mobile-cta-height: 112px;
    --hcm-mobile-footer-space: 40px;
  }

  .hcm-contact-section__footer {
    padding-top: var(--hcm-mobile-footer-space) !important;
    padding-bottom: calc(var(--hcm-mobile-footer-space) + var(--hcm-mobile-cta-height) + env(safe-area-inset-bottom)) !important;
  }

  .hcm-contact-section__footer-inner,
  .hcm-footer__inner,
  .hcm-site-footer__inner {
    row-gap: 18px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --hcm-mobile-cta-height: 108px;
    --hcm-mobile-footer-space: 36px;
  }

  .hcm-contact-section__footer {
    padding-top: var(--hcm-mobile-footer-space) !important;
    padding-bottom: calc(var(--hcm-mobile-footer-space) + var(--hcm-mobile-cta-height) + env(safe-area-inset-bottom)) !important;
  }
}

/* ===============================
   Mobile Area of Interest overflow fix
   Keeps dropdown opening
================================ */

@media (max-width: 767px) {
  .hcm-form-card,
  .hcm-form,
  .hcm-form__group,
  .hcm-interest-field,
  .hcm-interest-field__button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* IMPORTANT: do not hide overflow here, dropdown menu needs to escape */
  .hcm-interest-field {
    position: relative;
    overflow: visible !important;
  }

  .hcm-interest-field__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
  }

  .hcm-selected-interest {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hcm-interest-field__button .hcm-dropdown__arrow {
    flex: 0 0 16px;
  }

  .hcm-interest-field .hcm-dropdown__menu,
  .hcm-interest-menu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    z-index: 9999;
  }

  .hcm-interest-field.is-open .hcm-dropdown__menu {
    display: block;
  }

  .hcm-interest-menu .hcm-dropdown__option {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

/* ===============================
   Footer form mobile interest overflow fix
   Keeps dropdown working
================================ */

@media (max-width: 767px) {
  .hcm-contact-section,
  .hcm-contact-section__main,
  .hcm-contact-section__container,
  .hcm-contact-section__form-wrap,
  .hcm-contact-section__card,
  .hcm-contact-section__form,
  .hcm-contact-section__form .hcm-form__group,
  .hcm-contact-section__form .hcm-interest-field,
  .hcm-contact-section__form .hcm-interest-field__button {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
  }

  .hcm-contact-section__container {
    grid-template-columns: minmax(0, 1fr) !important;
    overflow-x: hidden;
  }

  .hcm-contact-section__form-wrap {
    justify-self: stretch !important;
    overflow: visible !important;
  }

  .hcm-contact-section__card {
    overflow: visible !important;
  }

  .hcm-contact-section__form .hcm-interest-field {
    position: relative;
    overflow: visible !important;
  }

  .hcm-contact-section__form .hcm-interest-field__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden !important;
  }

  .hcm-contact-section__form .hcm-selected-interest {
    flex: 1 1 0;
    width: 0;
    min-width: 0 !important;
    max-width: none !important;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hcm-contact-section__form .hcm-dropdown__arrow {
    flex: 0 0 16px;
  }

  .hcm-contact-section__form .hcm-interest-field .hcm-dropdown__menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    z-index: 99999;
  }

  .hcm-contact-section__form .hcm-interest-field.is-open .hcm-dropdown__menu {
    display: block;
  }

  .hcm-contact-section__form .hcm-interest-menu .hcm-dropdown__option {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.hcm-contact-footer__container {
  grid-template-columns: auto 1fr !important;
}

.hcm-contact-footer__copyright {
  justify-self: end !important;
  text-align: right !important;
}

.hcm-contact-footer__social {
  display: none !important;
}

@media (max-width: 767px) {
  .hcm-contact-footer__container {
    grid-template-columns: 1fr !important;
  }

  .hcm-contact-footer__copyright {
    justify-self: center !important;
    text-align: center !important;
  }
}