:root {
  --anido-navy: #063b79;
  --anido-blue: #075cb5;
  --anido-sky: #eaf4ff;
  --anido-orange: #f5a623;
  --anido-ink: #12233a;
  --anido-body: #46566b;
  --anido-pale: #f5f8fc;
  --anido-line: #d8e2ee;
  --anido-white: #ffffff;
  --anido-shadow: 0 24px 60px rgba(18, 35, 58, 0.13);
}

/* ================================================================
   v1.8.0 — WordPress-managed primary navigation + mobile drawer
   ================================================================ */

.anido-primary-menu-shell {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.anido-primary-menu-state {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.anido-primary-menu-toggle {
  display: none !important;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: linear-gradient(135deg, #075cb5, #0c7de2);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(7, 92, 181, .24);
  cursor: pointer;
}

.anido-primary-menu-toggle-lines {
  display: flex;
  width: 21px;
  flex-direction: column;
  gap: 4px;
}

.anido-primary-menu-toggle-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff !important;
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease;
}

.anido-primary-menu-shell.is-open .anido-primary-menu-toggle-lines i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.anido-primary-menu-state:checked + .anido-primary-menu-toggle .anido-primary-menu-toggle-lines i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.anido-primary-menu-shell.is-open .anido-primary-menu-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.anido-primary-menu-state:checked + .anido-primary-menu-toggle .anido-primary-menu-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.anido-primary-menu-shell.is-open .anido-primary-menu-toggle-lines i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.anido-primary-menu-state:checked + .anido-primary-menu-toggle .anido-primary-menu-toggle-lines i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.anido-primary-menu-nav,
.anido-primary-menu-list,
.anido-primary-menu-list ul {
  margin: 0;
  padding: 0;
}

.anido-primary-menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.8vw, 28px);
  list-style: none;
}

.anido-primary-menu-list li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anido-primary-menu-list > li > a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #17263a !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.anido-primary-menu-list > li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: #f5a623;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .22s ease;
}

.anido-primary-menu-list > li:not(:last-child) > a:hover::after,
.anido-primary-menu-list > li.current-menu-item:not(:last-child) > a::after,
.anido-primary-menu-list > li.current-menu-ancestor:not(:last-child) > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.anido-primary-menu-list > li:not(:last-child) > a:hover,
.anido-primary-menu-list > li.current-menu-item:not(:last-child) > a,
.anido-primary-menu-list > li.current-menu-ancestor:not(:last-child) > a {
  color: #075cb5 !important;
}

.anido-primary-menu-list > li:last-child > a {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff7b19, #ffac22);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 132, 20, .24);
}

.anido-primary-menu-list > li:last-child > a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.anido-primary-menu-list .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  display: none;
  min-width: 220px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e7edf5;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(18, 50, 88, .16);
}

.anido-primary-menu-list li:hover > .sub-menu,
.anido-primary-menu-list li:focus-within > .sub-menu {
  display: block;
}

.anido-primary-menu-list .sub-menu a {
  display: block;
  padding: 11px 12px;
  color: #17263a !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none !important;
  border-radius: 10px;
}

.anido-primary-menu-list .sub-menu a:hover {
  color: #075cb5 !important;
  background: #eef6ff;
}

.anido-article-mainnav .anido-primary-menu-shell {
  width: auto;
}

@media (max-width: 1024px) {
  .anido-primary-menu-list {
    gap: 14px;
  }

  .anido-primary-menu-list > li > a {
    font-size: 12px;
  }

  .anido-primary-menu-list > li:last-child > a {
    padding-inline: 15px;
  }
}

@media (max-width: 782px) {
  .elementor.elementor-20 .anido-nav-widget,
  .anido-about-nav-widget {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

  .anido-primary-menu-shell,
  .anido-article-mainnav .anido-primary-menu-shell {
    width: auto;
  }

  .anido-primary-menu-toggle {
    display: inline-flex !important;
  }

  .anido-primary-menu-nav,
  .anido-article-mainnav .anido-primary-menu-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: none !important;
    width: min(88vw, 350px);
    padding: 12px;
    background: rgba(255, 255, 255, .99);
    border: 1px solid #e2eaf4;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(10, 43, 84, .22);
  }

  .anido-primary-menu-shell.is-open .anido-primary-menu-nav,
  .anido-primary-menu-state:checked + .anido-primary-menu-toggle + .anido-primary-menu-nav,
  .anido-article-mainnav .anido-primary-menu-shell.is-open .anido-primary-menu-nav {
    display: block !important;
  }

  .anido-primary-menu-list {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }

  .anido-primary-menu-list > li,
  .anido-primary-menu-list > li > a {
    width: 100%;
  }

  .anido-primary-menu-list > li > a {
    min-height: 48px;
    padding: 0 15px;
    justify-content: space-between;
    color: #17263a !important;
    font-size: 14px;
    border-radius: 12px;
  }

  .anido-primary-menu-list > li:not(:last-child) > a::after {
    display: none;
  }

  .anido-primary-menu-list > li:not(:last-child) > a:hover,
  .anido-primary-menu-list > li.current-menu-item:not(:last-child) > a,
  .anido-primary-menu-list > li.current-menu-ancestor:not(:last-child) > a {
    color: #075cb5 !important;
    background: #eef6ff;
  }

  .anido-primary-menu-list > li:last-child > a {
    min-height: 50px;
    margin-top: 7px;
    justify-content: center;
  }

  .anido-primary-menu-list .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 6px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .anido-article-mainnav .anido-article-header-inner {
    overflow: visible;
  }

  .anido-article-mainnav .anido-primary-menu-list > li > a {
    display: flex !important;
  }
}

/* v1.3.3 — Two-row consultation section: copy above, photo + form below. */
.elementor.elementor-20 .anido-contact {
  padding-top: 104px !important;
  padding-bottom: 96px !important;
  overflow: hidden !important;
}

.elementor.elementor-20 .anido-contact-wrap {
  width: min(1180px, calc(100% - 44px)) !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 42px !important;
}

.elementor.elementor-20 .anido-contact-copy {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr) !important;
  column-gap: 74px !important;
  align-items: end !important;
}

.elementor.elementor-20 .anido-contact-copy > .elementor-element:first-child {
  grid-column: 1 / -1 !important;
  margin-bottom: 16px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title {
  grid-column: 1 !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title .elementor-heading-title {
  max-width: 720px !important;
  font-size: clamp(46px, 4.6vw, 72px) !important;
  line-height: 1.02 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text {
  grid-column: 2 !important;
  margin: 0 !important;
  padding-bottom: 4px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text p {
  max-width: 470px !important;
  margin: 0 0 20px !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 22px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-details a {
  position: relative !important;
  padding-left: 17px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-details a::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--anido-orange) !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 0 0 5px rgba(245, 166, 35, 0.12) !important;
}

.elementor.elementor-20 .anido-contact-main {
  width: min(1080px, 100%) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(330px, 0.82fr) minmax(500px, 1.18fr) !important;
  gap: 52px !important;
  align-items: end !important;
}

.elementor.elementor-20 .anido-contact-advisor-wrap {
  min-height: 560px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 48% 48% 34px 34px !important;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.17), transparent 43%),
    linear-gradient(180deg, rgba(7, 92, 181, 0.2), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 70px rgba(0, 26, 64, 0.23) !important;
  overflow: visible !important;
}

.elementor.elementor-20 .anido-contact-advisor {
  width: 100% !important;
  max-width: 430px !important;
  margin: 0 auto -8px !important;
  align-self: flex-end !important;
  filter: drop-shadow(0 24px 30px rgba(0, 20, 52, 0.34)) !important;
}

.elementor.elementor-20 .anido-contact-advisor img {
  width: 100% !important;
  height: 548px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
}

.elementor.elementor-20 .anido-form-wrap {
  grid-column: auto !important;
  width: 100% !important;
  max-width: 590px !important;
  margin: 0 !important;
  align-self: end !important;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-contact-copy {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
  }

  .elementor.elementor-20 .anido-contact-copy .anido-section-title,
  .elementor.elementor-20 .anido-contact-copy .anido-contact-text {
    grid-column: 1 !important;
  }

  .elementor.elementor-20 .anido-contact-copy .anido-contact-text p {
    max-width: 760px !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: minmax(290px, 0.8fr) minmax(430px, 1.2fr) !important;
    gap: 30px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 500px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor img {
    height: 492px !important;
  }
}

@media (max-width: 767px) {
  .elementor.elementor-20 .anido-contact {
    padding-top: 74px !important;
    padding-bottom: 70px !important;
  }

  .elementor.elementor-20 .anido-contact-wrap {
    width: min(100% - 28px, 620px) !important;
    gap: 34px !important;
  }

  .elementor.elementor-20 .anido-contact-copy .anido-section-title .elementor-heading-title {
    font-size: clamp(40px, 12vw, 58px) !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 470px !important;
    order: 1 !important;
  }

  .elementor.elementor-20 .anido-contact-advisor {
    max-width: 350px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor img {
    height: 462px !important;
  }

  .elementor.elementor-20 .anido-form-wrap {
    max-width: none !important;
    order: 2 !important;
    margin-bottom: 0 !important;
  }
}

/* v1.3.4 — Balanced consultation layout with a form-height portrait. */
.elementor.elementor-20 .anido-contact-copy {
  width: min(900px, 100%) !important;
  max-width: 900px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy > .elementor-element:first-child {
  margin-bottom: 16px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title .elementor-heading-title {
  max-width: 900px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text {
  width: 100% !important;
  max-width: 760px !important;
  margin: 25px 0 0 !important;
  padding: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text p {
  max-width: 680px !important;
  margin-bottom: 18px !important;
}

.elementor.elementor-20 .anido-contact-main {
  width: min(1080px, 100%) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) !important;
  gap: 42px !important;
  align-items: stretch !important;
}

.elementor.elementor-20 .anido-contact-advisor-wrap {
  position: relative !important;
  min-height: 560px !important;
  height: auto !important;
  padding: 0 !important;
  align-self: stretch !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.elementor.elementor-20 .anido-contact-advisor {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  filter: drop-shadow(0 28px 34px rgba(0, 24, 58, 0.28)) !important;
}

.elementor.elementor-20 .anido-contact-advisor > .elementor-widget-container,
.elementor.elementor-20 .anido-contact-advisor img {
  width: 100% !important;
  height: 100% !important;
}

.elementor.elementor-20 .anido-contact-advisor img {
  object-fit: contain !important;
  object-position: center bottom !important;
}

.elementor.elementor-20 .anido-form-wrap {
  width: 100% !important;
  max-width: none !important;
  min-height: 560px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 36px !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.elementor.elementor-20 .anido-form-wrap > .elementor-element,
.elementor.elementor-20 .anido-form-wrap .anido-form {
  width: 100% !important;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-contact-copy {
    max-width: 780px !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 26px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap,
  .elementor.elementor-20 .anido-form-wrap {
    min-height: 520px !important;
  }
}

@media (max-width: 767px) {
  .elementor.elementor-20 .anido-contact-copy,
  .elementor.elementor-20 .anido-contact-copy .anido-section-title,
  .elementor.elementor-20 .anido-contact-copy .anido-contact-text {
    max-width: none !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 490px !important;
  }

  .elementor.elementor-20 .anido-form-wrap {
    min-height: 0 !important;
    padding: 26px 20px !important;
  }
}

body.elementor-page {
  color: var(--anido-ink);
  background: var(--anido-white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.anido-wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.anido-section {
  padding: 105px 0;
}

.anido-topbar {
  min-height: 36px;
  color: #dce9f7;
  background: var(--anido-ink);
}

.anido-topbar > .e-con-inner,
.anido-topbar > .elementor-container {
  width: 100%;
  max-width: none;
}

.anido-topbar .elementor-widget-text-editor {
  width: 100%;
}

.anido-topbar-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 36px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.anido-topbar-inner a {
  color: var(--anido-white);
}

.anido-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
  border-bottom: 1px solid rgba(18, 35, 58, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.anido-header-wrap {
  min-height: 82px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.anido-logo {
  width: 170px;
  flex: 0 0 170px;
}

.anido-logo img,
.anido-footer-logo img {
  width: 100%;
  height: auto;
}

.anido-nav-widget {
  flex: 1 1 auto;
}

.anido-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.anido-nav a {
  color: var(--anido-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.anido-nav a:hover {
  color: var(--anido-blue);
}

.anido-header-cta {
  flex: 0 0 auto;
}

.anido-btn .elementor-button,
.anido-form .elementor-button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  color: var(--anido-white);
  background: var(--anido-blue);
  box-shadow: 0 12px 26px rgba(7, 92, 181, 0.2);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.anido-btn .elementor-button:hover,
.anido-form .elementor-button:hover {
  color: var(--anido-white);
  background: var(--anido-navy);
  transform: translateY(-2px);
}

.anido-header-cta .elementor-button {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
}

.anido-btn-secondary .elementor-button {
  color: var(--anido-ink);
  border: 1px solid var(--anido-ink);
  background: transparent;
  box-shadow: none;
}

.anido-btn-secondary .elementor-button:hover {
  color: var(--anido-white);
  border-color: var(--anido-blue);
  background: var(--anido-blue);
}

.anido-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background-color: var(--anido-pale);
  background-image: radial-gradient(rgba(70, 86, 107, 0.26) 1px, transparent 1px);
  background-size: 26px 26px;
}

.anido-hero::before,
.anido-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 92, 181, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.anido-hero::before {
  width: 510px;
  height: 510px;
  right: -180px;
  top: -260px;
}

.anido-hero::after {
  width: 360px;
  height: 360px;
  left: -230px;
  bottom: -220px;
}

.anido-hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.anido-hero-copy {
  width: 46%;
  flex: 0 0 46%;
}

.anido-eyebrow {
  margin: 0 0 18px;
  color: var(--anido-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.anido-center {
  text-align: center;
}

.anido-hero-title .elementor-heading-title {
  margin: 0;
  color: var(--anido-ink);
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.anido-hero-title .elementor-heading-title span,
.anido-section-title .elementor-heading-title span {
  display: block;
  color: var(--anido-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.anido-lead {
  margin-top: 24px;
}

.anido-lead p,
.anido-section-lead p,
.anido-about-text > .elementor-widget-container > p {
  margin: 0;
  color: var(--anido-body);
  font-size: 16px;
  line-height: 1.8;
}

.anido-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.anido-proof {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--anido-orange);
  font-size: 12px;
}

.anido-proof strong {
  color: var(--anido-ink);
  font-size: 14px;
}

.anido-proof span {
  color: var(--anido-body);
}

.anido-hero-media {
  position: relative;
  width: 54%;
  min-height: 550px;
  flex: 1 1 54%;
}

.anido-hero-image,
.anido-hero-image .elementor-widget-container,
.anido-hero-image img {
  width: 100%;
  height: 550px;
}

.anido-hero-image img {
  border-radius: 180px 24px 24px 24px;
  object-fit: cover;
  object-position: center 45%;
  box-shadow: var(--anido-shadow);
}

.anido-hero-badges {
  position: absolute;
  inset: auto 18px 22px 18px;
}

.anido-hero-badges .elementor-widget-container {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.anido-hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--anido-white);
  background: rgba(18, 35, 58, 0.76);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
}

.anido-stats {
  padding: 48px 0;
  color: var(--anido-white);
  background: var(--anido-ink);
}

.anido-stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.anido-stat {
  align-items: center;
  padding: 5px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

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

.anido-stat-number .elementor-heading-title {
  color: var(--anido-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
}

.anido-stat-label p {
  margin: 8px 0 0;
  color: #9eb1c3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anido-destinations {
  background: var(--anido-sky);
}

.anido-section-title .elementor-heading-title {
  margin: 0;
  color: var(--anido-ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.anido-section-lead {
  max-width: 690px;
  margin-top: 20px;
}

.anido-destinations-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.anido-destination-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 12px 12px 26px;
  border-radius: 18px;
  background: var(--anido-white);
  box-shadow: 0 14px 42px rgba(18, 35, 58, 0.08);
  transition: transform 0.25s ease;
}

.anido-destination-card:hover,
.anido-journey-card:hover {
  transform: translateY(-6px);
}

.anido-card-image img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.anido-card-meta {
  margin: 18px 12px 0;
}

.anido-card-meta .elementor-widget-container {
  display: flex;
  align-items: center;
  gap: 9px;
}

.anido-flag {
  font-size: 23px;
}

.anido-card-meta small {
  color: var(--anido-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anido-card-title,
.anido-card-copy,
.anido-card-button {
  margin-inline: 12px;
}

.anido-card-title .elementor-heading-title {
  margin-top: 8px;
  color: var(--anido-ink);
  font-size: 24px;
}

.anido-card-copy p {
  min-height: 60px;
  margin: 10px 0 14px;
  color: var(--anido-body);
  font-size: 13px;
  line-height: 1.65;
}

.anido-card-button .elementor-button,
.anido-link-button .elementor-button {
  padding: 0 0 6px;
  border-bottom: 1px solid var(--anido-ink);
  border-radius: 0;
  color: var(--anido-ink);
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
}

.anido-card-button .elementor-button:hover,
.anido-link-button .elementor-button:hover {
  color: var(--anido-blue);
  border-color: var(--anido-blue);
}

.anido-about-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 86px;
}

.anido-about-media {
  position: relative;
  width: 46%;
  min-height: 610px;
  flex: 0 0 46%;
}

.anido-about-media::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 94%;
  left: -18px;
  top: -18px;
  border-radius: 150px 20px 20px 20px;
  background: var(--anido-blue);
}

.anido-about-image,
.anido-about-image .elementor-widget-container,
.anido-about-image img {
  width: 100%;
  height: 610px;
}

.anido-about-image img {
  position: relative;
  border-radius: 150px 20px 20px 20px;
  object-fit: cover;
}

.anido-about-badge {
  position: absolute;
  right: -32px;
  bottom: 38px;
}

.anido-about-badge .elementor-widget-container > div {
  width: 174px;
  height: 174px;
  display: grid;
  place-content: center;
  gap: 7px;
  border: 8px solid var(--anido-white);
  border-radius: 50%;
  color: var(--anido-white);
  background: var(--anido-orange);
  box-shadow: var(--anido-shadow);
  text-align: center;
}

.anido-about-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
}

.anido-about-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.anido-about-copy {
  flex: 1 1 auto;
}

.anido-about-text {
  margin-top: 25px;
}

.anido-values {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--anido-line);
}

.anido-values > div {
  display: grid;
  gap: 8px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--anido-line);
}

.anido-values > div:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--anido-line);
}

.anido-values strong {
  color: var(--anido-ink);
  font-size: 15px;
}

.anido-values span {
  color: var(--anido-body);
  font-size: 12px;
  line-height: 1.5;
}

.anido-services {
  background: var(--anido-pale);
}

.anido-services .anido-section-lead {
  margin-inline: auto;
}

.anido-services-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--anido-line);
  border-radius: 18px;
}

.anido-service-card {
  min-height: 330px;
  padding: 32px 26px;
  border-right: 1px solid var(--anido-line);
  background: var(--anido-white);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.anido-service-card:last-child {
  border-right: 0;
}

.anido-service-card:hover {
  color: var(--anido-white);
  background: var(--anido-blue);
  transform: translateY(-5px);
}

.anido-service-card:hover .elementor-heading-title,
.anido-service-card:hover p,
.anido-service-card:hover .anido-service-number {
  color: var(--anido-white);
}

.anido-service-number {
  color: #8c9aa9;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
}

.anido-service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: 30px;
  border: 1px solid var(--anido-line);
  border-radius: 50%;
  color: var(--anido-orange);
  font-size: 22px;
}

.anido-service-title {
  margin-top: 45px;
}

.anido-service-title .elementor-heading-title {
  color: var(--anido-ink);
  font-size: 19px;
}

.anido-service-copy p {
  margin: 15px 0 0;
  color: var(--anido-body);
  font-size: 13px;
  line-height: 1.65;
}

.anido-roadmap {
  background: var(--anido-white);
}

.anido-roadmap-grid {
  position: relative;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

.anido-step {
  padding-right: 16px;
}

.anido-step-number .elementor-heading-title {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--anido-ink);
  border-radius: 50%;
  color: var(--anido-ink);
  background: var(--anido-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.anido-step:first-child .anido-step-number .elementor-heading-title,
.anido-step:hover .anido-step-number .elementor-heading-title {
  color: var(--anido-white);
  border-color: var(--anido-blue);
  background: var(--anido-blue);
}

.anido-step-title {
  margin-top: 22px;
}

.anido-step-title .elementor-heading-title {
  color: var(--anido-ink);
  font-size: 18px;
}

.anido-step-copy p {
  margin: 11px 0 0;
  color: var(--anido-body);
  font-size: 13px;
  line-height: 1.65;
}

.anido-learning {
  overflow: hidden;
  color: var(--anido-white);
  background: var(--anido-blue);
}

.anido-learning-wrap {
  min-height: 620px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 70px;
}

.anido-learning-copy {
  width: 48%;
  flex: 0 0 48%;
  justify-content: center;
  padding: 86px 0;
}

.anido-light {
  color: #d8e8fb;
}

.anido-light-title .elementor-heading-title,
.anido-light-title .elementor-heading-title span {
  color: var(--anido-white);
}

.anido-learning-text p {
  margin: 25px 0;
  color: #d8e8fb;
  font-size: 15px;
  line-height: 1.75;
}

.anido-learning-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.anido-learning-text li {
  color: var(--anido-white);
  font-size: 12px;
  font-weight: 700;
}

.anido-learning-text li::before {
  content: "✓";
  margin-right: 7px;
  color: #8af1b7;
}

.anido-btn-light .elementor-button {
  color: var(--anido-ink);
  background: var(--anido-white);
  box-shadow: none;
}

.anido-btn-light .elementor-button:hover {
  color: var(--anido-blue);
  background: var(--anido-pale);
}

.anido-learning-media {
  width: 52%;
  flex: 1 1 52%;
}

.anido-learning-image,
.anido-learning-image .elementor-widget-container,
.anido-learning-image img {
  width: 100%;
  height: 100%;
}

.anido-learning-image img {
  object-fit: cover;
}

.anido-journeys {
  background: var(--anido-pale);
}

.anido-journeys-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.anido-journey-card {
  min-width: 0;
  padding: 12px 12px 25px;
  border: 1px solid var(--anido-line);
  border-radius: 18px;
  background: var(--anido-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.anido-journey-card:hover {
  box-shadow: var(--anido-shadow);
}

.anido-journey-image img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
}

.anido-journey-title,
.anido-journey-copy {
  margin-inline: 12px;
}

.anido-journey-title {
  margin-top: 20px;
}

.anido-journey-title .elementor-heading-title {
  color: var(--anido-ink);
  font-size: 19px;
}

.anido-journey-copy p {
  margin: 8px 0 0;
  color: var(--anido-body);
  font-size: 12px;
}

.anido-contact {
  padding: 100px 0;
  color: var(--anido-white);
  background: var(--anido-ink);
}

.anido-contact-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.anido-contact-copy {
  width: 38%;
  flex: 0 0 38%;
}

.anido-contact-text p {
  margin: 25px 0;
  color: #b5c8d8;
  font-size: 15px;
  line-height: 1.75;
}

.anido-contact-details {
  display: grid;
  gap: 9px;
}

.anido-contact-details a {
  color: var(--anido-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.anido-form-wrap {
  flex: 1 1 auto;
  padding: 32px;
  border-radius: 18px;
  color: var(--anido-ink);
  background: var(--anido-white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.anido-form .elementor-field-group {
  margin-bottom: 16px;
}

.anido-form .elementor-field-label {
  margin-bottom: 7px;
  color: var(--anido-ink);
  font-size: 11px;
  font-weight: 800;
}

.anido-form .elementor-field {
  min-height: 47px;
  padding: 11px 13px;
  border: 1px solid var(--anido-line);
  border-radius: 8px;
  color: var(--anido-ink);
  background: #fbfcfd;
}

.anido-form textarea.elementor-field {
  min-height: 100px;
}

.anido-form .elementor-field:focus {
  border-color: var(--anido-blue);
  box-shadow: 0 0 0 3px rgba(7, 92, 181, 0.1);
}

.anido-footer {
  padding: 72px 0 0;
  color: #b8c8d6;
  background: #071a2d;
}

.anido-footer-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1.2fr;
  gap: 60px;
  padding-bottom: 54px;
}

.anido-footer-logo {
  width: 175px;
}

.anido-footer-brand p {
  max-width: 330px;
  margin: 23px 0 0;
  color: #92a7b8;
  font-size: 12px;
  line-height: 1.7;
}

.anido-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anido-footer-links strong {
  margin-bottom: 7px;
  color: var(--anido-white);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anido-footer-links a,
.anido-footer-links span {
  color: #92a7b8;
  font-size: 11px;
  line-height: 1.65;
  text-decoration: none;
}

.anido-footer-links a:hover {
  color: var(--anido-white);
}

.anido-footer-bottom {
  width: min(1160px, calc(100% - 40px));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #72899b;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .anido-nav {
    gap: 16px;
  }

  .anido-header-cta {
    display: none;
  }

  .anido-hero-wrap,
  .anido-about-wrap {
    gap: 46px;
  }

  .anido-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anido-service-card:nth-child(2) {
    border-right: 0;
  }

  .anido-service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--anido-line);
  }
}

@media (max-width: 820px) {
  .anido-section {
    padding: 82px 0;
  }

  .anido-nav-widget {
    display: none;
  }

  .anido-header-wrap {
    min-height: 72px;
  }

  .anido-hero-wrap,
  .anido-about-wrap,
  .anido-learning-wrap,
  .anido-contact-wrap {
    flex-direction: column;
  }

  .anido-hero-copy,
  .anido-hero-media,
  .anido-about-media,
  .anido-learning-copy,
  .anido-learning-media,
  .anido-contact-copy {
    width: 100%;
    flex-basis: auto;
  }

  .anido-hero-copy {
    max-width: 720px;
  }

  .anido-hero-media {
    min-height: 500px;
  }

  .anido-hero-image,
  .anido-hero-image .elementor-widget-container,
  .anido-hero-image img {
    height: 500px;
  }

  .anido-stats-wrap {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .anido-stat:nth-child(2) {
    border-right: 0;
  }

  .anido-destinations-grid,
  .anido-journeys-grid {
    grid-template-columns: 1fr 1fr;
  }

  .anido-destination-card:first-child,
  .anido-journey-card:first-child {
    grid-column: 1 / -1;
  }

  .anido-about-media {
    max-width: 650px;
  }

  .anido-learning-copy {
    padding-bottom: 20px;
  }

  .anido-learning-media {
    min-height: 420px;
  }

  .anido-roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .anido-contact-copy {
    max-width: 680px;
  }

  .anido-form-wrap {
    width: 100%;
  }

  .anido-footer-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .anido-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .anido-wrap,
  .anido-topbar-inner,
  .anido-footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .anido-topbar {
    display: none;
  }

  .anido-logo {
    width: 140px;
    flex-basis: 140px;
  }

  .anido-hero {
    padding: 55px 0 70px;
  }

  .anido-hero-title .elementor-heading-title {
    font-size: clamp(43px, 13vw, 58px);
  }

  .anido-section-title .elementor-heading-title {
    font-size: 39px;
  }

  .anido-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .anido-actions .elementor-widget-button,
  .anido-actions .elementor-button {
    width: 100%;
  }

  .anido-hero-media {
    min-height: 390px;
  }

  .anido-hero-image,
  .anido-hero-image .elementor-widget-container,
  .anido-hero-image img {
    height: 390px;
  }

  .anido-hero-image img {
    border-radius: 100px 18px 18px 18px;
  }

  .anido-hero-badges .elementor-widget-container {
    flex-wrap: wrap;
  }

  .anido-stats {
    padding: 36px 0;
  }

  .anido-stat-number .elementor-heading-title {
    font-size: 36px;
  }

  .anido-destinations-grid,
  .anido-services-grid,
  .anido-roadmap-grid,
  .anido-journeys-grid {
    grid-template-columns: 1fr;
  }

  .anido-destination-card:first-child,
  .anido-journey-card:first-child {
    grid-column: auto;
  }

  .anido-card-image img,
  .anido-journey-image img {
    height: 270px;
  }

  .anido-about-media,
  .anido-about-image,
  .anido-about-image .elementor-widget-container,
  .anido-about-image img {
    min-height: 430px;
    height: 430px;
  }

  .anido-about-badge {
    right: -4px;
    bottom: 24px;
  }

  .anido-about-badge .elementor-widget-container > div {
    width: 135px;
    height: 135px;
    border-width: 6px;
  }

  .anido-about-badge strong {
    font-size: 38px;
  }

  .anido-values {
    grid-template-columns: 1fr;
  }

  .anido-values > div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .anido-service-card,
  .anido-service-card:nth-child(2) {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--anido-line);
  }

  .anido-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
  }

  .anido-step-number {
    grid-row: 1 / span 2;
  }

  .anido-step-title {
    align-self: end;
    margin-top: 0;
  }

  .anido-learning-wrap {
    gap: 20px;
  }

  .anido-learning-media {
    min-height: 330px;
  }

  .anido-contact {
    padding: 76px 0;
  }

  .anido-form-wrap {
    padding: 23px 18px;
  }

  .anido-footer-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .anido-footer-brand {
    grid-column: auto;
  }

  .anido-footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anido-destination-card,
  .anido-journey-card,
  .anido-service-card,
  .anido-btn .elementor-button {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V5 — designed campaign slides + richer section imagery
   -------------------------------------------------------------------------- */

.elementor.elementor-20 .anido-slider-arrow {
  display: none !important;
}

.elementor.elementor-20 .anido-slide-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(32px, calc((100vw - 1180px) / 2));
  width: min(550px, 39vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-50%);
  color: #35272b;
  text-align: left;
}

.elementor.elementor-20 .anido-slide-eyebrow {
  margin: 0 0 15px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 54, 43, 0.22);
  border-radius: 999px;
  color: #d9362b;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(159, 56, 36, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.elementor.elementor-20 .anido-slide-title {
  max-width: 540px;
  margin: 0;
  color: #35272b;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.elementor.elementor-20 .anido-slide-title::after {
  content: "";
  width: 72px;
  height: 5px;
  display: block;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9362b, #f7941d);
}

.elementor.elementor-20 .anido-slide-copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: #6d514a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.elementor.elementor-20 .anido-slide-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f7941d 0%, #ed542a 62%, #d9362b 100%);
  box-shadow: 0 12px 28px rgba(211, 61, 39, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.elementor.elementor-20 .anido-slide img {
  filter: none !important;
}

/* Make existing photography brighter, smoother and more campaign-like. */
.elementor.elementor-20 .anido-card-image img,
.elementor.elementor-20 .anido-about-image img,
.elementor.elementor-20 .anido-learning-image img,
.elementor.elementor-20 .anido-journey-image img {
  filter: brightness(1.055) saturate(1.1) contrast(1.025);
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.elementor.elementor-20 .anido-card-image img,
.elementor.elementor-20 .anido-journey-image img {
  box-shadow: 0 14px 34px rgba(137, 54, 35, 0.12);
}

/* Rebuild the two split sections so neither image nor copy sits alone. */
.elementor.elementor-20 .anido-about-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  align-items: center !important;
  gap: clamp(54px, 7vw, 96px) !important;
}

.elementor.elementor-20 .anido-about-media,
.elementor.elementor-20 .anido-about-copy {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.elementor.elementor-20 .anido-about-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  color: #35272b !important;
}

.elementor.elementor-20 .anido-about-copy .elementor-heading-title,
.elementor.elementor-20 .anido-about-copy p,
.elementor.elementor-20 .anido-about-copy strong {
  color: #35272b !important;
}

.elementor.elementor-20 .anido-about-copy .anido-section-title .elementor-heading-title span {
  color: #d9362b !important;
}

.elementor.elementor-20 .anido-about-copy .anido-values span {
  color: #6d5b57 !important;
}

.elementor.elementor-20 .anido-about-media {
  overflow: visible;
  border-radius: 34px;
  filter: drop-shadow(0 26px 48px rgba(133, 50, 32, 0.14));
}

.elementor.elementor-20 .anido-about-image img {
  border-radius: 34px !important;
}

.elementor.elementor-20 .anido-learning-wrap {
  width: min(1240px, calc(100% - 40px)) !important;
  min-height: 680px;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  align-items: stretch !important;
  gap: clamp(42px, 6vw, 84px) !important;
}

.elementor.elementor-20 .anido-learning-copy,
.elementor.elementor-20 .anido-learning-media {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.elementor.elementor-20 .anido-learning-copy {
  min-height: 680px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 88px 0 !important;
}

.elementor.elementor-20 .anido-learning-media {
  min-height: 680px;
  overflow: hidden;
  border-radius: 36px 0 0 36px;
  box-shadow: 0 30px 70px rgba(119, 31, 22, 0.2);
}

.elementor.elementor-20 .anido-learning-image,
.elementor.elementor-20 .anido-learning-image .elementor-widget-container,
.elementor.elementor-20 .anido-learning-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 680px !important;
}

.elementor.elementor-20 .anido-learning-image img {
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-slide-content {
    left: 34px;
    width: min(500px, 44vw);
  }

  .elementor.elementor-20 .anido-slide-title {
    font-size: clamp(38px, 4.7vw, 52px);
  }

  .elementor.elementor-20 .anido-about-wrap,
  .elementor.elementor-20 .anido-learning-wrap {
    gap: 48px !important;
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-slide img {
    object-position: 67% center !important;
  }

  .elementor.elementor-20 .anido-slide-content {
    top: auto;
    right: 18px;
    bottom: 36px;
    left: 18px;
    width: auto;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    background: rgba(255, 250, 245, 0.9);
    box-shadow: 0 18px 44px rgba(82, 31, 24, 0.15);
    backdrop-filter: blur(12px);
    transform: none;
  }

  .elementor.elementor-20 .anido-slide-eyebrow {
    margin-bottom: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 9px;
  }

  .elementor.elementor-20 .anido-slide-title {
    max-width: 90%;
    font-size: clamp(27px, 6.8vw, 36px);
    line-height: 1.05;
  }

  .elementor.elementor-20 .anido-slide-title::after {
    width: 48px;
    height: 3px;
    margin-top: 10px;
  }

  .elementor.elementor-20 .anido-slide-copy {
    display: none;
  }

  .elementor.elementor-20 .anido-slide-badge {
    min-height: 32px;
    margin-top: 12px;
    padding: 0 13px;
    font-size: 10px;
  }

  .elementor.elementor-20 .anido-about-wrap,
  .elementor.elementor-20 .anido-learning-wrap {
    grid-template-columns: 1fr !important;
  }

  .elementor.elementor-20 .anido-learning-copy {
    min-height: 0;
    padding: 78px 0 24px !important;
  }

  .elementor.elementor-20 .anido-learning-media,
  .elementor.elementor-20 .anido-learning-image,
  .elementor.elementor-20 .anido-learning-image .elementor-widget-container,
  .elementor.elementor-20 .anido-learning-image img {
    min-height: 460px !important;
  }

  .elementor.elementor-20 .anido-learning-media {
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-slider-widget,
  .elementor.elementor-20 .anido-slider-widget > .elementor-widget-container,
  .elementor.elementor-20 .anido-slider {
    height: 430px !important;
  }

  .elementor.elementor-20 .anido-slide-content {
    right: 12px;
    bottom: 32px;
    left: 12px;
    padding: 15px 16px;
    border-radius: 17px;
  }

  .elementor.elementor-20 .anido-slide-title {
    max-width: 100%;
    font-size: 27px;
  }

  .elementor.elementor-20 .anido-about-wrap,
  .elementor.elementor-20 .anido-learning-wrap {
    width: calc(100% - 28px) !important;
    gap: 32px !important;
  }

  .elementor.elementor-20 .anido-about-media,
  .elementor.elementor-20 .anido-about-image img {
    border-radius: 24px !important;
  }

  .elementor.elementor-20 .anido-learning-media,
  .elementor.elementor-20 .anido-learning-image,
  .elementor.elementor-20 .anido-learning-image .elementor-widget-container,
  .elementor.elementor-20 .anido-learning-image img {
    min-height: 340px !important;
  }
}

/* v1.6.0 — Giới thiệu ANIDO: native Elementor, editable section by section. */
body.anido-about-page {
  --anido-about-blue: #073b75;
  --anido-about-blue-2: #0b65c2;
  --anido-about-ink: #13233a;
  --anido-about-orange: #ff8a16;
  --anido-about-cream: #fff8ef;
  margin: 0;
  overflow-x: hidden;
  color: var(--anido-about-ink);
  background: #fff;
  font-family: "Montserrat", sans-serif;
}

.anido-about-page .elementor-widget-text-editor p,
.anido-about-page .elementor-widget-heading h1,
.anido-about-page .elementor-widget-heading h2,
.anido-about-page .elementor-widget-heading h3 {
  margin: 0;
}

.anido-about-page a {
  text-decoration: none;
}

.anido-about-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.anido-about-topbar {
  min-height: 42px;
  color: #fff;
  background: linear-gradient(90deg, #062d5d, #0a60b9);
}

.anido-about-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.anido-about-topbar .elementor-widget-text-editor {
  width: auto;
}

.anido-about-topbar p {
  color: inherit;
  font-size: 12px;
  line-height: 1.4;
}

.anido-about-topbar-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anido-about-topbar a {
  color: #fff;
}

.anido-about-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e9eef5;
  box-shadow: 0 10px 30px rgba(18, 50, 88, .06);
}

.anido-about-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.anido-about-logo,
.anido-about-footer-logo {
  width: 154px;
  flex: 0 0 auto;
}

.anido-about-logo img,
.anido-about-footer-logo img {
  width: 100%;
  height: auto;
}

.anido-about-nav-widget {
  width: auto;
}

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

.anido-about-nav a {
  color: #17263a;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.anido-about-nav a:hover,
.anido-about-nav a.is-active {
  color: #0b65c2;
}

.anido-about-nav .anido-about-nav-cta {
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, #ff7b19, #ffac22);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 132, 20, .24);
}

.anido-aboutpage-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 168, 36, .2), transparent 24%),
    linear-gradient(135deg, #f5faff 0%, #fff 48%, #fff4e6 100%);
}

.anido-aboutpage-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  bottom: -300px;
  border: 1px solid rgba(10, 101, 194, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(10, 101, 194, .035), 0 0 0 124px rgba(10, 101, 194, .025);
}

.anido-about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 66px;
}

.anido-about-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.anido-about-eyebrow p {
  color: #0b65c2;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .15em;
}

.anido-about-hero-title h1 {
  max-width: 680px;
  color: #0a2544;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.anido-about-hero-title span,
.anido-about-section-title span {
  color: var(--anido-about-orange);
}

.anido-about-hero-lead p {
  max-width: 620px;
  color: #526277;
  font-size: 17px;
  line-height: 1.75;
}

.anido-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.anido-about-chips span {
  padding: 8px 13px;
  color: #0a4b8d;
  background: #fff;
  border: 1px solid #dbe9f7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 7px 20px rgba(15, 77, 139, .07);
}

.anido-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.anido-about-button {
  width: auto;
}

.anido-about-button .elementor-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.anido-about-button .elementor-button:hover {
  transform: translateY(-2px);
}

.anido-about-button-primary .elementor-button,
.anido-about-button-orange .elementor-button {
  background: linear-gradient(135deg, #ff7a19, #ffa91f);
  box-shadow: 0 13px 28px rgba(255, 130, 20, .25);
}

.anido-about-button-light .elementor-button {
  color: #0b4c90;
  background: #fff;
  border: 1px solid #d9e8f5;
}

.anido-about-hero-media {
  position: relative;
  min-height: 550px;
}

.anido-about-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 470px;
  overflow: hidden;
  border: 11px solid #fff;
  border-radius: 130px 26px 26px 26px;
  box-shadow: 0 30px 70px rgba(12, 61, 112, .2);
}

.anido-about-hero-image img,
.anido-about-hero-office img,
.anido-about-service-image img,
.anido-about-team-image img,
.anido-about-gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.anido-about-hero-image img {
  object-position: center 44%;
}

.anido-about-hero-office {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 230px;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(13, 61, 111, .2);
}

.anido-about-hero-badge {
  position: absolute;
  right: 22px;
  bottom: 5px;
  width: auto;
}

.anido-about-hero-badge p {
  min-width: 166px;
  padding: 17px 20px;
  color: #fff;
  background: linear-gradient(135deg, #073b75, #0872d4);
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: 0 17px 38px rgba(13, 61, 111, .2);
}

.anido-about-hero-badge strong,
.anido-about-hero-badge span {
  display: block;
}

.anido-about-hero-badge strong {
  font-size: 32px;
  line-height: 1;
}

.anido-about-hero-badge span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}

.anido-about-proof {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.anido-about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid #e1eaf4;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(23, 63, 105, .12);
}

.anido-about-proof-item {
  padding: 26px 28px;
}

.anido-about-proof-item:not(:last-child) {
  border-right: 1px solid #e8eef5;
}

.anido-about-proof-item strong,
.anido-about-proof-item span {
  display: block;
}

.anido-about-proof-item strong {
  color: #0a61b5;
  font-size: 32px;
  line-height: 1.1;
}

.anido-about-proof-item span {
  margin-top: 6px;
  color: #5c6878;
  font-size: 13px;
  font-weight: 600;
}

.anido-about-story,
.anido-about-ecosystem,
.anido-about-team,
.anido-about-gallery,
.anido-about-legal {
  padding: 110px 0;
}

.anido-about-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.anido-about-section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 64px;
  text-align: left;
}

.anido-about-heading-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.anido-about-section-title h2 {
  color: #10263f;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 800;
}

.anido-about-section-lead p {
  color: #5d6b7d;
  font-size: 16px;
  line-height: 1.8;
}

.anido-about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.anido-about-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #ff8a16, #75b8ee);
}

.anido-about-card {
  position: relative;
  z-index: 2;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dfebf5;
  border-radius: 22px;
  box-shadow: 0 15px 38px rgba(18, 68, 118, .08);
}

.anido-about-card-number-widget {
  width: auto;
}

.anido-about-card-number {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0d66bc, #073b75);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #cfe1f2, 0 9px 22px rgba(5, 83, 159, .18);
  font-size: 13px;
  font-weight: 800;
}

.anido-about-card.is-active {
  color: #fff;
  background: linear-gradient(150deg, #073b75, #0b6ac8);
  border-color: transparent;
}

.anido-about-card.is-active .anido-about-card-number {
  color: #073b75;
  background: #ffad2e;
}

.anido-about-card-title h3 {
  color: #132941;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.anido-about-card-copy p {
  color: #617084;
  font-size: 14px;
  line-height: 1.72;
}

.anido-about-card.is-active .anido-about-card-title h3,
.anido-about-card.is-active .anido-about-card-copy p {
  color: #fff;
}

.anido-about-values {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 158, 22, .16), transparent 28%),
    linear-gradient(135deg, #052b59, #0753a0);
}

.anido-about-values::after {
  content: "ANIDO";
  position: absolute;
  right: -30px;
  bottom: -88px;
  color: rgba(255, 255, 255, .035);
  font-size: 240px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
}

.anido-about-eyebrow-light p,
.anido-about-section-title-light h2 {
  color: #fff;
}

.anido-about-section-title-light span {
  color: #ffd58e;
}

.anido-about-values-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.anido-about-value-card.anido-about-card {
  min-height: 300px;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.anido-about-value-card .anido-about-card-number {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}

.anido-about-value-card .anido-about-card-title h3,
.anido-about-value-card .anido-about-card-copy p {
  color: #fff;
}

.anido-about-value-card .anido-about-card-copy p {
  color: #dcecff;
}

.anido-about-value-card-accent.anido-about-card {
  background: linear-gradient(145deg, #ff7c18, #ffab23);
  border-color: transparent;
}

.anido-about-value-card-accent .anido-about-card-copy p {
  color: #fff;
}

.anido-about-ecosystem {
  background: var(--anido-about-cream);
}

.anido-about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.anido-about-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 455px;
  padding: 14px 22px 26px;
  background: #fff;
  border: 1px solid #f1dcca;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(97, 63, 29, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.anido-about-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(97, 63, 29, .14);
}

.anido-about-service-image {
  width: calc(100% + 16px);
  height: 205px;
  margin: 0 -8px 20px;
  overflow: hidden;
  border-radius: 18px;
}

.anido-about-service-number {
  width: auto;
  margin-top: -46px;
  margin-left: 10px;
}

.anido-about-service-number span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7d18, #ffa923);
  border: 5px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.anido-about-service-title {
  margin-top: 16px;
}

.anido-about-service-title h3 {
  color: #162b43;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.anido-about-service-copy {
  margin-top: 12px;
}

.anido-about-service-copy p {
  color: #667385;
  font-size: 14px;
  line-height: 1.7;
}

.anido-about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.anido-about-team-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background: #0b3d75;
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(18, 61, 105, .15);
}

.anido-about-team-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 34% 0 0;
  background: linear-gradient(transparent, rgba(4, 25, 48, .94));
  pointer-events: none;
}

.anido-about-team-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.anido-about-team-image img {
  object-position: center;
}

.anido-about-team-card > .elementor-widget:not(.anido-about-team-image) {
  position: relative;
  z-index: 2;
}

.anido-about-team-tag p {
  color: #ffc85f;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .11em;
}

.anido-about-team-card-title h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.anido-about-team-copy p {
  max-width: 510px;
  margin-top: 12px;
  color: #e5eff9;
  font-size: 15px;
  line-height: 1.7;
}

.anido-about-editor-note {
  margin-top: 20px;
  padding: 15px 18px;
  color: #56667a;
  background: #f6f9fc;
  border: 1px dashed #b7cce0;
  border-radius: 14px;
}

.anido-about-editor-note p {
  font-size: 13px;
  line-height: 1.65;
}

.anido-about-gallery {
  background: #f5f9fd;
}

.anido-about-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}

.anido-about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(18, 62, 108, .12);
}

.anido-about-gallery-item.is-main {
  grid-row: span 2;
}

.anido-about-gallery-item:last-child {
  grid-column: 2 / span 2;
}

.anido-about-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.anido-about-gallery-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 50px 22px 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 26, 49, .9));
}

.anido-about-gallery-caption strong,
.anido-about-gallery-caption span {
  display: block;
}

.anido-about-gallery-caption strong {
  font-size: 17px;
}

.anido-about-gallery-caption span {
  margin-top: 5px;
  color: #dceafa;
  font-size: 12px;
}

.anido-about-legal-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.anido-about-legal-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.anido-about-legal-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(17, 66, 116, .11);
}

.anido-about-legal-row {
  padding: 21px 24px;
}

.anido-about-legal-row:not(:last-child) {
  border-bottom: 1px solid #e9eff5;
}

.anido-about-legal-row p {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
}

.anido-about-legal-row span {
  color: #718096;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.anido-about-legal-row strong {
  color: #172b44;
  font-size: 14px;
  line-height: 1.6;
}

.anido-about-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 180, 52, .2), transparent 26%),
    linear-gradient(135deg, #062d5d, #0868c5);
}

.anido-about-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.anido-about-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.anido-about-cta .anido-about-section-title h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.anido-about-button-outline .elementor-button {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
}

.anido-about-footer {
  padding: 70px 0 0;
  color: #dce7f4;
  background: #08213f;
}

.anido-about-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 54px;
}

.anido-about-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.anido-about-footer-logo {
  padding: 9px 12px;
  background: #fff;
  border-radius: 10px;
}

.anido-about-footer-copy p {
  max-width: 300px;
  color: #afc2d8;
  font-size: 14px;
  line-height: 1.7;
}

.anido-about-footer-column p {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.anido-about-footer-column strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
}

.anido-about-footer-column a {
  color: #b7c9dc;
  font-size: 13px;
}

.anido-about-footer-column a:hover {
  color: #ffad2e;
}

.anido-about-footer-bottom {
  padding: 19px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.anido-about-footer-bottom p {
  color: #829bb6;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .anido-about-nav {
    gap: 16px;
  }

  .anido-about-nav a {
    font-size: 12px;
  }

  .anido-about-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .anido-about-hero-media {
    min-height: 470px;
  }

  .anido-about-hero-image {
    height: 400px;
  }

  .anido-about-services-grid,
  .anido-about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .anido-about-timeline::before {
    display: none;
  }

  .anido-about-values-grid {
    gap: 14px;
  }

  .anido-about-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px repeat(2, 250px);
  }

  .anido-about-gallery-item.is-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .anido-about-gallery-item:last-child {
    grid-column: auto;
  }
}

@media (max-width: 782px) {
  .anido-about-wrap {
    width: min(100% - 32px, 1180px);
  }

  .anido-about-topbar-note,
  .anido-about-topbar-contact span,
  .anido-about-topbar-contact a:last-child {
    display: none;
  }

  .anido-about-topbar-inner {
    justify-content: center;
  }

  .anido-about-header-inner {
    min-height: 72px;
  }

  .anido-about-logo {
    width: 126px;
  }

  .anido-about-nav a:not(.anido-about-nav-cta) {
    display: none;
  }

  .anido-about-nav .anido-about-nav-cta {
    display: inline-flex;
    padding: 12px 16px;
    font-size: 11px;
  }

  .anido-aboutpage-hero {
    padding: 54px 0 82px;
  }

  .anido-about-hero-inner,
  .anido-about-section-heading-split,
  .anido-about-legal-inner,
  .anido-about-cta-inner {
    grid-template-columns: 1fr;
  }

  .anido-about-hero-media {
    min-height: 470px;
    margin-top: 12px;
  }

  .anido-about-hero-image {
    width: 94%;
    height: 390px;
    border-radius: 90px 24px 24px 24px;
  }

  .anido-about-proof-grid,
  .anido-about-values-grid,
  .anido-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anido-about-proof-item:nth-child(2) {
    border-right: none;
  }

  .anido-about-proof-item:nth-child(-n+2) {
    border-bottom: 1px solid #e8eef5;
  }

  .anido-about-story,
  .anido-about-ecosystem,
  .anido-about-team,
  .anido-about-gallery,
  .anido-about-legal,
  .anido-about-values {
    padding: 78px 0;
  }

  .anido-about-section-heading-split {
    align-items: start;
    gap: 22px;
  }

  .anido-about-team-card {
    min-height: 500px;
    padding: 26px;
  }

  .anido-about-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anido-about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .anido-about-hero-title h1 {
    font-size: 44px;
  }

  .anido-about-hero-lead p {
    font-size: 15px;
  }

  .anido-about-actions,
  .anido-about-button,
  .anido-about-button .elementor-button {
    width: 100%;
  }

  .anido-about-hero-media {
    min-height: 400px;
  }

  .anido-about-hero-image {
    width: 100%;
    height: 330px;
    border-width: 7px;
    border-radius: 62px 18px 18px 18px;
  }

  .anido-about-hero-office {
    width: 48%;
    height: 150px;
    border-width: 6px;
  }

  .anido-about-hero-badge {
    right: 0;
  }

  .anido-about-hero-badge p {
    min-width: 142px;
    padding: 14px;
  }

  .anido-about-proof {
    margin-top: -28px;
  }

  .anido-about-proof-grid,
  .anido-about-values-grid,
  .anido-about-services-grid,
  .anido-about-timeline,
  .anido-about-team-grid,
  .anido-about-gallery-grid,
  .anido-about-footer-grid {
    grid-template-columns: 1fr;
  }

  .anido-about-proof-item {
    padding: 20px;
  }

  .anido-about-proof-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e8eef5;
  }

  .anido-about-section-title h2 {
    font-size: 36px;
  }

  .anido-about-card {
    min-height: 280px;
  }

  .anido-about-service-card {
    min-height: 430px;
  }

  .anido-about-team-card {
    min-height: 480px;
  }

  .anido-about-gallery-grid {
    grid-template-rows: repeat(4, 270px);
  }

  .anido-about-gallery-item.is-main {
    grid-column: auto;
  }

  .anido-about-legal-row p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .anido-about-cta {
    padding: 68px 0;
  }
}

/* Keep Elementor global colors/layout from overriding the ANIDO about design. */
.anido-about-topbar-inner,
.anido-about-header-inner {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.anido-about-topbar-note p,
.anido-about-topbar-contact p {
  color: #fff !important;
  opacity: 1 !important;
}

.anido-about-hero-title h1,
.anido-about-section-title h2,
.anido-about-card-title h3,
.anido-about-service-title h3 {
  color: #0a2544 !important;
}

.anido-about-section-title-light h2,
.anido-about-value-card .anido-about-card-title h3,
.anido-about-team-card-title h3 {
  color: #fff !important;
}

.anido-about-button-primary .elementor-button,
.anido-about-button-orange .elementor-button {
  color: #fff !important;
  background: linear-gradient(135deg, #ff7a19, #ffa91f) !important;
}

.anido-about-button-light .elementor-button {
  color: #0b4c90 !important;
  background: #fff !important;
}

.anido-about-button-outline .elementor-button {
  color: #fff !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, .55) !important;
}

/* v1.7.0 — Trang Liên hệ ANIDO, fully editable in Elementor. */
.anido-contact-page {
  --anido-contact-blue: #073b75;
  --anido-contact-bright: #0873d5;
  --anido-contact-orange: #ff8a16;
  --anido-contact-ink: #102943;
  --anido-contact-cream: #fff8ef;
}

.anido-contactpage-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 165, 34, .22), transparent 26%),
    linear-gradient(135deg, #052b59 0%, #0755a4 60%, #0874d4 100%);
}

.anido-contactpage-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -300px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .02);
}

.anido-contactpage-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.anido-contactpage-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.anido-contactpage-breadcrumb p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bfdbf5;
  font-size: 12px;
  font-weight: 600;
}

.anido-contactpage-breadcrumb a {
  color: #fff;
}

.anido-contactpage-hero .anido-about-eyebrow p {
  color: #ffd08a;
}

.anido-contactpage-hero-title h1 {
  max-width: 670px;
  color: #fff !important;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 800;
}

.anido-contactpage-hero-title span {
  color: #ffca73;
}

.anido-contactpage-hero-lead p {
  max-width: 610px;
  color: #dbeafa;
  font-size: 17px;
  line-height: 1.75;
}

.anido-contactpage-hero-media {
  position: relative;
  min-height: 520px;
}

.anido-contactpage-hero-image {
  position: absolute;
  inset: 0 0 36px 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .94);
  border-radius: 120px 28px 28px 28px;
  box-shadow: 0 34px 72px rgba(1, 22, 48, .32);
}

.anido-contactpage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.anido-contactpage-hero-status {
  position: absolute;
  top: 26px;
  left: -32px;
  width: auto;
}

.anido-contactpage-hero-status p {
  min-width: 248px;
  padding: 16px 18px 16px 47px;
  color: #16304c;
  background: rgba(255, 255, 255, .96);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(2, 24, 51, .2);
}

.anido-contactpage-hero-status p > span {
  position: absolute;
  left: 19px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: #30c66b;
  border: 3px solid #d9f9e5;
  border-radius: 50%;
  box-sizing: content-box;
}

.anido-contactpage-hero-status strong,
.anido-contactpage-hero-status small {
  display: block;
}

.anido-contactpage-hero-status strong {
  font-size: 13px;
}

.anido-contactpage-hero-status small {
  margin-top: 4px;
  color: #6c7988;
  font-size: 11px;
}

.anido-contactpage-hero-address {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(360px, 74%);
}

.anido-contactpage-hero-address p {
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a19, #ffa820);
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(1, 22, 48, .25);
}

.anido-contactpage-hero-address strong,
.anido-contactpage-hero-address span {
  display: block;
}

.anido-contactpage-hero-address strong {
  font-size: 13px;
}

.anido-contactpage-hero-address span {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.55;
}

.anido-contactpage-channels,
.anido-contactpage-main,
.anido-contactpage-prepare {
  padding: 100px 0;
}

.anido-contactpage-section-heading {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 46px;
  text-align: center;
}

.anido-contactpage-section-title h2 {
  color: var(--anido-contact-ink) !important;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 800;
}

.anido-contactpage-section-title span {
  color: var(--anido-contact-orange);
}

.anido-contactpage-section-lead p {
  color: #5d6c7e;
  font-size: 15px;
  line-height: 1.75;
}

.anido-contactpage-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.anido-contactpage-channel {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border: 1px solid #dfe9f3;
  border-radius: 22px;
  box-shadow: 0 15px 38px rgba(15, 59, 104, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.anido-contactpage-channel:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 48px rgba(15, 59, 104, .14);
}

.anido-contactpage-channel.is-featured {
  color: #fff;
  background: linear-gradient(145deg, #073b75, #0872d2);
  border-color: transparent;
}

.anido-contactpage-channel-icon {
  width: auto;
}

.anido-contactpage-channel-icon span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a60b5;
  background: #edf6ff;
  border-radius: 17px;
  font-size: 24px;
  font-weight: 800;
}

.anido-contactpage-channel.is-featured .anido-contactpage-channel-icon span {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.anido-contactpage-channel-label {
  margin-top: 24px;
}

.anido-contactpage-channel-label p {
  color: #738096;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.anido-contactpage-channel-value {
  margin-top: 9px;
}

.anido-contactpage-channel-value h3,
.anido-contactpage-channel-value a {
  color: #122b45 !important;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  word-break: break-word;
}

.anido-contactpage-channel-description {
  margin-top: 13px;
}

.anido-contactpage-channel-description p {
  color: #647386;
  font-size: 13px;
  line-height: 1.65;
}

.anido-contactpage-channel.is-featured .anido-contactpage-channel-label p,
.anido-contactpage-channel.is-featured .anido-contactpage-channel-description p,
.anido-contactpage-channel.is-featured .anido-contactpage-channel-value h3,
.anido-contactpage-channel.is-featured .anido-contactpage-channel-value a {
  color: #fff !important;
}

.anido-contactpage-channel-button {
  width: auto;
  margin-top: auto;
  padding-top: 24px;
}

.anido-contactpage-channel-button .elementor-button {
  padding: 0;
  color: #0b65bd !important;
  background: transparent !important;
  font-size: 12px;
  font-weight: 800;
}

.anido-contactpage-channel.is-featured .anido-contactpage-channel-button .elementor-button {
  color: #ffd387 !important;
}

.anido-contactpage-main {
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 152, 24, .1), transparent 22%),
    var(--anido-contact-cream);
}

.anido-contactpage-main-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: start;
  gap: 42px;
}

.anido-contactpage-office-column,
.anido-contactpage-form-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.anido-contactpage-office-card {
  width: 100%;
  overflow: hidden;
  margin-top: 12px;
  background: #fff;
  border: 1px solid #f0ddcb;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(93, 57, 25, .07);
}

.anido-contactpage-office-row {
  padding: 19px 21px;
}

.anido-contactpage-office-row:not(:last-child) {
  border-bottom: 1px solid #f0e5da;
}

.anido-contactpage-office-row p {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
}

.anido-contactpage-office-row span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b64bd;
  background: #eaf5ff;
  border-radius: 11px;
  font-size: 17px;
  font-weight: 800;
}

.anido-contactpage-office-row strong {
  color: #172e47;
  font-size: 13px;
}

.anido-contactpage-office-row small {
  margin-top: 3px;
  color: #647387;
  font-size: 12px;
  line-height: 1.55;
}

.anido-contactpage-map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 12px;
  border: 8px solid #fff;
  border-radius: 22px;
  box-shadow: 0 19px 44px rgba(73, 47, 22, .13);
}

.anido-contactpage-map-widget,
.anido-contactpage-map-widget iframe {
  width: 100%;
  min-height: 400px;
}

.anido-contactpage-direction-button {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  width: auto;
}

.anido-contactpage-direction-button .elementor-button {
  padding: 13px 18px;
  color: #fff !important;
  background: linear-gradient(135deg, #073b75, #0870cd) !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(5, 49, 96, .25);
}

.anido-contactpage-form-column {
  padding: 38px;
  background: #fff;
  border: 1px solid #e2ebf4;
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(24, 62, 102, .13);
}

.anido-contactpage-form {
  width: 100%;
  margin-top: 10px;
}

.anido-contactpage-form .elementor-form-fields-wrapper {
  row-gap: 14px;
}

.anido-contactpage-form .elementor-field-group {
  margin-bottom: 0 !important;
}

.anido-contactpage-form .elementor-field-label {
  margin-bottom: 7px;
  color: #35465a !important;
  font-size: 12px;
  font-weight: 700;
}

.anido-contactpage-form .elementor-field,
.anido-contactpage-form select,
.anido-contactpage-form textarea {
  min-height: 50px;
  padding: 12px 14px !important;
  color: #24384f !important;
  background: #f5f8fb !important;
  border: 1px solid #dce6f0 !important;
  border-radius: 10px !important;
  font-size: 13px;
  box-shadow: none !important;
}

.anido-contactpage-form textarea {
  min-height: 118px;
  resize: vertical;
}

.anido-contactpage-form .elementor-field:focus,
.anido-contactpage-form select:focus,
.anido-contactpage-form textarea:focus {
  background: #fff !important;
  border-color: #0b6cc9 !important;
  box-shadow: 0 0 0 3px rgba(11, 108, 201, .1) !important;
}

.anido-contactpage-form .elementor-button {
  width: 100%;
  min-height: 56px;
  color: #fff !important;
  background: linear-gradient(135deg, #ff7a19, #ffa91f) !important;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(255, 130, 20, .24);
}

.anido-contactpage-form-note {
  width: 100%;
  padding-top: 4px;
  text-align: center;
}

.anido-contactpage-form-note p {
  color: #7a8796;
  font-size: 11px;
}

.anido-contactpage-prepare {
  background: #f5f9fd;
}

.anido-contactpage-prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.anido-contactpage-prepare .anido-about-card {
  min-height: 300px;
}

.anido-contactpage-social {
  padding: 84px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 170, 31, .18), transparent 27%),
    linear-gradient(135deg, #052c5a, #076cc8);
}

.anido-contactpage-social-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}

.anido-contactpage-social-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.anido-contactpage-section-title-light h2 {
  max-width: 780px;
  color: #fff !important;
}

.anido-contactpage-section-title-light span {
  color: #ffd083;
}

.anido-contactpage-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anido-contactpage-social-links a {
  min-width: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 17px 20px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  transition: transform .2s ease, background .2s ease;
}

.anido-contactpage-social-links a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .17);
}

.anido-contactpage-social-links strong {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0758a8;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
}

.anido-contactpage-social-links span {
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .anido-contactpage-hero-inner,
  .anido-contactpage-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .anido-contactpage-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anido-contactpage-hero-media {
    min-height: 470px;
  }

  .anido-contactpage-form-column {
    padding: 30px;
  }
}

@media (max-width: 782px) {
  .anido-contactpage-hero {
    padding: 58px 0 74px;
  }

  .anido-contactpage-hero-inner,
  .anido-contactpage-main-inner,
  .anido-contactpage-social-inner {
    grid-template-columns: 1fr;
  }

  .anido-contactpage-hero-media {
    min-height: 470px;
    margin-top: 12px;
  }

  .anido-contactpage-channels,
  .anido-contactpage-main,
  .anido-contactpage-prepare {
    padding: 76px 0;
  }

  .anido-contactpage-prepare-grid {
    grid-template-columns: 1fr;
  }

  .anido-contactpage-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .anido-contactpage-hero-title h1 {
    font-size: 43px;
  }

  .anido-contactpage-hero-lead p {
    font-size: 15px;
  }

  .anido-contactpage-hero-media {
    min-height: 410px;
  }

  .anido-contactpage-hero-image {
    inset: 0 0 30px;
    border-width: 7px;
    border-radius: 72px 20px 20px 20px;
  }

  .anido-contactpage-hero-status {
    left: 12px;
    top: 18px;
  }

  .anido-contactpage-hero-status p {
    min-width: 218px;
  }

  .anido-contactpage-hero-address {
    right: 8px;
    width: 82%;
  }

  .anido-contactpage-channel-grid {
    grid-template-columns: 1fr;
  }

  .anido-contactpage-channel {
    min-height: 310px;
  }

  .anido-contactpage-section-title h2 {
    font-size: 36px;
  }

  .anido-contactpage-form-column {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .anido-contactpage-form .elementor-field-group {
    width: 100% !important;
  }

  .anido-contactpage-social-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .anido-contactpage-social-links a {
    min-width: 0;
    padding: 14px 8px;
  }
}

/* ================================================================
   ANIDO HOMEPAGE V2 — full-width editorial hero and hardened
   Elementor overrides. These selectors intentionally outrank the
   generated post CSS from Elementor 4.x.
   ================================================================ */

.elementor.elementor-20 .anido-header {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(6, 59, 121, 0.07);
}

.elementor.elementor-20 .anido-header-wrap {
  width: min(1180px, calc(100% - 48px)) !important;
  min-height: 84px !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 34px !important;
}

.elementor.elementor-20 .anido-header-wrap > .elementor-element {
  margin: 0 !important;
}

.elementor.elementor-20 .anido-logo {
  width: 172px !important;
  max-width: 172px !important;
  flex: 0 0 172px !important;
}

.elementor.elementor-20 .anido-logo .elementor-widget-container,
.elementor.elementor-20 .anido-logo img {
  display: block;
  width: 172px !important;
  height: auto !important;
}

.elementor.elementor-20 .anido-nav-widget {
  width: auto !important;
  max-width: none !important;
  flex: 1 1 auto !important;
}

.elementor.elementor-20 .anido-nav-widget .elementor-widget-container {
  width: 100%;
}

.elementor.elementor-20 .anido-nav {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(20px, 2vw, 34px) !important;
}

.elementor.elementor-20 .anido-nav a {
  position: relative;
  color: #12233a !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.elementor.elementor-20 .anido-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #f5a623;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.22s ease;
}

.elementor.elementor-20 .anido-nav a:hover {
  color: #075cb5 !important;
}

.elementor.elementor-20 .anido-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.elementor.elementor-20 .anido-header-cta {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button {
  min-height: 54px !important;
  padding: 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #075cb5 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  background-color: #075cb5 !important;
  background-image: none !important;
  box-shadow: 0 14px 30px rgba(7, 92, 181, 0.23) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button:hover {
  border-color: #f5a623 !important;
  background-color: #f5a623 !important;
  box-shadow: 0 16px 34px rgba(245, 166, 35, 0.28) !important;
  transform: translateY(-2px);
}

.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button {
  min-height: 46px !important;
  padding-inline: 21px !important;
  border-color: #f5a623 !important;
  background-color: #f5a623 !important;
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.24) !important;
  white-space: nowrap;
}

.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button:hover {
  border-color: #075cb5 !important;
  background-color: #075cb5 !important;
}

.elementor.elementor-20 .anido-hero {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  min-height: clamp(620px, 71vh, 760px) !important;
  padding: 0 !important;
  isolation: isolate;
  color: #ffffff;
  background: #063b79 !important;
}

.elementor.elementor-20 .anido-hero::before {
  z-index: 1;
  width: auto;
  height: auto;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 64, 0.97) 0%, rgba(6, 59, 121, 0.88) 33%, rgba(6, 59, 121, 0.45) 58%, rgba(6, 59, 121, 0.08) 82%),
    linear-gradient(0deg, rgba(4, 31, 64, 0.42) 0%, transparent 36%);
}

.elementor.elementor-20 .anido-hero::after {
  z-index: 2;
  width: 420px;
  height: 420px;
  top: auto;
  right: auto;
  bottom: -260px;
  left: -140px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.elementor.elementor-20 .anido-hero-wrap {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(620px, 71vh, 760px) !important;
  margin: 0 !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.elementor.elementor-20 .anido-hero-media {
  position: absolute !important;
  z-index: 0;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.elementor.elementor-20 .anido-hero-image,
.elementor.elementor-20 .anido-hero-image .elementor-widget-container,
.elementor.elementor-20 .anido-hero-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(620px, 71vh, 760px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border-radius: 0 !important;
}

.elementor.elementor-20 .anido-hero-image img {
  object-fit: cover !important;
  object-position: center 49% !important;
  filter: saturate(1.03) contrast(1.03);
}

.elementor.elementor-20 .anido-hero-copy {
  position: relative !important;
  z-index: 3;
  width: min(610px, calc(100% - 48px)) !important;
  max-width: 610px !important;
  min-height: clamp(620px, 71vh, 760px) !important;
  margin: 0 0 0 max(24px, calc((100vw - 1180px) / 2)) !important;
  padding: 88px 0 82px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.elementor.elementor-20 .anido-hero-copy > .elementor-element {
  width: 100%;
}

.elementor.elementor-20 .anido-hero .anido-eyebrow {
  margin-bottom: 20px;
  color: #ffd17b !important;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title,
.elementor.elementor-20 .anido-hero-title .elementor-heading-title span {
  color: #ffffff !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title {
  max-width: 600px;
  font-size: clamp(52px, 5.2vw, 78px) !important;
  font-weight: 850 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title span {
  color: #ffd17b !important;
  font-style: italic;
}

.elementor.elementor-20 .anido-hero .anido-lead {
  max-width: 565px;
  margin-top: 24px;
}

.elementor.elementor-20 .anido-hero .anido-lead p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.elementor.elementor-20 .anido-actions {
  width: auto !important;
  margin-top: 32px !important;
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 13px !important;
}

.elementor.elementor-20 .anido-actions > .elementor-element {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

.elementor.elementor-20 .anido-actions .elementor-element.anido-btn:first-child .elementor-button {
  border-color: #f5a623 !important;
  background-color: #f5a623 !important;
  box-shadow: 0 16px 34px rgba(245, 166, 35, 0.3) !important;
}

.elementor.elementor-20 .elementor-element.anido-btn-secondary .elementor-button {
  border-color: rgba(255, 255, 255, 0.76) !important;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}

.elementor.elementor-20 .elementor-element.anido-btn-secondary .elementor-button:hover {
  border-color: #ffffff !important;
  color: #063b79 !important;
  background-color: #ffffff !important;
}

.elementor.elementor-20 .elementor-element.anido-card-button .elementor-button,
.elementor.elementor-20 .elementor-element.anido-link-button .elementor-button {
  min-height: auto !important;
  padding: 0 0 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 0 !important;
  border-bottom: 2px solid #f5a623 !important;
  border-radius: 0 !important;
  color: #075cb5 !important;
  fill: #075cb5 !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.elementor.elementor-20 .elementor-element.anido-card-button .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-link-button .elementor-button:hover {
  color: #f5a623 !important;
  fill: #f5a623 !important;
  background-color: transparent !important;
  transform: translateX(4px);
}

.elementor.elementor-20 .elementor-element.anido-btn-light .elementor-button {
  border-color: #ffffff !important;
  color: #063b79 !important;
  fill: #063b79 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.elementor.elementor-20 .elementor-element.anido-btn-light .elementor-button:hover {
  border-color: #ffd17b !important;
  color: #063b79 !important;
  background-color: #ffd17b !important;
}

.elementor.elementor-20 .anido-proof {
  margin-top: 32px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.elementor.elementor-20 .anido-proof strong {
  color: #ffffff;
}

.elementor.elementor-20 .anido-proof span {
  color: rgba(255, 255, 255, 0.67);
}

.elementor.elementor-20 .anido-hero-badges {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  left: auto;
  display: flex;
  gap: 10px;
}

.elementor.elementor-20 .anido-hero-badges span {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(4, 31, 64, 0.7);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-header-wrap {
    width: min(100% - 36px, 900px) !important;
    gap: 22px !important;
  }

  .elementor.elementor-20 .anido-header-cta {
    display: block !important;
  }

  .elementor.elementor-20 .anido-nav {
    gap: 17px !important;
  }

  .elementor.elementor-20 .anido-nav a {
    font-size: 13px !important;
  }

  .elementor.elementor-20 .anido-hero-copy {
    margin-left: 40px !important;
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-topbar {
    display: none !important;
  }

  .elementor.elementor-20 .anido-header,
  .elementor.elementor-20 .anido-header-wrap {
    min-height: 72px !important;
  }

  .elementor.elementor-20 .anido-header-wrap {
    width: calc(100% - 28px) !important;
  }

  .elementor.elementor-20 .anido-logo,
  .elementor.elementor-20 .anido-logo img {
    width: 146px !important;
    max-width: 146px !important;
    flex-basis: 146px !important;
  }

  .elementor.elementor-20 .anido-nav-widget {
    display: none !important;
  }

  .elementor.elementor-20 .anido-header-cta {
    margin-left: auto !important;
  }

  .elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button {
    min-height: 42px !important;
    padding-inline: 16px !important;
    font-size: 12px !important;
  }

  .elementor.elementor-20 .anido-hero,
  .elementor.elementor-20 .anido-hero-wrap,
  .elementor.elementor-20 .anido-hero-copy,
  .elementor.elementor-20 .anido-hero-image,
  .elementor.elementor-20 .anido-hero-image .elementor-widget-container,
  .elementor.elementor-20 .anido-hero-image img {
    min-height: 680px !important;
  }

  .elementor.elementor-20 .anido-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 31, 64, 0.94) 0%, rgba(6, 59, 121, 0.76) 70%, rgba(6, 59, 121, 0.42) 100%),
      linear-gradient(0deg, rgba(4, 31, 64, 0.45), transparent 45%);
  }

  .elementor.elementor-20 .anido-hero-copy {
    width: calc(100% - 40px) !important;
    max-width: 610px !important;
    margin: 0 20px !important;
    padding: 72px 0 100px !important;
  }

  .elementor.elementor-20 .anido-hero-title .elementor-heading-title {
    font-size: clamp(46px, 11vw, 66px) !important;
  }

  .elementor.elementor-20 .anido-hero-badges {
    right: 20px;
    bottom: 20px;
    left: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-header-cta .elementor-button-text {
    font-size: 0;
  }

  .elementor.elementor-20 .anido-header-cta .elementor-button-text::after {
    content: "Tư vấn →";
    font-size: 12px;
  }

  .elementor.elementor-20 .anido-hero,
  .elementor.elementor-20 .anido-hero-wrap,
  .elementor.elementor-20 .anido-hero-copy,
  .elementor.elementor-20 .anido-hero-image,
  .elementor.elementor-20 .anido-hero-image .elementor-widget-container,
  .elementor.elementor-20 .anido-hero-image img {
    min-height: 720px !important;
  }

  .elementor.elementor-20 .anido-hero-image img {
    object-position: 56% center !important;
  }

  .elementor.elementor-20 .anido-hero-copy {
    padding-top: 62px !important;
  }

  .elementor.elementor-20 .anido-hero-title .elementor-heading-title {
    font-size: clamp(42px, 12vw, 55px) !important;
  }

  .elementor.elementor-20 .anido-hero .anido-lead p {
    font-size: 15px !important;
  }

  .elementor.elementor-20 .anido-actions {
    width: 100% !important;
    align-items: stretch !important;
  }

  .elementor.elementor-20 .anido-actions > .elementor-element,
  .elementor.elementor-20 .anido-actions .elementor-button {
    width: 100% !important;
  }

  .elementor.elementor-20 .anido-hero-badges span {
    padding: 9px 13px;
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V3 — Montserrat Vietnamese + bright red/orange visual system
   -------------------------------------------------------------------------- */

:root {
  --anido-navy: #b72d27;
  --anido-blue: #dc3d31;
  --anido-sky: #fff1e7;
  --anido-orange: #f7941d;
  --anido-red: #d9362b;
  --anido-ink: #35272b;
  --anido-body: #66555a;
  --anido-pale: #fff9f3;
  --anido-line: #f0d6c8;
  --anido-white: #ffffff;
  --anido-shadow: 0 24px 60px rgba(157, 55, 35, 0.13);
}

body.elementor-page,
.elementor.elementor-20,
.elementor.elementor-20 :where(h1, h2, h3, h4, h5, h6, p, a, span, strong, small, label, input, textarea, select, button, .elementor-button, .elementor-heading-title) {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

.elementor.elementor-20 .anido-section-title .elementor-heading-title span,
.elementor.elementor-20 .anido-stat-number .elementor-heading-title,
.elementor.elementor-20 .anido-about-badge strong,
.elementor.elementor-20 .anido-service-number,
.elementor.elementor-20 .anido-step-number .elementor-heading-title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
}

.elementor.elementor-20 .anido-section {
  padding-top: 124px !important;
  padding-bottom: 124px !important;
}

.elementor.elementor-20 .anido-topbar {
  min-height: 38px;
  color: #ffffff;
  background: linear-gradient(90deg, #d9362b 0%, #f05a2b 55%, #f7941d 100%) !important;
}

.elementor.elementor-20 .anido-topbar-inner,
.elementor.elementor-20 .anido-topbar-inner a {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-header {
  border-bottom-color: rgba(217, 54, 43, 0.09);
  box-shadow: 0 10px 34px rgba(142, 48, 31, 0.08);
}

.elementor.elementor-20 .anido-nav a:hover {
  color: #d9362b !important;
}

.elementor.elementor-20 .anido-nav a::after {
  background: linear-gradient(90deg, #d9362b, #f7941d);
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button,
.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button {
  border-color: #f17822 !important;
  background-color: #f17822 !important;
  background-image: linear-gradient(135deg, #f7941d 0%, #ef5b28 58%, #d9362b 100%) !important;
  box-shadow: 0 14px 30px rgba(222, 75, 39, 0.24) !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button:hover {
  border-color: #c92d25 !important;
  background-color: #c92d25 !important;
  background-image: linear-gradient(135deg, #e5482d 0%, #c92d25 100%) !important;
  box-shadow: 0 18px 38px rgba(201, 45, 37, 0.27) !important;
}

.elementor.elementor-20 .anido-hero {
  background: #d9362b !important;
}

.elementor.elementor-20 .anido-hero::before {
  background:
    linear-gradient(90deg, rgba(82, 23, 20, 0.95) 0%, rgba(157, 42, 31, 0.86) 36%, rgba(222, 74, 37, 0.48) 62%, rgba(247, 148, 29, 0.08) 100%),
    linear-gradient(0deg, rgba(74, 20, 17, 0.42) 0%, transparent 44%) !important;
}

.elementor.elementor-20 .anido-hero::after {
  border-color: rgba(255, 199, 105, 0.45);
}

.elementor.elementor-20 .anido-hero .anido-eyebrow {
  color: #ffd59a !important;
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title,
.elementor.elementor-20 .anido-hero-title .elementor-heading-title span {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  letter-spacing: -0.045em !important;
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title {
  max-width: 720px !important;
  font-size: clamp(52px, 4.4vw, 66px) !important;
  line-height: 1.02 !important;
}

.elementor.elementor-20 .anido-hero-title .elementor-heading-title span {
  display: block;
  color: #ffc35a !important;
  font-weight: 700 !important;
}

.elementor.elementor-20 .elementor-element.anido-btn-secondary .elementor-button {
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.13) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.elementor.elementor-20 .elementor-element.anido-btn-secondary .elementor-button:hover {
  border-color: #ffffff !important;
  color: #d9362b !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

.elementor.elementor-20 .anido-hero-badges span {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(147, 42, 30, 0.72);
}

.elementor.elementor-20 .anido-stats {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
  color: #35272b;
  border-bottom: 1px solid #f3d6c7;
  background: linear-gradient(110deg, #fff4e8 0%, #ffffff 48%, #fff0e4 100%) !important;
}

.elementor.elementor-20 .anido-stat {
  border-right-color: rgba(217, 54, 43, 0.18);
}

.elementor.elementor-20 .anido-stat-number .elementor-heading-title {
  color: #dc3d31 !important;
  font-weight: 800 !important;
}

.elementor.elementor-20 .anido-stat-label p {
  color: #79544d !important;
}

.elementor.elementor-20 .anido-destinations,
.elementor.elementor-20 .anido-services,
.elementor.elementor-20 .anido-journeys {
  background: #fff9f3 !important;
}

.elementor.elementor-20 .anido-section-title .elementor-heading-title span {
  color: #dc3d31 !important;
  font-weight: 800 !important;
}

.elementor.elementor-20 .anido-destination-card,
.elementor.elementor-20 .anido-service-card,
.elementor.elementor-20 .anido-journey-card {
  border-color: #f0d6c8;
  box-shadow: 0 16px 44px rgba(157, 55, 35, 0.09);
}

.elementor.elementor-20 .anido-card-meta small,
.elementor.elementor-20 .anido-service-icon {
  color: #dc3d31;
}

.elementor.elementor-20 .anido-about-media::before {
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%);
}

.elementor.elementor-20 .anido-about-badge .elementor-widget-container > div {
  background: linear-gradient(145deg, #f7941d 0%, #ed5629 100%);
}

.elementor.elementor-20 .anido-service-card:hover {
  color: #ffffff;
  background: linear-gradient(155deg, #d9362b 0%, #f26b28 66%, #f7941d 100%) !important;
}

.elementor.elementor-20 .anido-step-number .elementor-heading-title {
  border-color: #ec8d68;
  color: #d9362b;
}

.elementor.elementor-20 .anido-step:first-child .anido-step-number .elementor-heading-title,
.elementor.elementor-20 .anido-step:hover .anido-step-number .elementor-heading-title {
  border-color: #dc3d31;
  background: linear-gradient(145deg, #dc3d31, #f7941d);
}

.elementor.elementor-20 .anido-learning {
  background: linear-gradient(120deg, #cf3028 0%, #e94c2d 48%, #f7941d 100%) !important;
}

.elementor.elementor-20 .anido-learning-wrap {
  min-height: 700px;
}

.elementor.elementor-20 .anido-light,
.elementor.elementor-20 .anido-learning-text p {
  color: #fff4e8 !important;
}

.elementor.elementor-20 .anido-learning-text li::before {
  color: #ffe19a;
}

.elementor.elementor-20 .elementor-element.anido-btn-light .elementor-button {
  border-color: #ffffff !important;
  color: #d9362b !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

.elementor.elementor-20 .elementor-element.anido-btn-light .elementor-button:hover {
  border-color: #fff0d0 !important;
  color: #b72d27 !important;
  background-color: #fff0d0 !important;
  background-image: none !important;
}

.elementor.elementor-20 .anido-contact {
  padding-top: 124px !important;
  padding-bottom: 124px !important;
  background: linear-gradient(125deg, #d9362b 0%, #ed552b 52%, #f7941d 100%) !important;
}

.elementor.elementor-20 .anido-contact-text p {
  color: #fff1e8;
}

.elementor.elementor-20 .anido-form-wrap {
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 70px rgba(126, 35, 25, 0.2);
}

.elementor.elementor-20 .anido-form .elementor-field {
  border-color: #efd6c9;
  background: #fffaf6;
}

.elementor.elementor-20 .anido-form .elementor-field:focus {
  border-color: #f06b2b;
  box-shadow: 0 0 0 3px rgba(240, 107, 43, 0.13);
}

.elementor.elementor-20 .anido-footer {
  position: relative;
  padding-top: 86px;
  color: #684f4a;
  background: linear-gradient(135deg, #fff2e6 0%, #fffaf5 50%, #ffffff 100%) !important;
}

.elementor.elementor-20 .anido-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, #d9362b 0%, #ef5b28 50%, #f7941d 100%);
}

.elementor.elementor-20 .anido-footer-brand p,
.elementor.elementor-20 .anido-footer-links a,
.elementor.elementor-20 .anido-footer-links span {
  color: #755e59;
}

.elementor.elementor-20 .anido-footer-links strong {
  color: #d9362b;
}

.elementor.elementor-20 .anido-footer-links a:hover {
  color: #f07822;
}

.elementor.elementor-20 .anido-footer-bottom {
  border-top-color: rgba(217, 54, 43, 0.18);
  color: #8a6d65;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media (min-width: 1025px) {
  .elementor.elementor-20 .anido-hero-copy {
    width: min(720px, calc(100% - 48px)) !important;
    max-width: 720px !important;
  }

  .elementor.elementor-20 .anido-hero .anido-lead {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-hero::before {
    background:
      linear-gradient(90deg, rgba(100, 25, 21, 0.94) 0%, rgba(183, 45, 39, 0.8) 72%, rgba(239, 91, 40, 0.48) 100%),
      linear-gradient(0deg, rgba(79, 20, 17, 0.44), transparent 48%) !important;
  }

  .elementor.elementor-20 .anido-learning-wrap {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }

  .elementor.elementor-20 .anido-hero-title .elementor-heading-title {
    font-size: clamp(39px, 11vw, 48px) !important;
    line-height: 1.04 !important;
  }

  .elementor.elementor-20 .anido-stats {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .elementor.elementor-20 .anido-contact {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }

  .elementor.elementor-20 .anido-footer {
    padding-top: 70px;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V4 — image-only 4-slide hero + contrast corrections
   -------------------------------------------------------------------------- */

.elementor.elementor-20 .anido-hero:not(.anido-hero-slider-section) .anido-hero-copy,
.elementor.elementor-20 .anido-hero:not(.anido-hero-slider-section) .anido-hero-badges {
  opacity: 0 !important;
  visibility: hidden !important;
}

.elementor.elementor-20 .anido-hero-slider-section {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 0 !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.elementor.elementor-20 .anido-hero-slider-section::before,
.elementor.elementor-20 .anido-hero-slider-section::after {
  display: none !important;
  content: none !important;
}

.elementor.elementor-20 .anido-slider-widget,
.elementor.elementor-20 .anido-slider-widget > .elementor-widget-container,
.elementor.elementor-20 .anido-slider {
  width: 100% !important;
  max-width: none !important;
  height: clamp(470px, 45vw, 680px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor.elementor-20 .anido-slider {
  position: relative;
  overflow: hidden;
  background: #f8eee7;
}

.elementor.elementor-20 .anido-slider-track,
.elementor.elementor-20 .anido-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.elementor.elementor-20 .anido-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.85s ease, visibility 0.85s ease, transform 5.4s ease;
  pointer-events: none;
}

.elementor.elementor-20 .anido-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.elementor.elementor-20 .anido-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 52% !important;
}

.elementor.elementor-20 .anido-slide:nth-child(2) img {
  object-position: center 48% !important;
}

.elementor.elementor-20 .anido-slide:nth-child(3) img {
  object-position: center 52% !important;
}

.elementor.elementor-20 .anido-slide:nth-child(4) img {
  object-position: center 48% !important;
}

.elementor.elementor-20 .anido-slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(204, 57, 39, 0.76);
  box-shadow: 0 10px 30px rgba(86, 31, 21, 0.2);
  backdrop-filter: blur(10px);
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.elementor.elementor-20 .anido-slider-arrow:hover,
.elementor.elementor-20 .anido-slider-arrow:focus-visible {
  color: #ffffff;
  background: #f07822;
  transform: translateY(-50%) scale(1.06);
}

.elementor.elementor-20 .anido-slider-prev {
  left: clamp(14px, 3vw, 46px);
}

.elementor.elementor-20 .anido-slider-next {
  right: clamp(14px, 3vw, 46px);
}

.elementor.elementor-20 .anido-slider-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.elementor.elementor-20 .anido-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 3px 12px rgba(64, 24, 17, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.elementor.elementor-20 .anido-slider-dots button[aria-current="true"] {
  width: 34px;
  background: #f7941d;
}

/* Light sections use warm neutral surfaces; no pale blue remains. */
.elementor.elementor-20 .anido-destinations,
.elementor.elementor-20 .anido-services,
.elementor.elementor-20 .anido-journeys {
  background-color: #fff8f1 !important;
  background-image: none !important;
}

.elementor.elementor-20 .anido-roadmap,
.elementor.elementor-20 .anido-about {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* High-contrast headings on saturated red/orange sections. */
.elementor.elementor-20 .elementor-element.anido-section-title .elementor-heading-title {
  color: #35272b !important;
}

.elementor.elementor-20 .elementor-element.anido-section-title .elementor-heading-title span {
  color: #d9362b !important;
}

.elementor.elementor-20 .anido-learning .elementor-element.anido-light-title .elementor-heading-title,
.elementor.elementor-20 .anido-contact .elementor-element.anido-light-title .elementor-heading-title {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-learning .elementor-element.anido-light-title .elementor-heading-title span,
.elementor.elementor-20 .anido-contact .elementor-element.anido-light-title .elementor-heading-title span {
  color: #fff1c9 !important;
}

.elementor.elementor-20 .anido-learning .anido-section-lead p,
.elementor.elementor-20 .anido-contact .anido-section-lead p,
.elementor.elementor-20 .anido-contact-text p,
.elementor.elementor-20 .anido-contact-details a {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-form-wrap .elementor-heading-title,
.elementor.elementor-20 .anido-form-wrap p,
.elementor.elementor-20 .anido-form-wrap label {
  color: #35272b !important;
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-slider-widget,
  .elementor.elementor-20 .anido-slider-widget > .elementor-widget-container,
  .elementor.elementor-20 .anido-slider {
    height: clamp(300px, 72vw, 460px) !important;
  }

  .elementor.elementor-20 .anido-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .elementor.elementor-20 .anido-slider-dots {
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-slider-widget,
  .elementor.elementor-20 .anido-slider-widget > .elementor-widget-container,
  .elementor.elementor-20 .anido-slider {
    height: clamp(255px, 68vw, 350px) !important;
  }

  .elementor.elementor-20 .anido-slider-arrow {
    width: 36px;
    height: 36px;
    border-width: 1px;
    font-size: 27px;
  }

  .elementor.elementor-20 .anido-slider-prev {
    left: 10px;
  }

  .elementor.elementor-20 .anido-slider-next {
    right: 10px;
  }

  .elementor.elementor-20 .anido-slider-dots {
    bottom: 12px;
    gap: 7px;
  }

  .elementor.elementor-20 .anido-slider-dots button {
    width: 8px;
    height: 8px;
  }

  .elementor.elementor-20 .anido-slider-dots button[aria-current="true"] {
    width: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elementor.elementor-20 .anido-slide,
  .elementor.elementor-20 .anido-slider-arrow,
  .elementor.elementor-20 .anido-slider-dots button {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V6 — face-safe About image, richer roadmap and social footer
   -------------------------------------------------------------------------- */

/* About ANIDO: the generated 4:5 campaign image keeps every person inside a
   generous safe area. Never crop the image at any responsive breakpoint. */
.elementor.elementor-20 .anido-about-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr) !important;
  align-items: center !important;
  gap: clamp(54px, 7vw, 96px) !important;
}

.elementor.elementor-20 .anido-about-media,
.elementor.elementor-20 .anido-about-copy {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-about-media {
  position: relative;
  overflow: visible !important;
  border-radius: 36px;
  filter: drop-shadow(0 28px 54px rgba(138, 50, 31, 0.16));
}

.elementor.elementor-20 .anido-about-media::before {
  top: -22px !important;
  right: 34px !important;
  bottom: 34px !important;
  left: -22px !important;
  border-radius: 72px 30px 72px 30px !important;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%) !important;
}

.elementor.elementor-20 .anido-about-image,
.elementor.elementor-20 .anido-about-image .elementor-widget-container {
  position: relative;
  z-index: 1;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 34px !important;
  background: #fff8f1;
}

.elementor.elementor-20 .anido-about-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  margin: 0 !important;
  border-radius: 34px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: brightness(1.025) saturate(1.04) contrast(1.01) !important;
}

.elementor.elementor-20 .anido-about-badge {
  z-index: 3;
}

/* Roadmap: turn the sparse list into a set of visual, connected milestones. */
.elementor.elementor-20 .anido-roadmap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 16%, rgba(247, 148, 29, 0.14), transparent 24%),
    radial-gradient(circle at 96% 82%, rgba(217, 54, 43, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff8f1 100%) !important;
}

.elementor.elementor-20 .anido-roadmap::before {
  content: "";
  position: absolute;
  top: 52px;
  right: -76px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(247, 148, 29, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(247, 148, 29, 0.045), 0 0 0 68px rgba(217, 54, 43, 0.025);
  pointer-events: none;
}

.elementor.elementor-20 .anido-roadmap > .anido-wrap {
  position: relative;
  z-index: 1;
}

.elementor.elementor-20 .anido-roadmap-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 62px !important;
}

.elementor.elementor-20 .anido-step {
  position: relative;
  width: 100% !important;
  min-height: 284px;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 32px 30px 34px !important;
  overflow: hidden;
  border: 1px solid #f0d6c8 !important;
  border-radius: 26px !important;
  color: #35272b !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 18px 46px rgba(145, 55, 34, 0.09) !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.elementor.elementor-20 .anido-step::before {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(247, 148, 29, 0.12), rgba(217, 54, 43, 0.04));
  transition: transform 0.35s ease;
}

.elementor.elementor-20 .anido-step::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #d9362b 0%, #f7941d 100%);
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.elementor.elementor-20 .anido-step-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(239, 91, 40, 0.17);
  border-radius: 20px;
  color: #d9362b;
  background: linear-gradient(145deg, #fff3e8 0%, #ffffff 100%);
  box-shadow: 0 12px 28px rgba(166, 58, 35, 0.09);
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.elementor.elementor-20 .anido-step-number {
  position: absolute !important;
  z-index: 3;
  top: 32px;
  right: 30px;
  width: auto !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-step-number .elementor-heading-title {
  width: 50px !important;
  height: 50px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%) !important;
  box-shadow: 0 10px 25px rgba(214, 63, 39, 0.2) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.elementor.elementor-20 .anido-step-title {
  position: relative;
  z-index: 2;
  width: 100% !important;
  margin: 30px 0 0 !important;
}

.elementor.elementor-20 .anido-step-title .elementor-heading-title {
  margin: 0 !important;
  color: #35272b !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.025em;
}

.elementor.elementor-20 .anido-step-copy {
  position: relative;
  z-index: 2;
  width: 100% !important;
  margin: 13px 0 0 !important;
}

.elementor.elementor-20 .anido-step-copy p {
  margin: 0 !important;
  color: #725d58 !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

.elementor.elementor-20 .anido-step:hover {
  border-color: rgba(239, 91, 40, 0.48) !important;
  background: #ffffff !important;
  box-shadow: 0 28px 62px rgba(145, 55, 34, 0.15) !important;
  transform: translateY(-8px);
}

.elementor.elementor-20 .anido-step:hover::before {
  transform: scale(1.22);
}

.elementor.elementor-20 .anido-step:hover::after {
  transform: scaleX(1);
}

.elementor.elementor-20 .anido-step:hover .anido-step-icon {
  color: #ffffff !important;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%) !important;
  transform: rotate(-4deg) scale(1.05);
}

/* Keep step numbers readable in every state; fixes the old same-color hover. */
.elementor.elementor-20 .anido-step:hover .anido-step-number .elementor-heading-title,
.elementor.elementor-20 .anido-step:first-child .anido-step-number .elementor-heading-title {
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%) !important;
}

/* Footer: larger typography, visual contact rows and verified public socials. */
.elementor.elementor-20 .anido-footer {
  padding-top: 88px !important;
  color: #684f4a !important;
}

.elementor.elementor-20 .anido-footer-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 1.18fr) minmax(170px, 0.72fr) minmax(0, 1.2fr) !important;
  gap: clamp(42px, 6vw, 78px) !important;
  align-items: start !important;
}

.elementor.elementor-20 .anido-footer-brand {
  width: 100% !important;
  max-width: 390px;
}

.elementor.elementor-20 .anido-footer-logo {
  margin-bottom: 20px !important;
}

.elementor.elementor-20 .anido-footer-brand p {
  max-width: 380px;
  margin: 0 !important;
  color: #684f4a !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.78 !important;
}

.elementor.elementor-20 .anido-footer-links {
  gap: 12px !important;
}

.elementor.elementor-20 .anido-footer-links strong,
.elementor.elementor-20 .anido-social-title {
  display: block;
  margin-bottom: 8px;
  color: #d9362b !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.4;
}

.elementor.elementor-20 .anido-footer-links a,
.elementor.elementor-20 .anido-footer-links span {
  color: #684f4a !important;
  font-size: 13.5px !important;
  font-weight: 500;
  line-height: 1.68 !important;
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-address,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-phone,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-email {
  position: relative;
  display: block;
  min-height: 30px;
  padding-left: 38px;
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-address::before,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-phone::before,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-email::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%);
  box-shadow: 0 7px 17px rgba(194, 56, 35, 0.15);
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-address::before {
  content: "⌖";
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-phone::before {
  content: "☎";
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-email::before {
  content: "✉";
}

.elementor.elementor-20 .anido-social-title {
  margin: 24px 0 12px;
}

.elementor.elementor-20 .anido-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.elementor.elementor-20 .anido-social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(217, 54, 43, 0.15);
  border-radius: 14px;
  color: #d9362b !important;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(145, 55, 34, 0.1);
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1;
  text-decoration: none !important;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease !important;
}

.elementor.elementor-20 .anido-social-link:hover,
.elementor.elementor-20 .anido-social-link:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%) !important;
  transform: translateY(-4px);
}

.elementor.elementor-20 .anido-footer-bottom {
  margin-top: 58px !important;
  padding-top: 24px !important;
  padding-bottom: 26px !important;
  color: #816861 !important;
  font-size: 12.5px !important;
  line-height: 1.65 !important;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .elementor.elementor-20 .anido-footer-wrap {
    grid-template-columns: 1.1fr 0.7fr 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-about-wrap {
    grid-template-columns: 1fr !important;
    gap: 52px !important;
  }

  .elementor.elementor-20 .anido-about-media {
    width: min(560px, 100%) !important;
    margin-inline: auto !important;
  }

  .elementor.elementor-20 .anido-footer-wrap {
    grid-template-columns: 1fr 1fr !important;
  }

  .elementor.elementor-20 .anido-footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-about-media::before {
    top: -14px !important;
    right: 20px !important;
    bottom: 24px !important;
    left: -12px !important;
    border-radius: 46px 22px 46px 22px !important;
  }

  .elementor.elementor-20 .anido-about-image,
  .elementor.elementor-20 .anido-about-image .elementor-widget-container,
  .elementor.elementor-20 .anido-about-image img {
    border-radius: 24px !important;
  }

  .elementor.elementor-20 .anido-roadmap-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 42px !important;
  }

  .elementor.elementor-20 .anido-step {
    min-height: 250px;
    padding: 26px 24px 30px !important;
    border-radius: 22px !important;
  }

  .elementor.elementor-20 .anido-step-number {
    top: 26px;
    right: 24px;
  }

  .elementor.elementor-20 .anido-step-title {
    margin-top: 24px !important;
  }

  .elementor.elementor-20 .anido-footer {
    padding-top: 70px !important;
  }

  .elementor.elementor-20 .anido-footer-wrap {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .elementor.elementor-20 .anido-footer-brand {
    grid-column: auto;
  }

  .elementor.elementor-20 .anido-footer-brand p {
    font-size: 13.5px !important;
  }

  .elementor.elementor-20 .anido-footer-links a,
  .elementor.elementor-20 .anido-footer-links span {
    font-size: 13px !important;
  }

  .elementor.elementor-20 .anido-footer-bottom {
    margin-top: 42px !important;
    font-size: 11.5px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elementor.elementor-20 .anido-step,
  .elementor.elementor-20 .anido-step::before,
  .elementor.elementor-20 .anido-step::after,
  .elementor.elementor-20 .anido-step-icon,
  .elementor.elementor-20 .anido-social-link {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V7 — AI roadmap scenes, modern learning card and map footer
   -------------------------------------------------------------------------- */

/* Six AI scenes replace the abstract symbols while retaining fast sprite use. */
.elementor.elementor-20 .anido-step {
  min-height: 330px;
  padding: 28px 28px 32px !important;
}

.elementor.elementor-20 .anido-step::before {
  top: 21px !important;
  right: auto !important;
  bottom: auto !important;
  left: 21px !important;
  width: 112px !important;
  height: 112px !important;
  border: 1px solid rgba(247, 148, 29, 0.16);
  background: linear-gradient(145deg, rgba(217, 54, 43, 0.11), rgba(247, 148, 29, 0.15)) !important;
  transform: rotate(-6deg);
}

.elementor.elementor-20 .anido-step-icon {
  width: 102px !important;
  height: 102px !important;
  display: block !important;
  flex: 0 0 102px;
  overflow: hidden;
  border: 5px solid #ffffff !important;
  border-radius: 50% !important;
  background-color: #fff4e8 !important;
  background-repeat: no-repeat !important;
  background-size: 300% 200% !important;
  box-shadow: 0 16px 34px rgba(152, 53, 32, 0.2) !important;
  transform: none;
}

.elementor.elementor-20 .anido-step:nth-child(1) .anido-step-icon {
  background-position: 0% 0% !important;
}

.elementor.elementor-20 .anido-step:nth-child(2) .anido-step-icon {
  background-position: 50% 0% !important;
}

.elementor.elementor-20 .anido-step:nth-child(3) .anido-step-icon {
  background-position: 100% 0% !important;
}

.elementor.elementor-20 .anido-step:nth-child(4) .anido-step-icon {
  background-position: 0% 100% !important;
}

.elementor.elementor-20 .anido-step:nth-child(5) .anido-step-icon {
  background-position: 50% 100% !important;
}

.elementor.elementor-20 .anido-step:nth-child(6) .anido-step-icon {
  background-position: 100% 100% !important;
}

.elementor.elementor-20 .anido-step:hover .anido-step-icon {
  border-color: #ffffff !important;
  background-color: #fff4e8 !important;
  transform: scale(1.06) rotate(-2deg) !important;
}

.elementor.elementor-20 .anido-step:hover::before {
  transform: rotate(2deg) scale(1.08) !important;
}

.elementor.elementor-20 .anido-step-title {
  margin-top: 25px !important;
}

.elementor.elementor-20 .anido-step-copy p {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

/* The preparation section becomes a layered editorial card, not a hard box. */
.elementor.elementor-20 .anido-learning-wrap {
  min-height: 760px !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  align-items: center !important;
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

.elementor.elementor-20 .anido-learning-copy {
  min-height: 0 !important;
  padding: 64px 0 !important;
}

.elementor.elementor-20 .anido-learning-media {
  isolation: isolate;
  position: relative;
  width: min(100%, 620px) !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
  justify-self: end;
  overflow: visible !important;
  padding: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 56px 20px 56px 20px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 34px 80px rgba(107, 28, 20, 0.26) !important;
}

.elementor.elementor-20 .anido-learning-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24px;
  right: 32px;
  bottom: 28px;
  left: -24px;
  border: 1px solid rgba(255, 238, 211, 0.6);
  border-radius: 76px 28px 76px 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 197, 93, 0.28));
  transform: rotate(-2.5deg);
}

.elementor.elementor-20 .anido-learning-image,
.elementor.elementor-20 .anido-learning-image .elementor-widget-container,
.elementor.elementor-20 .anido-learning-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

.elementor.elementor-20 .anido-learning-image,
.elementor.elementor-20 .anido-learning-image .elementor-widget-container {
  overflow: hidden !important;
  border-radius: 45px 14px 45px 14px !important;
}

.elementor.elementor-20 .anido-learning-image img {
  display: block !important;
  border-radius: inherit !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(1.03) saturate(1.06) contrast(1.015) !important;
}

.elementor.elementor-20 .anido-learning-chips {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: -20px;
  left: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  pointer-events: none;
}

.elementor.elementor-20 .anido-learning-chips span {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(217, 54, 43, 0.12);
  border-radius: 999px;
  color: #b72d27 !important;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(102, 28, 20, 0.16);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
}

/* Give the student stories enough copy to feel purposeful and complete. */
.elementor.elementor-20 .anido-journey-copy p {
  min-height: 78px;
  color: #6f5a56 !important;
  font-size: 14.5px !important;
  line-height: 1.72 !important;
}

/* Four-column footer with larger type, crisp SVG contacts and directions. */
.elementor.elementor-20 .anido-footer-wrap {
  grid-template-columns: minmax(0, 1.05fr) minmax(145px, 0.62fr) minmax(250px, 1.04fr) minmax(230px, 0.92fr) !important;
  gap: clamp(28px, 3.5vw, 54px) !important;
}

.elementor.elementor-20 .anido-footer-brand p {
  font-size: 15.5px !important;
  line-height: 1.76 !important;
}

.elementor.elementor-20 .anido-footer-links strong,
.elementor.elementor-20 .anido-social-title,
.elementor.elementor-20 .anido-footer-map > strong {
  margin-bottom: 12px;
  color: #c93229 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.4;
}

.elementor.elementor-20 .anido-footer-links a,
.elementor.elementor-20 .anido-footer-links span {
  font-size: 14.5px !important;
  line-height: 1.68 !important;
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-address,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-phone,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-email {
  position: relative;
  min-height: 38px;
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  padding-left: 0 !important;
}

.elementor.elementor-20 .anido-footer-contact > .anido-contact-address::before,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-phone::before,
.elementor.elementor-20 .anido-footer-contact > .anido-contact-email::before {
  display: none !important;
  content: none !important;
}

.elementor.elementor-20 .anido-contact-icon {
  width: 35px;
  height: 35px;
  display: inline-grid;
  flex: 0 0 35px;
  place-items: center;
  margin-top: -2px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(145deg, #d9362b 0%, #f7941d 100%);
  box-shadow: 0 9px 22px rgba(194, 56, 35, 0.2);
}

.elementor.elementor-20 .anido-contact-icon svg {
  width: 19px;
  height: 19px;
}

.elementor.elementor-20 .anido-social-title {
  margin-top: 27px;
}

.elementor.elementor-20 .anido-socials {
  gap: 11px;
}

.elementor.elementor-20 .anido-social-link {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 17px;
  background: transparent !important;
  box-shadow: 0 11px 26px rgba(121, 39, 27, 0.13) !important;
}

.elementor.elementor-20 .anido-social-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit;
  object-fit: cover;
}

.elementor.elementor-20 .anido-social-link:hover,
.elementor.elementor-20 .anido-social-link:focus-visible {
  background: transparent !important;
  transform: translateY(-5px) scale(1.04);
}

.elementor.elementor-20 .anido-footer-map {
  min-width: 0;
}

.elementor.elementor-20 .anido-footer-map > strong {
  display: block;
}

.elementor.elementor-20 .anido-map-frame {
  width: 100%;
  height: 148px;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 20px;
  background: #f3ded1;
  box-shadow: 0 15px 34px rgba(121, 39, 27, 0.12);
}

.elementor.elementor-20 .anido-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.elementor.elementor-20 .anido-map-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 17px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #d9362b 0%, #f7941d 100%);
  box-shadow: 0 11px 26px rgba(190, 54, 35, 0.18);
  font-size: 12.5px !important;
  font-weight: 800 !important;
  line-height: 1;
  text-decoration: none !important;
}

.elementor.elementor-20 .anido-map-button:hover,
.elementor.elementor-20 .anido-map-button:focus-visible {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.elementor.elementor-20 .anido-footer-bottom {
  font-size: 13.5px !important;
}

@media (max-width: 1100px) {
  .elementor.elementor-20 .anido-footer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 46px !important;
  }

  .elementor.elementor-20 .anido-footer-brand {
    max-width: 500px;
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-learning-wrap {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    padding-top: 36px !important;
    padding-bottom: 86px !important;
  }

  .elementor.elementor-20 .anido-learning-copy {
    padding: 56px 0 18px !important;
  }

  .elementor.elementor-20 .anido-learning-media {
    width: min(560px, 100%) !important;
    justify-self: center;
  }

  .elementor.elementor-20 .anido-journey-copy p {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-step {
    min-height: 315px;
  }

  .elementor.elementor-20 .anido-step-icon {
    width: 92px !important;
    height: 92px !important;
    flex-basis: 92px;
  }

  .elementor.elementor-20 .anido-step::before {
    width: 102px !important;
    height: 102px !important;
  }

  .elementor.elementor-20 .anido-learning-media {
    padding: 9px !important;
    border-radius: 38px 16px 38px 16px !important;
  }

  .elementor.elementor-20 .anido-learning-image,
  .elementor.elementor-20 .anido-learning-image .elementor-widget-container {
    border-radius: 31px 11px 31px 11px !important;
  }

  .elementor.elementor-20 .anido-learning-chips {
    right: 10px;
    bottom: -21px;
    left: 10px;
    gap: 6px;
  }

  .elementor.elementor-20 .anido-learning-chips span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 9.5px;
  }

  .elementor.elementor-20 .anido-footer-wrap {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .elementor.elementor-20 .anido-footer-brand p {
    font-size: 15px !important;
  }

  .elementor.elementor-20 .anido-footer-links a,
  .elementor.elementor-20 .anido-footer-links span {
    font-size: 14px !important;
  }

  .elementor.elementor-20 .anido-footer-bottom {
    font-size: 12.5px !important;
  }

  .elementor.elementor-20 .anido-map-frame {
    height: 190px;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V8 — real people, international schools and testimonials
   -------------------------------------------------------------------------- */

/* Service cards now lead with real Vietnamese people instead of symbols. */
.elementor.elementor-20 .anido-services-grid {
  gap: 18px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.elementor.elementor-20 .anido-service-card {
  position: relative;
  min-width: 0;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 12px 12px 28px !important;
  overflow: hidden;
  border: 1px solid #efd2c2 !important;
  border-radius: 26px !important;
  color: #35272b !important;
  background: #ffffff !important;
  box-shadow: 0 20px 52px rgba(152, 53, 32, 0.1) !important;
}

.elementor.elementor-20 .anido-service-card:hover {
  color: #35272b !important;
  background: #ffffff !important;
  box-shadow: 0 28px 64px rgba(152, 53, 32, 0.18) !important;
  transform: translateY(-8px) !important;
}

.elementor.elementor-20 .anido-service-photo {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 19px;
  background-color: #fbeadf;
  background-repeat: no-repeat !important;
  background-size: 200% 200% !important;
  filter: brightness(1.025) saturate(1.035) contrast(1.01);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.elementor.elementor-20 .anido-service-card:nth-child(1) .anido-service-photo {
  background-position: 0% 0% !important;
}

.elementor.elementor-20 .anido-service-card:nth-child(2) .anido-service-photo {
  background-position: 100% 0% !important;
}

.elementor.elementor-20 .anido-service-card:nth-child(3) .anido-service-photo {
  background-position: 0% 100% !important;
}

.elementor.elementor-20 .anido-service-card:nth-child(4) .anido-service-photo {
  background-position: 100% 100% !important;
}

.elementor.elementor-20 .anido-service-card:hover .anido-service-photo {
  filter: brightness(1.045) saturate(1.09) contrast(1.015);
  transform: scale(1.025);
}

.elementor.elementor-20 .anido-service-card > .anido-service-number {
  margin: 19px 14px 0 !important;
}

.elementor.elementor-20 .anido-service-number .elementor-widget-container {
  min-height: 28px;
  display: flex;
  align-items: center;
}

.elementor.elementor-20 .anido-service-number span.anido-service-number {
  min-width: 42px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #d9362b, #f7941d);
  font-family: inherit !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

.elementor.elementor-20 .anido-service-icon {
  display: none !important;
}

.elementor.elementor-20 .anido-service-title,
.elementor.elementor-20 .anido-service-copy {
  margin-right: 14px !important;
  margin-left: 14px !important;
}

.elementor.elementor-20 .anido-service-title {
  margin-top: 18px !important;
}

.elementor.elementor-20 .anido-service-title .elementor-heading-title,
.elementor.elementor-20 .anido-service-card:hover .anido-service-title .elementor-heading-title {
  color: #35272b !important;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.32 !important;
}

.elementor.elementor-20 .anido-service-copy p,
.elementor.elementor-20 .anido-service-card:hover .anido-service-copy p {
  margin-top: 12px !important;
  color: #725f5a !important;
  font-size: 13.5px !important;
  line-height: 1.68 !important;
}

/* Photographic roadmap portraits replace all illustrated scenes. */
.elementor.elementor-20 .anido-step-icon {
  background-color: #f9e7db !important;
  filter: brightness(1.035) saturate(1.04) contrast(1.01);
}

/* Shared headings for runtime-inserted editorial sections. */
.elementor.elementor-20 .anido-runtime-title {
  max-width: 860px;
  margin: 15px auto 0;
  color: #35272b;
  font-size: clamp(34px, 4.1vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.elementor.elementor-20 .anido-runtime-title span {
  color: #d9362b;
}

.elementor.elementor-20 .anido-runtime-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: #735f59;
  font-size: 15.5px;
  line-height: 1.75;
}

/* International school references: editorial cards rather than a logo strip. */
.elementor.elementor-20 .anido-partners {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(247, 148, 29, 0.12), transparent 29%),
    radial-gradient(circle at 93% 88%, rgba(217, 54, 43, 0.09), transparent 31%),
    #ffffff;
}

.elementor.elementor-20 .anido-partners::before {
  content: "";
  position: absolute;
  top: 58px;
  right: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(217, 54, 43, 0.16);
  border-radius: 50%;
}

.elementor.elementor-20 .anido-partners-wrap {
  position: relative;
  z-index: 1;
}

.elementor.elementor-20 .anido-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.elementor.elementor-20 .anido-partner-card {
  min-width: 0;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid #efd7ca;
  border-radius: 24px;
  color: #35272b !important;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(121, 39, 27, 0.08);
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.elementor.elementor-20 .anido-partner-card:hover,
.elementor.elementor-20 .anido-partner-card:focus-visible {
  border-color: rgba(217, 54, 43, 0.4);
  color: #35272b !important;
  box-shadow: 0 26px 58px rgba(121, 39, 27, 0.15);
  transform: translateY(-7px);
}

.elementor.elementor-20 .anido-partner-logo {
  width: 100%;
  height: 90px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
}

.elementor.elementor-20 .anido-partner-logo img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 84px !important;
  display: block;
  object-fit: contain;
}

.elementor.elementor-20 .anido-partner-country {
  margin-bottom: 7px;
  color: #d9362b;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.elementor.elementor-20 .anido-partner-card strong {
  font-size: 13.5px;
  line-height: 1.45;
}

.elementor.elementor-20 .anido-partner-note,
.elementor.elementor-20 .anido-testimonial-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: #8a7771;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

/* Student voices use fictional, clearly labelled sample profiles. */
.elementor.elementor-20 .anido-testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 0;
  background: #fff6ee;
}

.elementor.elementor-20 .anido-testimonials::before {
  content: "“";
  position: absolute;
  top: -54px;
  left: clamp(12px, 6vw, 90px);
  color: rgba(217, 54, 43, 0.07);
  font-family: Georgia, serif;
  font-size: 360px;
  font-weight: 700;
  line-height: 1;
}

.elementor.elementor-20 .anido-testimonials-wrap {
  position: relative;
  z-index: 1;
}

.elementor.elementor-20 .anido-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.elementor.elementor-20 .anido-testimonial-card {
  position: relative;
  min-width: 0;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 31px 30px 29px;
  border: 1px solid #efd2c2;
  border-radius: 30px;
  color: #35272b;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 58px rgba(121, 39, 27, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(2) {
  transform: translateY(18px);
}

.elementor.elementor-20 .anido-testimonial-card:hover {
  box-shadow: 0 32px 70px rgba(121, 39, 27, 0.17);
  transform: translateY(-7px) rotate(-0.4deg);
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(2):hover {
  transform: translateY(11px) rotate(0.4deg);
}

.elementor.elementor-20 .anido-testimonial-avatar {
  width: 94px;
  height: 94px;
  display: block;
  flex: 0 0 94px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background-color: #f7e2d3;
  background-repeat: no-repeat !important;
  background-size: 300% 100% !important;
  box-shadow: 0 14px 34px rgba(135, 42, 25, 0.19);
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(1) .anido-testimonial-avatar {
  background-position: 0% 50% !important;
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(2) .anido-testimonial-avatar {
  background-position: 50% 50% !important;
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(3) .anido-testimonial-avatar {
  background-position: 100% 50% !important;
}

.elementor.elementor-20 .anido-testimonial-rating {
  margin-top: 23px;
  color: #f7941d;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.elementor.elementor-20 .anido-testimonial-card blockquote {
  flex: 1;
  margin: 20px 0 28px;
  color: #5f4e4a;
  font-size: 15px;
  line-height: 1.78;
}

.elementor.elementor-20 .anido-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid #f1ded3;
}

.elementor.elementor-20 .anido-testimonial-meta strong {
  color: #35272b;
  font-size: 15px;
}

.elementor.elementor-20 .anido-testimonial-meta span {
  color: #d9362b;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .elementor.elementor-20 .anido-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .elementor.elementor-20 .anido-partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .elementor.elementor-20 .anido-testimonial-card,
  .elementor.elementor-20 .anido-testimonial-card:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .elementor.elementor-20 .anido-testimonial-card:nth-child(2):hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 620px) {
  .elementor.elementor-20 .anido-services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .elementor.elementor-20 .anido-service-card {
    padding: 11px 11px 27px !important;
    border-radius: 24px !important;
  }

  .elementor.elementor-20 .anido-service-photo {
    border-radius: 17px;
  }

  .elementor.elementor-20 .anido-runtime-title {
    font-size: clamp(33px, 10vw, 46px);
  }

  .elementor.elementor-20 .anido-runtime-lead {
    font-size: 14px;
  }

  .elementor.elementor-20 .anido-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .elementor.elementor-20 .anido-partner-card {
    min-height: 190px;
    padding: 18px 12px;
    border-radius: 20px;
  }

  .elementor.elementor-20 .anido-partner-logo {
    height: 72px;
  }

  .elementor.elementor-20 .anido-partner-logo img {
    max-height: 68px !important;
  }

  .elementor.elementor-20 .anido-testimonial-card {
    padding: 26px 24px;
    border-radius: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elementor.elementor-20 .anido-service-card,
  .elementor.elementor-20 .anido-service-photo,
  .elementor.elementor-20 .anido-partner-card,
  .elementor.elementor-20 .anido-testimonial-card {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V9 — education blue, white and restrained orange
   -------------------------------------------------------------------------- */

:root {
  --anido-navy: #063b79;
  --anido-blue: #075cb5;
  --anido-sky: #eaf4ff;
  --anido-orange: #f5a623;
  --anido-red: #075cb5;
  --anido-ink: #12233a;
  --anido-body: #52647a;
  --anido-pale: #f5f8fc;
  --anido-line: #d8e2ee;
  --anido-white: #ffffff;
  --anido-shadow: 0 24px 60px rgba(6, 59, 121, 0.13);
}

.elementor.elementor-20 {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-topbar {
  color: #ffffff !important;
  background: linear-gradient(90deg, #041f40 0%, #063b79 54%, #075cb5 100%) !important;
}

.elementor.elementor-20 .anido-header {
  border-bottom-color: rgba(7, 92, 181, 0.1) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 34px rgba(6, 59, 121, 0.08) !important;
}

.elementor.elementor-20 .anido-nav a {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-nav a:hover {
  color: var(--anido-blue) !important;
}

.elementor.elementor-20 .anido-nav a::after {
  background: linear-gradient(90deg, var(--anido-blue), var(--anido-orange)) !important;
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button,
.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button {
  border-color: var(--anido-blue) !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  background: linear-gradient(135deg, #0a69c4 0%, #075cb5 54%, #063b79 100%) !important;
  box-shadow: 0 14px 30px rgba(7, 92, 181, 0.22) !important;
}

.elementor.elementor-20 .elementor-element.anido-form .elementor-button,
.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button,
.elementor.elementor-20 .anido-actions .elementor-element.anido-btn:first-child .elementor-button {
  border-color: var(--anido-orange) !important;
  background: linear-gradient(135deg, #ffb22f 0%, #f5a623 62%, #ed8d11 100%) !important;
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.28) !important;
}

.elementor.elementor-20 .elementor-element.anido-btn .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-form .elementor-button:hover,
.elementor.elementor-20 .elementor-element.anido-header-cta .elementor-button:hover {
  border-color: #041f40 !important;
  background: linear-gradient(135deg, #075cb5 0%, #041f40 100%) !important;
  box-shadow: 0 18px 38px rgba(6, 59, 121, 0.25) !important;
}

.elementor.elementor-20 .anido-slide-content {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-slide-eyebrow {
  border-color: rgba(7, 92, 181, 0.22) !important;
  color: var(--anido-blue) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 8px 24px rgba(6, 59, 121, 0.08) !important;
}

.elementor.elementor-20 .anido-slide-title {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-slide-title::after {
  background: linear-gradient(90deg, var(--anido-blue), var(--anido-orange)) !important;
}

.elementor.elementor-20 .anido-slide-copy {
  color: var(--anido-body) !important;
}

.elementor.elementor-20 .anido-slide-badge {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--anido-orange), #ed8d11) !important;
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.24) !important;
}

.elementor.elementor-20 .anido-slider,
.elementor.elementor-20 .anido-slider-widget {
  background: #eef6ff !important;
}

.elementor.elementor-20 .anido-slider-dots button {
  box-shadow: 0 3px 12px rgba(4, 31, 64, 0.2) !important;
}

.elementor.elementor-20 .anido-slider-dots button[aria-current="true"] {
  background: var(--anido-orange) !important;
}

.elementor.elementor-20 .anido-stats {
  color: #ffffff !important;
  border-bottom-color: rgba(7, 92, 181, 0.2) !important;
  background: linear-gradient(110deg, #041f40 0%, #063b79 52%, #075cb5 100%) !important;
}

.elementor.elementor-20 .anido-stat {
  border-right-color: rgba(255, 255, 255, 0.18) !important;
}

.elementor.elementor-20 .anido-stat-number .elementor-heading-title {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-stat-label p {
  color: #c7ddf3 !important;
}

.elementor.elementor-20 .anido-destinations,
.elementor.elementor-20 .anido-services,
.elementor.elementor-20 .anido-journeys,
.elementor.elementor-20 .anido-testimonials {
  background-color: #f3f8fd !important;
  background-image: none !important;
}

.elementor.elementor-20 .anido-about,
.elementor.elementor-20 .anido-roadmap,
.elementor.elementor-20 .anido-partners {
  background-color: #ffffff !important;
}

.elementor.elementor-20 .anido-partners {
  background-image:
    radial-gradient(circle at 8% 20%, rgba(245, 166, 35, 0.1), transparent 29%),
    radial-gradient(circle at 93% 88%, rgba(7, 92, 181, 0.08), transparent 31%) !important;
}

.elementor.elementor-20 .anido-roadmap {
  background-image:
    radial-gradient(circle at 7% 16%, rgba(245, 166, 35, 0.1), transparent 24%),
    radial-gradient(circle at 96% 82%, rgba(7, 92, 181, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%) !important;
}

.elementor.elementor-20 .anido-section-title .elementor-heading-title,
.elementor.elementor-20 .anido-runtime-title,
.elementor.elementor-20 .anido-card-title .elementor-heading-title,
.elementor.elementor-20 .anido-service-title .elementor-heading-title,
.elementor.elementor-20 .anido-step-title .elementor-heading-title,
.elementor.elementor-20 .anido-journey-title .elementor-heading-title,
.elementor.elementor-20 .anido-testimonial-meta strong,
.elementor.elementor-20 .anido-partner-card strong {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-section-title .elementor-heading-title span,
.elementor.elementor-20 .anido-runtime-title span,
.elementor.elementor-20 .anido-eyebrow,
.elementor.elementor-20 .anido-card-meta small,
.elementor.elementor-20 .anido-partner-country {
  color: var(--anido-blue) !important;
}

.elementor.elementor-20 .anido-section-lead p,
.elementor.elementor-20 .anido-about-text p,
.elementor.elementor-20 .anido-card-copy p,
.elementor.elementor-20 .anido-service-copy p,
.elementor.elementor-20 .anido-step-copy p,
.elementor.elementor-20 .anido-journey-copy p,
.elementor.elementor-20 .anido-runtime-lead,
.elementor.elementor-20 .anido-testimonial-meta span,
.elementor.elementor-20 .anido-partner-note,
.elementor.elementor-20 .anido-testimonial-note {
  color: var(--anido-body) !important;
}

.elementor.elementor-20 .anido-destination-card,
.elementor.elementor-20 .anido-service-card,
.elementor.elementor-20 .anido-journey-card,
.elementor.elementor-20 .anido-step,
.elementor.elementor-20 .anido-partner-card,
.elementor.elementor-20 .anido-testimonial-card {
  border-color: var(--anido-line) !important;
  color: var(--anido-ink) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 18px 48px rgba(6, 59, 121, 0.09) !important;
}

.elementor.elementor-20 .anido-destination-card:hover,
.elementor.elementor-20 .anido-journey-card:hover,
.elementor.elementor-20 .anido-step:hover,
.elementor.elementor-20 .anido-partner-card:hover,
.elementor.elementor-20 .anido-testimonial-card:hover {
  border-color: rgba(7, 92, 181, 0.42) !important;
  box-shadow: 0 28px 64px rgba(6, 59, 121, 0.16) !important;
}

.elementor.elementor-20 .anido-about-media::before {
  background: linear-gradient(145deg, #063b79 0%, #075cb5 72%, #2f8ed8 100%) !important;
}

.elementor.elementor-20 .anido-about-media {
  filter: drop-shadow(0 28px 54px rgba(6, 59, 121, 0.15)) !important;
}

.elementor.elementor-20 .anido-about-badge .elementor-widget-container > div {
  color: #ffffff !important;
  background: linear-gradient(145deg, #ffb22f 0%, #f5a623 100%) !important;
  box-shadow: 0 18px 42px rgba(245, 166, 35, 0.25) !important;
}

.elementor.elementor-20 .anido-values,
.elementor.elementor-20 .anido-values > div,
.elementor.elementor-20 .anido-values > div:nth-child(even) {
  border-color: var(--anido-line) !important;
}

.elementor.elementor-20 .anido-values strong {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-values span {
  color: var(--anido-body) !important;
}

.elementor.elementor-20 .anido-service-card:hover {
  color: #ffffff !important;
  border-color: var(--anido-blue) !important;
  background: linear-gradient(155deg, #075cb5 0%, #063b79 100%) !important;
}

.elementor.elementor-20 .anido-service-card:hover .anido-service-title .elementor-heading-title,
.elementor.elementor-20 .anido-service-card:hover .anido-service-copy p,
.elementor.elementor-20 .anido-service-card:hover .anido-service-number {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-service-icon,
.elementor.elementor-20 .anido-step-icon {
  border-color: #ffffff !important;
  color: var(--anido-blue) !important;
  background-color: #eaf4ff !important;
  box-shadow: 0 16px 34px rgba(6, 59, 121, 0.16) !important;
}

.elementor.elementor-20 .anido-step::before {
  border-color: rgba(7, 92, 181, 0.18) !important;
  background: linear-gradient(145deg, rgba(7, 92, 181, 0.1), rgba(245, 166, 35, 0.12)) !important;
  box-shadow: none !important;
}

.elementor.elementor-20 .anido-step::after {
  background: linear-gradient(90deg, var(--anido-blue), var(--anido-orange)) !important;
}

.elementor.elementor-20 .anido-step-number .elementor-heading-title,
.elementor.elementor-20 .anido-step:hover .anido-step-number .elementor-heading-title,
.elementor.elementor-20 .anido-step:first-child .anido-step-number .elementor-heading-title {
  border-color: var(--anido-blue) !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, #075cb5 0%, #063b79 100%) !important;
  box-shadow: 0 10px 25px rgba(7, 92, 181, 0.2) !important;
}

.elementor.elementor-20 .anido-learning {
  color: #ffffff !important;
  background: linear-gradient(120deg, #041f40 0%, #063b79 48%, #075cb5 100%) !important;
}

.elementor.elementor-20 .anido-learning .anido-light,
.elementor.elementor-20 .anido-learning .anido-learning-text p {
  color: #dbeafb !important;
}

.elementor.elementor-20 .anido-learning .anido-light-title .elementor-heading-title,
.elementor.elementor-20 .anido-learning .anido-light-title .elementor-heading-title span,
.elementor.elementor-20 .anido-learning .anido-learning-text li {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-learning .anido-learning-text li::before {
  color: #ffd17b !important;
}

.elementor.elementor-20 .anido-learning-media {
  border-color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 34px 80px rgba(4, 31, 64, 0.28) !important;
}

.elementor.elementor-20 .anido-learning-media::before {
  border-color: rgba(194, 220, 247, 0.62) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(76, 155, 221, 0.28)) !important;
}

.elementor.elementor-20 .anido-learning-chips span {
  border-color: rgba(7, 92, 181, 0.16) !important;
  color: var(--anido-blue) !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(4, 31, 64, 0.16) !important;
}

.elementor.elementor-20 .anido-contact {
  color: #ffffff !important;
  background: linear-gradient(125deg, #041f40 0%, #063b79 52%, #075cb5 100%) !important;
}

.elementor.elementor-20 .anido-contact .anido-light-title .elementor-heading-title,
.elementor.elementor-20 .anido-contact .anido-light-title .elementor-heading-title span,
.elementor.elementor-20 .anido-contact-details a {
  color: #ffffff !important;
}

.elementor.elementor-20 .anido-contact-text p {
  color: #dbeafb !important;
}

.elementor.elementor-20 .anido-form-wrap {
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: var(--anido-ink) !important;
  background: #ffffff !important;
  box-shadow: 0 30px 70px rgba(4, 31, 64, 0.25) !important;
}

.elementor.elementor-20 .anido-form .elementor-field {
  border-color: var(--anido-line) !important;
  color: var(--anido-ink) !important;
  background: #f8fbff !important;
}

.elementor.elementor-20 .anido-form .elementor-field:focus {
  border-color: var(--anido-blue) !important;
  box-shadow: 0 0 0 3px rgba(7, 92, 181, 0.12) !important;
}

.elementor.elementor-20 .anido-footer {
  color: var(--anido-body) !important;
  background: linear-gradient(135deg, #eaf4ff 0%, #f7fbff 52%, #ffffff 100%) !important;
}

.elementor.elementor-20 .anido-footer::before {
  background: linear-gradient(90deg, #063b79 0%, #075cb5 62%, #f5a623 100%) !important;
}

.elementor.elementor-20 .anido-footer-brand p,
.elementor.elementor-20 .anido-footer-links a,
.elementor.elementor-20 .anido-footer-links span {
  color: var(--anido-body) !important;
}

.elementor.elementor-20 .anido-footer-links strong,
.elementor.elementor-20 .anido-social-title,
.elementor.elementor-20 .anido-footer-map > strong {
  color: var(--anido-blue) !important;
}

.elementor.elementor-20 .anido-footer-links a:hover {
  color: var(--anido-orange) !important;
}

.elementor.elementor-20 .anido-contact-icon,
.elementor.elementor-20 .anido-map-button {
  color: #ffffff !important;
  background: linear-gradient(145deg, #075cb5 0%, #063b79 100%) !important;
  box-shadow: 0 9px 22px rgba(6, 59, 121, 0.2) !important;
}

.elementor.elementor-20 .anido-map-button:hover,
.elementor.elementor-20 .anido-map-button:focus-visible {
  background: linear-gradient(145deg, #ffb22f 0%, #f5a623 100%) !important;
}

.elementor.elementor-20 .anido-map-frame {
  background: #e6f1fb !important;
  box-shadow: 0 15px 34px rgba(6, 59, 121, 0.12) !important;
}

.elementor.elementor-20 .anido-social-link {
  box-shadow: 0 11px 26px rgba(6, 59, 121, 0.13) !important;
}

.elementor.elementor-20 .anido-footer-bottom {
  border-top-color: rgba(7, 92, 181, 0.16) !important;
  color: #6a7f94 !important;
}

.elementor.elementor-20 .anido-testimonial-card:nth-child(2),
.elementor.elementor-20 .anido-testimonial-card:nth-child(2):hover {
  color: var(--anido-ink) !important;
  background: linear-gradient(155deg, #eaf4ff 0%, #ffffff 100%) !important;
}

.elementor.elementor-20 .anido-testimonial-avatar {
  border-color: #ffffff !important;
  background-color: #eaf4ff !important;
  box-shadow: 0 14px 34px rgba(6, 59, 121, 0.18) !important;
}

.elementor.elementor-20 .anido-testimonial-rating {
  color: var(--anido-orange) !important;
}

.elementor.elementor-20 .anido-testimonial-card blockquote {
  color: var(--anido-body) !important;
}

/* Final specificity pass for decorative elements defined in earlier revisions. */
.elementor.elementor-20 .elementor-element.anido-section-title .elementor-heading-title span,
.elementor.elementor-20 .anido-about-copy .anido-section-title .elementor-heading-title span {
  color: var(--anido-blue) !important;
}

.elementor.elementor-20 .anido-roadmap::before {
  border-color: rgba(7, 92, 181, 0.18) !important;
  box-shadow: 0 0 0 34px rgba(245, 166, 35, 0.04), 0 0 0 68px rgba(7, 92, 181, 0.025) !important;
}

.elementor.elementor-20 .anido-partners::before {
  border-color: rgba(7, 92, 181, 0.16) !important;
}

.elementor.elementor-20 .anido-testimonials::before {
  color: rgba(7, 92, 181, 0.07) !important;
}

.elementor.elementor-20 .anido-social-link {
  color: var(--anido-blue) !important;
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V10 — native Elementor-editable banner and roadmap media
   Content and images live in Elementor widgets; CSS only handles presentation.
   -------------------------------------------------------------------------- */

.elementor.elementor-20 .anido-hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(470px, 45vw, 680px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #eef6ff !important;
}

.elementor.elementor-20 .anido-native-slider-track,
.elementor.elementor-20 .anido-native-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor.elementor-20 .anido-native-slide {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 5.4s ease !important;
}

.elementor.elementor-20 .anido-native-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.elementor.elementor-20 .anido-native-slide-image,
.elementor.elementor-20 .anido-native-slide-image > .elementor-widget-container,
.elementor.elementor-20 .anido-native-slide-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.elementor.elementor-20 .anido-native-slide-image img {
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

.elementor.elementor-20 .anido-native-slide .anido-slide-content {
  position: absolute !important;
  z-index: 3 !important;
  top: 50% !important;
  left: max(32px, calc((100vw - 1180px) / 2)) !important;
  width: min(550px, 39vw) !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
}

.elementor.elementor-20 .anido-slide-eyebrow,
.elementor.elementor-20 .anido-slide-title,
.elementor.elementor-20 .anido-slide-copy,
.elementor.elementor-20 .anido-slide-badge {
  width: auto !important;
  max-width: 100% !important;
}

.elementor.elementor-20 .anido-slide-eyebrow {
  margin: 0 0 15px !important;
}

.elementor.elementor-20 .anido-slide-eyebrow p,
.elementor.elementor-20 .anido-slide-copy p,
.elementor.elementor-20 .anido-slide-badge p {
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
}

.elementor.elementor-20 .anido-slide-title {
  margin: 0 !important;
}

.elementor.elementor-20 .anido-slide-title .elementor-heading-title {
  margin: 0 !important;
  color: var(--anido-ink) !important;
  font-size: clamp(42px, 4vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.048em !important;
  text-wrap: balance;
}

.elementor.elementor-20 .anido-slide-title::after {
  margin-top: 20px !important;
}

.elementor.elementor-20 .anido-slide-copy {
  margin: 18px 0 0 !important;
}

.elementor.elementor-20 .anido-slide-badge {
  margin: 24px 0 0 !important;
}

.elementor.elementor-20 .anido-native-slider-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.elementor.elementor-20 .anido-native-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 3px 12px rgba(4, 31, 64, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.elementor.elementor-20 .anido-native-slider-dots button[aria-current="true"] {
  width: 34px;
  background: var(--anido-orange);
}

.elementor.elementor-20 .anido-step {
  min-height: 390px !important;
}

.elementor.elementor-20 .anido-step-image {
  position: relative !important;
  z-index: 2 !important;
  width: 126px !important;
  height: 126px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 5px solid #ffffff !important;
  border-radius: 50% !important;
  background: #eaf4ff !important;
  box-shadow: 0 14px 34px rgba(6, 59, 121, 0.18) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}

.elementor.elementor-20 .anido-step-image > .elementor-widget-container,
.elementor.elementor-20 .anido-step-image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
}

.elementor.elementor-20 .anido-step-image img {
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(1.035) saturate(1.06) contrast(1.01) !important;
}

.elementor.elementor-20 .anido-step-title {
  margin-top: 24px !important;
}

.elementor.elementor-20 .anido-step:hover .anido-step-image {
  box-shadow: 0 20px 42px rgba(6, 59, 121, 0.24) !important;
  transform: translateY(-4px) scale(1.035);
}

/* In Elementor edit mode all four banners are visible one below another.
   This makes every image and text widget directly clickable and editable. */
body.elementor-editor-active .elementor.elementor-20 .anido-hero {
  height: auto !important;
  overflow: visible !important;
}

body.elementor-editor-active .elementor.elementor-20 .anido-native-slider-track {
  position: relative !important;
  inset: auto !important;
  height: auto !important;
  display: grid !important;
  gap: 12px !important;
}

body.elementor-editor-active .elementor.elementor-20 .anido-native-slide {
  position: relative !important;
  inset: auto !important;
  min-height: 480px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-hero {
    height: 500px !important;
  }

  .elementor.elementor-20 .anido-native-slide-image img {
    object-position: 63% center !important;
  }

  .elementor.elementor-20 .anido-native-slide .anido-slide-content {
    top: auto !important;
    right: 18px !important;
    bottom: 38px !important;
    left: 18px !important;
    width: auto !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 18px 44px rgba(4, 31, 64, 0.17) !important;
    backdrop-filter: blur(12px);
    transform: none !important;
  }

  .elementor.elementor-20 .anido-slide-eyebrow {
    margin-bottom: 8px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 10px !important;
  }

  .elementor.elementor-20 .anido-slide-title .elementor-heading-title {
    font-size: clamp(28px, 7vw, 38px) !important;
  }

  .elementor.elementor-20 .anido-slide-copy {
    margin-top: 12px !important;
  }

  .elementor.elementor-20 .anido-slide-badge {
    min-height: 34px !important;
    margin-top: 14px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }

  .elementor.elementor-20 .anido-native-slider-dots {
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-hero {
    height: 460px !important;
  }

  .elementor.elementor-20 .anido-slide-copy {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .elementor.elementor-20 .anido-step {
    min-height: 360px !important;
  }

  .elementor.elementor-20 .anido-step-image {
    width: 112px !important;
    height: 112px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elementor.elementor-20 .anido-native-slide,
  .elementor.elementor-20 .anido-step-image {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V11 — draggable banners and native WordPress news grid
   -------------------------------------------------------------------------- */

.elementor.elementor-20 .anido-hero {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.elementor.elementor-20 .anido-native-slider-track.is-dragging,
.elementor.elementor-20 .anido-hero:active {
  cursor: grabbing;
}

.elementor.elementor-20 .anido-slide-title .elementor-heading-title {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.92);
  paint-order: stroke fill;
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.94),
    2px -2px 0 rgba(255, 255, 255, 0.94),
    -2px 2px 0 rgba(255, 255, 255, 0.94),
    2px 2px 0 rgba(255, 255, 255, 0.94),
    0 10px 28px rgba(4, 31, 64, 0.2) !important;
}

.elementor.elementor-20 .anido-slide-copy p {
  text-shadow:
    0 1px 0 #ffffff,
    0 0 8px rgba(255, 255, 255, 0.98),
    0 5px 18px rgba(4, 31, 64, 0.14) !important;
}

.elementor.elementor-20 .anido-news {
  position: relative;
  overflow: hidden;
  padding: 112px 0 122px !important;
  background:
    radial-gradient(circle at 8% 15%, rgba(245, 166, 35, 0.12), transparent 27%),
    radial-gradient(circle at 92% 92%, rgba(7, 92, 181, 0.1), transparent 31%),
    linear-gradient(180deg, #f5f9fe 0%, #ffffff 100%) !important;
}

.elementor.elementor-20 .anido-news::before {
  content: "";
  position: absolute;
  top: 88px;
  right: -74px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(7, 92, 181, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(7, 92, 181, 0.035), 0 0 0 72px rgba(245, 166, 35, 0.025);
  pointer-events: none;
}

.elementor.elementor-20 .anido-news .anido-wrap {
  position: relative;
  z-index: 1;
}

.elementor.elementor-20 .anido-news-grid {
  width: 100% !important;
  margin-top: 54px !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-posts-container {
  gap: 24px !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--anido-line) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 48px rgba(6, 59, 121, 0.09) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post:hover {
  border-color: rgba(7, 92, 181, 0.4) !important;
  box-shadow: 0 28px 62px rgba(6, 59, 121, 0.16) !important;
  transform: translateY(-8px);
}

.elementor.elementor-20 .anido-news-grid .elementor-post__thumbnail__link {
  margin-bottom: 0 !important;
  overflow: hidden;
  border-radius: 0 !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__thumbnail {
  padding-bottom: 64% !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(1.035) saturate(1.07) contrast(1.015);
  transition: transform 0.55s ease !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post:hover .elementor-post__thumbnail img {
  transform: scale(1.055);
}

.elementor.elementor-20 .anido-news-grid .elementor-post__text {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 27px !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__meta-data {
  order: -1;
  margin: 0 0 12px !important;
  color: var(--anido-blue) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__title {
  margin: 0 0 14px !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__title a {
  color: var(--anido-ink) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.35 !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__title a:hover {
  color: var(--anido-blue) !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__excerpt {
  margin: 0 0 22px !important;
  color: var(--anido-body) !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__read-more {
  display: inline-flex !important;
  align-items: center;
  margin-top: auto !important;
  color: var(--anido-orange) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
}

.elementor.elementor-20 .anido-news-grid .elementor-post__read-more:hover {
  color: var(--anido-blue) !important;
}

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-news {
    padding: 84px 0 92px !important;
  }

  .elementor.elementor-20 .anido-news-grid {
    margin-top: 40px !important;
  }
}

@media (max-width: 560px) {
  .elementor.elementor-20 .anido-news {
    padding: 72px 0 78px !important;
  }

  .elementor.elementor-20 .anido-news-grid .elementor-post {
    border-radius: 20px !important;
  }
}

/* --------------------------------------------------------------------------
   V12 — fluid bidirectional banner dragging
   -------------------------------------------------------------------------- */
.elementor.elementor-20 .anido-hero {
  overflow: hidden !important;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.elementor.elementor-20 .anido-native-slide {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  transform: translate3d(100%, 0, 0) scale(0.992);
  transform-origin: center center;
  will-change: transform;
  transition: transform 520ms cubic-bezier(.22, .72, .18, 1), opacity 360ms ease !important;
}

.elementor.elementor-20 .anido-native-slider-track.is-dragging .anido-native-slide {
  transition: none !important;
}

.elementor.elementor-20 .anido-native-slide-image img {
  pointer-events: none !important;
  -webkit-user-drag: none;
  user-drag: none;
}

.elementor.elementor-20 .anido-native-slider-track.is-dragging,
.elementor.elementor-20 .anido-hero:active {
  cursor: grabbing;
}

body.elementor-editor-active .elementor.elementor-20 .anido-native-slide {
  transform: none !important;
}

/* --------------------------------------------------------------------------
   ANIDO HOMEPAGE V13 — one Elementor source of truth
   Every image, heading, paragraph, link and editorial section below is a real
   Elementor widget/container. CSS only controls presentation.
   -------------------------------------------------------------------------- */

/* Native service images replace the old JavaScript-created sprite tiles. */
.elementor.elementor-20 .anido-service-image {
  width: 100% !important;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 19px !important;
  background: #eaf4ff !important;
}

.elementor.elementor-20 .anido-service-image > .elementor-widget-container,
.elementor.elementor-20 .anido-service-image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: inherit !important;
}

.elementor.elementor-20 .anido-service-image img {
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(1.035) saturate(1.06) contrast(1.01) !important;
  transition: transform 0.42s ease, filter 0.42s ease !important;
}

.elementor.elementor-20 .anido-service-card:hover .anido-service-image img {
  filter: brightness(1.06) saturate(1.1) contrast(1.015) !important;
  transform: scale(1.035);
}

.elementor.elementor-20 .anido-service-card:hover {
  color: var(--anido-ink) !important;
  border-color: rgba(7, 92, 181, 0.4) !important;
  background: #ffffff !important;
}

.elementor.elementor-20 .anido-service-card:hover .anido-service-title .elementor-heading-title {
  color: var(--anido-ink) !important;
}

.elementor.elementor-20 .anido-service-card:hover .anido-service-copy p {
  color: var(--anido-body) !important;
}

/* The chip widget stays editable while its inner HTML remains the visual row. */
.elementor.elementor-20 .anido-learning-chips-widget {
  position: absolute !important;
  z-index: 4 !important;
  inset: auto 0 0 !important;
  margin: 0 !important;
  pointer-events: none;
}

.elementor.elementor-20 .anido-learning-chips-widget .anido-learning-chips {
  right: 26px !important;
  bottom: -20px !important;
  left: 26px !important;
}

/* Native Elementor partner cards. */
.elementor.elementor-20 .anido-partner-card {
  gap: 0 !important;
}

.elementor.elementor-20 .anido-partner-logo {
  width: 100% !important;
  height: 90px !important;
  margin: 0 0 17px !important;
}

.elementor.elementor-20 .anido-partner-logo > .elementor-widget-container,
.elementor.elementor-20 .anido-partner-logo a {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
}

.elementor.elementor-20 .anido-partner-logo img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 84px !important;
  object-fit: contain !important;
}

.elementor.elementor-20 .anido-partner-country {
  margin: 0 0 7px !important;
}

.elementor.elementor-20 .anido-partner-country p {
  margin: 0 !important;
  color: var(--anido-blue) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
}

.elementor.elementor-20 .anido-partner-name,
.elementor.elementor-20 .anido-partner-name .elementor-heading-title {
  margin: 0 !important;
  color: var(--anido-ink) !important;
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.elementor.elementor-20 .anido-partner-note p,
.elementor.elementor-20 .anido-testimonial-note p {
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
}

/* Native Elementor testimonial cards and editable avatar widgets. */
.elementor.elementor-20 .anido-testimonial-avatar {
  width: 94px !important;
  height: 94px !important;
  flex: 0 0 94px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 5px solid #ffffff !important;
  border-radius: 50% !important;
  background: #eaf4ff !important;
  box-shadow: 0 14px 34px rgba(6, 59, 121, 0.18) !important;
}

.elementor.elementor-20 .anido-testimonial-avatar > .elementor-widget-container,
.elementor.elementor-20 .anido-testimonial-avatar img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: inherit !important;
}

.elementor.elementor-20 .anido-testimonial-avatar img {
  display: block !important;
  object-fit: cover !important;
}

.elementor.elementor-20 .anido-testimonial-avatar-1 img { object-position: left center !important; }
.elementor.elementor-20 .anido-testimonial-avatar-2 img { object-position: center center !important; }
.elementor.elementor-20 .anido-testimonial-avatar-3 img { object-position: right center !important; }

.elementor.elementor-20 .anido-testimonial-rating {
  margin: 23px 0 0 !important;
}

.elementor.elementor-20 .anido-testimonial-rating p {
  margin: 0 !important;
  color: var(--anido-orange) !important;
  font-size: 15px !important;
  letter-spacing: 0.16em !important;
}

.elementor.elementor-20 .anido-testimonial-quote {
  flex: 1 1 auto !important;
  margin: 20px 0 28px !important;
}

.elementor.elementor-20 .anido-testimonial-quote blockquote {
  margin: 0 !important;
  color: var(--anido-body) !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.elementor.elementor-20 .anido-testimonial-meta {
  width: 100% !important;
  gap: 5px !important;
  padding-top: 20px !important;
  border-top: 1px solid var(--anido-line) !important;
}

.elementor.elementor-20 .anido-testimonial-name,
.elementor.elementor-20 .anido-testimonial-name .elementor-heading-title,
.elementor.elementor-20 .anido-testimonial-route,
.elementor.elementor-20 .anido-testimonial-route p {
  margin: 0 !important;
}

.elementor.elementor-20 .anido-testimonial-name .elementor-heading-title {
  color: var(--anido-ink) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

.elementor.elementor-20 .anido-testimonial-route p {
  color: var(--anido-blue) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

/* Native social and map widgets in the footer. */
.elementor.elementor-20 .anido-social-title {
  margin: 27px 0 0 !important;
}

.elementor.elementor-20 .anido-social-title .elementor-heading-title,
.elementor.elementor-20 .anido-map-title .elementor-heading-title {
  color: var(--anido-blue) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

.elementor.elementor-20 .anido-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 11px !important;
  margin-top: 12px !important;
}

.elementor.elementor-20 .anido-social-link {
  width: 58px !important;
  height: 58px !important;
  flex: 0 0 58px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 17px !important;
}

.elementor.elementor-20 .anido-social-link > .elementor-widget-container,
.elementor.elementor-20 .anido-social-link a,
.elementor.elementor-20 .anido-social-link img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: inherit !important;
}

.elementor.elementor-20 .anido-social-link img {
  object-fit: cover !important;
}

.elementor.elementor-20 .anido-contact-icon {
  font-family: Arial, sans-serif !important;
  font-size: 17px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

.elementor.elementor-20 .anido-footer-map {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.elementor.elementor-20 .anido-map-title {
  margin: 0 !important;
}

.elementor.elementor-20 .anido-map-widget {
  width: 100% !important;
  height: 158px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 5px solid #ffffff !important;
  border-radius: 20px !important;
  background: #e6f1fb !important;
  box-shadow: 0 15px 34px rgba(6, 59, 121, 0.12) !important;
}

.elementor.elementor-20 .anido-map-widget > .elementor-widget-container,
.elementor.elementor-20 .anido-map-widget iframe {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border: 0 !important;
}

.elementor.elementor-20 .elementor-element.anido-map-button {
  width: auto !important;
  align-self: flex-start !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.elementor.elementor-20 .elementor-element.anido-map-button .elementor-button {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 17px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, #075cb5 0%, #063b79 100%) !important;
  box-shadow: 0 11px 26px rgba(6, 59, 121, 0.18) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
}

.elementor.elementor-20 .elementor-element.anido-map-button .elementor-button:hover {
  background: linear-gradient(145deg, #ffb22f 0%, #f5a623 100%) !important;
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .elementor.elementor-20 .anido-service-image {
    border-radius: 17px !important;
  }

  .elementor.elementor-20 .anido-partner-logo {
    height: 72px !important;
  }

  .elementor.elementor-20 .anido-partner-logo img {
    max-height: 68px !important;
  }

  .elementor.elementor-20 .anido-learning-chips-widget .anido-learning-chips {
    right: 12px !important;
    bottom: -18px !important;
    left: 12px !important;
  }
}

/* v1.3.2 — Header option B and editable consultation advisor. */
.elementor.elementor-20 .anido-topbar {
  min-height: 62px !important;
  color: #ffffff !important;
  background: linear-gradient(105deg, #042a59 0%, #075cb5 100%) !important;
}

.elementor.elementor-20 .anido-topbar-wrap {
  width: min(1320px, 100%) !important;
  min-height: 62px !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.elementor.elementor-20 .anido-topbar-promise-widget {
  width: auto !important;
  min-width: 320px !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-topbar-promise-widget > .elementor-widget-container {
  height: 100% !important;
}

.elementor.elementor-20 .anido-topbar-promise {
  height: 100% !important;
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 25px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}

.elementor.elementor-20 .anido-topbar-promise-icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 28px !important;
  border-radius: 50% !important;
  color: #ffd17b !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.elementor.elementor-20 .anido-topbar-contacts {
  width: auto !important;
  min-height: 62px !important;
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  gap: 0 !important;
}

.elementor.elementor-20 .anido-topbar-item {
  width: auto !important;
  min-width: 188px !important;
  min-height: 62px !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-topbar-email-widget {
  min-width: 270px !important;
}

.elementor.elementor-20 .anido-topbar-item > .elementor-widget-container {
  height: 100% !important;
}

.elementor.elementor-20 .anido-topbar-card {
  width: 100% !important;
  height: 100% !important;
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  padding: 9px 18px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: filter 0.22s ease, background 0.22s ease !important;
}

.elementor.elementor-20 .anido-topbar-card:hover {
  color: #ffffff !important;
  filter: brightness(1.07) !important;
}

.elementor.elementor-20 .anido-topbar-hotline {
  background: #f28a18 !important;
}

.elementor.elementor-20 .anido-topbar-zalo {
  background: #0877d9 !important;
}

.elementor.elementor-20 .anido-topbar-email {
  background: #0a4d91 !important;
}

.elementor.elementor-20 .anido-topbar-card-icon {
  width: 38px !important;
  height: 38px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 38px !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.17) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

.elementor.elementor-20 .anido-zalo-letter {
  font-size: 16px !important;
}

.elementor.elementor-20 .anido-topbar-card small,
.elementor.elementor-20 .anido-topbar-card strong {
  display: block !important;
  margin: 0 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
}

.elementor.elementor-20 .anido-topbar-card small {
  margin-bottom: 2px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  opacity: 0.8 !important;
}

.elementor.elementor-20 .anido-topbar-card strong {
  font-size: 13px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.elementor.elementor-20 .anido-contact {
  position: relative !important;
  overflow: hidden !important;
  padding-top: 92px !important;
  padding-bottom: 0 !important;
}

.elementor.elementor-20 .anido-contact::after {
  content: "" !important;
  position: absolute !important;
  top: -150px !important;
  right: -90px !important;
  width: 430px !important;
  height: 430px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.26), rgba(245, 166, 35, 0) 70%) !important;
  pointer-events: none !important;
}

.elementor.elementor-20 .anido-contact-wrap {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(210px, 0.62fr) minmax(350px, 0.95fr) !important;
  align-items: end !important;
  gap: 22px !important;
}

.elementor.elementor-20 .anido-contact-copy {
  width: auto !important;
  min-width: 0 !important;
  align-self: center !important;
  padding: 28px 0 82px !important;
}

.elementor.elementor-20 .anido-contact-advisor-wrap {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 510px !important;
  align-self: end !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

.elementor.elementor-20 .anido-contact-advisor-wrap::before {
  content: "" !important;
  position: absolute !important;
  right: 4% !important;
  bottom: 24px !important;
  left: 4% !important;
  height: 78% !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 48% 48% 14px 14px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
}

.elementor.elementor-20 .anido-contact-advisor {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 350px !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-contact-advisor > .elementor-widget-container,
.elementor.elementor-20 .anido-contact-advisor img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.elementor.elementor-20 .anido-contact-advisor img {
  max-height: 540px !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 22px 30px rgba(0, 22, 55, 0.24)) !important;
}

.elementor.elementor-20 .anido-form-wrap {
  width: 100% !important;
  min-width: 0 !important;
  align-self: center !important;
  margin: 0 0 56px !important;
}

@media (max-width: 1180px) {
  .elementor.elementor-20 .anido-topbar-wrap {
    flex-wrap: wrap !important;
  }

  .elementor.elementor-20 .anido-topbar-promise-widget,
  .elementor.elementor-20 .anido-topbar-contacts {
    width: 100% !important;
  }

  .elementor.elementor-20 .anido-topbar-promise {
    min-height: 46px !important;
    justify-content: center !important;
  }

  .elementor.elementor-20 .anido-topbar-item {
    flex: 1 1 0 !important;
  }
}

@media (max-width: 920px) {
  .elementor.elementor-20 .anido-contact-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr) !important;
    gap: 26px !important;
  }

  .elementor.elementor-20 .anido-contact-copy {
    padding-bottom: 40px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 430px !important;
  }

  .elementor.elementor-20 .anido-form-wrap {
    grid-column: 1 / -1 !important;
    margin-bottom: 70px !important;
  }
}

@media (max-width: 760px) {
  .elementor.elementor-20 .anido-topbar-contacts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .elementor.elementor-20 .anido-topbar-item,
  .elementor.elementor-20 .anido-topbar-email-widget {
    width: 100% !important;
    min-width: 0 !important;
  }

  .elementor.elementor-20 .anido-topbar-email-widget {
    grid-column: 1 / -1 !important;
  }

  .elementor.elementor-20 .anido-topbar-card {
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }
}

@media (max-width: 620px) {
  .elementor.elementor-20 .anido-topbar-promise-widget {
    min-width: 0 !important;
  }

  .elementor.elementor-20 .anido-topbar-promise {
    padding-inline: 18px !important;
    text-align: center !important;
  }

  .elementor.elementor-20 .anido-topbar-contacts {
    grid-template-columns: 1fr !important;
  }

  .elementor.elementor-20 .anido-topbar-email-widget {
    grid-column: auto !important;
  }

  .elementor.elementor-20 .anido-topbar-item,
  .elementor.elementor-20 .anido-topbar-card {
    min-height: 54px !important;
  }

  .elementor.elementor-20 .anido-contact {
    padding-top: 76px !important;
  }

  .elementor.elementor-20 .anido-contact-wrap {
    grid-template-columns: 1fr !important;
  }

  .elementor.elementor-20 .anido-contact-copy {
    padding: 0 !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 370px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor {
    max-width: 300px !important;
  }

  .elementor.elementor-20 .anido-form-wrap {
    grid-column: auto !important;
    margin-bottom: 64px !important;
  }
}

/* v1.3.4 final precedence — balanced copy and a form-height portrait. */
.elementor.elementor-20 .anido-contact {
  padding-top: 104px !important;
  padding-bottom: 96px !important;
}

.elementor.elementor-20 .anido-contact-wrap {
  width: min(1180px, calc(100% - 44px)) !important;
  margin-inline: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 42px !important;
}

.elementor.elementor-20 .anido-contact-copy {
  width: min(900px, 100%) !important;
  max-width: 900px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy > .elementor-element:first-child {
  margin-bottom: 16px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-section-title .elementor-heading-title {
  max-width: 900px !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text {
  width: 100% !important;
  max-width: 760px !important;
  margin: 25px 0 0 !important;
  padding: 0 !important;
}

.elementor.elementor-20 .anido-contact-copy .anido-contact-text p {
  max-width: 680px !important;
  margin-bottom: 18px !important;
}

.elementor.elementor-20 .anido-contact-main {
  width: min(1080px, 100%) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) !important;
  gap: 42px !important;
  align-items: stretch !important;
}

.elementor.elementor-20 .anido-contact-advisor-wrap {
  position: relative !important;
  min-height: 560px !important;
  height: auto !important;
  padding: 0 !important;
  align-self: stretch !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.elementor.elementor-20 .anido-contact-advisor {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  filter: drop-shadow(0 28px 34px rgba(0, 24, 58, 0.28)) !important;
}

.elementor.elementor-20 .anido-contact-advisor > .elementor-widget-container,
.elementor.elementor-20 .anido-contact-advisor img {
  width: 100% !important;
  height: 100% !important;
}

.elementor.elementor-20 .anido-contact-advisor img {
  object-fit: contain !important;
  object-position: center bottom !important;
}

.elementor.elementor-20 .anido-form-wrap {
  grid-column: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 560px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 36px !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.elementor.elementor-20 .anido-form-wrap > .elementor-element,
.elementor.elementor-20 .anido-form-wrap .anido-form {
  width: 100% !important;
}

@media (max-width: 1024px) {
  .elementor.elementor-20 .anido-contact-copy {
    max-width: 780px !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 26px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap,
  .elementor.elementor-20 .anido-form-wrap {
    min-height: 520px !important;
  }
}

@media (max-width: 767px) {
  .elementor.elementor-20 .anido-contact {
    padding-top: 74px !important;
    padding-bottom: 70px !important;
  }

  .elementor.elementor-20 .anido-contact-wrap {
    width: min(100% - 28px, 620px) !important;
    gap: 34px !important;
  }

  .elementor.elementor-20 .anido-contact-main {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .elementor.elementor-20 .anido-contact-advisor-wrap {
    min-height: 490px !important;
    order: 1 !important;
  }

  .elementor.elementor-20 .anido-form-wrap {
    min-height: 0 !important;
    max-width: none !important;
    order: 2 !important;
    margin-bottom: 0 !important;
    padding: 26px 20px !important;
  }
}

/* v1.3.5 final precedence — integrated young-student group artwork. */
.elementor.elementor-20 .anido-contact-advisor-wrap::before {
  display: none !important;
}

.elementor.elementor-20 .anido-contact-advisor {
  filter: drop-shadow(0 26px 34px rgba(0, 24, 58, 0.2)) !important;
}

.elementor.elementor-20 .anido-contact-advisor img {
  border-radius: 34px !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 767px) {
  .elementor.elementor-20 .anido-contact-advisor img {
    border-radius: 26px !important;
  }
}

/* v1.4.0 — ANIDO single article experience. */
body.anido-article-template {
  margin: 0 !important;
  color: #1d3049 !important;
  background: #f5f8fc !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

body.anido-article-template .site-header,
body.anido-article-template .site-footer,
body.anido-article-template .page-header {
  display: none !important;
}

body.anido-article-template .site-main,
body.anido-article-template .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.anido-article-template a {
  color: inherit;
}

.anido-reading-progress {
  position: fixed;
  z-index: 10020;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
}

.anido-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #ff7b19);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.65);
}

body.admin-bar .anido-reading-progress {
  top: 32px;
}

.anido-article-site-header {
  position: sticky;
  z-index: 9990;
  top: 0;
  width: 100%;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(5, 43, 89, 0.12);
}

body.admin-bar .anido-article-site-header {
  top: 32px;
}

.anido-article-header-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.anido-article-topline {
  background: linear-gradient(100deg, #052a59 0%, #075cb5 100%);
}

.anido-article-topline .anido-article-header-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 650;
}

.anido-article-topline div div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.anido-article-topline a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.anido-article-mainnav {
  color: #12233a;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

.anido-article-mainnav .anido-article-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.anido-article-logo {
  display: block;
  flex: 0 0 auto;
}

.anido-article-logo img {
  width: 162px;
  max-height: 54px;
  display: block;
  object-fit: contain;
}

.anido-article-mainnav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.anido-article-mainnav nav > a {
  position: relative;
  color: #12233a !important;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none !important;
}

.anido-article-mainnav nav > a:not(.anido-article-nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: #f5a623;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.anido-article-mainnav nav > a:hover::after {
  transform: scaleX(1);
}

.anido-article-nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(120deg, #f5a623, #ff7f19);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.28);
}

.anido-article-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 8% 10%, rgba(79, 159, 234, 0.2), transparent 34%),
    linear-gradient(135deg, #edf6ff 0%, #ffffff 56%, #fff7e9 100%);
}

.anido-article-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(7, 92, 181, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(7, 92, 181, 0.025), 0 0 0 110px rgba(245, 166, 35, 0.03);
}

.anido-article-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.anido-breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #6c7d91;
  font-size: 12px;
  font-weight: 600;
}

.anido-breadcrumbs a {
  color: #075cb5 !important;
  text-decoration: none !important;
}

.anido-article-category,
.anido-article-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: #075cb5 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.anido-article-hero h1 {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.anido-article-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #62758b;
  font-size: 12px;
  font-weight: 650;
}

.anido-article-meta span {
  position: relative;
  padding-left: 15px;
}

.anido-article-meta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5a623;
  transform: translateY(-50%);
}

.anido-article-hero-media {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  border: 9px solid #ffffff;
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(135deg, #075cb5, #063b79);
  box-shadow: 0 30px 70px rgba(6, 59, 121, 0.2);
}

.anido-article-hero-media::after {
  content: "ANIDO";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 43, 89, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.anido-article-featured-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.anido-article-image-placeholder {
  min-height: 385px;
  display: grid;
  place-content: center;
  color: #ffffff;
  text-align: center;
}

.anido-article-image-placeholder strong {
  font-size: 52px;
  letter-spacing: 0.08em;
}

.anido-article-image-placeholder span {
  color: #ffd17b;
  font-size: 16px;
}

.anido-article-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 64px auto 88px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.anido-article-sidebar {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 18px;
}

body.admin-bar .anido-article-sidebar {
  top: 174px;
}

.anido-article-toc-card,
.anido-sidebar-cta {
  overflow: hidden;
  border: 1px solid #dbe7f3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(6, 59, 121, 0.08);
}

.anido-toc-toggle {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0b2d55;
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

body.anido-article-template .anido-toc-toggle,
body.anido-article-template .anido-toc-toggle:hover,
body.anido-article-template .anido-toc-toggle:focus {
  border: 0 !important;
  outline: 0 !important;
  color: #0b2d55 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body.anido-article-template .anido-toc-toggle:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(7, 92, 181, 0.18) !important;
}

.anido-toc-toggle span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #075cb5;
  background: #eaf4ff;
}

.anido-article-toc {
  padding: 0 12px 16px 20px;
}

.anido-article-toc-card.is-collapsed .anido-article-toc {
  display: none;
}

.anido-article-toc ol {
  max-height: min(56vh, 510px);
  margin: 0;
  padding: 2px 8px 2px 0;
  list-style: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #a8c9e8 transparent;
}

.anido-article-toc li {
  margin: 0;
  border-left: 2px solid #e4edf6;
}

.anido-article-toc li.is-subheading a {
  padding-left: 25px;
  font-size: 11px;
}

.anido-article-toc a {
  display: block;
  padding: 8px 10px 8px 16px;
  color: #64758a !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none !important;
  transition: 0.2s ease;
}

.anido-article-toc a:hover,
.anido-article-toc a.is-active {
  margin-left: -2px;
  border-left: 2px solid #f5a623;
  color: #075cb5 !important;
  background: linear-gradient(90deg, #eef7ff, transparent);
}

.anido-sidebar-cta {
  padding: 22px;
  color: #ffffff;
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.34), transparent 46%),
    linear-gradient(145deg, #052b59, #075cb5);
}

.anido-sidebar-cta span,
.anido-sidebar-cta strong,
.anido-sidebar-cta small {
  display: block;
}

.anido-sidebar-cta span {
  color: #ffd17b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anido-sidebar-cta strong {
  margin-top: 9px;
  font-size: 18px;
  line-height: 1.4;
}

.anido-sidebar-cta a {
  margin-top: 18px;
  padding: 11px 14px;
  border-radius: 10px;
  display: block;
  color: #ffffff !important;
  background: linear-gradient(120deg, #f5a623, #ff7f19);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
}

.anido-sidebar-cta small {
  margin-top: 12px;
  font-size: 10px;
  text-align: center;
  opacity: 0.78;
}

.anido-article-main-column {
  min-width: 0;
}

.anido-article-body {
  padding: 50px 56px;
  border: 1px solid #e2ebf4;
  border-radius: 24px;
  color: #35475d;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(6, 59, 121, 0.075);
  font-size: 16px;
  line-height: 1.85;
}

.anido-article-body > :first-child {
  margin-top: 0 !important;
}

.anido-article-body > :last-child {
  margin-bottom: 0 !important;
}

.anido-article-body p {
  margin: 0 0 1.4em;
}

.anido-article-body h2,
.anido-article-body h3,
.anido-article-body h4 {
  scroll-margin-top: 160px;
  color: #0b2d55;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.anido-article-body h2 {
  position: relative;
  margin: 2.05em 0 0.8em;
  padding-bottom: 13px;
  font-size: 28px;
  line-height: 1.3;
}

.anido-article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #f5a623, #ff7f19);
}

.anido-article-body h3 {
  margin: 1.7em 0 0.65em;
  font-size: 21px;
  line-height: 1.4;
}

.anido-article-body ul,
.anido-article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.anido-article-body li {
  margin-bottom: 0.55em;
  padding-left: 0.25em;
}

.anido-article-body strong {
  color: #142f51;
}

.anido-article-body a {
  color: #075cb5 !important;
  text-decoration-color: rgba(7, 92, 181, 0.34) !important;
  text-underline-offset: 3px;
}

.anido-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 59, 121, 0.12);
}

.anido-article-body blockquote {
  margin: 2em 0;
  padding: 22px 24px 22px 28px;
  border: 0;
  border-left: 5px solid #f5a623;
  border-radius: 0 16px 16px 0;
  color: #173b67;
  background: #eef7ff;
  font-weight: 600;
}

.anido-article-body table {
  width: 100%;
  margin: 1.7em 0;
  border: 1px solid #dce7f2;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
}

.anido-article-body th,
.anido-article-body td {
  padding: 13px 15px;
  border-right: 1px solid #e5edf5;
  border-bottom: 1px solid #e5edf5;
  text-align: left;
}

.anido-article-body th {
  color: #ffffff;
  background: #075cb5;
}

.anido-article-share {
  margin: 22px 0 0;
  padding: 15px 18px;
  border: 1px solid #e0eaf4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #62758b;
  background: #ffffff;
  font-size: 12px;
}

.anido-article-share strong {
  margin-right: auto;
  color: #0b2d55;
}

.anido-article-share a,
.anido-article-share button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: #075cb5 !important;
  background: #eaf4ff;
  font: inherit;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
}

.anido-article-form-section {
  margin-top: 56px;
  scroll-margin-top: 160px;
  padding: 44px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 2% 100%, rgba(245, 166, 35, 0.3), transparent 36%),
    linear-gradient(135deg, #052b59 0%, #075cb5 100%);
  box-shadow: 0 24px 70px rgba(6, 59, 121, 0.18);
}

.anido-article-form-copy .anido-article-kicker {
  color: #ffd17b !important;
}

.anido-article-form-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.anido-article-form-copy h2 span {
  color: #ffd17b;
}

.anido-article-form-copy p {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.75;
}

.anido-article-form-trust {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.anido-article-form-card {
  padding: 26px;
  border-radius: 20px;
  color: #263a52;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 24, 58, 0.22);
}

.anido-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.anido-form-grid label,
.anido-form-consent {
  display: grid;
  gap: 6px;
  color: #46596f;
  font-size: 11px;
  font-weight: 650;
}

.anido-form-grid input,
.anido-form-grid select,
.anido-form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d6e2ee;
  border-radius: 10px;
  color: #1d3049;
  background: #f8fbff;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.anido-form-grid input:focus,
.anido-form-grid select:focus,
.anido-form-grid textarea:focus {
  border-color: #58a3e8;
  box-shadow: 0 0 0 3px rgba(7, 92, 181, 0.09);
}

.anido-form-grid textarea {
  resize: vertical;
}

.anido-form-wide {
  grid-column: 1 / -1;
}

.anido-form-consent {
  margin-top: 13px;
  display: flex;
  align-items: flex-start;
  grid-template-columns: auto 1fr;
  line-height: 1.5;
}

.anido-form-consent input {
  margin-top: 2px;
}

.anido-article-form-card button[type="submit"] {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(120deg, #f5a623, #ff7f19);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.3);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.anido-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.anido-form-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.anido-form-notice.is-success {
  color: #0c6942;
  background: #e8f8f0;
}

.anido-form-notice.is-error {
  color: #a63131;
  background: #fff0f0;
}

.anido-related-posts {
  margin-top: 68px;
}

.anido-related-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.anido-related-heading .anido-article-kicker {
  margin-bottom: 9px;
}

.anido-related-heading h2 {
  margin: 0;
  color: #0b2d55;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.anido-related-heading > a {
  color: #075cb5 !important;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none !important;
}

.anido-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.anido-related-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe9f3;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(6, 59, 121, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.anido-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(6, 59, 121, 0.13);
}

.anido-related-image {
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff !important;
  background: linear-gradient(135deg, #075cb5, #052b59);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none !important;
}

.anido-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.anido-related-card:hover .anido-related-image img {
  transform: scale(1.045);
}

.anido-related-card-body {
  padding: 18px;
}

.anido-related-category {
  color: #f28a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.anido-related-card h3 {
  margin: 9px 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.anido-related-card h3 a {
  color: #0b2d55 !important;
  text-decoration: none !important;
}

.anido-related-card p {
  margin: 0;
  color: #6b7c90;
  font-size: 11px;
  line-height: 1.65;
}

.anido-related-more {
  margin-top: 14px;
  display: inline-block;
  color: #075cb5 !important;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none !important;
}

body.anido-article-template .comments-area {
  width: min(860px, calc(100% - 40px));
  margin: -28px auto 88px;
  padding: 38px 44px;
  border: 1px solid #e0eaf4;
  border-radius: 22px;
  color: #3a4c62;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(6, 59, 121, 0.07);
}

body.anido-article-template .comments-area .comment-reply-title,
body.anido-article-template .comments-title {
  margin: 0 0 20px;
  color: #0b2d55;
  font-size: 25px;
  font-weight: 800;
}

body.anido-article-template .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.anido-article-template .comment-form > p {
  margin: 0;
}

body.anido-article-template .comment-form-comment,
body.anido-article-template .comment-notes,
body.anido-article-template .comment-form-cookies-consent,
body.anido-article-template .form-submit {
  grid-column: 1 / -1;
}

body.anido-article-template .comment-form input:not([type="checkbox"]),
body.anido-article-template .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background: #f8fbff;
}

body.anido-article-template .comment-form .submit {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(120deg, #075cb5, #0c73d7);
  font-weight: 800;
}

.anido-article-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #05264d;
}

.anido-article-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.6fr;
  gap: 70px;
}

.anido-article-footer img {
  width: 170px;
  max-height: 58px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.anido-article-footer p {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.anido-article-footer strong {
  margin-bottom: 14px;
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.anido-article-footer a {
  margin-bottom: 9px;
  display: block;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 12px;
  text-decoration: none !important;
}

.anido-article-copyright {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .anido-article-mainnav nav {
    gap: 18px;
  }

  .anido-article-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: 34px;
  }

  .anido-article-shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
  }

  .anido-article-body {
    padding: 40px;
  }

  .anido-article-form-section {
    padding: 32px;
    gap: 26px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .anido-reading-progress {
    top: 46px;
  }

  body.admin-bar .anido-article-site-header {
    top: 46px;
  }

  .anido-article-topline .anido-article-header-inner > span,
  .anido-article-mainnav nav > a:not(.anido-article-nav-cta) {
    display: none;
  }

  .anido-article-topline .anido-article-header-inner {
    min-height: 34px;
    justify-content: center;
  }

  .anido-article-topline div div {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .anido-article-topline div div a:nth-child(2) {
    display: none;
  }

  .anido-article-mainnav .anido-article-header-inner {
    min-height: 66px;
  }

  .anido-article-logo img {
    width: 138px;
  }

  .anido-article-hero {
    padding: 42px 0 50px;
  }

  .anido-article-hero-inner {
    grid-template-columns: 1fr;
  }

  .anido-article-hero-copy {
    order: 1;
  }

  .anido-article-hero-media {
    min-height: 300px;
    order: 2;
  }

  .anido-article-shell {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .anido-article-sidebar {
    position: static;
  }

  .anido-sidebar-cta {
    display: none;
  }

  .anido-article-toc ol {
    max-height: 330px;
  }

  .anido-article-form-section {
    grid-template-columns: 1fr;
  }

  .anido-related-grid {
    grid-template-columns: 1fr;
  }

  .anido-related-image {
    height: 220px;
  }

  .anido-article-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .anido-article-footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .anido-article-header-inner,
  .anido-article-hero-inner,
  .anido-article-shell,
  .anido-article-footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .anido-article-topline {
    display: none;
  }

  .anido-article-mainnav .anido-article-header-inner {
    min-height: 62px;
  }

  .anido-article-nav-cta {
    padding: 10px 13px !important;
    font-size: 10px !important;
  }

  .anido-article-hero h1 {
    font-size: 32px;
  }

  .anido-article-hero-media {
    min-height: 235px;
    border-width: 6px;
    border-radius: 24px 7px 24px 7px;
  }

  .anido-article-body {
    padding: 26px 22px;
    border-radius: 18px;
    font-size: 15px;
  }

  .anido-article-body h2 {
    font-size: 24px;
  }

  .anido-article-share {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .anido-article-share strong {
    width: 100%;
  }

  .anido-article-form-section {
    margin-top: 40px;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .anido-article-form-copy h2 {
    font-size: 29px;
  }

  .anido-article-form-card {
    padding: 20px;
  }

  .anido-form-grid,
  body.anido-article-template .comment-form {
    grid-template-columns: 1fr;
  }

  .anido-form-wide,
  body.anido-article-template .comment-form > p {
    grid-column: auto;
  }

  .anido-related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body.anido-article-template .comments-area {
    width: min(100% - 28px, 860px);
    padding: 28px 22px;
  }

  .anido-article-footer-inner {
    grid-template-columns: 1fr;
  }

  .anido-article-footer-inner > div:first-child {
    grid-column: auto;
  }
}

/* v1.5.0 — ANIDO category archive experience. */
body.anido-category-template {
  margin: 0 !important;
  color: #18314f !important;
  background: #f5f8fc !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

body.anido-category-template .site-header,
body.anido-category-template .site-footer,
body.anido-category-template .page-header {
  display: none !important;
}

body.anido-category-template a {
  color: inherit;
}

.anido-category-main {
  width: 100%;
  overflow: hidden;
}

.anido-category-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 188, 73, 0.34), transparent 24%),
    radial-gradient(circle at 10% 120%, rgba(37, 143, 235, 0.55), transparent 35%),
    linear-gradient(125deg, #062e62 0%, #075cb5 64%, #0c7bd5 100%);
}

.anido-category-hero::before,
.anido-category-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.anido-category-hero::before {
  top: -210px;
  right: -80px;
  width: 520px;
  height: 520px;
  box-shadow: 0 0 0 64px rgba(255, 255, 255, 0.025), 0 0 0 128px rgba(245, 166, 35, 0.035);
}

.anido-category-hero::after {
  bottom: -170px;
  left: 38%;
  width: 340px;
  height: 340px;
}

.anido-category-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 80px;
}

.anido-category-hero .anido-breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.anido-category-hero .anido-breadcrumbs a {
  color: #ffffff !important;
}

.anido-category-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ffd481;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.anido-category-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.anido-category-hero-copy > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.78;
}

.anido-category-hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 60px rgba(0, 29, 68, 0.26);
  backdrop-filter: blur(14px);
}

.anido-category-hero-panel > div {
  min-height: 118px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}

.anido-category-hero-panel strong {
  color: #ffd17b;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.anido-category-hero-panel span {
  margin-top: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.anido-category-hero-panel p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.anido-category-topics {
  position: sticky;
  z-index: 80;
  top: 112px;
  border-bottom: 1px solid #dbe7f3;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(6, 59, 121, 0.06);
  backdrop-filter: blur(12px);
}

body.admin-bar .anido-category-topics {
  top: 144px;
}

.anido-category-topics > div {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.anido-category-topics > div::-webkit-scrollbar {
  display: none;
}

.anido-category-topics a {
  position: relative;
  min-height: 62px;
  padding: 0 24px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #44576e !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.anido-category-topics a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, #f5a623, #ff7b19);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.anido-category-topics a:hover,
.anido-category-topics a.is-active {
  color: #075cb5 !important;
}

.anido-category-topics a:hover::after,
.anido-category-topics a.is-active::after {
  transform: scaleX(1);
}

.anido-category-container {
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 90px;
}

.anido-category-featured {
  overflow: hidden;
  border: 1px solid #dce8f4;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 59, 121, 0.1);
}

.anido-category-featured-media {
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff !important;
  background: linear-gradient(135deg, #075cb5, #052b59);
  text-decoration: none !important;
}

.anido-category-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.anido-category-featured:hover .anido-category-featured-media img {
  transform: scale(1.025);
}

.anido-category-featured-media > span,
.anido-category-card-media > span {
  display: grid;
  gap: 6px;
  text-align: center;
}

.anido-category-featured-media strong,
.anido-category-card-media strong {
  font-size: 36px;
  letter-spacing: 0.04em;
}

.anido-category-featured-media small,
.anido-category-card-media small {
  color: #ffd17b;
}

.anido-category-featured-copy {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anido-category-featured-label {
  color: #f28a18;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.anido-category-featured-copy h2 {
  margin: 16px 0 18px;
  color: #0b2d55;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.anido-category-featured-copy h2 a,
.anido-category-card h2 a {
  color: inherit !important;
  text-decoration: none !important;
}

.anido-category-featured-copy > p {
  margin: 0;
  color: #607187;
  font-size: 14px;
  line-height: 1.75;
}

.anido-category-featured-meta {
  margin: 22px 0;
  display: flex;
  gap: 22px;
  color: #7a899a;
  font-size: 11px;
  font-weight: 700;
}

.anido-category-featured-meta span::before {
  content: "•";
  margin-right: 7px;
  color: #f5a623;
}

.anido-category-primary-button {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(120deg, #f5a623, #ff7b19);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.24);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}

.anido-category-latest {
  margin-top: 76px;
}

.anido-category-section-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.anido-category-section-heading span {
  color: #f28a18;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.anido-category-section-heading h2 {
  margin: 8px 0 0;
  color: #0b2d55;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.anido-category-section-heading > p {
  max-width: 470px;
  margin: 0;
  color: #6a7a8e;
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.anido-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.anido-category-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(6, 59, 121, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.anido-category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(6, 59, 121, 0.13);
}

.anido-category-card-media {
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff !important;
  background: linear-gradient(135deg, #075cb5, #052b59);
  text-decoration: none !important;
}

.anido-category-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.anido-category-card:hover .anido-category-card-media img {
  transform: scale(1.045);
}

.anido-category-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.anido-category-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8492a3;
  font-size: 10px;
  font-weight: 700;
}

.anido-category-card-meta a {
  color: #075cb5 !important;
  text-decoration: none !important;
}

.anido-category-card h2 {
  margin: 15px 0 13px;
  color: #102d50;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.anido-category-card-body > p {
  margin: 0;
  color: #6b798c;
  font-size: 13px;
  line-height: 1.7;
}

.anido-category-card-footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #8492a3;
  font-size: 10px;
  font-weight: 700;
}

.anido-category-card-footer a {
  color: #f28a18 !important;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none !important;
}

.anido-category-pagination {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.anido-category-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #d9e5f0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #31506f !important;
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none !important;
}

.anido-category-pagination .page-numbers.current,
.anido-category-pagination a.page-numbers:hover {
  border-color: #075cb5;
  color: #ffffff !important;
  background: #075cb5;
}

.anido-category-empty {
  padding: 48px;
  border: 1px dashed #b9cde0;
  border-radius: 22px;
  color: #607187;
  background: #ffffff;
  text-align: center;
}

.anido-category-empty strong {
  color: #0b2d55;
  font-size: 22px;
}

.anido-category-form-wrap {
  margin-top: 84px;
}

.anido-category-form-wrap .anido-article-form-section {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .anido-category-hero-inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
  }

  .anido-category-featured {
    grid-template-columns: 1fr 0.85fr;
  }

  .anido-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .anido-category-hero {
    padding: 48px 0 54px;
  }

  .anido-category-hero-inner,
  .anido-category-featured {
    grid-template-columns: 1fr;
  }

  .anido-category-hero-panel {
    max-width: 520px;
  }

  .anido-category-topics,
  body.admin-bar .anido-category-topics {
    top: 112px;
  }

  .anido-category-featured-media {
    min-height: 360px;
  }

  .anido-category-featured-copy {
    padding: 36px 32px;
  }

  .anido-category-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .anido-category-section-heading > p {
    max-width: 620px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .anido-category-hero-inner,
  .anido-category-topics > div,
  .anido-category-container {
    width: min(100% - 28px, 1180px);
  }

  .anido-category-hero h1 {
    font-size: 36px;
  }

  .anido-category-hero-copy > p {
    font-size: 15px;
  }

  .anido-category-hero-panel {
    padding: 16px;
  }

  .anido-category-hero-panel > div {
    min-height: 100px;
    padding: 15px;
  }

  .anido-category-topics,
  body.admin-bar .anido-category-topics {
    top: 62px;
  }

  .anido-category-topics a {
    min-height: 54px;
    padding: 0 18px;
  }

  .anido-category-container {
    margin-top: 32px;
  }

  .anido-category-featured {
    border-radius: 20px;
  }

  .anido-category-featured-media {
    min-height: 250px;
  }

  .anido-category-featured-copy {
    padding: 28px 22px;
  }

  .anido-category-featured-copy h2 {
    font-size: 27px;
  }

  .anido-category-latest {
    margin-top: 54px;
  }

  .anido-category-grid {
    grid-template-columns: 1fr;
  }

  .anido-category-card-media {
    height: 220px;
  }

  .anido-category-form-wrap {
    margin-top: 58px;
  }
}

/* Keep the WordPress menu visible on the homepage mobile header. */
@media (max-width: 782px) {
  .elementor.elementor-20 .anido-nav-widget {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
}

/* ================================================================
   v1.9.0 — One editable Elementor header shared by every page/post
   ================================================================ */

body.anido-global-header-enabled #site-header,
body.anido-global-header-enabled > #page > header.site-header {
  display: none !important;
}

.anido-global-site-header {
  position: sticky;
  z-index: 9990;
  top: 0;
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  box-shadow: 0 12px 30px rgba(5, 43, 89, .12);
}

body.admin-bar .anido-global-site-header {
  top: 32px;
}

.anido-global-site-header .elementor,
.anido-global-site-header .elementor-element {
  margin-bottom: 0;
}

.anido-global-header-wrap {
  width: min(1320px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

.anido-global-topbar {
  min-height: 62px;
  padding: 0 !important;
  color: #ffffff;
  background: linear-gradient(105deg, #042a59 0%, #075cb5 100%);
}

.anido-global-topbar-inner {
  min-height: 62px;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 0 !important;
}

.anido-global-promise-widget {
  width: auto !important;
  min-width: 320px;
  flex: 1 1 auto !important;
}

.anido-global-promise-widget > .elementor-widget-container,
.anido-global-contact-widget > .elementor-widget-container {
  height: 100%;
}

.anido-global-promise {
  height: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.anido-global-promise-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  color: #ffd17b;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.anido-global-contacts {
  width: auto !important;
  min-height: 62px;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  gap: 0 !important;
}

.anido-global-contact-widget {
  width: auto !important;
  min-width: 188px;
  min-height: 62px;
  flex: 0 0 auto !important;
}

.anido-global-email-widget {
  min-width: 270px;
}

.anido-global-contact {
  width: 100%;
  height: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 18px;
  color: #ffffff !important;
  text-decoration: none !important;
  border-left: 1px solid rgba(255, 255, 255, .2);
  transition: filter .22s ease, background .22s ease;
}

.anido-global-contact:hover {
  color: #ffffff !important;
  filter: brightness(1.07);
}

.anido-global-hotline {
  background: #f28a18;
}

.anido-global-zalo {
  background: #0877d9;
}

.anido-global-email {
  background: #0a4d91;
}

.anido-global-contact-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, .17);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
}

.anido-global-contact small,
.anido-global-contact strong {
  display: block;
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.anido-global-contact small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 500;
  opacity: .82;
}

.anido-global-contact strong {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.anido-global-mainnav {
  padding: 0 !important;
  color: #17263a;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
}

.anido-global-mainnav-inner {
  min-height: 80px;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 34px !important;
}

.anido-global-logo {
  width: 164px !important;
  max-width: 164px !important;
  flex: 0 0 164px !important;
}

.anido-global-logo .elementor-widget-container,
.anido-global-logo a,
.anido-global-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.anido-global-menu-widget {
  width: auto !important;
  max-width: none !important;
  flex: 1 1 auto !important;
}

.anido-global-menu-widget .elementor-widget-container {
  width: 100%;
}

.anido-global-site-header + .anido-article-site-header {
  display: none !important;
}

.anido-category-topics {
  top: 142px;
}

body.admin-bar .anido-category-topics {
  top: 174px;
}

@media (max-width: 1180px) {
  .anido-global-promise-widget {
    display: none !important;
  }

  .anido-global-contacts {
    width: 100% !important;
  }

  .anido-global-contact-widget {
    flex: 1 1 0 !important;
  }
}

@media (max-width: 900px) {
  .anido-global-header-wrap {
    width: min(100% - 30px, 1320px) !important;
  }

  .anido-global-contact-widget,
  .anido-global-email-widget {
    min-width: 0;
  }

  .anido-global-contact {
    padding-inline: 12px;
  }

  .anido-global-contact strong {
    font-size: 11px;
  }

  .anido-global-logo {
    width: 146px !important;
    max-width: 146px !important;
    flex-basis: 146px !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .anido-global-site-header {
    top: 46px;
  }

  .anido-global-topbar {
    display: none !important;
  }

  .anido-global-mainnav,
  .anido-global-mainnav-inner {
    min-height: 70px;
  }

  .anido-global-mainnav-inner {
    gap: 18px !important;
  }

  .anido-global-logo {
    width: 136px !important;
    max-width: 136px !important;
    flex-basis: 136px !important;
  }

  .anido-global-menu-widget {
    width: auto !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

  .anido-category-topics {
    top: 70px !important;
  }

  body.admin-bar .anido-category-topics {
    top: 116px !important;
  }
}

/* ================================================================
   v1.10.0 — One editable Elementor footer shared by every page/post
   ================================================================ */

body.anido-global-footer-enabled #site-footer,
body.anido-global-footer-enabled footer.site-footer,
body.anido-global-footer-enabled .anido-article-footer {
  display: none !important;
}

.anido-global-site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.anido-global-site-footer .elementor,
.anido-global-site-footer .elementor-element {
  margin-bottom: 0;
}

.anido-global-site-footer .anido-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 76px 0 0 !important;
  color: #334b65 !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(7, 92, 181, .10), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(245, 166, 35, .13), transparent 24%),
    linear-gradient(135deg, #eaf4ff 0%, #f7fbff 54%, #ffffff 100%) !important;
}

.anido-global-site-footer .anido-footer::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, #063b79 0%, #075cb5 62%, #f5a623 100%);
}

.anido-global-site-footer .anido-footer-wrap {
  width: min(1220px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
  padding: 0 0 62px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, .62fr) minmax(255px, 1.04fr) minmax(245px, .94fr) !important;
  align-items: start !important;
  gap: clamp(30px, 3.6vw, 56px) !important;
}

.anido-global-site-footer .anido-footer-brand,
.anido-global-site-footer .anido-footer-map,
.anido-global-site-footer .anido-socials {
  padding: 0 !important;
}

.anido-global-site-footer .anido-footer-brand {
  width: 100% !important;
  max-width: 365px;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.anido-global-site-footer .anido-footer-logo {
  width: 178px !important;
  max-width: 178px !important;
  margin: 0 0 20px !important;
}

.anido-global-site-footer .anido-footer-logo .elementor-widget-container,
.anido-global-site-footer .anido-footer-logo a,
.anido-global-site-footer .anido-footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.anido-global-site-footer .anido-footer-tagline p,
.anido-global-site-footer .anido-footer-brand > .elementor-widget-text-editor p {
  max-width: 355px;
  margin: 0 !important;
  color: #49627b !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.76 !important;
}

.anido-global-site-footer .anido-footer-links-widget,
.anido-global-site-footer .anido-footer-contact-widget {
  width: 100% !important;
}

.anido-global-site-footer .anido-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anido-global-site-footer .anido-footer-links strong,
.anido-global-site-footer .anido-social-title .elementor-heading-title,
.anido-global-site-footer .anido-map-title .elementor-heading-title {
  display: block;
  margin: 0 0 12px;
  color: #075cb5 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.anido-global-site-footer .anido-footer-links a,
.anido-global-site-footer .anido-footer-links span {
  color: #405b75 !important;
  font-size: 14.5px !important;
  font-weight: 500;
  line-height: 1.66 !important;
  text-decoration: none !important;
}

.anido-global-site-footer .anido-footer-links a {
  transition: color .22s ease, transform .22s ease;
}

.anido-global-site-footer .anido-footer-links a:hover,
.anido-global-site-footer .anido-footer-links a:focus-visible {
  color: #f28a18 !important;
  transform: translateX(3px);
}

.anido-global-site-footer .anido-footer-contact > .anido-contact-address,
.anido-global-site-footer .anido-footer-contact > .anido-contact-phone,
.anido-global-site-footer .anido-footer-contact > .anido-contact-email {
  min-height: 38px;
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
}

.anido-global-site-footer .anido-contact-icon {
  width: 35px;
  height: 35px;
  display: inline-grid;
  flex: 0 0 35px;
  place-items: center;
  margin-top: -2px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(145deg, #075cb5 0%, #0d78dc 64%, #f5a623 150%);
  box-shadow: 0 9px 22px rgba(6, 59, 121, .16);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.anido-global-site-footer .anido-social-title {
  margin: 26px 0 12px !important;
}

.anido-global-site-footer .anido-socials {
  width: auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 11px !important;
}

.anido-global-site-footer .anido-social-link {
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 17px;
  background: transparent !important;
  box-shadow: 0 11px 26px rgba(6, 59, 121, .13) !important;
  transition: transform .22s ease, box-shadow .22s ease;
}

.anido-global-site-footer .anido-social-link .elementor-widget-container,
.anido-global-site-footer .anido-social-link a,
.anido-global-site-footer .anido-social-link img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: inherit;
}

.anido-global-site-footer .anido-social-link img {
  object-fit: cover;
}

.anido-global-site-footer .anido-social-link:hover,
.anido-global-site-footer .anido-social-link:focus-within {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 32px rgba(6, 59, 121, .18) !important;
}

.anido-global-site-footer .anido-footer-map {
  min-width: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.anido-global-site-footer .anido-map-widget,
.anido-global-site-footer .anido-map-widget .elementor-widget-container {
  width: 100%;
}

.anido-global-site-footer .anido-map-widget .elementor-widget-container {
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 20px;
  background: #dcecff;
  box-shadow: 0 15px 34px rgba(6, 59, 121, .14);
}

.anido-global-site-footer .anido-map-widget iframe {
  width: 100%;
  height: 160px !important;
  display: block;
  border: 0;
}

.anido-global-site-footer .anido-map-button {
  width: auto !important;
  align-self: flex-start;
}

.anido-global-site-footer .anido-map-button .elementor-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #075cb5 0%, #0b70cf 72%, #f5a623 145%) !important;
  box-shadow: 0 11px 26px rgba(6, 59, 121, .17);
  font-size: 12.5px !important;
  font-weight: 800 !important;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .22s ease, box-shadow .22s ease;
}

.anido-global-site-footer .anido-map-button .elementor-button:hover,
.anido-global-site-footer .anido-map-button .elementor-button:focus-visible {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(6, 59, 121, .22);
}

.anido-global-site-footer .anido-footer-bottom-widget {
  width: 100% !important;
  border-top: 1px solid rgba(7, 92, 181, .16);
}

.anido-global-site-footer .anido-footer-bottom {
  width: min(1220px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #637c94 !important;
  font-size: 13.5px !important;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .anido-global-site-footer .anido-footer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 46px !important;
  }

  .anido-global-site-footer .anido-footer-brand {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .anido-global-site-footer .anido-footer {
    padding-top: 62px !important;
  }

  .anido-global-site-footer .anido-footer-wrap,
  .anido-global-site-footer .anido-footer-bottom {
    width: min(100% - 32px, 1220px) !important;
  }

  .anido-global-site-footer .anido-footer-wrap {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
    padding-bottom: 46px !important;
  }

  .anido-global-site-footer .anido-footer-brand {
    max-width: none;
  }

  .anido-global-site-footer .anido-footer-bottom {
    min-height: 92px;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    font-size: 12.5px !important;
  }
}

/* ================================================================
   v1.10.1 — Mobile banner: full image above, compact copy below
   ================================================================ */

@media (max-width: 820px) {
  .elementor.elementor-20 .anido-hero {
    --anido-mobile-banner-image-h: clamp(148px, 42.87vw, 352px);
    --anido-mobile-banner-copy-h: 230px;
    width: 100% !important;
    height: calc(var(--anido-mobile-banner-image-h) + var(--anido-mobile-banner-copy-h)) !important;
    min-height: 0 !important;
    background: #f5f9fe !important;
  }

  .elementor.elementor-20 .anido-native-slide {
    overflow: hidden !important;
    background: #f5f9fe !important;
  }

  .elementor.elementor-20 .anido-native-slide-image,
  .elementor.elementor-20 .anido-native-slide-image > .elementor-widget-container {
    position: absolute !important;
    inset: 0 0 auto !important;
    width: 100% !important;
    height: var(--anido-mobile-banner-image-h) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #eef5fd !important;
  }

  .elementor.elementor-20 .anido-native-slide-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #eef5fd !important;
  }

  .elementor.elementor-20 .anido-native-slide .anido-slide-content {
    position: absolute !important;
    top: var(--anido-mobile-banner-image-h) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-height: var(--anido-mobile-banner-copy-h) !important;
    max-height: none !important;
    justify-content: center !important;
    padding: 16px max(18px, 5vw) 44px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
      radial-gradient(circle at 94% 10%, rgba(245, 166, 35, .12), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%) !important;
    box-shadow: inset 0 1px 0 rgba(7, 92, 181, .08) !important;
    backdrop-filter: none !important;
    transform: none !important;
  }

  .elementor.elementor-20 .anido-slide-eyebrow {
    margin: 0 0 7px !important;
    padding: 0 !important;
    color: var(--anido-blue) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    line-height: 1.25 !important;
  }

  .elementor.elementor-20 .anido-slide-title {
    width: 100% !important;
    max-width: 620px !important;
  }

  .elementor.elementor-20 .anido-slide-title .elementor-heading-title {
    color: var(--anido-ink) !important;
    font-size: clamp(24px, 6.4vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    -webkit-text-stroke: 0 transparent !important;
    paint-order: normal !important;
    text-shadow: 0 5px 18px rgba(4, 31, 64, .10) !important;
    text-wrap: balance;
  }

  .elementor.elementor-20 .anido-slide-title::after {
    width: 44px !important;
    height: 3px !important;
    margin-top: 9px !important;
  }

  .elementor.elementor-20 .anido-slide-copy {
    max-width: 620px !important;
    display: block !important;
    margin: 9px 0 0 !important;
    color: #50677e !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
  }

  .elementor.elementor-20 .anido-slide-copy p {
    text-shadow: none !important;
  }

  .elementor.elementor-20 .anido-slide-badge {
    min-height: 34px !important;
    margin: 11px 0 0 !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    box-shadow: 0 9px 20px rgba(245, 166, 35, .19) !important;
  }

  .elementor.elementor-20 .anido-native-slider-dots {
    bottom: 11px !important;
    gap: 7px !important;
  }

  .elementor.elementor-20 .anido-native-slider-dots button {
    width: 8px !important;
    height: 8px !important;
    border-width: 1.5px !important;
  }

  .elementor.elementor-20 .anido-native-slider-dots button[aria-current="true"] {
    width: 27px !important;
  }
}

@media (max-width: 360px) {
  .elementor.elementor-20 .anido-hero {
    --anido-mobile-banner-copy-h: 202px;
  }

  .elementor.elementor-20 .anido-native-slide .anido-slide-content {
    padding-top: 13px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  .elementor.elementor-20 .anido-slide-title .elementor-heading-title {
    font-size: 23px !important;
  }

  .elementor.elementor-20 .anido-slide-copy {
    display: none !important;
  }
}
